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