move mangler quote handling from asm printers to TargetAsmInfo.
[oota-llvm.git] / lib / Target / X86 / AsmPrinter / X86ATTAsmPrinter.h
1 //===-- X86ATTAsmPrinter.h - Convert X86 LLVM code to AT&T assembly -------===//
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 // AT&T assembly code printer class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef X86ATTASMPRINTER_H
15 #define X86ATTASMPRINTER_H
16
17 #include "../X86.h"
18 #include "../X86MachineFunctionInfo.h"
19 #include "../X86TargetMachine.h"
20 #include "llvm/ADT/StringSet.h"
21 #include "llvm/CodeGen/AsmPrinter.h"
22 #include "llvm/CodeGen/DwarfWriter.h"
23 #include "llvm/CodeGen/MachineModuleInfo.h"
24 #include "llvm/CodeGen/ValueTypes.h"
25 #include "llvm/Support/Compiler.h"
26
27 namespace llvm {
28
29 class MachineJumpTableInfo;
30
31 class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
32   DwarfWriter *DW;
33   MachineModuleInfo *MMI;
34   const X86Subtarget *Subtarget;
35  public:
36   explicit X86ATTAsmPrinter(raw_ostream &O, X86TargetMachine &TM,
37                             const TargetAsmInfo *T, CodeGenOpt::Level OL,
38                             bool V)
39     : AsmPrinter(O, TM, T, OL, V), DW(0), MMI(0) {
40     Subtarget = &TM.getSubtarget<X86Subtarget>();
41   }
42
43   virtual const char *getPassName() const {
44     return "X86 AT&T-Style Assembly Printer";
45   }
46
47   void getAnalysisUsage(AnalysisUsage &AU) const {
48     AU.setPreservesAll();
49     if (Subtarget->isTargetDarwin() ||
50         Subtarget->isTargetELF() ||
51         Subtarget->isTargetCygMing()) {
52       AU.addRequired<MachineModuleInfo>();
53     }
54     AU.addRequired<DwarfWriter>();
55     AsmPrinter::getAnalysisUsage(AU);
56   }
57
58   bool doInitialization(Module &M);
59   bool doFinalization(Module &M);
60
61   /// printInstruction - This method is automatically generated by tablegen
62   /// from the instruction set description.  This method returns true if the
63   /// machine instruction was sufficiently described to print it, otherwise it
64   /// returns false.
65   bool printInstruction(const MachineInstr *MI);
66
67   // These methods are used by the tablegen'erated instruction printer.
68   void printOperand(const MachineInstr *MI, unsigned OpNo,
69                     const char *Modifier = 0, bool NotRIPRel = false);
70   void printi8mem(const MachineInstr *MI, unsigned OpNo) {
71     printMemReference(MI, OpNo);
72   }
73   void printi16mem(const MachineInstr *MI, unsigned OpNo) {
74     printMemReference(MI, OpNo);
75   }
76   void printi32mem(const MachineInstr *MI, unsigned OpNo) {
77     printMemReference(MI, OpNo);
78   }
79   void printi64mem(const MachineInstr *MI, unsigned OpNo) {
80     printMemReference(MI, OpNo);
81   }
82   void printi128mem(const MachineInstr *MI, unsigned OpNo) {
83     printMemReference(MI, OpNo);
84   }
85   void printf32mem(const MachineInstr *MI, unsigned OpNo) {
86     printMemReference(MI, OpNo);
87   }
88   void printf64mem(const MachineInstr *MI, unsigned OpNo) {
89     printMemReference(MI, OpNo);
90   }
91   void printf80mem(const MachineInstr *MI, unsigned OpNo) {
92     printMemReference(MI, OpNo);
93   }
94   void printf128mem(const MachineInstr *MI, unsigned OpNo) {
95     printMemReference(MI, OpNo);
96   }
97   void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
98     printLeaMemReference(MI, OpNo);
99   }
100   void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
101     printLeaMemReference(MI, OpNo);
102   }
103   void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
104     printLeaMemReference(MI, OpNo, "subreg64");
105   }
106
107   bool printAsmMRegister(const MachineOperand &MO, char Mode);
108   bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
109                        unsigned AsmVariant, const char *ExtraCode);
110   bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
111                              unsigned AsmVariant, const char *ExtraCode);
112
113   void printMachineInstruction(const MachineInstr *MI);
114   void printSSECC(const MachineInstr *MI, unsigned Op);
115   void printMemReference(const MachineInstr *MI, unsigned Op,
116                          const char *Modifier=NULL, bool NotRIPRel = false);
117   void printLeaMemReference(const MachineInstr *MI, unsigned Op,
118                             const char *Modifier=NULL, bool NotRIPRel = false);
119   void printPICJumpTableSetLabel(unsigned uid,
120                                  const MachineBasicBlock *MBB) const;
121   void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
122                                  const MachineBasicBlock *MBB) const {
123     AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
124   }
125   void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
126                               const MachineBasicBlock *MBB,
127                               unsigned uid) const;
128
129   void printPICLabel(const MachineInstr *MI, unsigned Op);
130   void printModuleLevelGV(const GlobalVariable* GVar);
131
132   void printGVStub(const char *GV, const char *Prefix = NULL);
133   void printHiddenGVStub(const char *GV, const char *Prefix = NULL);
134
135   bool runOnMachineFunction(MachineFunction &F);
136
137   void emitFunctionHeader(const MachineFunction &MF);
138
139   // Necessary for Darwin to print out the apprioriate types of linker stubs
140   StringSet<> FnStubs, GVStubs, HiddenGVStubs;
141
142   // Necessary for dllexport support
143   StringSet<> DLLExportedFns, DLLExportedGVs;
144
145   // We have to propagate some information about MachineFunction to
146   // AsmPrinter. It's ok, when we're printing the function, since we have
147   // access to MachineFunction and can get the appropriate MachineFunctionInfo.
148   // Unfortunately, this is not possible when we're printing reference to
149   // Function (e.g. calling it and so on). Even more, there is no way to get the
150   // corresponding MachineFunctions: it can even be not created at all. That's
151   // why we should use additional structure, when we're collecting all necessary
152   // information.
153   //
154   // This structure is using e.g. for name decoration for stdcall & fastcall'ed
155   // function, since we have to use arguments' size for decoration.
156   typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
157   FMFInfoMap FunctionInfoMap;
158
159   void decorateName(std::string& Name, const GlobalValue* GV);
160 };
161
162 } // end namespace llvm
163
164 #endif