Changeset 48774 in webkit for trunk/JavaScriptCore/jit
- Timestamp:
- Sep 25, 2009, 3:26:44 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITStubs.cpp
r48590 r48774 1183 1183 // purpose. The object is in no way exposed, and as such the check will always pass. 1184 1184 if (slot.slotBase() == baseValue) { 1185 JIT::patchMethodCallProto(codeBlock, methodCallLinkInfo, callee, structure, callFrame->scopeChain()->globalObject ()->methodCallDummy(), STUB_RETURN_ADDRESS);1185 JIT::patchMethodCallProto(codeBlock, methodCallLinkInfo, callee, structure, callFrame->scopeChain()->globalObject->methodCallDummy(), STUB_RETURN_ADDRESS); 1186 1186 return JSValue::encode(result); 1187 1187 } … … 1739 1739 structure = asObject(stackFrame.args[3].jsValue())->inheritorID(); 1740 1740 else 1741 structure = constructor->scope().node()->globalObject ()->emptyObjectStructure();1741 structure = constructor->scope().node()->globalObject->emptyObjectStructure(); 1742 1742 return new (stackFrame.globalData) JSObject(structure); 1743 1743 } … … 2642 2642 Register* argv = newCallFrame - RegisterFile::CallFrameHeaderSize - argCount; 2643 2643 JSValue thisValue = argv[0].jsValue(); 2644 JSGlobalObject* globalObject = callFrame->scopeChain()->globalObject ();2644 JSGlobalObject* globalObject = callFrame->scopeChain()->globalObject; 2645 2645 2646 2646 if (thisValue == globalObject && funcVal == globalObject->evalFunction()) {
Note:
See TracChangeset
for help on using the changeset viewer.