Searched refs:FinalAddress (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 30 uint64_t FinalAddress = Section.LoadAddress + Offset; in resolveRelocation() local 37 << " FinalAddress: " << format("%p", FinalAddress) in resolveRelocation() 50 FinalAddress, in resolveRelocation() 59 FinalAddress, in resolveRelocation() 69 FinalAddress, in resolveRelocation() 80 uint64_t FinalAddress, in resolveI386Relocation() argument 87 Value -= FinalAddress + 4; // see resolveX86_64Relocation in resolveI386Relocation() 109 uint64_t FinalAddress, in resolveX86_64Relocation() argument 120 Value -= FinalAddress + 4; in resolveX86_64Relocation() 150 uint64_t FinalAddress, in resolveARMRelocation() argument [all …]
|
D | RuntimeDyldMachO.h | 30 uint64_t FinalAddress, 37 uint64_t FinalAddress, 44 uint64_t FinalAddress,
|
D | RuntimeDyldELF.cpp | 228 uint64_t FinalAddress = Section.LoadAddress + Offset; in resolveX86_64Relocation() local 229 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress; in resolveX86_64Relocation() 259 uint32_t FinalAddress = ((Section.LoadAddress + Offset) & 0xFFFFFFFF); in resolveX86Relocation() local 260 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress; in resolveX86Relocation() 279 uint32_t FinalAddress = ((Section.LoadAddress + Offset) & 0xFFFFFFFF); in resolveARMRelocation() local 284 << " FinalAddress: " << format("%p",FinalAddress) in resolveARMRelocation() 328 int32_t RelValue = static_cast<int32_t>(Value - FinalAddress - 8); in resolveARMRelocation() 530 uint64_t FinalAddress = (Section.LoadAddress + Offset); in resolvePPC64Relocation() local 531 int32_t delta = static_cast<int32_t>(Value - FinalAddress + Addend); in resolvePPC64Relocation() 538 uint64_t FinalAddress = (Section.LoadAddress + Offset); in resolvePPC64Relocation() local [all …]
|