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

  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsJITInfo.cpp 119 extern "C" void MipsCompilationCallbackC(intptr_t StubAddr) {
121 intptr_t NewVal = (intptr_t) JITCompilerFunction((void*) StubAddr);
136 *(intptr_t *)(StubAddr) = 0xf << 26 | 25 << 16 | Hi;
137 *(intptr_t *)(StubAddr + 4) = 9 << 26 | 25 << 21 | 25 << 16 | Lo;
138 *(intptr_t *)(StubAddr + 8) = 25 << 21 | 8;
139 *(intptr_t *)(StubAddr + 12) = 0;
141 sys::Memory::InvalidateInstructionCache((void*) StubAddr, 16);
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMJITInfo.cpp 116 extern "C" void ARMCompilationCallbackC(intptr_t StubAddr) {
118 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)StubAddr);
125 if (!sys::Memory::setRangeWritable((void*)StubAddr, 8)) {
128 *(intptr_t *)StubAddr = 0xe51ff004; // ldr pc, [pc, #-4]
129 *(intptr_t *)(StubAddr+4) = NewVal;
130 if (!sys::Memory::setRangeExecutable((void*)StubAddr, 8)) {
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IndirectionUtils.h 215 virtual Error createStub(StringRef StubName, TargetAddress StubAddr,
242 Error createStub(StringRef StubName, TargetAddress StubAddr,
247 createStubInternal(StubName, StubAddr, StubFlags);
268 void *StubAddr = IndirectStubsInfos[Key.first].getStub(Key.second);
269 assert(StubAddr && "Missing stub address");
271 static_cast<TargetAddress>(reinterpret_cast<uintptr_t>(StubAddr));
CompileOnDemandLayer.h 330 ConstantInt *StubAddr =
334 StubAddr, F->getType());
OrcRemoteTargetClient.h 453 Error createStub(StringRef StubName, TargetAddress StubAddr,
458 return createStubInternal(StubName, StubAddr, StubFlags);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 361 uint64_t StubAddr;
363 std::tie(StubAddr, ErrorMsg) = Checker.getStubAddrFor(
369 return std::make_pair(EvalResult(StubAddr), RemainingExpr);
398 uint64_t StubAddr;
400 std::tie(StubAddr, ErrorMsg) = Checker.getSectionAddr(
406 return std::make_pair(EvalResult(StubAddr), RemainingExpr);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITEmitter.cpp 744 void *StubAddr = Resolver.getGlobalValueIndirectSym(V, GVAddress);
745 return StubAddr;
    [all...]

Completed in 671 milliseconds