Lines Matching refs:callLinkInfo
545 CallLinkInfo& info = m_codeBlock->callLinkInfo(i); in privateCompile()
580 void JIT::unlinkCall(CallLinkInfo* callLinkInfo) in unlinkCall() argument
585 RepatchBuffer repatchBuffer(callLinkInfo->ownerCodeBlock.get()); in unlinkCall()
587 repatchBuffer.repatch(callLinkInfo->hotPathBegin, 0); in unlinkCall()
589 repatchBuffer.repatch(callLinkInfo->hotPathBegin, JSValue::encode(JSValue())); in unlinkCall()
593 …erCodeBlock, CodeBlock* calleeCodeBlock, JITCode& code, CallLinkInfo* callLinkInfo, int callerArgC… in linkCall() argument
600 ASSERT(!callLinkInfo->isLinked()); in linkCall()
603 calleeCodeBlock->addCaller(callLinkInfo); in linkCall()
605 repatchBuffer.repatch(callLinkInfo->hotPathBegin, callee); in linkCall()
606 repatchBuffer.relink(callLinkInfo->hotPathOther, code.addressForCall()); in linkCall()
610 repatchBuffer.relink(callLinkInfo->callReturnLocation, globalData->jitStubs.ctiVirtualCall()); in linkCall()