Searched defs:LocalAddress (Results 1 - 13 of 13) sorted by relevance

/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DObjectTransformLayer.h85 void mapSectionAddress(ObjSetHandleT H, const void *LocalAddress, argument
87 BaseLayer.mapSectionAddress(H, LocalAddress, TargetAddr);
H A DObjectLinkingLayer.h64 void mapSectionAddress(const void *LocalAddress, TargetAddress TargetAddr) { argument
67 RTDyld->mapSectionAddress(LocalAddress, TargetAddr);
259 void mapSectionAddress(ObjSetHandleT H, const void *LocalAddress, argument
261 (*H)->mapSectionAddress(LocalAddress, TargetAddr);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOAArch64.h37 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); local
53 assert((((uintptr_t)LocalAddress & 0x3) == 0) &&
64 Addend = *reinterpret_cast<support::ulittle32_t *>(LocalAddress);
66 Addend = *reinterpret_cast<support::ulittle64_t *>(LocalAddress);
70 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
83 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
96 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
104 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
133 void encodeAddend(uint8_t *LocalAddress, unsigned NumBytes, argument
148 assert((((uintptr_t)LocalAddress
307 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
[all...]
H A DRuntimeDyldMachOARM.h38 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); local
44 uint32_t Temp = readBytesUnaligned(LocalAddress, 4);
97 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
114 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
129 uint32_t Temp = readBytesUnaligned(LocalAddress, 4);
130 writeBytesUnaligned((Temp & ~0xffffff) | FinalValue, LocalAddress, 4);
144 uint32_t Insn = readBytesUnaligned(LocalAddress, 4);
146 writeBytesUnaligned(Insn, LocalAddress, 4);
226 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
227 int64_t Immediate = readBytesUnaligned(LocalAddress,
[all...]
H A DRuntimeDyldMachOI386.h86 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
97 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
106 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size);
141 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
143 uint64_t Addend = readBytesUnaligned(LocalAddress, NumBytes);
H A DRuntimeDyldMachOX86_64.h76 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
96 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
104 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size);
157 uint8_t *LocalAddress = Sections[SectionID].getAddressWithOffset(Offset); local
167 SignExtend64(readBytesUnaligned(LocalAddress, NumBytes), NumBytes * 8);
/external/llvm/unittests/ExecutionEngine/Orc/
H A DObjectTransformLayerTest.cpp142 void mapSectionAddress(ObjSetHandleT H, const void *LocalAddress, argument
145 EXPECT_EQ(MockLocalAddress, LocalAddress);
149 void expectMapSectionAddress(ObjSetHandleT H, const void *LocalAddress, argument
152 MockLocalAddress = LocalAddress;
/external/clang/lib/CodeGen/
H A DCGBlocks.h228 Address LocalAddress; member in class:clang::CodeGen::CGBlockInfo
/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h237 virtual void mapSectionAddress(const void *LocalAddress, argument
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp67 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
69 int64_t Addend = readBytesUnaligned(LocalAddress, NumBytes);
138 uint8_t *LocalAddress = Section.getAddress() + RE.Offset; local
142 << " LocalAddress: " << format("%p", LocalAddress)
H A DRuntimeDyld.cpp116 void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress, argument
120 if (Sections[i].getAddress() == LocalAddress) {
961 void RuntimeDyld::mapSectionAddress(const void *LocalAddress, argument
963 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
H A DRuntimeDyldChecker.cpp933 bool LocalAddress) {
934 return Impl->getSectionAddr(FileName, SectionName, LocalAddress);
932 getSectionAddr(StringRef FileName, StringRef SectionName, bool LocalAddress) argument
H A DRuntimeDyldELF.cpp313 DEBUG(dbgs() << "resolveAArch64Relocation, LocalAddress: 0x"
454 DEBUG(dbgs() << "resolveARMRelocation, LocalAddress: "
502 DEBUG(dbgs() << "resolveMIPSRelocation, LocalAddress: "
636 DEBUG(dbgs() << "evaluateMIPS64Relocation, LocalAddress: 0x"
911 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
917 writeInt16BE(LocalAddress, applyPPClo(Value + Addend));
920 writeInt16BE(LocalAddress, applyPPChi(Value + Addend));
923 writeInt16BE(LocalAddress, applyPPCha(Value + Addend));
931 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
937 writeInt16BE(LocalAddress, applyPPCl
1022 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
[all...]

Completed in 148 milliseconds