Home
last modified time | relevance | path

Searched refs:MIA (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInstPrinter.h54 const MCInstrAnalysis *MIA = nullptr;
167 void setMCInstrAnalysis(const MCInstrAnalysis *Value) { MIA = Value; }
53 const MCInstrAnalysis *MIA = nullptr; global() variable
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp354 MCInstrAnalysis &MIA) { in addFunctionPointerRelocationsToCurrentSymbol() argument
399 MIA.evaluateMemoryOperandAddress(Instr, &STI, InstrStart, InstrSize); in addFunctionPointerRelocationsToCurrentSymbol()
404 MIA.getMemoryOperandRelocationOffset(Instr, InstrSize); in addFunctionPointerRelocationsToCurrentSymbol()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ATTInstPrinter.cpp418 if (SymbolizeOperands && MIA) { in printMemReference()
420 if (MIA->evaluateBranch(*MI, 0, 0, Target)) in printMemReference()
422 if (MIA->evaluateMemoryOperandAddress(*MI, /*STI=*/nullptr, 0, 0)) in printMemReference()
H A DX86IntelInstPrinter.cpp376 if (SymbolizeOperands && MIA) { in printMemReference()
378 if (MIA->evaluateBranch(*MI, 0, 0, Target)) in printMemReference()
380 if (MIA->evaluateMemoryOperandAddress(*MI, /*STI=*/nullptr, 0, 0)) in printMemReference()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELFObjectFile.cpp800 std::unique_ptr<const MCInstrAnalysis> MIA( in getPltEntries() local
802 if (!MIA) in getPltEntries()
829 MIA->findPltEntries(Section.getAddress(), in getPltEntries()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1482 collectLocalBranchTargets(ArrayRef<uint8_t> Bytes, MCInstrAnalysis *MIA, in collectLocalBranchTargets() argument
1492 if (MIA) in collectLocalBranchTargets()
1493 MIA->resetState(); in collectLocalBranchTargets()
1511 if (MIA) { in collectLocalBranchTargets()
1514 bool TargetKnown = MIA->evaluateBranch(Inst, Index, Size, Target); in collectLocalBranchTargets()
1524 MIA->updateState(Inst, Index); in collectLocalBranchTargets()
1526 MIA->resetState(); in collectLocalBranchTargets()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DIndirectionUtils.h561 MCInstrAnalysis &MIA);