Searched refs:MCInst (Results 201 - 225 of 296) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFAsmBackend.cpp46 bool mayNeedRelaxation(const MCInst &Inst,
H A DBPFMCTargetDesc.cpp78 bool evaluateBranch(const MCInst &Inst, uint64_t Addr, uint64_t Size,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiMCInstLower.cpp1 //=-- LanaiMCInstLower.cpp - Convert Lanai MachineInstr to an MCInst --------=//
10 // MCInst records.
26 #include "llvm/MC/MCInst.h"
93 void LanaiMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
H A DLanaiAsmPrinter.cpp31 #include "llvm/MC/MCInst.h"
175 MCInst TmpInst;
192 MCInst TmpInst;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiAsmBackend.cpp72 bool mayNeedRelaxation(const MCInst & /*Inst*/,
H A DLanaiMCTargetDesc.cpp19 #include "llvm/MC/MCInst.h"
96 bool evaluateBranch(const MCInst &Inst, uint64_t Addr, uint64_t Size,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430MCInstLower.cpp1 //===-- MSP430MCInstLower.cpp - Convert MSP430 MachineInstr to an MCInst --===//
10 // MCInst records.
24 #include "llvm/MC/MCInst.h"
115 void MSP430MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.cpp18 #include "llvm/MC/MCInst.h"
36 void MipsELFStreamer::emitInstruction(const MCInst &Inst,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFragment.h18 #include "llvm/MC/MCInst.h"
258 /// A relaxable fragment holds on to its MCInst, since it may need to be
264 MCInst Inst;
269 MCRelaxableFragment(const MCInst &Inst, const MCSubtargetInfo &STI,
274 const MCInst &getInst() const { return Inst; }
275 void setInst(const MCInst &Value) { Inst = Value; }
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCMCInstLower.cpp1 //===- ARCMCInstLower.cpp - ARC MachineInstr to MCInst ----------*- C++ -*-===//
11 /// corresponding MCInst records.
22 #include "llvm/MC/MCInst.h"
104 void ARCMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVMCInstLower.cpp1 //===-- RISCVMCInstLower.cpp - Convert RISCV MachineInstr to an MCInst ------=//
10 // MCInst records.
22 #include "llvm/MC/MCInst.h"
128 void llvm::LowerRISCVMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCAsmBackend.cpp14 #include "llvm/MC/MCInst.h"
57 bool mayNeedRelaxation(const MCInst &Inst,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMCInstLower.cpp1 //===-- SystemZMCInstLower.cpp - Lower MachineInstr to MCInst -------------===//
13 #include "llvm/MC/MCInst.h"
94 void SystemZMCInstLower::lower(const MachineInstr *MI, MCInst &OutMI) const {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp62 bool mayNeedRelaxation(const MCInst &Inst,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreMCInstLower.cpp1 //===-- XCoreMCInstLower.cpp - Convert XCore MachineInstr to MCInst -------===//
11 /// corresponding MCInst records.
22 #include "llvm/MC/MCInst.h"
103 void XCoreMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp1 //===-- SparcAsmParser.cpp - Parse Sparc assembly to MCInst instructions --===//
18 #include "llvm/MC/MCInst.h"
107 bool expandSET(MCInst &Inst, SMLoc IDLoc,
108 SmallVectorImpl<MCInst> &Instructions);
335 void addRegOperands(MCInst &Inst, unsigned N) const {
340 void addImmOperands(MCInst &Inst, unsigned N) const {
346 void addExpr(MCInst &Inst, const MCExpr *Expr) const{
356 void addMEMrrOperands(MCInst &Inst, unsigned N) const {
365 void addMEMriOperands(MCInst &Inst, unsigned N) const {
374 void addMembarTagOperands(MCInst
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp58 // MCInst for use by the MC infrastructure.
83 #include "llvm/MC/MCInst.h"
1669 static bool translateInstruction(MCInst &target,
1684 DecodeStatus getInstruction(MCInst &instr, uint64_t &size,
1715 MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes, uint64_t Address,
1766 /// register, and appends it as an operand to an MCInst.
1768 /// @param mcInst - The MCInst to append to.
1770 static void translateRegister(MCInst &mcInst, Reg reg) {
1780 /// immediate Value in the MCInst.
1793 /// an MCExpr and that is added as an operand to the MCInst
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCInstPrinter.cpp1 //===- MCInstPrinter.cpp - Convert an MCInst to target assembly syntax ----===//
13 #include "llvm/MC/MCInst.h"
62 static bool matchAliasCondition(const MCInst &MI, const MCSubtargetInfo *STI,
123 const char *MCInstPrinter::matchAliasPatterns(const MCInst *MI,
H A DMCWasmStreamer.cpp22 #include "llvm/MC/MCInst.h"
168 void MCWasmStreamer::emitInstToFragment(const MCInst &Inst,
173 void MCWasmStreamer::emitInstToData(const MCInst &Inst,
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DBottleneckAnalysis.h291 ArrayRef<MCInst> Source;
326 ArrayRef<MCInst> Sequence, unsigned Iterations);
H A DResourcePressureView.cpp23 ArrayRef<MCInst> S)
159 for (const MCInst &MCI : Source) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/
H A DAVRAsmParser.cpp1 //===---- AVRAsmParser.cpp - Parse AVR assembly to MCInst instructions ----===//
20 #include "llvm/MC/MCInst.h"
83 bool emit(MCInst &Instruction, SMLoc const &Loc, MCStreamer &Out) const;
131 void addRegOperands(MCInst &Inst, unsigned N) const {
138 void addExpr(MCInst &Inst, const MCExpr *Expr) const {
148 void addImmOperands(MCInst &Inst, unsigned N) const {
157 void addMemriOperands(MCInst &Inst, unsigned N) const {
165 void addImmCom8Operands(MCInst &Inst, unsigned N) const {
310 bool AVRAsmParser::emit(MCInst &Inst, SMLoc const &Loc, MCStreamer &Out) const {
321 MCInst Ins
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCAsmBackend.cpp181 bool mayNeedRelaxation(const MCInst &Inst,
195 void relaxInstruction(MCInst &Inst,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcAsmBackend.cpp258 bool mayNeedRelaxation(const MCInst &Inst,
274 void relaxInstruction(MCInst &Inst,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/VE/
H A DVE.h27 class MCInst;
33 void LowerVEMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,

Completed in 132 milliseconds

1234567891011>>