Changeset 213088 in webkit for trunk/Source/JavaScriptCore/jit/JIT.h
- Timestamp:
- Feb 27, 2017, 1:08:38 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.h
r213019 r213088 624 624 void emitSlow_op_try_get_by_id(Instruction*, Vector<SlowCaseEntry>::iterator&); 625 625 void emitSlow_op_get_by_id(Instruction*, Vector<SlowCaseEntry>::iterator&); 626 void emitSlow_op_get_by_id_with_this(Instruction*, Vector<SlowCaseEntry>::iterator&);627 626 void emitSlow_op_get_arguments_length(Instruction*, Vector<SlowCaseEntry>::iterator&); 628 627 void emitSlow_op_get_by_val(Instruction*, Vector<SlowCaseEntry>::iterator&); … … 761 760 MacroAssembler::Call callOperation(J_JITOperation_ESsiJI, int, StructureStubInfo*, GPRReg, UniquedStringImpl*); 762 761 MacroAssembler::Call callOperation(WithProfileTag, J_JITOperation_ESsiJI, int, StructureStubInfo*, GPRReg, UniquedStringImpl*); 763 MacroAssembler::Call callOperation(WithProfileTag, J_JITOperation_ESsiJJI, int, StructureStubInfo*, GPRReg, GPRReg, UniquedStringImpl*);764 762 #else 765 763 MacroAssembler::Call callOperation(J_JITOperation_ESsiJI, int, StructureStubInfo*, GPRReg, GPRReg, UniquedStringImpl*); 766 764 MacroAssembler::Call callOperation(WithProfileTag, J_JITOperation_ESsiJI, int, StructureStubInfo*, GPRReg, GPRReg, UniquedStringImpl*); 767 MacroAssembler::Call callOperation(WithProfileTag, J_JITOperation_ESsiJJI, int, StructureStubInfo*, GPRReg, GPRReg, GPRReg, GPRReg, UniquedStringImpl*);768 765 #endif 769 766 MacroAssembler::Call callOperation(J_JITOperation_EJI, int, GPRReg, UniquedStringImpl*); … … 936 933 Vector<Label> m_labels; 937 934 Vector<JITGetByIdGenerator> m_getByIds; 938 Vector<JITGetByIdWithThisGenerator> m_getByIdsWithThis;939 935 Vector<JITPutByIdGenerator> m_putByIds; 940 936 Vector<ByValCompilationInfo> m_byValCompilationInfo; … … 951 947 952 948 unsigned m_getByIdIndex; 953 unsigned m_getByIdWithThisIndex;954 949 unsigned m_putByIdIndex; 955 950 unsigned m_byValInstructionIndex;
Note:
See TracChangeset
for help on using the changeset viewer.