Changeset 154935 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Aug 31, 2013, 7:02:47 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r154824 r154935 738 738 return checkedReturn(callFrame->vm().throwException(callFrame, error)); 739 739 740 ProgramCodeBlock* codeBlock = &program->generatedBytecode();740 ProgramCodeBlock* codeBlock = program->codeBlock(); 741 741 742 742 if (UNLIKELY(vm.watchdog.didFire(callFrame))) … … 808 808 return checkedReturn(callFrame->vm().throwException(callFrame, compileError)); 809 809 } 810 newCodeBlock = &callData.js.functionExecutable->generatedBytecodeForCall();810 newCodeBlock = callData.js.functionExecutable->codeBlockForCall(); 811 811 ASSERT(!!newCodeBlock); 812 812 newCodeBlock->m_shouldAlwaysBeInlined = false; … … 887 887 return checkedReturn(callFrame->vm().throwException(callFrame, compileError)); 888 888 } 889 newCodeBlock = &constructData.js.functionExecutable->generatedBytecodeForConstruct();889 newCodeBlock = constructData.js.functionExecutable->codeBlockForConstruct(); 890 890 ASSERT(!!newCodeBlock); 891 891 newCodeBlock->m_shouldAlwaysBeInlined = false; … … 962 962 return CallFrameClosure(); 963 963 } 964 CodeBlock* newCodeBlock = &functionExecutable->generatedBytecodeForCall();964 CodeBlock* newCodeBlock = functionExecutable->codeBlockForCall(); 965 965 newCodeBlock->m_shouldAlwaysBeInlined = false; 966 966 … … 1076 1076 if (UNLIKELY(!!compileError)) 1077 1077 return checkedReturn(callFrame->vm().throwException(callFrame, compileError)); 1078 EvalCodeBlock* codeBlock = &eval->generatedBytecode();1078 EvalCodeBlock* codeBlock = eval->codeBlock(); 1079 1079 1080 1080 if (numVariables || numFunctions) {
Note:
See TracChangeset
for help on using the changeset viewer.