Changeset 58902 in webkit for trunk/JavaScriptCore/jit/JIT.h
- Timestamp:
- May 6, 2010, 12:39:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.h
r58562 r58902 673 673 void emit_op_jnless(Instruction*); 674 674 void emit_op_jless(Instruction*); 675 void emit_op_jlesseq(Instruction*, bool invert = false); 675 676 void emit_op_jnlesseq(Instruction*); 676 677 void emit_op_jsr(Instruction*); … … 760 761 void emitSlow_op_jnless(Instruction*, Vector<SlowCaseEntry>::iterator&); 761 762 void emitSlow_op_jless(Instruction*, Vector<SlowCaseEntry>::iterator&); 763 void emitSlow_op_jlesseq(Instruction*, Vector<SlowCaseEntry>::iterator&, bool invert = false); 762 764 void emitSlow_op_jnlesseq(Instruction*, Vector<SlowCaseEntry>::iterator&); 763 765 void emitSlow_op_jtrue(Instruction*, Vector<SlowCaseEntry>::iterator&); … … 813 815 JSValue getConstantOperand(unsigned src); 814 816 bool isOperandConstantImmediateInt(unsigned src); 817 bool isOperandConstantImmediateChar(unsigned src); 815 818 816 819 Jump getSlowCase(Vector<SlowCaseEntry>::iterator& iter) … … 836 839 void restoreReturnAddressBeforeReturn(Address); 837 840 841 // Loads the character value of a single character string into dst. 842 void emitLoadCharacterString(RegisterID src, RegisterID dst, JumpList& failures); 843 838 844 void emitTimeoutCheck(); 839 845 #ifndef NDEBUG
Note:
See TracChangeset
for help on using the changeset viewer.