Home
last modified time | relevance | path

Searched refs:TargetAddress (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DRuntimeDyldChecker.h81 MemoryRegionInfo(StringRef Content, JITTargetAddress TargetAddress) in MemoryRegionInfo() argument
83 TargetAddress(TargetAddress) {} in MemoryRegionInfo()
86 MemoryRegionInfo(uint64_t Size, JITTargetAddress TargetAddress) in MemoryRegionInfo() argument
87 : Size(Size), TargetAddress(TargetAddress) {} in MemoryRegionInfo()
121 void setTargetAddress(JITTargetAddress TargetAddress) { in setTargetAddress() argument
122 assert(!this->TargetAddress && "TargetAddress already set"); in setTargetAddress()
123 this->TargetAddress = TargetAddress; in setTargetAddress()
127 JITTargetAddress getTargetAddress() const { return TargetAddress; } in getTargetAddress()
132 JITTargetAddress TargetAddress = 0; variable
DRuntimeDyld.h210 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
DExecutionEngine.h249 uint64_t TargetAddress) { in mapSectionAddress() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachO_x86_64.cpp272 JITTargetAddress TargetAddress = *(const ulittle64_t *)FixupContent; in addRelocations() local
273 if (auto TargetSymbolOrErr = findSymbolByAddress(TargetAddress)) in addRelocations()
277 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations()
291 JITTargetAddress TargetAddress = in addRelocations() local
293 if (auto TargetSymbolOrErr = findSymbolByAddress(TargetAddress)) in addRelocations()
297 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations()
305 JITTargetAddress TargetAddress = in addRelocations() local
307 if (auto TargetSymbolOrErr = findSymbolByAddress(TargetAddress)) in addRelocations()
311 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations()
DMachO_arm64.cpp299 JITTargetAddress TargetAddress = *(const ulittle64_t *)FixupContent; in addRelocations() local
300 if (auto TargetSymbolOrErr = findSymbolByAddress(TargetAddress)) in addRelocations()
304 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.h281 uint64_t TargetAddress) override { in mapSectionAddress() argument
282 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.h339 uint64_t TargetAddress) override { in mapSectionAddress() argument
342 ObjectLayer.mapSectionAddress(P.first, LocalAddress, TargetAddress); in mapSectionAddress()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp159 uint64_t TargetAddress) { in mapSectionAddress() argument
163 reassignSectionAddress(i, TargetAddress); in mapSectionAddress()
1365 uint64_t TargetAddress) { in mapSectionAddress() argument
1366 Dyld->mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
DRuntimeDyldImpl.h557 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMInstPrinter.cpp332 int64_t TargetAddress; in printOperand() local
333 if (!Constant->evaluateAsAbsolute(TargetAddress)) { in printOperand()
338 O.write_hex(static_cast<uint32_t>(TargetAddress)); in printOperand()