Searched refs:LocalAddress (Results 1 – 9 of 9) sorted by relevance
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 24 void RuntimeDyldMachO::resolveRelocation(uint8_t *LocalAddress, in resolveRelocation() argument 33 DEBUG(dbgs() << "resolveRelocation LocalAddress: " << format("%p", LocalAddress) in resolveRelocation() 46 resolveX86_64Relocation(LocalAddress, in resolveRelocation() 55 resolveI386Relocation(LocalAddress, in resolveRelocation() 65 resolveARMRelocation(LocalAddress, in resolveRelocation() 77 resolveI386Relocation(uint8_t *LocalAddress, in resolveI386Relocation() argument 91 uint8_t *p = LocalAddress; in resolveI386Relocation() 106 resolveX86_64Relocation(uint8_t *LocalAddress, in resolveX86_64Relocation() argument 132 uint8_t *p = (uint8_t*)LocalAddress; in resolveX86_64Relocation() 148 resolveARMRelocation(uint8_t *LocalAddress, in resolveARMRelocation() argument [all …]
|
D | RuntimeDyldELF.cpp | 194 void RuntimeDyldELF::resolveX86_64Relocation(uint8_t *LocalAddress, in resolveX86_64Relocation() argument 204 uint64_t *Target = (uint64_t*)(LocalAddress); in resolveX86_64Relocation() 216 uint32_t *Target = reinterpret_cast<uint32_t*>(LocalAddress); in resolveX86_64Relocation() 221 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(LocalAddress); in resolveX86_64Relocation() 231 void RuntimeDyldELF::resolveX86Relocation(uint8_t *LocalAddress, in resolveX86Relocation() argument 238 uint32_t *Target = (uint32_t*)(LocalAddress); in resolveX86Relocation() 244 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(LocalAddress); in resolveX86Relocation() 257 void RuntimeDyldELF::resolveARMRelocation(uint8_t *LocalAddress, in resolveARMRelocation() argument 263 uint32_t* TargetPtr = (uint32_t*)LocalAddress; in resolveARMRelocation() 266 DEBUG(dbgs() << "resolveARMRelocation, LocalAddress: " << LocalAddress in resolveARMRelocation() [all …]
|
D | RuntimeDyldMachO.h | 29 bool resolveI386Relocation(uint8_t *LocalAddress, 36 bool resolveX86_64Relocation(uint8_t *LocalAddress, 43 bool resolveARMRelocation(uint8_t *LocalAddress, 57 virtual void resolveRelocation(uint8_t *LocalAddress,
|
D | RuntimeDyldELF.h | 27 void resolveX86_64Relocation(uint8_t *LocalAddress, 33 void resolveX86Relocation(uint8_t *LocalAddress, 39 void resolveARMRelocation(uint8_t *LocalAddress, 45 virtual void resolveRelocation(uint8_t *LocalAddress,
|
D | RuntimeDyldImpl.h | 200 virtual void resolveRelocation(uint8_t *LocalAddress, 241 void mapSectionAddress(void *LocalAddress, uint64_t TargetAddress);
|
D | RuntimeDyld.cpp | 51 void RuntimeDyldImpl::mapSectionAddress(void *LocalAddress, in mapSectionAddress() argument 54 if (Sections[i].Address == LocalAddress) { in mapSectionAddress() 483 void RuntimeDyld::mapSectionAddress(void *LocalAddress, in mapSectionAddress() argument 485 Dyld->mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.h | 75 virtual void mapSectionAddress(void *LocalAddress, uint64_t TargetAddress) { in mapSectionAddress() argument 76 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | RuntimeDyld.h | 80 void mapSectionAddress(void *LocalAddress, uint64_t TargetAddress);
|
D | ExecutionEngine.h | 247 virtual void mapSectionAddress(void *LocalAddress, uint64_t TargetAddress) { in mapSectionAddress() argument
|