Searched refs:TargetAddress (Results 1 – 12 of 12) sorted by relevance
| /openbsd/src/gnu/llvm/llvm/include/llvm/ExecutionEngine/ |
| 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
|
| D | RuntimeDyld.h | 227 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
|
| D | ExecutionEngine.h | 245 uint64_t TargetAddress) { in mapSectionAddress() argument
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/ |
| D | loongarch.h | 179 uint64_t TargetAddress = E.getTarget().getAddress().getValue(); in applyFixup() local 184 *(ulittle64_t *)FixupPtr = TargetAddress + Addend; in applyFixup() 187 uint64_t Value = TargetAddress + Addend; in applyFixup() 194 int64_t Value = TargetAddress - FixupAddress + Addend; in applyFixup() 210 int64_t Value = TargetAddress - FixupAddress + Addend; in applyFixup() 218 int64_t Value = FixupAddress - TargetAddress + Addend; in applyFixup() 225 *(little64_t *)FixupPtr = TargetAddress - FixupAddress + Addend; in applyFixup() 228 uint64_t Target = TargetAddress + Addend; in applyFixup() 243 uint64_t TargetOffset = (TargetAddress + Addend) & 0xfff; in applyFixup()
|
| /openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/ |
| D | MachO_x86_64.cpp | 346 orc::ExecutorAddr TargetAddress(*(const ulittle64_t *)FixupContent); in addRelocations() local 351 findSymbolByAddress(*TargetNSec, TargetAddress)) in addRelocations() 355 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations() 370 orc::ExecutorAddr TargetAddress(FixupAddress + 4 + in addRelocations() local 376 findSymbolByAddress(*TargetNSec, TargetAddress)) in addRelocations() 380 Addend = TargetAddress - TargetSymbol->getAddress() - 4; in addRelocations() 390 orc::ExecutorAddr TargetAddress = in addRelocations() local 396 findSymbolByAddress(*TargetNSec, TargetAddress)) in addRelocations() 400 Addend = TargetAddress - TargetSymbol->getAddress() - Delta; in addRelocations()
|
| D | MachO_arm64.cpp | 355 orc::ExecutorAddr TargetAddress(*(const ulittle64_t *)FixupContent); in addRelocations() local 360 findSymbolByAddress(*TargetNSec, TargetAddress)) in addRelocations() 364 Addend = TargetAddress - TargetSymbol->getAddress(); in addRelocations()
|
| /openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/MCJIT/ |
| D | MCJIT.h | 273 uint64_t TargetAddress) override { in mapSectionAddress() argument 274 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
| /openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| D | RuntimeDyld.cpp | 161 uint64_t TargetAddress) { in mapSectionAddress() argument 165 reassignSectionAddress(i, TargetAddress); in mapSectionAddress() 1404 uint64_t TargetAddress) { in mapSectionAddress() argument 1405 Dyld->mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
| D | RuntimeDyldImpl.h | 559 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/ARM/MCTargetDesc/ |
| D | ARMInstPrinter.cpp | 333 int64_t TargetAddress; in printOperand() local 334 if (!Constant->evaluateAsAbsolute(TargetAddress)) { in printOperand() 339 O.write_hex(static_cast<uint32_t>(TargetAddress)); in printOperand()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/AArch64/MCTargetDesc/ |
| D | AArch64InstPrinter.cpp | 1767 int64_t TargetAddress; in printAlignedLabel() local 1768 if (BranchTarget && BranchTarget->evaluateAsAbsolute(TargetAddress)) { in printAlignedLabel() 1769 O << formatHex((uint64_t)TargetAddress); in printAlignedLabel()
|
| /openbsd/src/gnu/llvm/llvm/tools/llvm-objdump/ |
| D | llvm-objdump.cpp | 1908 uint64_t TargetAddress = TargetSym->Addr; in disassembleObject() local 1909 uint64_t Disp = Target - TargetAddress; in disassembleObject()
|