Searched refs:TargetAddress (Results 1 – 12 of 12) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/ |
| H A D | RuntimeDyldChecker.h | 81 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 D | RuntimeDyld.h | 214 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
|
| H A D | ExecutionEngine.h | 246 uint64_t TargetAddress) { in mapSectionAddress() argument
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | MachO_x86_64.cpp | 333 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 D | MachO_arm64.cpp | 318 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 D | MCJIT.h | 280 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 D | TPCIndirectionUtils.cpp | 120 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 D | RuntimeDyld.cpp | 159 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 D | RuntimeDyldImpl.h | 555 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64InstPrinter.cpp | 1371 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 D | ARMInstPrinter.cpp | 332 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 D | llvm-objdump.cpp | 1475 uint64_t TargetAddress = TargetSym->Addr; in disassembleObject() local 1476 uint64_t Disp = Target - TargetAddress; in disassembleObject()
|