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 34 << format("%p", LocalAddress) in resolveRelocation() 47 resolveX86_64Relocation(LocalAddress, in resolveRelocation() 56 resolveI386Relocation(LocalAddress, in resolveRelocation() 66 resolveARMRelocation(LocalAddress, in resolveRelocation() 77 bool RuntimeDyldMachO::resolveI386Relocation(uint8_t *LocalAddress, in resolveI386Relocation() argument 91 uint8_t *p = LocalAddress; in resolveI386Relocation() 105 bool RuntimeDyldMachO::resolveX86_64Relocation(uint8_t *LocalAddress, in resolveX86_64Relocation() argument 131 uint8_t *p = (uint8_t*)LocalAddress; in resolveX86_64Relocation() 146 bool RuntimeDyldMachO::resolveARMRelocation(uint8_t *LocalAddress, in resolveARMRelocation() argument [all …]
|
D | RuntimeDyldELF.h | 27 void resolveX86_64Relocation(uint8_t *LocalAddress, 33 void resolveX86Relocation(uint8_t *LocalAddress, 39 void resolveARMRelocation(uint8_t *LocalAddress, 45 void resolveMIPSRelocation(uint8_t *LocalAddress, 51 virtual void resolveRelocation(uint8_t *LocalAddress,
|
D | RuntimeDyldELF.cpp | 193 void RuntimeDyldELF::resolveX86_64Relocation(uint8_t *LocalAddress, in resolveX86_64Relocation() argument 203 uint64_t *Target = (uint64_t*)(LocalAddress); in resolveX86_64Relocation() 214 uint32_t *Target = reinterpret_cast<uint32_t*>(LocalAddress); in resolveX86_64Relocation() 219 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(LocalAddress); in resolveX86_64Relocation() 229 void RuntimeDyldELF::resolveX86Relocation(uint8_t *LocalAddress, in resolveX86Relocation() argument 236 uint32_t *Target = (uint32_t*)(LocalAddress); in resolveX86Relocation() 242 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(LocalAddress); in resolveX86Relocation() 255 void RuntimeDyldELF::resolveARMRelocation(uint8_t *LocalAddress, in resolveARMRelocation() argument 261 uint32_t* TargetPtr = (uint32_t*)LocalAddress; in resolveARMRelocation() 264 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, 58 virtual void resolveRelocation(uint8_t *LocalAddress,
|
D | RuntimeDyldImpl.h | 238 virtual void resolveRelocation(uint8_t *LocalAddress, 290 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() 495 void RuntimeDyld::mapSectionAddress(void *LocalAddress, in mapSectionAddress() argument 497 Dyld->mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.h | 74 virtual void mapSectionAddress(void *LocalAddress, uint64_t TargetAddress) { in mapSectionAddress() argument 75 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | RuntimeDyld.h | 87 void mapSectionAddress(void *LocalAddress, uint64_t TargetAddress);
|
D | ExecutionEngine.h | 247 virtual void mapSectionAddress(void *LocalAddress, uint64_t TargetAddress) { in mapSectionAddress() argument
|