Home
last modified time | relevance | path

Searched refs:StubCallAddr (Results 1 – 1 of 1) sorted by relevance

/external/llvm/lib/Target/PowerPC/
DPPCJITInfo.cpp312 unsigned *StubCallAddr = StubCallAddrPlus4 - 1; in LLVMPPCCompilationCallback() local
315 void *Target = JITCompilerFunction(StubCallAddr); in LLVMPPCCompilationCallback()
336 if ((*StubCallAddr >> 26) == 18) in LLVMPPCCompilationCallback()
337 StubCallAddr -= 3; in LLVMPPCCompilationCallback()
339 assert((*StubCallAddr >> 26) == 19 && "Call in stub is not indirect!"); in LLVMPPCCompilationCallback()
340 StubCallAddr -= is64Bit ? 9 : 6; in LLVMPPCCompilationCallback()
345 EmitBranchToAt((intptr_t)StubCallAddr, (intptr_t)Target, false, is64Bit); in LLVMPPCCompilationCallback()
346 sys::Memory::InvalidateInstructionCache(StubCallAddr, 7*4); in LLVMPPCCompilationCallback()