blob: 9f5e597df76ddceb6e272543dd9f5e0041ee61b5 [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 Lattner30c74a22009-08-16 03:12:25 +000032class MCOperand;
Chris Lattner40e3c7a2009-06-24 05:46:28 +000033class MCStreamer;
Chris Lattner9b60e042009-08-16 04:28:14 +000034class MCSymbol;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000035
Bill Wendling57f0db82009-02-24 08:30:20 +000036class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000037 const X86Subtarget *Subtarget;
Bill Wendling57f0db82009-02-24 08:30:20 +000038 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +000039 explicit X86ATTAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +000040 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000041 : AsmPrinter(O, TM, T, V) {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000042 Subtarget = &TM.getSubtarget<X86Subtarget>();
43 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000044
45 virtual const char *getPassName() const {
46 return "X86 AT&T-Style Assembly Printer";
47 }
48
Anton Korobeynikov75b68822008-06-28 11:08:27 +000049 void getAnalysisUsage(AnalysisUsage &AU) const {
50 AU.setPreservesAll();
51 if (Subtarget->isTargetDarwin() ||
52 Subtarget->isTargetELF() ||
53 Subtarget->isTargetCygMing()) {
54 AU.addRequired<MachineModuleInfo>();
55 }
Devang Pateleb3fc282009-01-08 23:40:34 +000056 AU.addRequired<DwarfWriter>();
Anton Korobeynikov75b68822008-06-28 11:08:27 +000057 AsmPrinter::getAnalysisUsage(AU);
58 }
59
Anton Korobeynikov75b68822008-06-28 11:08:27 +000060 bool doFinalization(Module &M);
61
Chris Lattnerb36cbd02005-07-01 22:44:09 +000062 /// printInstruction - This method is automatically generated by tablegen
63 /// from the instruction set description. This method returns true if the
64 /// machine instruction was sufficiently described to print it, otherwise it
65 /// returns false.
Chris Lattner41aefdc2009-08-08 01:32:19 +000066 void printInstruction(const MachineInstr *MI);
Chris Lattner522e9a02009-09-02 17:35:12 +000067
68 void printInstructionThroughMCStreamer(const MachineInstr *MI);
69
Chris Lattnerd5fb7902009-06-19 23:59:57 +000070
71 // New MCInst printing stuff.
Chris Lattner41aefdc2009-08-08 01:32:19 +000072 void printInstruction(const MCInst *MI);
Chris Lattner9b60e042009-08-16 04:28:14 +000073 MCSymbol *GetPICBaseSymbol();
Daniel Dunbarec2e4672009-08-31 19:14:05 +000074 MCOperand LowerJumpTableOperand(const MachineOperand &MO);
Chris Lattner30c74a22009-08-16 03:12:25 +000075 MCOperand LowerGlobalAddressOperand(const MachineOperand &MO);
Chris Lattner9b60e042009-08-16 04:28:14 +000076 MCOperand LowerExternalSymbolOperand(const MachineOperand &MO);
Chris Lattner475370b2009-06-19 00:47:33 +000077
Daniel Dunbar575327b2009-08-14 03:43:57 +000078 virtual void printMCInst(const MCInst *MI) { printInstruction(MI); }
79
Chris Lattner174f8162009-07-13 21:41:08 +000080 void printSymbolOperand(const MachineOperand &MO);
Chris Lattnerd5fb7902009-06-19 23:59:57 +000081 void printOperand(const MCInst *MI, unsigned OpNo,
Chris Lattner18c59872009-06-27 04:16:01 +000082 const char *Modifier = 0);
Chris Lattnerc1243062009-06-20 07:03:18 +000083 void printMemReference(const MCInst *MI, unsigned Op);
84 void printLeaMemReference(const MCInst *MI, unsigned Op);
Chris Lattnerd5fb7902009-06-19 23:59:57 +000085 void printSSECC(const MCInst *MI, unsigned Op);
86 void printPICLabel(const MCInst *MI, unsigned Op);
Chris Lattner7680e732009-06-20 19:34:09 +000087 void print_pcrel_imm(const MCInst *MI, unsigned OpNo);
88
Chris Lattnerd5fb7902009-06-19 23:59:57 +000089 void printi8mem(const MCInst *MI, unsigned OpNo) {
90 printMemReference(MI, OpNo);
91 }
92 void printi16mem(const MCInst *MI, unsigned OpNo) {
93 printMemReference(MI, OpNo);
94 }
95 void printi32mem(const MCInst *MI, unsigned OpNo) {
96 printMemReference(MI, OpNo);
97 }
98 void printi64mem(const MCInst *MI, unsigned OpNo) {
99 printMemReference(MI, OpNo);
100 }
101 void printi128mem(const MCInst *MI, unsigned OpNo) {
102 printMemReference(MI, OpNo);
103 }
104 void printf32mem(const MCInst *MI, unsigned OpNo) {
105 printMemReference(MI, OpNo);
106 }
107 void printf64mem(const MCInst *MI, unsigned OpNo) {
108 printMemReference(MI, OpNo);
109 }
110 void printf80mem(const MCInst *MI, unsigned OpNo) {
111 printMemReference(MI, OpNo);
112 }
113 void printf128mem(const MCInst *MI, unsigned OpNo) {
114 printMemReference(MI, OpNo);
115 }
116 void printlea32mem(const MCInst *MI, unsigned OpNo) {
117 printLeaMemReference(MI, OpNo);
118 }
119 void printlea64mem(const MCInst *MI, unsigned OpNo) {
120 printLeaMemReference(MI, OpNo);
121 }
122 void printlea64_32mem(const MCInst *MI, unsigned OpNo) {
Chris Lattnerc1243062009-06-20 07:03:18 +0000123 printLeaMemReference(MI, OpNo);
Chris Lattnerd5fb7902009-06-19 23:59:57 +0000124 }
125
126
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000127
Chris Lattnera3b8c572006-02-06 23:41:19 +0000128 // These methods are used by the tablegen'erated instruction printer.
129 void printOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner18c59872009-06-27 04:16:01 +0000130 const char *Modifier = 0);
Chris Lattner7680e732009-06-20 19:34:09 +0000131 void print_pcrel_imm(const MachineInstr *MI, unsigned OpNo);
Nate Begeman391c5d22005-11-30 18:54:35 +0000132 void printi8mem(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000133 printMemReference(MI, OpNo);
134 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000135 void printi16mem(const MachineInstr *MI, unsigned OpNo) {
136 printMemReference(MI, OpNo);
137 }
138 void printi32mem(const MachineInstr *MI, unsigned OpNo) {
139 printMemReference(MI, OpNo);
140 }
141 void printi64mem(const MachineInstr *MI, unsigned OpNo) {
142 printMemReference(MI, OpNo);
143 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000144 void printi128mem(const MachineInstr *MI, unsigned OpNo) {
145 printMemReference(MI, OpNo);
146 }
David Greenef0c3d022009-06-30 19:24:59 +0000147 void printi256mem(const MachineInstr *MI, unsigned OpNo) {
148 printMemReference(MI, OpNo);
149 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000150 void printf32mem(const MachineInstr *MI, unsigned OpNo) {
151 printMemReference(MI, OpNo);
152 }
153 void printf64mem(const MachineInstr *MI, unsigned OpNo) {
154 printMemReference(MI, OpNo);
155 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000156 void printf80mem(const MachineInstr *MI, unsigned OpNo) {
157 printMemReference(MI, OpNo);
158 }
Evan Cheng223547a2006-01-31 22:28:30 +0000159 void printf128mem(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000160 printMemReference(MI, OpNo);
161 }
David Greenef0c3d022009-06-30 19:24:59 +0000162 void printf256mem(const MachineInstr *MI, unsigned OpNo) {
163 printMemReference(MI, OpNo);
164 }
Rafael Espindola094fad32009-04-08 21:14:34 +0000165 void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
166 printLeaMemReference(MI, OpNo);
167 }
168 void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
169 printLeaMemReference(MI, OpNo);
170 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000171 void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
Rafael Espindola094fad32009-04-08 21:14:34 +0000172 printLeaMemReference(MI, OpNo, "subreg64");
Evan Cheng25ab6902006-09-08 06:48:29 +0000173 }
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000174
Chris Lattner37710712009-06-15 04:42:32 +0000175 bool printAsmMRegister(const MachineOperand &MO, char Mode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000176 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000177 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000178 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000179 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000180
Evan Cheng62f27002006-04-28 23:11:40 +0000181 void printMachineInstruction(const MachineInstr *MI);
Nate Begeman391c5d22005-11-30 18:54:35 +0000182 void printSSECC(const MachineInstr *MI, unsigned Op);
Evan Cheng25ab6902006-09-08 06:48:29 +0000183 void printMemReference(const MachineInstr *MI, unsigned Op,
Chris Lattner18c59872009-06-27 04:16:01 +0000184 const char *Modifier=NULL);
Rafael Espindola094fad32009-04-08 21:14:34 +0000185 void printLeaMemReference(const MachineInstr *MI, unsigned Op,
Chris Lattner18c59872009-06-27 04:16:01 +0000186 const char *Modifier=NULL);
Evan Chengcc415862007-11-09 01:32:10 +0000187 void printPICJumpTableSetLabel(unsigned uid,
188 const MachineBasicBlock *MBB) const;
189 void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
190 const MachineBasicBlock *MBB) const {
191 AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
192 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000193 void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
194 const MachineBasicBlock *MBB,
195 unsigned uid) const;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000196
Evan Cheng7ccced62006-02-18 00:15:05 +0000197 void printPICLabel(const MachineInstr *MI, unsigned Op);
Chris Lattner40bbebd2009-07-21 18:38:57 +0000198 void PrintGlobalVariable(const GlobalVariable* GVar);
Anton Korobeynikove51ab442008-06-28 11:09:32 +0000199
Chris Lattnerb5299dd2009-06-24 19:19:16 +0000200 void PrintPICBaseSymbol() const;
201
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000202 bool runOnMachineFunction(MachineFunction &F);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000203
Anton Korobeynikov1ecf0ee2008-06-28 11:09:01 +0000204 void emitFunctionHeader(const MachineFunction &MF);
205
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000206 // Necessary for Darwin to print out the apprioriate types of linker stubs
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000207 StringMap<std::string> FnStubs, GVStubs, HiddenGVStubs;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000208
209 // Necessary for dllexport support
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000210 StringSet<> CygMingStubs, DLLExportedFns, DLLExportedGVs;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000211
212 // We have to propagate some information about MachineFunction to
213 // AsmPrinter. It's ok, when we're printing the function, since we have
214 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
215 // Unfortunately, this is not possible when we're printing reference to
216 // Function (e.g. calling it and so on). Even more, there is no way to get the
217 // corresponding MachineFunctions: it can even be not created at all. That's
218 // why we should use additional structure, when we're collecting all necessary
219 // information.
220 //
221 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
222 // function, since we have to use arguments' size for decoration.
223 typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
224 FMFInfoMap FunctionInfoMap;
225
Chris Lattnerc08872e2009-07-15 04:55:56 +0000226 void DecorateCygMingName(std::string &Name, const GlobalValue *GV);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000227};
228
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000229} // end namespace llvm
230
231#endif