/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldMachOAArch64.h | 37 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in decodeAddend() local 53 assert((((uintptr_t)LocalAddress & 0x3) == 0) && in decodeAddend() 64 Addend = *reinterpret_cast<support::ulittle32_t *>(LocalAddress); in decodeAddend() 66 Addend = *reinterpret_cast<support::ulittle64_t *>(LocalAddress); in decodeAddend() 70 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 83 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 96 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 104 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 133 void encodeAddend(uint8_t *LocalAddress, unsigned NumBytes, in encodeAddend() argument 148 assert((((uintptr_t)LocalAddress & 0x3) == 0) && in encodeAddend() [all …]
|
D | RuntimeDyldMachOARM.h | 39 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in decodeAddend() local 45 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in decodeAddend() 118 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local 133 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation() 148 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in resolveRelocation() 149 writeBytesUnaligned((Temp & ~0xffffff) | FinalValue, LocalAddress, 4); in resolveRelocation() 163 uint32_t Insn = readBytesUnaligned(LocalAddress, 4); in resolveRelocation() 165 writeBytesUnaligned(Insn, LocalAddress, 4); in resolveRelocation() 239 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in processHALFSECTDIFFRelocation() local 240 int64_t Immediate = readBytesUnaligned(LocalAddress, 4); // Copy the whole instruction out. in processHALFSECTDIFFRelocation()
|
D | RuntimeDyldMachOI386.h | 103 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local 112 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation() 121 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size); in resolveRelocation() 157 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in processSECTDIFFRelocation() local 159 uint64_t Addend = readBytesUnaligned(LocalAddress, NumBytes); in processSECTDIFFRelocation()
|
D | RuntimeDyldMachOX86_64.h | 90 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local 110 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation() 118 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size); in resolveRelocation() 169 uint8_t *LocalAddress = Sections[SectionID].getAddressWithOffset(Offset); in processSubtractRelocation() local 172 SignExtend64(readBytesUnaligned(LocalAddress, NumBytes), NumBytes * 8); in processSubtractRelocation()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
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() 85 Addend = *reinterpret_cast<support::ulittle64_t *>(LocalAddress); in decodeAddend() 89 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 104 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 117 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 126 auto *p = reinterpret_cast<support::aligned_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() [all …]
|
D | RuntimeDyldMachOARM.h | 65 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in decodeAddend() local 71 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in decodeAddend() 82 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in decodeAddend() 88 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in decodeAddend() 206 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local 221 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in resolveRelocation() 226 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in resolveRelocation() 231 writeBytesUnaligned(HighInsn, LocalAddress, 2); in resolveRelocation() 232 writeBytesUnaligned(LowInsn, LocalAddress + 2, 2); in resolveRelocation() 239 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation() [all …]
|
D | RuntimeDyldMachOI386.h | 102 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local 111 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation() 120 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size); in resolveRelocation() 159 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in processSECTDIFFRelocation() local 161 uint64_t Addend = readBytesUnaligned(LocalAddress, NumBytes); in processSECTDIFFRelocation()
|
D | RuntimeDyldMachOX86_64.h | 89 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local 109 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation() 117 writeBytesUnaligned(Value, LocalAddress, 1 << RE.Size); in resolveRelocation() 168 uint8_t *LocalAddress = Sections[SectionID].getAddressWithOffset(Offset); in processSubtractRelocation() local 171 SignExtend64(readBytesUnaligned(LocalAddress, NumBytes), NumBytes * 8); in processSubtractRelocation()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
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() 85 Addend = *reinterpret_cast<support::ulittle64_t *>(LocalAddress); in decodeAddend() 89 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 104 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 117 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 126 auto *p = reinterpret_cast<support::aligned_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() [all …]
|
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() 205 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local 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() 238 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation() [all …]
|
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()
|
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()
|
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/ |
D | WriteBufferingAndExceptionHandlerTest.java | 40 import io.netty.channel.local.LocalAddress; 97 chan.connect(new LocalAddress("bogus")); in connectionFailuresPropagated() 112 LocalAddress addr = new LocalAddress("local"); in channelInactiveFailuresPropagated() 147 LocalAddress addr = new LocalAddress("local"); in channelCloseFailuresPropagated() 182 LocalAddress addr = new LocalAddress("local"); in uncaughtExceptionFailuresPropagated() 225 LocalAddress addr = new LocalAddress("local"); in uncaughtException_closeAtMostOnce() 256 LocalAddress addr = new LocalAddress("local"); in handlerRemovedFailuresPropagated() 311 LocalAddress addr = new LocalAddress("local"); in writesBuffered() 355 LocalAddress addr = new LocalAddress("local"); in uncaughtReadFails()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldELF.cpp | 714 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in resolvePPC32Relocation() local 720 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC32Relocation() 723 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC32Relocation() 726 writeInt16BE(LocalAddress, applyPPCha(Value + Addend)); in resolvePPC32Relocation() 734 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in resolvePPC64Relocation() local 740 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation() 743 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation() 746 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation() 749 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation() 753 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC64Relocation() [all …]
|
/external/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/ |
D | Http2NettyLocalChannelTest.java | 26 import io.netty.channel.local.LocalAddress; 44 .forAddress(new LocalAddress("in-process-1")) in getServerBuilder() 58 .forAddress(new LocalAddress("in-process-1")) in createChannelBuilder()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldELF.cpp | 930 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in resolvePPC32Relocation() local 936 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC32Relocation() 939 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC32Relocation() 942 writeInt16BE(LocalAddress, applyPPCha(Value + Addend)); in resolvePPC32Relocation() 950 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in resolvePPC64Relocation() local 956 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation() 959 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation() 962 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation() 965 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation() 968 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC64Relocation() [all …]
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldELF.cpp | 814 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in resolvePPC32Relocation() local 820 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC32Relocation() 823 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC32Relocation() 826 writeInt16BE(LocalAddress, applyPPCha(Value + Addend)); in resolvePPC32Relocation() 834 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in resolvePPC64Relocation() local 840 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation() 843 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation() 846 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation() 849 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation() 853 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC64Relocation() [all …]
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | ObjectLinkingLayer.h | 48 virtual void mapSectionAddress(const void *LocalAddress, 146 void mapSectionAddress(const void *LocalAddress, in mapSectionAddress() argument 150 PFC->RTDyld->mapSectionAddress(LocalAddress, TargetAddr); in mapSectionAddress() 324 void mapSectionAddress(ObjSetHandleT H, const void *LocalAddress, in mapSectionAddress() argument 326 (*H)->mapSectionAddress(LocalAddress, TargetAddr); in mapSectionAddress()
|
D | ObjectTransformLayer.h | 85 void mapSectionAddress(ObjSetHandleT H, const void *LocalAddress, in mapSectionAddress() argument 87 BaseLayer.mapSectionAddress(H, LocalAddress, TargetAddr); in mapSectionAddress()
|
/external/llvm/unittests/ExecutionEngine/Orc/ |
D | ObjectTransformLayerTest.cpp | 148 void mapSectionAddress(ObjSetHandleT H, const void *LocalAddress, in mapSectionAddress() argument 151 EXPECT_EQ(MockLocalAddress, LocalAddress); in mapSectionAddress() 155 void expectMapSectionAddress(ObjSetHandleT H, const void *LocalAddress, in expectMapSectionAddress() argument 158 MockLocalAddress = LocalAddress; in expectMapSectionAddress()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | RTDyldObjectLinkingLayer.h | 163 virtual void mapSectionAddress(const void *LocalAddress, 284 void mapSectionAddress(const void *LocalAddress, in mapSectionAddress() argument 288 PFC->RTDyld->mapSectionAddress(LocalAddress, TargetAddr); in mapSectionAddress() 453 void mapSectionAddress(VModuleKey K, const void *LocalAddress, in mapSectionAddress() argument 456 LinkedObjects[K]->mapSectionAddress(LocalAddress, TargetAddr); in mapSectionAddress()
|
D | ObjectTransformLayer.h | 107 void mapSectionAddress(VModuleKey K, const void *LocalAddress, in mapSectionAddress() argument 109 BaseLayer.mapSectionAddress(K, LocalAddress, TargetAddr); in mapSectionAddress()
|
/external/coreboot/src/vendorcode/intel/edk2/UDK2017/MdePkg/Include/Protocol/ |
D | Http.h | 124 EFI_IPv4_ADDRESS LocalAddress; member 144 EFI_IPv6_ADDRESS LocalAddress; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
D | RuntimeDyldChecker.h | 172 bool LocalAddress); 176 Optional<uint64_t> getSectionLoadAddress(void *LocalAddress) const;
|
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/Protocol/ |
D | Http.h | 118 EFI_IPv4_ADDRESS LocalAddress; member 138 EFI_IPv6_ADDRESS LocalAddress; member
|