Changeset 101283 in webkit for trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.cpp
- Timestamp:
- Nov 28, 2011, 2:48:17 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.cpp
r100880 r101283 188 188 } 189 189 190 m_codeBlock->addMethodCallLinkInfos(m_methodGets.size());191 for (unsigned i = 0; i < m_methodGets.size(); ++i) {192 MethodCallLinkInfo& info = m_codeBlock->methodCallLinkInfo(i);193 info.cachedStructure.setLocation(linkBuffer.locationOf(m_methodGets[i].m_structToCompare));194 info.cachedPrototypeStructure.setLocation(linkBuffer.locationOf(m_methodGets[i].m_protoStructToCompare));195 info.cachedFunction.setLocation(linkBuffer.locationOf(m_methodGets[i].m_putFunction));196 info.cachedPrototype.setLocation(linkBuffer.locationOf(m_methodGets[i].m_protoObj));197 info.callReturnLocation = linkBuffer.locationOf(m_methodGets[i].m_slowCall);198 }199 200 190 MacroAssemblerCodeRef osrExitThunk = globalData()->getCTIStub(osrExitGenerationThunkGenerator); 201 191 CodeLocationLabel target = CodeLocationLabel(osrExitThunk.code());
Note:
See TracChangeset
for help on using the changeset viewer.