Changeset 223002 in webkit for trunk/Source/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Oct 6, 2017, 3:12:41 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.cpp
r222791 r223002 112 112 ASSERT(!m_bytecodeOffset); 113 113 114 copyCalleeSavesFromFrameOrRegisterTo EntryFrameCalleeSavesBuffer(vm()->topEntryFrame);114 copyCalleeSavesFromFrameOrRegisterToVMEntryFrameCalleeSavesBuffer(*vm()); 115 115 116 116 callOperation(operationOptimize, m_bytecodeOffset); … … 886 886 m_exceptionChecksWithCallFrameRollback.link(this); 887 887 888 copyCalleeSavesTo EntryFrameCalleeSavesBuffer(vm()->topEntryFrame);888 copyCalleeSavesToVMEntryFrameCalleeSavesBuffer(*vm()); 889 889 890 890 // lookupExceptionHandlerFromCallerFrame is passed two arguments, the VM and the exec (the CallFrame*). … … 906 906 m_exceptionChecks.link(this); 907 907 908 copyCalleeSavesTo EntryFrameCalleeSavesBuffer(vm()->topEntryFrame);908 copyCalleeSavesToVMEntryFrameCalleeSavesBuffer(*vm()); 909 909 910 910 // lookupExceptionHandler is passed two arguments, the VM and the exec (the CallFrame*).
Note:
See TracChangeset
for help on using the changeset viewer.