Changeset 107860 in webkit for trunk/Source/JavaScriptCore/interpreter/CallFrame.cpp
- Timestamp:
- Feb 15, 2012, 5:29:12 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/CallFrame.cpp
r107499 r107860 97 97 ReturnAddressPtr currentReturnPC = pc.jitReturnAddress(); 98 98 99 if (!machineCodeBlock->codeOriginForReturn(currentReturnPC, codeOrigin))100 return this; // Not currently in inlined code.99 bool hasCodeOrigin = machineCodeBlock->codeOriginForReturn(currentReturnPC, codeOrigin); 100 ASSERT_UNUSED(hasCodeOrigin, hasCodeOrigin); 101 101 } else { 102 unsigned index = codeOriginIndexForDFGWithInlining(); 103 if (index == UINT_MAX) 104 return this; // Not currently in inlined code. 105 102 unsigned index = codeOriginIndexForDFG(); 106 103 codeOrigin = machineCodeBlock->codeOrigin(index); 107 104 } 105 106 if (!codeOrigin.inlineCallFrame) 107 return this; // Not currently in inlined code. 108 108 109 109 for (InlineCallFrame* inlineCallFrame = codeOrigin.inlineCallFrame; inlineCallFrame;) {
Note:
See TracChangeset
for help on using the changeset viewer.