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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOAArch64.h36 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); local
71 assert((((uintptr_t)LocalAddress & 0x3) == 0) &&
83 Addend = *reinterpret_cast<support::ulittle32_t *>(LocalAddress);
85 Addend = *reinterpret_cast<support::ulittle64_t *>(LocalAddress);
89 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
104 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
117 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
126 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress);
155 void encodeAddend(uint8_t *LocalAddress, unsigned NumBytes, argument
171 assert((((uintptr_t)LocalAddress
359 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
490 uint8_t *LocalAddress = Sections[SectionID].getAddressWithOffset(Offset); local
[all...]
H A DRuntimeDyldMachOARM.h65 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); local
71 uint32_t Temp = readBytesUnaligned(LocalAddress, 4);
82 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2);
88 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2);
206 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
221 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2);
226 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2);
231 writeBytesUnaligned(HighInsn, LocalAddress, 2);
232 writeBytesUnaligned(LowInsn, LocalAddress + 2, 2);
239 writeBytesUnaligned(Value + RE.Addend, LocalAddress,
364 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
[all...]
H A DRuntimeDyldMachOX86_64.h89 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
109 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
117 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size);
168 uint8_t *LocalAddress = Sections[SectionID].getAddressWithOffset(Offset); local
171 SignExtend64(readBytesUnaligned(LocalAddress, NumBytes), NumBytes * 8);
H A DRuntimeDyldMachOI386.h102 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); variable
111 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
120 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size);
159 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
161 uint64_t Addend = readBytesUnaligned(LocalAddress, NumBytes);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyldChecker.h167 /// if 'LocalAddress' is true, this returns the address of the section
168 /// within the linker's memory. If 'LocalAddress' is false it returns the
172 bool LocalAddress);
176 Optional<uint64_t> getSectionLoadAddress(void *LocalAddress) const;
H A DRuntimeDyld.h210 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
H A DExecutionEngine.h248 virtual void mapSectionAddress(const void *LocalAddress, argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DObjectTransformLayer.h107 void mapSectionAddress(VModuleKey K, const void *LocalAddress, argument
109 BaseLayer.mapSectionAddress(K, LocalAddress, TargetAddr);
H A DRTDyldObjectLinkingLayer.h163 virtual void mapSectionAddress(const void *LocalAddress,
284 void mapSectionAddress(const void *LocalAddress,
288 PFC->RTDyld->mapSectionAddress(LocalAddress, TargetAddr);
453 void mapSectionAddress(VModuleKey K, const void *LocalAddress, argument
456 LinkedObjects[K]->mapSectionAddress(LocalAddress, TargetAddr);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp376 LLVM_DEBUG(dbgs() << "resolveAArch64Relocation, LocalAddress: 0x"
496 LLVM_DEBUG(dbgs() << "resolveARMRelocation, LocalAddress: "
714 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
720 writeInt16BE(LocalAddress, applyPPClo(Value + Addend));
723 writeInt16BE(LocalAddress, applyPPChi(Value + Addend));
726 writeInt16BE(LocalAddress, applyPPCha(Value + Addend));
734 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
740 writeInt16BE(LocalAddress, applyPPClo(Value + Addend));
743 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3);
746 writeInt16BE(LocalAddress, applyPPCl
828 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
[all...]
H A DRuntimeDyldMachO.cpp69 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); local
71 int64_t Addend = readBytesUnaligned(LocalAddress, NumBytes);
151 uint8_t *LocalAddress = Section.getAddress() + RE.Offset; local
155 << " LocalAddress: " << format("%p", LocalAddress)
H A DRuntimeDyld.cpp158 void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress, argument
162 if (Sections[i].getAddress() == LocalAddress) {
1364 void RuntimeDyld::mapSectionAddress(const void *LocalAddress, argument
1366 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
H A DRuntimeDyldImpl.h557 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
H A DRuntimeDyldChecker.cpp873 bool LocalAddress) {
874 return Impl->getSectionAddr(FileName, SectionName, LocalAddress);
872 getSectionAddr(StringRef FileName, StringRef SectionName, bool LocalAddress) argument
/freebsd-11-stable/crypto/openssh/regress/
H A Daddrmatch.sh29 Match LocalAddress 127.0.0.1,::1
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h280 void mapSectionAddress(const void *LocalAddress,
282 Dyld.mapSectionAddress(LocalAddress, TargetAddress);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.h338 void mapSectionAddress(const void *LocalAddress,
341 if (P.second.count(LocalAddress))
342 ObjectLayer.mapSectionAddress(P.first, LocalAddress, TargetAddress);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.h244 Address LocalAddress; member in class:clang::CodeGen::CGBlockInfo
H A DCGBlocks.cpp38 CapturesNonExternalType(false), LocalAddress(Address::invalid()),
798 blockInfo.LocalAddress = CGF.CreateTempAlloca(blockInfo.StructureType,
843 CGF.Builder.CreateStructGEP(blockInfo.LocalAddress, capture.getIndex());
948 Address blockAddr = blockInfo.LocalAddress;

Completed in 280 milliseconds