Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyldChecker.h81 MemoryRegionInfo(ArrayRef<char> 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
H A DRuntimeDyld.h214 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
H A DExecutionEngine.h246 uint64_t TargetAddress) { in mapSectionAddress() argument
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DMachO_x86_64.cpp333 JITTargetAddress TargetAddress = *(const ulittle64_t *)FixupContent; in addRelocations() local
334 if (auto TargetSymbolOrErr = findSymbolByAddress(TargetAddress)) in addRelocations()
338 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations()
353 JITTargetAddress TargetAddress = in addRelocations() local
355 if (auto TargetSymbolOrErr = findSymbolByAddress(TargetAddress)) in addRelocations()
359 Addend = TargetAddress - TargetSymbol->getAddress() - 4; in addRelocations()
369 JITTargetAddress TargetAddress = in addRelocations() local
371 if (auto TargetSymbolOrErr = findSymbolByAddress(TargetAddress)) in addRelocations()
375 Addend = TargetAddress - TargetSymbol->getAddress() - Delta; in addRelocations()
H A DMachO_arm64.cpp318 JITTargetAddress TargetAddress = *(const ulittle64_t *)FixupContent; in addRelocations() local
319 if (auto TargetSymbolOrErr = findSymbolByAddress(TargetAddress)) in addRelocations()
323 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h280 uint64_t TargetAddress) override { in mapSectionAddress() argument
281 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DTPCIndirectionUtils.cpp120 auto TargetAddress = (*Alloc)->getTargetMemory(TrampolinePagePermissions); in grow() local
122 TPCIU.getABISupport().writeTrampolines(WorkingMemory.data(), TargetAddress, in grow()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp159 uint64_t TargetAddress) { in mapSectionAddress() argument
163 reassignSectionAddress(i, TargetAddress); in mapSectionAddress()
1377 uint64_t TargetAddress) { in mapSectionAddress() argument
1378 Dyld->mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
H A DRuntimeDyldImpl.h555 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp1371 int64_t TargetAddress; in printAlignedLabel() local
1372 if (BranchTarget && BranchTarget->evaluateAsAbsolute(TargetAddress)) { in printAlignedLabel()
1373 O << formatHex(TargetAddress); in printAlignedLabel()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1475 uint64_t TargetAddress = TargetSym->Addr; in disassembleObject() local
1476 uint64_t Disp = Target - TargetAddress; in disassembleObject()