summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsMCInstLower.h
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanak@gmail.com>2011-07-07 20:24:54 +0000
committerAkira Hatanaka <ahatanak@gmail.com>2011-07-07 20:24:54 +0000
commit17a2f8e551dd4a772d389d1a193235ae56f8a399 (patch)
tree4948289e3b2f38edc2b4ab66e20de7c8f379a2d4 /lib/Target/Mips/MipsMCInstLower.h
parentaa08ea0530a2baa7d1d74c492b1bd5af3518ad60 (diff)
downloadllvm-17a2f8e551dd4a772d389d1a193235ae56f8a399.tar.gz
llvm-17a2f8e551dd4a772d389d1a193235ae56f8a399.tar.bz2
llvm-17a2f8e551dd4a772d389d1a193235ae56f8a399.tar.xz
Define class MipsMCInstLower.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134633 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsMCInstLower.h')
-rw-r--r--lib/Target/Mips/MipsMCInstLower.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/Target/Mips/MipsMCInstLower.h b/lib/Target/Mips/MipsMCInstLower.h
new file mode 100644
index 0000000000..ec5201be7f
--- /dev/null
+++ b/lib/Target/Mips/MipsMCInstLower.h
@@ -0,0 +1,43 @@
+//===-- MipsMCInstLower.h - Lower MachineInstr to MCInst -------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef MIPSMCINSTLOWER_H
+#define MIPSMCINSTLOWER_H
+#include "llvm/CodeGen/MachineOperand.h"
+#include "llvm/Support/Compiler.h"
+
+namespace llvm {
+ class MCAsmInfo;
+ class MCContext;
+ class MCInst;
+ class MCOperand;
+ class MCSymbol;
+ class MachineInstr;
+ class MachineFunction;
+ class Mangler;
+ class MipsAsmPrinter;
+
+/// MipsMCInstLower - This class is used to lower an MachineInstr into an
+// MCInst.
+class LLVM_LIBRARY_VISIBILITY MipsMCInstLower {
+ typedef MachineOperand::MachineOperandType MachineOperandType;
+ MCContext &Ctx;
+ Mangler *Mang;
+ MipsAsmPrinter &AsmPrinter;
+public:
+ MipsMCInstLower(Mangler *mang, const MachineFunction &MF,
+ MipsAsmPrinter &asmprinter);
+ void Lower(const MachineInstr *MI, MCInst &OutMI) const;
+private:
+ MCOperand LowerSymbolOperand(const MachineOperand &MO,
+ MachineOperandType MOTy) const;
+};
+}
+
+#endif