blob: 24cd601b1febc0ee0b4e44c486ab40f59a0bb0a5 [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 Lattner40e3c7a2009-06-24 05:46:28 +000030class MCContext;
Chris Lattner475370b2009-06-19 00:47:33 +000031class MCInst;
Chris Lattner40e3c7a2009-06-24 05:46:28 +000032class MCStreamer;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000033
Bill Wendling57f0db82009-02-24 08:30:20 +000034class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000035 const X86Subtarget *Subtarget;
Chris Lattner40e3c7a2009-06-24 05:46:28 +000036
37 MCContext *Context;
38 MCStreamer *Streamer;
Bill Wendling57f0db82009-02-24 08:30:20 +000039 public:
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000040 explicit X86ATTAsmPrinter(raw_ostream &O, X86TargetMachine &TM,
Bill Wendling98a366d2009-04-29 23:29:43 +000041 const TargetAsmInfo *T, CodeGenOpt::Level OL,
42 bool V)
Chris Lattner0de1fc42009-06-24 19:09:55 +000043 : AsmPrinter(O, TM, T, OL, V) {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000044 Subtarget = &TM.getSubtarget<X86Subtarget>();
Chris Lattner40e3c7a2009-06-24 05:46:28 +000045 Context = 0;
46 Streamer = 0;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000047 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000048
49 virtual const char *getPassName() const {
50 return "X86 AT&T-Style Assembly Printer";
51 }
52
Anton Korobeynikov75b68822008-06-28 11:08:27 +000053 void getAnalysisUsage(AnalysisUsage &AU) const {
54 AU.setPreservesAll();
55 if (Subtarget->isTargetDarwin() ||
56 Subtarget->isTargetELF() ||
57 Subtarget->isTargetCygMing()) {
58 AU.addRequired<MachineModuleInfo>();
59 }
Devang Pateleb3fc282009-01-08 23:40:34 +000060 AU.addRequired<DwarfWriter>();
Anton Korobeynikov75b68822008-06-28 11:08:27 +000061 AsmPrinter::getAnalysisUsage(AU);
62 }
63
Devang Patel66b4d3b2009-06-20 01:00:07 +000064 bool doInitialization(Module &M);
Anton Korobeynikov75b68822008-06-28 11:08:27 +000065 bool doFinalization(Module &M);
66
Chris Lattnerb36cbd02005-07-01 22:44:09 +000067 /// printInstruction - This method is automatically generated by tablegen
68 /// from the instruction set description. This method returns true if the
69 /// machine instruction was sufficiently described to print it, otherwise it
70 /// returns false.
71 bool printInstruction(const MachineInstr *MI);
Chris Lattner475370b2009-06-19 00:47:33 +000072
Chris Lattnerd5fb7902009-06-19 23:59:57 +000073
74 // New MCInst printing stuff.
75 bool printInstruction(const MCInst *MI);
Chris Lattner475370b2009-06-19 00:47:33 +000076
Chris Lattnerd5fb7902009-06-19 23:59:57 +000077 void printOperand(const MCInst *MI, unsigned OpNo,
78 const char *Modifier = 0, bool NotRIPRel = false);
Chris Lattnerc1243062009-06-20 07:03:18 +000079 void printMemReference(const MCInst *MI, unsigned Op);
80 void printLeaMemReference(const MCInst *MI, unsigned Op);
Chris Lattnerd5fb7902009-06-19 23:59:57 +000081 void printSSECC(const MCInst *MI, unsigned Op);
82 void printPICLabel(const MCInst *MI, unsigned Op);
Chris Lattner7680e732009-06-20 19:34:09 +000083 void print_pcrel_imm(const MCInst *MI, unsigned OpNo);
84
Chris Lattnerd5fb7902009-06-19 23:59:57 +000085 void printi8mem(const MCInst *MI, unsigned OpNo) {
86 printMemReference(MI, OpNo);
87 }
88 void printi16mem(const MCInst *MI, unsigned OpNo) {
89 printMemReference(MI, OpNo);
90 }
91 void printi32mem(const MCInst *MI, unsigned OpNo) {
92 printMemReference(MI, OpNo);
93 }
94 void printi64mem(const MCInst *MI, unsigned OpNo) {
95 printMemReference(MI, OpNo);
96 }
97 void printi128mem(const MCInst *MI, unsigned OpNo) {
98 printMemReference(MI, OpNo);
99 }
100 void printf32mem(const MCInst *MI, unsigned OpNo) {
101 printMemReference(MI, OpNo);
102 }
103 void printf64mem(const MCInst *MI, unsigned OpNo) {
104 printMemReference(MI, OpNo);
105 }
106 void printf80mem(const MCInst *MI, unsigned OpNo) {
107 printMemReference(MI, OpNo);
108 }
109 void printf128mem(const MCInst *MI, unsigned OpNo) {
110 printMemReference(MI, OpNo);
111 }
112 void printlea32mem(const MCInst *MI, unsigned OpNo) {
113 printLeaMemReference(MI, OpNo);
114 }
115 void printlea64mem(const MCInst *MI, unsigned OpNo) {
116 printLeaMemReference(MI, OpNo);
117 }
118 void printlea64_32mem(const MCInst *MI, unsigned OpNo) {
Chris Lattnerc1243062009-06-20 07:03:18 +0000119 printLeaMemReference(MI, OpNo);
Chris Lattnerd5fb7902009-06-19 23:59:57 +0000120 }
121
122
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000123
Chris Lattnera3b8c572006-02-06 23:41:19 +0000124 // These methods are used by the tablegen'erated instruction printer.
125 void printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +0000126 const char *Modifier = 0, bool NotRIPRel = false);
Chris Lattner7680e732009-06-20 19:34:09 +0000127 void print_pcrel_imm(const MachineInstr *MI, unsigned OpNo);
Nate Begeman391c5d22005-11-30 18:54:35 +0000128 void printi8mem(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000129 printMemReference(MI, OpNo);
130 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000131 void printi16mem(const MachineInstr *MI, unsigned OpNo) {
132 printMemReference(MI, OpNo);
133 }
134 void printi32mem(const MachineInstr *MI, unsigned OpNo) {
135 printMemReference(MI, OpNo);
136 }
137 void printi64mem(const MachineInstr *MI, unsigned OpNo) {
138 printMemReference(MI, OpNo);
139 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000140 void printi128mem(const MachineInstr *MI, unsigned OpNo) {
141 printMemReference(MI, OpNo);
142 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000143 void printf32mem(const MachineInstr *MI, unsigned OpNo) {
144 printMemReference(MI, OpNo);
145 }
146 void printf64mem(const MachineInstr *MI, unsigned OpNo) {
147 printMemReference(MI, OpNo);
148 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000149 void printf80mem(const MachineInstr *MI, unsigned OpNo) {
150 printMemReference(MI, OpNo);
151 }
Evan Cheng223547a2006-01-31 22:28:30 +0000152 void printf128mem(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000153 printMemReference(MI, OpNo);
154 }
Rafael Espindola094fad32009-04-08 21:14:34 +0000155 void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
156 printLeaMemReference(MI, OpNo);
157 }
158 void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
159 printLeaMemReference(MI, OpNo);
160 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000161 void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
Rafael Espindola094fad32009-04-08 21:14:34 +0000162 printLeaMemReference(MI, OpNo, "subreg64");
Evan Cheng25ab6902006-09-08 06:48:29 +0000163 }
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000164
Chris Lattner37710712009-06-15 04:42:32 +0000165 bool printAsmMRegister(const MachineOperand &MO, char Mode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000166 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000167 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000168 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000169 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000170
Evan Cheng62f27002006-04-28 23:11:40 +0000171 void printMachineInstruction(const MachineInstr *MI);
Nate Begeman391c5d22005-11-30 18:54:35 +0000172 void printSSECC(const MachineInstr *MI, unsigned Op);
Evan Cheng25ab6902006-09-08 06:48:29 +0000173 void printMemReference(const MachineInstr *MI, unsigned Op,
Anton Korobeynikov573c92d2009-04-28 21:49:33 +0000174 const char *Modifier=NULL, bool NotRIPRel = false);
Rafael Espindola094fad32009-04-08 21:14:34 +0000175 void printLeaMemReference(const MachineInstr *MI, unsigned Op,
Anton Korobeynikov573c92d2009-04-28 21:49:33 +0000176 const char *Modifier=NULL, bool NotRIPRel = false);
Evan Chengcc415862007-11-09 01:32:10 +0000177 void printPICJumpTableSetLabel(unsigned uid,
178 const MachineBasicBlock *MBB) const;
179 void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
180 const MachineBasicBlock *MBB) const {
181 AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
182 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000183 void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
184 const MachineBasicBlock *MBB,
185 unsigned uid) const;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000186
Evan Cheng7ccced62006-02-18 00:15:05 +0000187 void printPICLabel(const MachineInstr *MI, unsigned Op);
Anton Korobeynikove51ab442008-06-28 11:09:32 +0000188 void printModuleLevelGV(const GlobalVariable* GVar);
189
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000190 bool runOnMachineFunction(MachineFunction &F);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000191
Anton Korobeynikov1ecf0ee2008-06-28 11:09:01 +0000192 void emitFunctionHeader(const MachineFunction &MF);
193
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000194 // Necessary for Darwin to print out the apprioriate types of linker stubs
Evan Chengae94e592008-12-05 01:06:39 +0000195 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000196
197 // Necessary for dllexport support
198 StringSet<> DLLExportedFns, DLLExportedGVs;
199
200 // We have to propagate some information about MachineFunction to
201 // AsmPrinter. It's ok, when we're printing the function, since we have
202 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
203 // Unfortunately, this is not possible when we're printing reference to
204 // Function (e.g. calling it and so on). Even more, there is no way to get the
205 // corresponding MachineFunctions: it can even be not created at all. That's
206 // why we should use additional structure, when we're collecting all necessary
207 // information.
208 //
209 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
210 // function, since we have to use arguments' size for decoration.
211 typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
212 FMFInfoMap FunctionInfoMap;
213
214 void decorateName(std::string& Name, const GlobalValue* GV);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000215};
216
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000217} // end namespace llvm
218
219#endif