HomeSort by relevance Sort by last modified time
    Searched refs:callLinkInfo (Results 1 - 4 of 4) sorted by null

  /external/webkit/JavaScriptCore/jit/
JIT.cpp 545 CallLinkInfo& info = m_codeBlock->callLinkInfo(i);
580 void JIT::unlinkCall(CallLinkInfo* callLinkInfo)
585 RepatchBuffer repatchBuffer(callLinkInfo->ownerCodeBlock.get());
587 repatchBuffer.repatch(callLinkInfo->hotPathBegin, 0);
589 repatchBuffer.repatch(callLinkInfo->hotPathBegin, JSValue::encode(JSValue()));
593 void JIT::linkCall(JSFunction* callee, CodeBlock* callerCodeBlock, CodeBlock* calleeCodeBlock, JITCode& code, CallLinkInfo* callLinkInfo, int callerArgCount, JSGlobalData* globalData)
600 ASSERT(!callLinkInfo->isLinked())
    [all...]
JITStubs.cpp     [all...]
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.h 103 struct CallLinkInfo {
104 CallLinkInfo()
199 inline void* getCallLinkInfoReturnLocation(CallLinkInfo* callLinkInfo)
201 return callLinkInfo->callReturnLocation.executableAddress();
305 void addCaller(CallLinkInfo* caller)
312 void removeCaller(CallLinkInfo* caller)
329 CallLinkInfo& getCallLinkInfo(ReturnAddressPtr returnAddress)
331 return *(binaryChop<CallLinkInfo, void*, getCallLinkInfoReturnLocation>(m_callLinkInfos.begin(), m_callLinkInfos.size(), returnAddress.value()));
402 void addCallLinkInfo() { m_callLinkInfos.append(CallLinkInfo()); }
    [all...]
CodeBlock.cpp     [all...]

Completed in 73 milliseconds