/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-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldMachOAArch64.h | 37 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in decodeAddend() local 72 assert((((uintptr_t)LocalAddress & 0x3) == 0) && in decodeAddend() 84 Addend = *reinterpret_cast<support::ulittle32_t *>(LocalAddress); in decodeAddend() 86 Addend = *reinterpret_cast<support::ulittle64_t *>(LocalAddress); in decodeAddend() 90 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 105 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 118 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 127 auto *p = reinterpret_cast<support::aligned_ulittle32_t *>(LocalAddress); in decodeAddend() 156 void encodeAddend(uint8_t *LocalAddress, unsigned NumBytes, in encodeAddend() argument 172 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 | 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/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldELF.cpp | 704 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in resolvePPC32Relocation() local 710 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC32Relocation() 713 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC32Relocation() 716 writeInt16BE(LocalAddress, applyPPCha(Value + Addend)); in resolvePPC32Relocation() 724 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in resolvePPC64Relocation() local 730 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation() 733 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation() 736 writeInt16BE(LocalAddress, applyPPClo(Value + Addend)); in resolvePPC64Relocation() 739 writeInt16BE(LocalAddress, applyPPClo(Value + Addend) & ~3); in resolvePPC64Relocation() 743 writeInt16BE(LocalAddress, applyPPChi(Value + Addend)); in resolvePPC64Relocation() [all …]
|
D | RuntimeDyldMachO.cpp | 70 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in processScatteredVANILLA() local 72 int64_t Addend = readBytesUnaligned(LocalAddress, NumBytes); in processScatteredVANILLA() 152 uint8_t *LocalAddress = Section.getAddress() + RE.Offset; in dumpRelocationToResolve() local 156 << " LocalAddress: " << format("%p", LocalAddress) in dumpRelocationToResolve()
|
/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/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | RTDyldObjectLinkingLayer.h | 65 void mapSectionAddress(VModuleKey K, const void *LocalAddress, 113 virtual void mapSectionAddress(const void *LocalAddress, 234 void mapSectionAddress(const void *LocalAddress, in mapSectionAddress() argument 238 PFC->RTDyld->mapSectionAddress(LocalAddress, TargetAddr); in mapSectionAddress() 388 void mapSectionAddress(VModuleKey K, const void *LocalAddress, in mapSectionAddress() argument 391 LinkedObjects[K]->mapSectionAddress(LocalAddress, TargetAddr); in mapSectionAddress()
|
D | ObjectTransformLayer.h | 95 void mapSectionAddress(VModuleKey K, const void *LocalAddress, in mapSectionAddress() argument 97 BaseLayer.mapSectionAddress(K, LocalAddress, TargetAddr); in mapSectionAddress()
|
/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/ |
D | RuntimeDyldChecker.h | 100 bool LocalAddress); 104 Optional<uint64_t> getSectionLoadAddress(void *LocalAddress) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/ |
D | ObjectTransformLayerTest.cpp | 135 void mapSectionAddress(VModuleKey K, const void *LocalAddress, in mapSectionAddress() argument 138 EXPECT_EQ(MockLocalAddress, LocalAddress); in mapSectionAddress() 142 void expectMapSectionAddress(VModuleKey K, const void *LocalAddress, in expectMapSectionAddress() argument 145 MockLocalAddress = LocalAddress; in expectMapSectionAddress()
|
/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/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/grpc-grpc-java/netty/src/test/java/io/grpc/netty/ |
D | ProtocolNegotiatorsTest.java | 45 import io.netty.channel.local.LocalAddress; 318 LocalAddress proxy = new LocalAddress("httpProxy_completes"); in httpProxy_completes() 382 LocalAddress proxy = new LocalAddress("httpProxy_500"); in httpProxy_500()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/ |
D | RTDyldObjectLinkingLayer.cpp | 167 VModuleKey K, const void *LocalAddress, JITTargetAddress TargetAddr) const { in mapSectionAddress() argument 173 ActiveRTDyldItr->second->mapSectionAddress(LocalAddress, TargetAddr); in mapSectionAddress()
|
/external/llvm/lib/ExecutionEngine/Orc/ |
D | OrcMCJITReplacement.h | 205 void mapSectionAddress(const void *LocalAddress, in mapSectionAddress() argument 208 if (P.second.count(LocalAddress)) in mapSectionAddress() 209 ObjectLayer.mapSectionAddress(P.first, LocalAddress, TargetAddress); in mapSectionAddress()
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | RuntimeDyldChecker.h | 98 bool LocalAddress);
|