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