/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 | 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()
|
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()
|
/external/llvm-project/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-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/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/ |
D | Http2NettyLocalChannelTest.java | 24 import io.netty.channel.local.LocalAddress; 39 .forAddress(new LocalAddress("in-process-1")) in getServerBuilder() 48 .forAddress(new LocalAddress("in-process-1")) in createChannel()
|
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldELF.cpp | 721 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in resolvePPC32Relocation() local 727 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC32Relocation() 730 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC32Relocation() 733 writeInt16BE(LocalAddress, applyPPCha(Value + Addend)); in resolvePPC32Relocation() 741 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in resolvePPC64Relocation() local 747 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation() 750 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation() 753 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation() 756 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation() 760 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC64Relocation() [all …]
|
/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/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 …]
|
D | RuntimeDyldMachO.cpp | 68 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in processScatteredVANILLA() local 70 int64_t Addend = readBytesUnaligned(LocalAddress, NumBytes); in processScatteredVANILLA() 149 uint8_t *LocalAddress = Section.getAddress() + RE.Offset; in dumpRelocationToResolve() local 153 << " LocalAddress: " << format("%p", LocalAddress) in dumpRelocationToResolve()
|
/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/grpc-grpc-java/benchmarks/src/jmh/java/io/grpc/benchmarks/ |
D | TransportBenchmark.java | 40 import io.netty.channel.local.LocalAddress; 97 LocalAddress address = new LocalAddress(name); in setUp()
|
/external/llvm-project/llvm/include/llvm/ExecutionEngine/ |
D | RuntimeDyldChecker.h | 172 bool LocalAddress); 176 Optional<uint64_t> getSectionLoadAddress(void *LocalAddress) const;
|
/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;
|