blob: 9a698f26334aa5705581172c45efa9a9f592e9af [file] [log] [blame]
Pete Couperus2d1f6d62017-08-24 15:40:33 +00001//===- ARCMCInstLower.h - Lower MachineInstr to MCInst ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_LIB_TARGET_ARC_ARCMCINSTLOWER_H
11#define LLVM_LIB_TARGET_ARC_ARCMCINSTLOWER_H
12
13#include "llvm/CodeGen/MachineOperand.h"
14#include "llvm/Support/Compiler.h"
15
16namespace llvm {
17
18class MCContext;
19class MCInst;
20class MCOperand;
21class MachineInstr;
22class MachineFunction;
23class Mangler;
24class AsmPrinter;
25
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000026/// This class is used to lower an MachineInstr into an MCInst.
Pete Couperus2d1f6d62017-08-24 15:40:33 +000027class LLVM_LIBRARY_VISIBILITY ARCMCInstLower {
28 using MachineOperandType = MachineOperand::MachineOperandType;
29 MCContext *Ctx;
30 AsmPrinter &Printer;
31
32public:
33 ARCMCInstLower(MCContext *C, AsmPrinter &asmprinter);
34 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
35 MCOperand LowerOperand(const MachineOperand &MO, unsigned offset = 0) const;
36
37private:
38 MCOperand LowerSymbolOperand(const MachineOperand &MO,
39 MachineOperandType MOTy, unsigned Offset) const;
40};
41
42} // end namespace llvm
43
44#endif // LLVM_LIB_TARGET_ARC_ARCMCINSTLOWER_H