Changeset 149247 in webkit for trunk/Source/JavaScriptCore/jit/JIT.h
- Timestamp:
- Apr 27, 2013, 4:14:04 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.h
r148893 r149247 710 710 void emit_op_nstricteq(Instruction*); 711 711 void emit_op_pop_scope(Instruction*); 712 void emit_op_post_dec(Instruction*); 713 void emit_op_post_inc(Instruction*); 714 void emit_op_pre_dec(Instruction*); 715 void emit_op_pre_inc(Instruction*); 712 void emit_op_dec(Instruction*); 713 void emit_op_inc(Instruction*); 716 714 void emit_op_profile_did_call(Instruction*); 717 715 void emit_op_profile_will_call(Instruction*); … … 745 743 void emit_op_throw(Instruction*); 746 744 void emit_op_throw_static_error(Instruction*); 747 void emit_op_to_ jsnumber(Instruction*);745 void emit_op_to_number(Instruction*); 748 746 void emit_op_to_primitive(Instruction*); 749 747 void emit_op_unexpected_load(Instruction*); … … 790 788 void emitSlow_op_not(Instruction*, Vector<SlowCaseEntry>::iterator&); 791 789 void emitSlow_op_nstricteq(Instruction*, Vector<SlowCaseEntry>::iterator&); 792 void emitSlow_op_post_dec(Instruction*, Vector<SlowCaseEntry>::iterator&); 793 void emitSlow_op_post_inc(Instruction*, Vector<SlowCaseEntry>::iterator&); 794 void emitSlow_op_pre_dec(Instruction*, Vector<SlowCaseEntry>::iterator&); 795 void emitSlow_op_pre_inc(Instruction*, Vector<SlowCaseEntry>::iterator&); 790 void emitSlow_op_dec(Instruction*, Vector<SlowCaseEntry>::iterator&); 791 void emitSlow_op_inc(Instruction*, Vector<SlowCaseEntry>::iterator&); 796 792 void emitSlow_op_put_by_id(Instruction*, Vector<SlowCaseEntry>::iterator&); 797 793 void emitSlow_op_put_by_val(Instruction*, Vector<SlowCaseEntry>::iterator&); … … 800 796 void emitSlow_op_stricteq(Instruction*, Vector<SlowCaseEntry>::iterator&); 801 797 void emitSlow_op_sub(Instruction*, Vector<SlowCaseEntry>::iterator&); 802 void emitSlow_op_to_ jsnumber(Instruction*, Vector<SlowCaseEntry>::iterator&);798 void emitSlow_op_to_number(Instruction*, Vector<SlowCaseEntry>::iterator&); 803 799 void emitSlow_op_to_primitive(Instruction*, Vector<SlowCaseEntry>::iterator&); 804 800 void emitSlow_op_urshift(Instruction*, Vector<SlowCaseEntry>::iterator&);
Note:
See TracChangeset
for help on using the changeset viewer.