Changeset 40813 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Feb 10, 2009, 12:43:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r40396 r40813 866 866 if (!codeBlock->jitCode()) 867 867 JIT::compile(scopeChain->globalData, codeBlock); 868 result = JIT::execute(codeBlock->jitCode(),&m_registerFile, newCallFrame, scopeChain->globalData, exception);868 result = codeBlock->jitCode().execute(&m_registerFile, newCallFrame, scopeChain->globalData, exception); 869 869 #else 870 870 result = privateExecute(Normal, &m_registerFile, newCallFrame, exception); … … 932 932 if (!codeBlock->jitCode()) 933 933 JIT::compile(scopeChain->globalData, codeBlock); 934 result = JIT::execute(codeBlock->jitCode(),&m_registerFile, newCallFrame, scopeChain->globalData, exception);934 result = codeBlock->jitCode().execute(&m_registerFile, newCallFrame, scopeChain->globalData, exception); 935 935 #else 936 936 result = privateExecute(Normal, &m_registerFile, newCallFrame, exception); … … 1024 1024 if (!codeBlock->jitCode()) 1025 1025 JIT::compile(scopeChain->globalData, codeBlock); 1026 result = JIT::execute(codeBlock->jitCode(),&m_registerFile, newCallFrame, scopeChain->globalData, exception);1026 result = codeBlock->jitCode().execute(&m_registerFile, newCallFrame, scopeChain->globalData, exception); 1027 1027 #else 1028 1028 result = privateExecute(Normal, &m_registerFile, newCallFrame, exception); … … 4830 4830 ctiPatchCallByReturnAddress(ARG_returnAddress2, ARG_globalData->interpreter->m_ctiVirtualCallLink); 4831 4831 4832 return codeBlock->jitCode() ;4832 return codeBlock->jitCode().addressForCall(); 4833 4833 } 4834 4834 … … 4845 4845 JIT::linkCall(callee, codeBlock, codeBlock->jitCode(), callLinkInfo, ARG_int3); 4846 4846 4847 return codeBlock->jitCode() ;4847 return codeBlock->jitCode().addressForCall(); 4848 4848 } 4849 4849
Note:
See TracChangeset
for help on using the changeset viewer.