Changeset 59064 in webkit for trunk/JavaScriptCore/jit/JITOpcodes.cpp
- Timestamp:
- May 9, 2010, 6:41:07 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITOpcodes.cpp
r59056 r59064 964 964 } 965 965 966 void JIT::emit_op_new_regexp(Instruction* currentInstruction) 967 { 968 JITStubCall stubCall(this, cti_op_new_regexp); 969 stubCall.addArgument(ImmPtr(m_codeBlock->regexp(currentInstruction[2].u.operand))); 970 stubCall.call(currentInstruction[1].u.operand); 971 } 972 966 973 void JIT::emit_op_bitor(Instruction* currentInstruction) 967 974 { … … 1630 1637 } 1631 1638 1639 void JIT::emit_op_new_regexp(Instruction* currentInstruction) 1640 { 1641 JITStubCall stubCall(this, cti_op_new_regexp); 1642 stubCall.addArgument(ImmPtr(m_codeBlock->regexp(currentInstruction[2].u.operand))); 1643 stubCall.call(currentInstruction[1].u.operand); 1644 } 1645 1632 1646 // For both JSValue32_64 and JSValue32 1633 1647 #if ENABLE(JIT_OPTIMIZE_MOD)
Note:
See TracChangeset
for help on using the changeset viewer.