Remove another hasRawTextSupport.
[oota-llvm.git] / lib / Target / Mips / MipsAsmPrinter.h
1 //===-- MipsAsmPrinter.h - Mips LLVM Assembly Printer ----------*- 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 // Mips Assembly printer class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef MIPSASMPRINTER_H
15 #define MIPSASMPRINTER_H
16
17 #include "MipsMCInstLower.h"
18 #include "MipsMachineFunction.h"
19 #include "MipsSubtarget.h"
20 #include "llvm/CodeGen/AsmPrinter.h"
21 #include "llvm/Support/Compiler.h"
22 #include "llvm/Target/TargetMachine.h"
23
24 namespace llvm {
25 class MCStreamer;
26 class MachineInstr;
27 class MachineBasicBlock;
28 class MipsTargetStreamer;
29 class Module;
30 class raw_ostream;
31
32 class LLVM_LIBRARY_VISIBILITY MipsAsmPrinter : public AsmPrinter {
33   MipsTargetStreamer &getTargetStreamer();
34
35   void EmitInstrWithMacroNoAT(const MachineInstr *MI);
36
37 private:
38   // tblgen'erated function.
39   bool emitPseudoExpansionLowering(MCStreamer &OutStreamer,
40                                    const MachineInstr *MI);
41
42   // lowerOperand - Convert a MachineOperand into the equivalent MCOperand.
43   bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp);
44
45   /// MCP - Keep a pointer to constantpool entries of the current
46   /// MachineFunction.
47   const MachineConstantPool *MCP;
48
49   /// InConstantPool - Maintain state when emitting a sequence of constant
50   /// pool entries so we can properly mark them as data regions.
51   bool InConstantPool;
52
53
54 public:
55
56   const MipsSubtarget *Subtarget;
57   const MipsFunctionInfo *MipsFI;
58   MipsMCInstLower MCInstLowering;
59
60   explicit MipsAsmPrinter(TargetMachine &TM,  MCStreamer &Streamer)
61     : AsmPrinter(TM, Streamer), MCP(0), InConstantPool(false),
62       MCInstLowering(*this) {
63     Subtarget = &TM.getSubtarget<MipsSubtarget>();
64   }
65
66   virtual const char *getPassName() const {
67     return "Mips Assembly Printer";
68   }
69
70   virtual bool runOnMachineFunction(MachineFunction &MF);
71
72   virtual void EmitConstantPool() LLVM_OVERRIDE {
73     bool UsingConstantPools =
74       (Subtarget->inMips16Mode() && Subtarget->useConstantIslands());
75     if (!UsingConstantPools)
76       AsmPrinter::EmitConstantPool();
77     // we emit constant pools customly!
78   }
79
80   void EmitInstruction(const MachineInstr *MI);
81   void printSavedRegsBitmask();
82   void emitFrameDirective();
83   const char *getCurrentABIString() const;
84   virtual void EmitFunctionEntryLabel();
85   virtual void EmitFunctionBodyStart();
86   virtual void EmitFunctionBodyEnd();
87   virtual bool isBlockOnlyReachableByFallthrough(const MachineBasicBlock*
88                                                  MBB) const;
89   bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
90                        unsigned AsmVariant, const char *ExtraCode,
91                        raw_ostream &O);
92   bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNum,
93                              unsigned AsmVariant, const char *ExtraCode,
94                              raw_ostream &O);
95   void printOperand(const MachineInstr *MI, int opNum, raw_ostream &O);
96   void printUnsignedImm(const MachineInstr *MI, int opNum, raw_ostream &O);
97   void printUnsignedImm8(const MachineInstr *MI, int opNum, raw_ostream &O);
98   void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O);
99   void printMemOperandEA(const MachineInstr *MI, int opNum, raw_ostream &O);
100   void printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O,
101                        const char *Modifier = 0);
102   void EmitStartOfAsmFile(Module &M);
103   void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS);
104 };
105 }
106
107 #endif
108