Searched refs:m_jsCalls (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGJITCompiler.cpp203 m_codeBlock->setNumberOfCallLinkInfos(m_jsCalls.size());
204 for (unsigned i = 0; i < m_jsCalls.size(); ++i) {
206 info.callType = m_jsCalls[i].m_callType;
208 info.codeOrigin = m_jsCalls[i].m_codeOrigin;
209 linkBuffer.link(m_jsCalls[i].m_slowCall, FunctionPtr((m_vm->getCTIStub(info.callType == CallLinkInfo::Construct ? linkConstructThunkGenerator : linkCallThunkGenerator)).code().executableAddress()));
210 info.callReturnLocation = linkBuffer.locationOfNearCall(m_jsCalls[i].m_slowCall);
211 info.hotPathBegin = linkBuffer.locationOf(m_jsCalls[i].m_targetToCheck);
212 info.hotPathOther = linkBuffer.locationOfNearCall(m_jsCalls[i].m_fastCall);
213 info.calleeGPR = static_cast<unsigned>(m_jsCalls[i].m_callee);
H A DDFGJITCompiler.h366 m_jsCalls.append(JSCallRecord(fastCall, slowCall, targetToCheck, callType, callee, codeOrigin));
468 Vector<JSCallRecord, 4> m_jsCalls; member in class:JSC::DFG::JITCompiler

Completed in 134 milliseconds