blob: 28f9efcec05ced9f8cc7f6d68c0547b644121ace [file] [log] [blame]
Dan Gohmane33c4b72007-06-25 15:11:25 +00001//===-- X86ATTAsmPrinter.h - Convert X86 LLVM code to AT&T assembly -------===//
Chris Lattnerb9740462005-07-01 22:44:09 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Lattnerb9740462005-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 Venet954553c2008-08-17 18:24:26 +000017#include "../X86.h"
18#include "../X86MachineFunctionInfo.h"
19#include "../X86TargetMachine.h"
Anton Korobeynikov016d1d02008-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 Lattnerb9740462005-07-01 22:44:09 +000024#include "llvm/CodeGen/ValueTypes.h"
Anton Korobeynikov016d1d02008-06-28 11:08:27 +000025#include "llvm/Support/Compiler.h"
Chris Lattnerb9740462005-07-01 22:44:09 +000026
27namespace llvm {
Chris Lattnerb9740462005-07-01 22:44:09 +000028
Bill Wendling6b167d62009-05-12 21:55:29 +000029class MachineJumpTableInfo;
Chris Lattner9f40bc22009-06-24 05:46:28 +000030class MCContext;
Chris Lattner3235c382009-06-19 00:47:33 +000031class MCInst;
Chris Lattnerc659caa2009-08-16 03:12:25 +000032class MCOperand;
Chris Lattner9f40bc22009-06-24 05:46:28 +000033class MCStreamer;
Chris Lattner8a4c35d2009-08-16 04:28:14 +000034class MCSymbol;
Anton Korobeynikov016d1d02008-06-28 11:08:27 +000035
Bill Wendlingc5437ea2009-02-24 08:30:20 +000036class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
Anton Korobeynikov016d1d02008-06-28 11:08:27 +000037 const X86Subtarget *Subtarget;
Bill Wendlingc5437ea2009-02-24 08:30:20 +000038 public:
Daniel Dunbare8338102009-07-15 20:24:03 +000039 explicit X86ATTAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner7b26fce2009-08-22 20:48:53 +000040 const MCAsmInfo *T, bool V)
Daniel Dunbar75c12e12009-07-01 01:48:54 +000041 : AsmPrinter(O, TM, T, V) {
Anton Korobeynikov016d1d02008-06-28 11:08:27 +000042 Subtarget = &TM.getSubtarget<X86Subtarget>();
43 }
Chris Lattnerb9740462005-07-01 22:44:09 +000044
45 virtual const char *getPassName() const {
46 return "X86 AT&T-Style Assembly Printer";
47 }
48
Anton Korobeynikov016d1d02008-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 Patelf6466682009-01-08 23:40:34 +000056 AU.addRequired<DwarfWriter>();
Anton Korobeynikov016d1d02008-06-28 11:08:27 +000057 AsmPrinter::getAnalysisUsage(AU);
58 }
59
Anton Korobeynikov016d1d02008-06-28 11:08:27 +000060 bool doFinalization(Module &M);
61
Chris Lattner74f4ca72009-09-02 17:35:12 +000062 void printInstructionThroughMCStreamer(const MachineInstr *MI);
63
Chris Lattner8d284c72009-06-19 23:59:57 +000064
65 // New MCInst printing stuff.
Chris Lattnerb94284b2009-08-08 01:32:19 +000066 void printInstruction(const MCInst *MI);
Chris Lattner8a4c35d2009-08-16 04:28:14 +000067 MCSymbol *GetPICBaseSymbol();
Chris Lattner954b9cd2009-09-03 05:06:07 +000068 MCSymbol *GetGlobalAddressSymbol(const MachineOperand &MO);
Chris Lattner6370d562009-09-03 04:56:20 +000069 MCSymbol *GetExternalSymbolSymbol(const MachineOperand &MO);
70 MCSymbol *GetJumpTableSymbol(const MachineOperand &MO);
71 MCSymbol *GetConstantPoolIndexSymbol(const MachineOperand &MO);
72 MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym);
Chris Lattner5daf6192009-09-03 04:44:53 +000073
Chris Lattner3235c382009-06-19 00:47:33 +000074
Daniel Dunbar50327c52009-08-14 03:43:57 +000075 virtual void printMCInst(const MCInst *MI) { printInstruction(MI); }
76
Chris Lattnerbf25a202009-07-13 21:41:08 +000077 void printSymbolOperand(const MachineOperand &MO);
Chris Lattner8d284c72009-06-19 23:59:57 +000078 void printOperand(const MCInst *MI, unsigned OpNo,
Chris Lattnerfea81da2009-06-27 04:16:01 +000079 const char *Modifier = 0);
Chris Lattnera0022a72009-06-20 07:03:18 +000080 void printMemReference(const MCInst *MI, unsigned Op);
81 void printLeaMemReference(const MCInst *MI, unsigned Op);
Chris Lattner8d284c72009-06-19 23:59:57 +000082 void printSSECC(const MCInst *MI, unsigned Op);
83 void printPICLabel(const MCInst *MI, unsigned Op);
Chris Lattner9c211962009-06-20 19:34:09 +000084 void print_pcrel_imm(const MCInst *MI, unsigned OpNo);
85
Sean Callananf4004422009-09-03 00:04:47 +000086 void printopaquemem(const MCInst *MI, unsigned OpNo) {
87 printMemReference(MI, OpNo);
88 }
89
Chris Lattner8d284c72009-06-19 23:59:57 +000090 void printi8mem(const MCInst *MI, unsigned OpNo) {
91 printMemReference(MI, OpNo);
92 }
93 void printi16mem(const MCInst *MI, unsigned OpNo) {
94 printMemReference(MI, OpNo);
95 }
96 void printi32mem(const MCInst *MI, unsigned OpNo) {
97 printMemReference(MI, OpNo);
98 }
99 void printi64mem(const MCInst *MI, unsigned OpNo) {
100 printMemReference(MI, OpNo);
101 }
102 void printi128mem(const MCInst *MI, unsigned OpNo) {
103 printMemReference(MI, OpNo);
104 }
105 void printf32mem(const MCInst *MI, unsigned OpNo) {
106 printMemReference(MI, OpNo);
107 }
108 void printf64mem(const MCInst *MI, unsigned OpNo) {
109 printMemReference(MI, OpNo);
110 }
111 void printf80mem(const MCInst *MI, unsigned OpNo) {
112 printMemReference(MI, OpNo);
113 }
114 void printf128mem(const MCInst *MI, unsigned OpNo) {
115 printMemReference(MI, OpNo);
116 }
117 void printlea32mem(const MCInst *MI, unsigned OpNo) {
118 printLeaMemReference(MI, OpNo);
119 }
120 void printlea64mem(const MCInst *MI, unsigned OpNo) {
121 printLeaMemReference(MI, OpNo);
122 }
123 void printlea64_32mem(const MCInst *MI, unsigned OpNo) {
Chris Lattnera0022a72009-06-20 07:03:18 +0000124 printLeaMemReference(MI, OpNo);
Chris Lattner8d284c72009-06-19 23:59:57 +0000125 }
126
127
Chris Lattnerb9740462005-07-01 22:44:09 +0000128
Chris Lattnerd62a3bf2006-02-06 23:41:19 +0000129 // These methods are used by the tablegen'erated instruction printer.
130 void printOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnerfea81da2009-06-27 04:16:01 +0000131 const char *Modifier = 0);
Chris Lattner9c211962009-06-20 19:34:09 +0000132 void print_pcrel_imm(const MachineInstr *MI, unsigned OpNo);
Sean Callananf4004422009-09-03 00:04:47 +0000133
134 void printopaquemem(const MachineInstr *MI, unsigned OpNo) {
135 printMemReference(MI, OpNo);
136 }
137
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000138 void printi8mem(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerb9740462005-07-01 22:44:09 +0000139 printMemReference(MI, OpNo);
140 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000141 void printi16mem(const MachineInstr *MI, unsigned OpNo) {
142 printMemReference(MI, OpNo);
143 }
144 void printi32mem(const MachineInstr *MI, unsigned OpNo) {
145 printMemReference(MI, OpNo);
146 }
147 void printi64mem(const MachineInstr *MI, unsigned OpNo) {
148 printMemReference(MI, OpNo);
149 }
Evan Cheng9e252e32006-02-22 02:26:30 +0000150 void printi128mem(const MachineInstr *MI, unsigned OpNo) {
151 printMemReference(MI, OpNo);
152 }
David Greene50475de2009-06-30 19:24:59 +0000153 void printi256mem(const MachineInstr *MI, unsigned OpNo) {
154 printMemReference(MI, OpNo);
155 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000156 void printf32mem(const MachineInstr *MI, unsigned OpNo) {
157 printMemReference(MI, OpNo);
158 }
159 void printf64mem(const MachineInstr *MI, unsigned OpNo) {
160 printMemReference(MI, OpNo);
161 }
Dale Johannesenb1888e72007-08-05 18:49:15 +0000162 void printf80mem(const MachineInstr *MI, unsigned OpNo) {
163 printMemReference(MI, OpNo);
164 }
Evan Cheng72d5c252006-01-31 22:28:30 +0000165 void printf128mem(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000166 printMemReference(MI, OpNo);
167 }
David Greene50475de2009-06-30 19:24:59 +0000168 void printf256mem(const MachineInstr *MI, unsigned OpNo) {
169 printMemReference(MI, OpNo);
170 }
Rafael Espindola3b2df102009-04-08 21:14:34 +0000171 void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
172 printLeaMemReference(MI, OpNo);
173 }
174 void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
175 printLeaMemReference(MI, OpNo);
176 }
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000177 void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
Rafael Espindola3b2df102009-04-08 21:14:34 +0000178 printLeaMemReference(MI, OpNo, "subreg64");
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000179 }
Anton Korobeynikov016d1d02008-06-28 11:08:27 +0000180
Chris Lattner8565c4b2009-06-15 04:42:32 +0000181 bool printAsmMRegister(const MachineOperand &MO, char Mode);
Anton Korobeynikova54216a2008-06-28 11:09:48 +0000182 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng68a44dc2006-04-28 21:19:05 +0000183 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikova54216a2008-06-28 11:09:48 +0000184 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng68a44dc2006-04-28 21:19:05 +0000185 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov016d1d02008-06-28 11:08:27 +0000186
Evan Chengb244b802006-04-28 23:11:40 +0000187 void printMachineInstruction(const MachineInstr *MI);
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000188 void printSSECC(const MachineInstr *MI, unsigned Op);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000189 void printMemReference(const MachineInstr *MI, unsigned Op,
Chris Lattnerfea81da2009-06-27 04:16:01 +0000190 const char *Modifier=NULL);
Rafael Espindola3b2df102009-04-08 21:14:34 +0000191 void printLeaMemReference(const MachineInstr *MI, unsigned Op,
Chris Lattnerfea81da2009-06-27 04:16:01 +0000192 const char *Modifier=NULL);
Evan Cheng797d56f2007-11-09 01:32:10 +0000193 void printPICJumpTableSetLabel(unsigned uid,
194 const MachineBasicBlock *MBB) const;
195 void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
196 const MachineBasicBlock *MBB) const {
197 AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
198 }
Anton Korobeynikov2c638782007-11-14 09:18:41 +0000199 void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
200 const MachineBasicBlock *MBB,
201 unsigned uid) const;
Anton Korobeynikov016d1d02008-06-28 11:08:27 +0000202
Evan Cheng5588de92006-02-18 00:15:05 +0000203 void printPICLabel(const MachineInstr *MI, unsigned Op);
Chris Lattner100865e2009-07-21 18:38:57 +0000204 void PrintGlobalVariable(const GlobalVariable* GVar);
Anton Korobeynikovab9ff5a2008-06-28 11:09:32 +0000205
Chris Lattner9b4aaef2009-06-24 19:19:16 +0000206 void PrintPICBaseSymbol() const;
207
Chris Lattnerb9740462005-07-01 22:44:09 +0000208 bool runOnMachineFunction(MachineFunction &F);
Anton Korobeynikov016d1d02008-06-28 11:08:27 +0000209
Anton Korobeynikov76b88282008-06-28 11:09:01 +0000210 void emitFunctionHeader(const MachineFunction &MF);
211
Chris Lattner19a9f422009-09-11 07:03:20 +0000212 // Necessary for Darwin to print out the appropriate types of linker stubs.
Chris Lattner446d5892009-09-11 06:59:18 +0000213 DenseMap<MCSymbol*, MCSymbol*> FnStubs; // Darwin $stub stubs.
214 DenseMap<MCSymbol*, MCSymbol*> GVStubs; // Darwin $non_lazy_ptr stub.
Chris Lattner19a9f422009-09-11 07:03:20 +0000215 DenseMap<MCSymbol*, MCSymbol*> HiddenGVStubs; // Darwin $non_lazy_ptr stub.
Anton Korobeynikov016d1d02008-06-28 11:08:27 +0000216
217 // Necessary for dllexport support
Chris Lattner8c9a96b2009-07-14 18:17:16 +0000218 StringSet<> CygMingStubs, DLLExportedFns, DLLExportedGVs;
Anton Korobeynikov016d1d02008-06-28 11:08:27 +0000219
220 // We have to propagate some information about MachineFunction to
221 // AsmPrinter. It's ok, when we're printing the function, since we have
222 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
223 // Unfortunately, this is not possible when we're printing reference to
224 // Function (e.g. calling it and so on). Even more, there is no way to get the
225 // corresponding MachineFunctions: it can even be not created at all. That's
226 // why we should use additional structure, when we're collecting all necessary
227 // information.
228 //
229 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
230 // function, since we have to use arguments' size for decoration.
231 typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
232 FMFInfoMap FunctionInfoMap;
233
Chris Lattnere4a3f6f2009-07-15 04:55:56 +0000234 void DecorateCygMingName(std::string &Name, const GlobalValue *GV);
Chris Lattner482c5df2009-09-11 04:28:13 +0000235 void DecorateCygMingName(SmallVectorImpl<char> &Name, const GlobalValue *GV);
Chris Lattnerb9740462005-07-01 22:44:09 +0000236};
237
Chris Lattnerb9740462005-07-01 22:44:09 +0000238} // end namespace llvm
239
240#endif