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.h55 const MCInstrAnalysis *MIA = nullptr; variable
173 void setMCInstrAnalysis(const MCInstrAnalysis *Value) { MIA = Value; } in setMCInstrAnalysis()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp383 MCInstrAnalysis &MIA) { in addFunctionPointerRelocationsToCurrentSymbol() argument
428 MIA.evaluateMemoryOperandAddress(Instr, &STI, InstrStart, InstrSize); in addFunctionPointerRelocationsToCurrentSymbol()
433 MIA.getMemoryOperandRelocationOffset(Instr, InstrSize); in addFunctionPointerRelocationsToCurrentSymbol()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ATTInstPrinter.cpp442 if (SymbolizeOperands && MIA) { in printMemReference()
444 if (MIA->evaluateBranch(*MI, 0, 0, Target)) in printMemReference()
446 if (MIA->evaluateMemoryOperandAddress(*MI, /*STI=*/nullptr, 0, 0)) in printMemReference()
H A DX86IntelInstPrinter.cpp384 if (SymbolizeOperands && MIA) { in printMemReference()
386 if (MIA->evaluateBranch(*MI, 0, 0, Target)) in printMemReference()
388 if (MIA->evaluateMemoryOperandAddress(*MI, /*STI=*/nullptr, 0, 0)) in printMemReference()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELFObjectFile.cpp845 std::unique_ptr<const MCInstrAnalysis> MIA( in getPltEntries() local
847 if (!MIA) in getPltEntries()
874 MIA->findPltEntries(Section.getAddress(), in getPltEntries()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1553 collectLocalBranchTargets(ArrayRef<uint8_t> Bytes, MCInstrAnalysis *MIA, in collectLocalBranchTargets() argument
1566 if (MIA) in collectLocalBranchTargets()
1567 MIA->resetState(); in collectLocalBranchTargets()
1584 if (MIA) { in collectLocalBranchTargets()
1587 bool TargetKnown = MIA->evaluateBranch(Inst, Index, Size, Target); in collectLocalBranchTargets()
1597 MIA->updateState(Inst, Index); in collectLocalBranchTargets()
1599 MIA->resetState(); in collectLocalBranchTargets()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DIndirectionUtils.h572 MCInstrAnalysis &MIA);