| /openbsd-src/gnu/llvm/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 | 227 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
|
| H A D | ExecutionEngine.h | 245 uint64_t TargetAddress) { in mapSectionAddress() argument
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A 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/ |
| H A 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()
|
| H A 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/tools/llvm-profgen/ |
| H A D | ProfileGenerator.cpp | 444 uint64_t TargetAddress = Item.first.second; in collectFunctionsFromRawProfile() local 447 if (FuncRange *FRange = Binary->findFuncRange(TargetAddress)) in collectFunctionsFromRawProfile() 575 uint64_t TargetAddress = Entry.first.second; in populateBoundarySamplesWithProbesForAllFunctions() local 579 StringRef CalleeName = getCalleeNameForAddress(TargetAddress); in populateBoundarySamplesWithProbesForAllFunctions() 694 ProfileGeneratorBase::getCalleeNameForAddress(uint64_t TargetAddress) { in getCalleeNameForAddress() argument 696 auto *FRange = Binary->findFuncRangeForStartAddr(TargetAddress); in getCalleeNameForAddress() 710 uint64_t TargetAddress = Entry.first.second; in populateBoundarySamplesForAllFunctions() local 714 StringRef CalleeName = getCalleeNameForAddress(TargetAddress); in populateBoundarySamplesForAllFunctions() 893 uint64_t TargetAddress = Entry.first.second; in populateBoundarySamplesForFunction() local 897 StringRef CalleeName = getCalleeNameForAddress(TargetAddress); in populateBoundarySamplesForFunction() [all …]
|
| H A D | PerfReader.cpp | 873 uint64_t TargetAddress = LBR.Target; in computeCounterFromLBR() local 878 if (Binary->addressIsCode(TargetAddress)) { in computeCounterFromLBR() 879 Counter.recordBranchCount(SourceAddress, TargetAddress, Repeat); in computeCounterFromLBR() 884 uint64_t StartAddress = TargetAddress; in computeCounterFromLBR()
|
| H A D | ProfileGenerator.h | 111 StringRef getCalleeNameForAddress(uint64_t TargetAddress);
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/MCJIT/ |
| H A 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/ |
| H A 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()
|
| H A D | RuntimeDyldImpl.h | 559 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A 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/ |
| H A 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/ |
| H A D | llvm-objdump.cpp | 1908 uint64_t TargetAddress = TargetSym->Addr; in disassembleObject() local 1909 uint64_t Disp = Target - TargetAddress; in disassembleObject()
|