| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
| H A D | RuntimeDyldMachOAArch64.h | 36 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in decodeAddend() local 71 assert((((uintptr_t)LocalAddress & 0x3) == 0) && in decodeAddend() 83 Addend = *reinterpret_cast<support::ulittle32_t *>(LocalAddress); in decodeAddend() 155 void encodeAddend(uint8_t *LocalAddress, unsigned NumBytes, in encodeAddend() argument 171 assert((((uintptr_t)LocalAddress & 0x3) == 0) && in encodeAddend() 359 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local 385 encodeAddend(LocalAddress, 1 << RE.Size, RelType, Result); in resolveRelocation() 394 encodeAddend(LocalAddress, /*Size=*/4, RelType, PCRelVal); in resolveRelocation() 404 encodeAddend(LocalAddress, /*Size=*/4, RelType, PCRelVal); in resolveRelocation() 414 encodeAddend(LocalAddress, /*Size=*/4, RelType, Value); in resolveRelocation() [all …]
|
| H A D | RuntimeDyldMachOARM.h | 64 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in decodeAddend() local 70 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in decodeAddend() 81 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in decodeAddend() 87 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in decodeAddend() 220 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in resolveRelocation() 225 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in resolveRelocation() 230 writeBytesUnaligned(HighInsn, LocalAddress, 2); in resolveRelocation() 231 writeBytesUnaligned(LowInsn, LocalAddress + 2, 2); in resolveRelocation() 253 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in resolveRelocation() 271 uint32_t Insn = readBytesUnaligned(LocalAddress, 4); in resolveRelocation() [all …]
|
| H A D | RuntimeDyldMachOI386.h | 101 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local 110 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation() 119 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size); in resolveRelocation() 158 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in processSECTDIFFRelocation() local 160 uint64_t Addend = readBytesUnaligned(LocalAddress, NumBytes); in processSECTDIFFRelocation()
|
| H A D | RuntimeDyldMachOX86_64.h | 88 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local 108 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation() 116 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size); in resolveRelocation() 167 uint8_t *LocalAddress = Sections[SectionID].getAddressWithOffset(Offset); in processSubtractRelocation() local 170 SignExtend64(readBytesUnaligned(LocalAddress, NumBytes), NumBytes * 8); in processSubtractRelocation()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldELF.cpp | 879 uint8_t aalk = *(LocalAddress + 3); in resolvePPC64Relocation() 901 writeInt32BE(LocalAddress, Result); in resolvePPC64Relocation() 917 writeInt32BE(LocalAddress, delta); in resolvePPC64Relocation() 922 writeInt64BE(LocalAddress, Delta); in resolvePPC64Relocation() 925 writeInt64BE(LocalAddress, Value + Addend); in resolvePPC64Relocation() 942 writeInt16BE(LocalAddress, Delta / 2); in resolveSystemZRelocation() 949 writeInt32BE(LocalAddress, Delta / 2); in resolveSystemZRelocation() 955 writeInt16BE(LocalAddress, Delta); in resolveSystemZRelocation() 961 writeInt32BE(LocalAddress, Delta); in resolveSystemZRelocation() 966 writeInt64BE(LocalAddress, Delta); in resolveSystemZRelocation() [all …]
|
| H A D | RuntimeDyldMachO.cpp | 69 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in processScatteredVANILLA() local 71 int64_t Addend = readBytesUnaligned(LocalAddress, NumBytes); in processScatteredVANILLA() 151 uint8_t *LocalAddress = Section.getAddress() + RE.Offset; in dumpRelocationToResolve() local 155 << " LocalAddress: " << format("%p", LocalAddress) in dumpRelocationToResolve()
|
| H A D | RuntimeDyld.cpp | 160 void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress, in mapSectionAddress() argument 164 if (Sections[i].getAddress() == LocalAddress) { in mapSectionAddress() 1403 void RuntimeDyld::mapSectionAddress(const void *LocalAddress, in mapSectionAddress() argument 1405 Dyld->mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
| H A D | RuntimeDyldImpl.h | 565 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
|
| H A D | RuntimeDyldChecker.cpp | 1053 bool LocalAddress) { in getSectionAddr() argument 1054 return Impl->getSectionAddr(FileName, SectionName, LocalAddress); in getSectionAddr()
|
| /freebsd-14.2/stand/efi/include/Protocol/ |
| H A D | Http.h | 124 EFI_IPv4_ADDRESS LocalAddress; member 144 EFI_IPv6_ADDRESS LocalAddress; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | RuntimeDyldChecker.h | 187 bool LocalAddress); 191 std::optional<uint64_t> getSectionLoadAddress(void *LocalAddress) const;
|
| H A D | RuntimeDyld.h | 227 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
|
| H A D | ExecutionEngine.h | 244 virtual void mapSectionAddress(const void *LocalAddress, in mapSectionAddress() argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/ |
| H A D | MCJIT.h | 272 void mapSectionAddress(const void *LocalAddress, in mapSectionAddress() argument 274 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
| /freebsd-14.2/crypto/openssh/regress/ |
| H A D | addrmatch.sh | 29 Match LocalAddress 127.0.0.1,::1
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGBlocks.h | 274 Address LocalAddress; variable
|
| H A D | CGBlocks.cpp | 39 LocalAddress(Address::invalid()), StructureType(nullptr), Block(block) { in CGBlockInfo() 771 blockInfo.LocalAddress = CreateTempAlloca(blockInfo.StructureType, in EmitBlockLiteral() 797 Address blockAddr = blockInfo.LocalAddress; in EmitBlockLiteral()
|