Changeset 174401 in webkit for trunk/Source/JavaScriptCore/jit
- Timestamp:
- Oct 7, 2014, 11:57:57 AM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore/jit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.cpp
r174226 r174401 257 257 DEFINE_OP(op_new_array_buffer) 258 258 DEFINE_OP(op_new_func) 259 DEFINE_OP(op_new_captured_func)260 259 DEFINE_OP(op_new_func_exp) 261 260 DEFINE_OP(op_new_object) -
trunk/Source/JavaScriptCore/jit/JIT.h
r174226 r174401 515 515 void emit_op_new_array_buffer(Instruction*); 516 516 void emit_op_new_func(Instruction*); 517 void emit_op_new_captured_func(Instruction*);518 517 void emit_op_new_func_exp(Instruction*); 519 518 void emit_op_new_object(Instruction*); -
trunk/Source/JavaScriptCore/jit/JITOpcodes.cpp
r174294 r174401 1036 1036 } 1037 1037 1038 void JIT::emit_op_new_captured_func(Instruction* currentInstruction)1039 {1040 JITSlowPathCall slowPathCall(this, currentInstruction, slow_path_new_captured_func);1041 slowPathCall.call();1042 }1043 1044 1038 void JIT::emit_op_new_func_exp(Instruction* currentInstruction) 1045 1039 {
Note:
See TracChangeset
for help on using the changeset viewer.