Changeset 122392 in webkit for trunk/Source/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Jul 11, 2012, 5:12:03 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.cpp
r121925 r122392 740 740 info.callType = m_callStructureStubCompilationInfo[i].callType; 741 741 info.bytecodeIndex = m_callStructureStubCompilationInfo[i].bytecodeIndex; 742 info.callReturnLocation = CodeLocationLabel(patchBuffer.locationOfNearCall(m_callStructureStubCompilationInfo[i].callReturnLocation));742 info.callReturnLocation = patchBuffer.locationOfNearCall(m_callStructureStubCompilationInfo[i].callReturnLocation); 743 743 info.hotPathBegin = patchBuffer.locationOf(m_callStructureStubCompilationInfo[i].hotPathBegin); 744 744 info.hotPathOther = patchBuffer.locationOfNearCall(m_callStructureStubCompilationInfo[i].hotPathOther); … … 803 803 // Patch the slow patch so we do not continue to try to link. 804 804 if (kind == CodeForCall) { 805 repatchBuffer.relink( CodeLocationNearCall(callLinkInfo->callReturnLocation), globalData->jitStubs->ctiVirtualCall());805 repatchBuffer.relink(callLinkInfo->callReturnLocation, globalData->jitStubs->ctiVirtualCall()); 806 806 return; 807 807 } 808 808 809 809 ASSERT(kind == CodeForConstruct); 810 repatchBuffer.relink( CodeLocationNearCall(callLinkInfo->callReturnLocation), globalData->jitStubs->ctiVirtualConstruct());810 repatchBuffer.relink(callLinkInfo->callReturnLocation, globalData->jitStubs->ctiVirtualConstruct()); 811 811 } 812 812
Note:
See TracChangeset
for help on using the changeset viewer.