blob: 31c7a1f044e1fc51fbbbfcee480db237696cf18c [file] [log] [blame]
Dan Gohman8bc49c22007-06-25 15:11:25 +00001//===-- X86ATTAsmPrinter.h - Convert X86 LLVM code to AT&T assembly -------===//
Chris Lattnerb36cbd02005-07-01 22:44:09 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerb36cbd02005-07-01 22:44:09 +00007//
8//===----------------------------------------------------------------------===//
9//
10// AT&T assembly code printer class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef X86ATTASMPRINTER_H
15#define X86ATTASMPRINTER_H
16
Cedric Venet94fb5f22008-08-17 18:24:26 +000017#include "../X86.h"
18#include "../X86MachineFunctionInfo.h"
19#include "../X86TargetMachine.h"
Anton Korobeynikov75b68822008-06-28 11:08:27 +000020#include "llvm/ADT/StringSet.h"
21#include "llvm/CodeGen/AsmPrinter.h"
22#include "llvm/CodeGen/DwarfWriter.h"
23#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000024#include "llvm/CodeGen/ValueTypes.h"
Anton Korobeynikov75b68822008-06-28 11:08:27 +000025#include "llvm/Support/Compiler.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000026
27namespace llvm {
Chris Lattnerb36cbd02005-07-01 22:44:09 +000028
Bill Wendlingb877a1f2009-05-12 21:55:29 +000029class MachineJumpTableInfo;
Chris Lattner475370b2009-06-19 00:47:33 +000030class MCInst;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000031
Bill Wendling57f0db82009-02-24 08:30:20 +000032class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000033 MachineModuleInfo *MMI;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000034 const X86Subtarget *Subtarget;
Bill Wendling57f0db82009-02-24 08:30:20 +000035 public:
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000036 explicit X86ATTAsmPrinter(raw_ostream &O, X86TargetMachine &TM,
Bill Wendling98a366d2009-04-29 23:29:43 +000037 const TargetAsmInfo *T, CodeGenOpt::Level OL,
38 bool V)
Devang Patel14a55d92009-06-19 21:54:26 +000039 : AsmPrinter(O, TM, T, OL, V), MMI(0) {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000040 Subtarget = &TM.getSubtarget<X86Subtarget>();
41 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000042
43 virtual const char *getPassName() const {
44 return "X86 AT&T-Style Assembly Printer";
45 }
46
Anton Korobeynikov75b68822008-06-28 11:08:27 +000047 void getAnalysisUsage(AnalysisUsage &AU) const {
48 AU.setPreservesAll();
49 if (Subtarget->isTargetDarwin() ||
50 Subtarget->isTargetELF() ||
51 Subtarget->isTargetCygMing()) {
52 AU.addRequired<MachineModuleInfo>();
53 }
Devang Pateleb3fc282009-01-08 23:40:34 +000054 AU.addRequired<DwarfWriter>();
Anton Korobeynikov75b68822008-06-28 11:08:27 +000055 AsmPrinter::getAnalysisUsage(AU);
56 }
57
Anton Korobeynikov75b68822008-06-28 11:08:27 +000058 bool doFinalization(Module &M);
59
Chris Lattnerb36cbd02005-07-01 22:44:09 +000060 /// printInstruction - This method is automatically generated by tablegen
61 /// from the instruction set description. This method returns true if the
62 /// machine instruction was sufficiently described to print it, otherwise it
63 /// returns false.
64 bool printInstruction(const MachineInstr *MI);
Chris Lattner475370b2009-06-19 00:47:33 +000065
Chris Lattnerd5fb7902009-06-19 23:59:57 +000066
67 // New MCInst printing stuff.
68 bool printInstruction(const MCInst *MI);
Chris Lattner475370b2009-06-19 00:47:33 +000069
Chris Lattnerd5fb7902009-06-19 23:59:57 +000070 void printOperand(const MCInst *MI, unsigned OpNo,
71 const char *Modifier = 0, bool NotRIPRel = false);
72 void printMemReference(const MCInst *MI, unsigned Op,
73 const char *Modifier=NULL, bool NotRIPRel = false);
74 void printLeaMemReference(const MCInst *MI, unsigned Op,
75 const char *Modifier=NULL, bool NotRIPRel = false);
76 void printSSECC(const MCInst *MI, unsigned Op);
77 void printPICLabel(const MCInst *MI, unsigned Op);
78
79 void printi8mem(const MCInst *MI, unsigned OpNo) {
80 printMemReference(MI, OpNo);
81 }
82 void printi16mem(const MCInst *MI, unsigned OpNo) {
83 printMemReference(MI, OpNo);
84 }
85 void printi32mem(const MCInst *MI, unsigned OpNo) {
86 printMemReference(MI, OpNo);
87 }
88 void printi64mem(const MCInst *MI, unsigned OpNo) {
89 printMemReference(MI, OpNo);
90 }
91 void printi128mem(const MCInst *MI, unsigned OpNo) {
92 printMemReference(MI, OpNo);
93 }
94 void printf32mem(const MCInst *MI, unsigned OpNo) {
95 printMemReference(MI, OpNo);
96 }
97 void printf64mem(const MCInst *MI, unsigned OpNo) {
98 printMemReference(MI, OpNo);
99 }
100 void printf80mem(const MCInst *MI, unsigned OpNo) {
101 printMemReference(MI, OpNo);
102 }
103 void printf128mem(const MCInst *MI, unsigned OpNo) {
104 printMemReference(MI, OpNo);
105 }
106 void printlea32mem(const MCInst *MI, unsigned OpNo) {
107 printLeaMemReference(MI, OpNo);
108 }
109 void printlea64mem(const MCInst *MI, unsigned OpNo) {
110 printLeaMemReference(MI, OpNo);
111 }
112 void printlea64_32mem(const MCInst *MI, unsigned OpNo) {
113 printLeaMemReference(MI, OpNo, "subreg64");
114 }
115
116
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000117
Chris Lattnera3b8c572006-02-06 23:41:19 +0000118 // These methods are used by the tablegen'erated instruction printer.
119 void printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +0000120 const char *Modifier = 0, bool NotRIPRel = false);
Nate Begeman391c5d22005-11-30 18:54:35 +0000121 void printi8mem(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000122 printMemReference(MI, OpNo);
123 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000124 void printi16mem(const MachineInstr *MI, unsigned OpNo) {
125 printMemReference(MI, OpNo);
126 }
127 void printi32mem(const MachineInstr *MI, unsigned OpNo) {
128 printMemReference(MI, OpNo);
129 }
130 void printi64mem(const MachineInstr *MI, unsigned OpNo) {
131 printMemReference(MI, OpNo);
132 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000133 void printi128mem(const MachineInstr *MI, unsigned OpNo) {
134 printMemReference(MI, OpNo);
135 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000136 void printf32mem(const MachineInstr *MI, unsigned OpNo) {
137 printMemReference(MI, OpNo);
138 }
139 void printf64mem(const MachineInstr *MI, unsigned OpNo) {
140 printMemReference(MI, OpNo);
141 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000142 void printf80mem(const MachineInstr *MI, unsigned OpNo) {
143 printMemReference(MI, OpNo);
144 }
Evan Cheng223547a2006-01-31 22:28:30 +0000145 void printf128mem(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000146 printMemReference(MI, OpNo);
147 }
Rafael Espindola094fad32009-04-08 21:14:34 +0000148 void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
149 printLeaMemReference(MI, OpNo);
150 }
151 void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
152 printLeaMemReference(MI, OpNo);
153 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000154 void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
Rafael Espindola094fad32009-04-08 21:14:34 +0000155 printLeaMemReference(MI, OpNo, "subreg64");
Evan Cheng25ab6902006-09-08 06:48:29 +0000156 }
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000157
Chris Lattner37710712009-06-15 04:42:32 +0000158 bool printAsmMRegister(const MachineOperand &MO, char Mode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000159 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000160 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000161 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000162 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000163
Evan Cheng62f27002006-04-28 23:11:40 +0000164 void printMachineInstruction(const MachineInstr *MI);
Nate Begeman391c5d22005-11-30 18:54:35 +0000165 void printSSECC(const MachineInstr *MI, unsigned Op);
Evan Cheng25ab6902006-09-08 06:48:29 +0000166 void printMemReference(const MachineInstr *MI, unsigned Op,
Anton Korobeynikov573c92d2009-04-28 21:49:33 +0000167 const char *Modifier=NULL, bool NotRIPRel = false);
Rafael Espindola094fad32009-04-08 21:14:34 +0000168 void printLeaMemReference(const MachineInstr *MI, unsigned Op,
Anton Korobeynikov573c92d2009-04-28 21:49:33 +0000169 const char *Modifier=NULL, bool NotRIPRel = false);
Evan Chengcc415862007-11-09 01:32:10 +0000170 void printPICJumpTableSetLabel(unsigned uid,
171 const MachineBasicBlock *MBB) const;
172 void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
173 const MachineBasicBlock *MBB) const {
174 AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
175 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000176 void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
177 const MachineBasicBlock *MBB,
178 unsigned uid) const;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000179
Evan Cheng7ccced62006-02-18 00:15:05 +0000180 void printPICLabel(const MachineInstr *MI, unsigned Op);
Anton Korobeynikove51ab442008-06-28 11:09:32 +0000181 void printModuleLevelGV(const GlobalVariable* GVar);
182
Evan Cheng77c8f762008-07-08 00:55:58 +0000183 void printGVStub(const char *GV, const char *Prefix = NULL);
Evan Chengae94e592008-12-05 01:06:39 +0000184 void printHiddenGVStub(const char *GV, const char *Prefix = NULL);
Evan Cheng77c8f762008-07-08 00:55:58 +0000185
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000186 bool runOnMachineFunction(MachineFunction &F);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000187
Anton Korobeynikov1ecf0ee2008-06-28 11:09:01 +0000188 void emitFunctionHeader(const MachineFunction &MF);
189
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000190 // Necessary for Darwin to print out the apprioriate types of linker stubs
Evan Chengae94e592008-12-05 01:06:39 +0000191 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000192
193 // Necessary for dllexport support
194 StringSet<> DLLExportedFns, DLLExportedGVs;
195
196 // We have to propagate some information about MachineFunction to
197 // AsmPrinter. It's ok, when we're printing the function, since we have
198 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
199 // Unfortunately, this is not possible when we're printing reference to
200 // Function (e.g. calling it and so on). Even more, there is no way to get the
201 // corresponding MachineFunctions: it can even be not created at all. That's
202 // why we should use additional structure, when we're collecting all necessary
203 // information.
204 //
205 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
206 // function, since we have to use arguments' size for decoration.
207 typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
208 FMFInfoMap FunctionInfoMap;
209
210 void decorateName(std::string& Name, const GlobalValue* GV);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000211};
212
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000213} // end namespace llvm
214
215#endif