Changeset 175508 in webkit for trunk/Source/JavaScriptCore/jit/JITOpcodes.cpp
- Timestamp:
- Nov 3, 2014, 7:36:28 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITOpcodes.cpp
r175426 r175508 671 671 } 672 672 673 void JIT::emit_op_get_scope(Instruction* currentInstruction) 674 { 675 int dst = currentInstruction[1].u.operand; 676 emitGetFromCallFrameHeaderPtr(JSStack::Callee, regT0); 677 loadPtr(Address(regT0, JSFunction::offsetOfScopeChain()), regT0); 678 emitStoreCell(dst, regT0); 679 } 680 673 681 void JIT::emit_op_create_arguments(Instruction* currentInstruction) 674 682 {
Note:
See TracChangeset
for help on using the changeset viewer.