Changeset 175426 in webkit for trunk/Source/JavaScriptCore/jit/JITOpcodes.cpp
- Timestamp:
- Oct 31, 2014, 2:27:10 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITOpcodes.cpp
r174401 r175426 445 445 void JIT::emit_op_push_with_scope(Instruction* currentInstruction) 446 446 { 447 emitGetVirtualRegister(currentInstruction[ 1].u.operand, regT0);447 emitGetVirtualRegister(currentInstruction[2].u.operand, regT0); 448 448 callOperation(operationPushWithScope, regT0); 449 449 } … … 507 507 void JIT::emit_op_push_name_scope(Instruction* currentInstruction) 508 508 { 509 emitGetVirtualRegister(currentInstruction[ 2].u.operand, regT0);510 callOperation(operationPushNameScope, &m_codeBlock->identifier(currentInstruction[ 1].u.operand), regT0, currentInstruction[3].u.operand, currentInstruction[4].u.operand);509 emitGetVirtualRegister(currentInstruction[3].u.operand, regT0); 510 callOperation(operationPushNameScope, &m_codeBlock->identifier(currentInstruction[2].u.operand), regT0, currentInstruction[4].u.operand, currentInstruction[5].u.operand); 511 511 } 512 512
Note:
See TracChangeset
for help on using the changeset viewer.