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

  /external/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/llvm/lib/Target/ARM/
ARMJITInfo.cpp 117 extern "C" void ARMCompilationCallbackC(intptr_t StubAddr) {
119 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)StubAddr);
126 if (!sys::Memory::setRangeWritable((void*)StubAddr, 8)) {
129 *(intptr_t *)StubAddr = 0xe51ff004; // ldr pc, [pc, #-4]
130 *(intptr_t *)(StubAddr+4) = NewVal;
131 if (!sys::Memory::setRangeExecutable((void*)StubAddr, 8)) {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 338 uint32_t *StubAddr = (uint32_t*)Addr;
339 *StubAddr = 0xe51ff004; // ldr pc,<label>
340 return (uint8_t*)++StubAddr;
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 740 void *StubAddr = Resolver.getGlobalValueIndirectSym(V, GVAddress);
741 return StubAddr;
    [all...]

Completed in 235 milliseconds