Searched refs:LocalAddress (Results 1 - 20 of 20) sorted by relevance

/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
315 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
431 uint8_t *LocalAddress = Sections[SectionID].getAddressWithOffset(Offset); local
[all...]
H A DRuntimeDyldMachOARM.h39 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); local
45 uint32_t Temp = readBytesUnaligned(LocalAddress, 4);
118 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
133 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
148 uint32_t Temp = readBytesUnaligned(LocalAddress, 4);
149 writeBytesUnaligned((Temp & ~0xffffff) | FinalValue, LocalAddress, 4);
163 uint32_t Insn = readBytesUnaligned(LocalAddress, 4);
165 writeBytesUnaligned(Insn, LocalAddress, 4);
239 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
240 int64_t Immediate = readBytesUnaligned(LocalAddress,
[all...]
H A DRuntimeDyldMachOI386.h103 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
112 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
121 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size);
157 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
159 uint64_t Addend = readBytesUnaligned(LocalAddress, NumBytes);
H A DRuntimeDyldMachOX86_64.h90 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
110 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
118 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size);
169 uint8_t *LocalAddress = Sections[SectionID].getAddressWithOffset(Offset); local
172 SignExtend64(readBytesUnaligned(LocalAddress, NumBytes), NumBytes * 8);
/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.h48 virtual void mapSectionAddress(const void *LocalAddress,
146 void mapSectionAddress(const void *LocalAddress,
150 PFC->RTDyld->mapSectionAddress(LocalAddress, TargetAddr);
324 void mapSectionAddress(ObjSetHandleT H, const void *LocalAddress, argument
326 (*H)->mapSectionAddress(LocalAddress, TargetAddr);
/external/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyldChecker.h93 /// if 'LocalAddress' is true, this returns the address of the section
94 /// within the linker's memory. If 'LocalAddress' is false it returns the
98 bool LocalAddress);
H A DRuntimeDyld.h247 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
H A DExecutionEngine.h236 virtual void mapSectionAddress(const void *LocalAddress, argument
/external/llvm/unittests/ExecutionEngine/Orc/
H A DObjectTransformLayerTest.cpp148 void mapSectionAddress(ObjSetHandleT H, const void *LocalAddress, argument
151 EXPECT_EQ(MockLocalAddress, LocalAddress);
155 void expectMapSectionAddress(ObjSetHandleT H, const void *LocalAddress, argument
158 MockLocalAddress = LocalAddress;
/external/openssh/regress/
H A Daddrmatch.sh29 Match LocalAddress 127.0.0.1,::1
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
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"
930 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
936 writeInt16BE(LocalAddress, applyPPClo(Value + Addend));
939 writeInt16BE(LocalAddress, applyPPChi(Value + Addend));
942 writeInt16BE(LocalAddress, applyPPCha(Value + Addend));
950 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
956 writeInt16BE(LocalAddress, applyPPCl
1041 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
[all...]
H A DRuntimeDyldMachO.cpp68 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
70 int64_t Addend = readBytesUnaligned(LocalAddress, NumBytes);
149 uint8_t *LocalAddress = Section.getAddress() + RE.Offset; local
153 << " LocalAddress: " << format("%p", LocalAddress)
H A DRuntimeDyld.cpp152 void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress, argument
156 if (Sections[i].getAddress() == LocalAddress) {
1068 void RuntimeDyld::mapSectionAddress(const void *LocalAddress, argument
1070 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
H A DRuntimeDyldImpl.h472 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
H A DRuntimeDyldChecker.cpp935 bool LocalAddress) {
936 return Impl->getSectionAddr(FileName, SectionName, LocalAddress);
934 getSectionAddr(StringRef FileName, StringRef SectionName, bool LocalAddress) argument
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h281 void mapSectionAddress(const void *LocalAddress,
283 Dyld.mapSectionAddress(LocalAddress, TargetAddress);
/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.h205 void mapSectionAddress(const void *LocalAddress,
208 if (P.second.count(LocalAddress))
209 ObjectLayer.mapSectionAddress(P.first, LocalAddress, TargetAddress);
/external/clang/lib/CodeGen/
H A DCGBlocks.h228 Address LocalAddress; member in class:clang::CodeGen::CGBlockInfo
H A DCGBlocks.cpp33 LocalAddress(Address::invalid()), StructureType(nullptr), Block(block),
579 blockInfo.LocalAddress = CGF.CreateTempAlloca(blockInfo.StructureType,
613 Address addr = CGF.Builder.CreateStructGEP(blockInfo.LocalAddress,
714 Address blockAddr = blockInfo.LocalAddress;

Completed in 392 milliseconds