LLVM 22.0.0git
ARCMCInstLower.h
Go to the documentation of this file.
1//===- ARCMCInstLower.h - Lower MachineInstr to MCInst ----------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_LIB_TARGET_ARC_ARCMCINSTLOWER_H
10#define LLVM_LIB_TARGET_ARC_ARCMCINSTLOWER_H
11
14
15namespace llvm {
16
17class MCContext;
18class MCInst;
19class MCOperand;
20class MachineInstr;
21class MachineFunction;
22class Mangler;
23class AsmPrinter;
24
25/// This class is used to lower an MachineInstr into an MCInst.
27 using MachineOperandType = MachineOperand::MachineOperandType;
28 MCContext *Ctx;
29 AsmPrinter &Printer;
30
31public:
32 ARCMCInstLower(MCContext *C, AsmPrinter &asmprinter);
33 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
34 MCOperand LowerOperand(const MachineOperand &MO, unsigned offset = 0) const;
35
36private:
38 MachineOperandType MOTy, unsigned Offset) const;
39};
40
41} // end namespace llvm
42
43#endif // LLVM_LIB_TARGET_ARC_ARCMCINSTLOWER_H
#define LLVM_LIBRARY_VISIBILITY
Definition Compiler.h:137
IRTranslator LLVM IR MI
static MCOperand LowerSymbolOperand(const MachineInstr *MI, const MachineOperand &MO, const MCSymbol *Symbol, AsmPrinter &AP)
static MCOperand LowerOperand(const MachineInstr *MI, const MachineOperand &MO, AsmPrinter &AP)
ARCMCInstLower(MCContext *C, AsmPrinter &asmprinter)
void Lower(const MachineInstr *MI, MCInst &OutMI) const
This class is intended to be used as a driving class for all asm writers.
Definition AsmPrinter.h:91
Context object for machine code objects.
Definition MCContext.h:83
Instances of this class represent a single low-level machine instruction.
Definition MCInst.h:188
Instances of this class represent operands of the MCInst class.
Definition MCInst.h:40
Representation of each machine instruction.
MachineOperand class - Representation of each machine instruction operand.
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:477