Make the Mips AsmPrinter independent of global subtarget
[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 LLVM_LIB_TARGET_MIPS_MIPSASMPRINTER_H
15 #define LLVM_LIB_TARGET_MIPS_MIPSASMPRINTER_H
16
17 #include "Mips16HardFloatInfo.h"
18 #include "MipsMCInstLower.h"
19 #include "MipsMachineFunction.h"
20 #include "MipsSubtarget.h"
21 #include "llvm/CodeGen/AsmPrinter.h"
22 #include "llvm/Support/Compiler.h"
23 #include "llvm/Target/TargetMachine.h"
24
25 namespace llvm {
26 class MCStreamer;
27 class MachineInstr;
28 class MachineBasicBlock;
29 class MipsTargetStreamer;
30 class Module;
31 class raw_ostream;
32
33 class LLVM_LIBRARY_VISIBILITY MipsAsmPrinter : public AsmPrinter {
34   MipsTargetStreamer &getTargetStreamer() const;
35
36   void EmitInstrWithMacroNoAT(const MachineInstr *MI);
37
38 private:
39   // tblgen'erated function.
40   bool emitPseudoExpansionLowering(MCStreamer &OutStreamer,
41                                    const MachineInstr *MI);
42
43   // Emit PseudoReturn, PseudoReturn64, PseudoIndirectBranch,
44   // and PseudoIndirectBranch64 as a JR, JR_MM, JALR, or JALR64 as appropriate
45   // for the target.
46   void emitPseudoIndirectBranch(MCStreamer &OutStreamer,
47                                 const MachineInstr *MI);
48
49   // lowerOperand - Convert a MachineOperand into the equivalent MCOperand.
50   bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp);
51
52   /// MCP - Keep a pointer to constantpool entries of the current
53   /// MachineFunction.
54   const MachineConstantPool *MCP;
55
56   /// InConstantPool - Maintain state when emitting a sequence of constant
57   /// pool entries so we can properly mark them as data regions.
58   bool InConstantPool;
59
60   std::map<const char *, const llvm::Mips16HardFloatInfo::FuncSignature *>
61   StubsNeeded;
62
63   void emitInlineAsmStart(const MCSubtargetInfo &StartInfo) const override;
64
65   void emitInlineAsmEnd(const MCSubtargetInfo &StartInfo,
66                         const MCSubtargetInfo *EndInfo) const override;
67
68   void EmitJal(MCSymbol *Symbol);
69
70   void EmitInstrReg(unsigned Opcode, unsigned Reg);
71
72   void EmitInstrRegReg(unsigned Opcode, unsigned Reg1, unsigned Reg2);
73
74   void EmitInstrRegRegReg(unsigned Opcode, unsigned Reg1, unsigned Reg2,
75                           unsigned Reg3);
76
77   void EmitMovFPIntPair(unsigned MovOpc, unsigned Reg1, unsigned Reg2,
78                         unsigned FPReg1, unsigned FPReg2, bool LE);
79
80   void EmitSwapFPIntParams(Mips16HardFloatInfo::FPParamVariant, bool LE,
81                            bool ToFP);
82
83   void EmitSwapFPIntRetval(Mips16HardFloatInfo::FPReturnVariant, bool LE);
84
85   void EmitFPCallStub(const char *, const Mips16HardFloatInfo::FuncSignature *);
86
87   void NaClAlignIndirectJumpTargets(MachineFunction &MF);
88
89   bool isLongBranchPseudo(int Opcode) const;
90
91 public:
92
93   const MipsSubtarget *Subtarget;
94   const MipsFunctionInfo *MipsFI;
95   MipsMCInstLower MCInstLowering;
96
97   // We initialize the subtarget here and in runOnMachineFunction
98   // since there are certain target specific flags (ABI) that could
99   // reside on the TargetMachine, but are on the subtarget currently
100   // and we need them for the beginning of file output before we've
101   // seen a single function.
102   explicit MipsAsmPrinter(TargetMachine &TM,
103                           std::unique_ptr<MCStreamer> Streamer)
104       : AsmPrinter(TM, std::move(Streamer)), MCP(nullptr),
105         InConstantPool(false), MCInstLowering(*this) {}
106
107   const char *getPassName() const override {
108     return "Mips Assembly Printer";
109   }
110
111   bool runOnMachineFunction(MachineFunction &MF) override;
112
113   void EmitConstantPool() override {
114     bool UsingConstantPools =
115       (Subtarget->inMips16Mode() && Subtarget->useConstantIslands());
116     if (!UsingConstantPools)
117       AsmPrinter::EmitConstantPool();
118     // we emit constant pools customly!
119   }
120
121   void EmitInstruction(const MachineInstr *MI) override;
122   void printSavedRegsBitmask();
123   void emitFrameDirective();
124   const char *getCurrentABIString() const;
125   void EmitFunctionEntryLabel() override;
126   void EmitFunctionBodyStart() override;
127   void EmitFunctionBodyEnd() override;
128   bool isBlockOnlyReachableByFallthrough(
129                                    const MachineBasicBlock* MBB) const override;
130   bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
131                        unsigned AsmVariant, const char *ExtraCode,
132                        raw_ostream &O) override;
133   bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNum,
134                              unsigned AsmVariant, const char *ExtraCode,
135                              raw_ostream &O) override;
136   void printOperand(const MachineInstr *MI, int opNum, raw_ostream &O);
137   void printUnsignedImm(const MachineInstr *MI, int opNum, raw_ostream &O);
138   void printUnsignedImm8(const MachineInstr *MI, int opNum, raw_ostream &O);
139   void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O);
140   void printMemOperandEA(const MachineInstr *MI, int opNum, raw_ostream &O);
141   void printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O,
142                        const char *Modifier = nullptr);
143   void printRegisterList(const MachineInstr *MI, int opNum, raw_ostream &O);
144   void EmitStartOfAsmFile(Module &M) override;
145   void EmitEndOfAsmFile(Module &M) override;
146   void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS);
147 };
148 }
149
150 #endif
151