blob: f47daf1c724760b90bbdbd9b446457d1e6c97cd5 [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,
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000041 const TargetAsmInfo *T, bool V)
42 : AsmPrinter(O, TM, T, V) {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000043 Subtarget = &TM.getSubtarget<X86Subtarget>();
Chris Lattner40e3c7a2009-06-24 05:46:28 +000044 Context = 0;
45 Streamer = 0;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000046 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000047
48 virtual const char *getPassName() const {
49 return "X86 AT&T-Style Assembly Printer";
50 }
51
Anton Korobeynikov75b68822008-06-28 11:08:27 +000052 void getAnalysisUsage(AnalysisUsage &AU) const {
53 AU.setPreservesAll();
54 if (Subtarget->isTargetDarwin() ||
55 Subtarget->isTargetELF() ||
56 Subtarget->isTargetCygMing()) {
57 AU.addRequired<MachineModuleInfo>();
58 }
Devang Pateleb3fc282009-01-08 23:40:34 +000059 AU.addRequired<DwarfWriter>();
Anton Korobeynikov75b68822008-06-28 11:08:27 +000060 AsmPrinter::getAnalysisUsage(AU);
61 }
62
Devang Patel66b4d3b2009-06-20 01:00:07 +000063 bool doInitialization(Module &M);
Anton Korobeynikov75b68822008-06-28 11:08:27 +000064 bool doFinalization(Module &M);
65
Chris Lattnerb36cbd02005-07-01 22:44:09 +000066 /// printInstruction - This method is automatically generated by tablegen
67 /// from the instruction set description. This method returns true if the
68 /// machine instruction was sufficiently described to print it, otherwise it
69 /// returns false.
70 bool printInstruction(const MachineInstr *MI);
Chris Lattner475370b2009-06-19 00:47:33 +000071
Chris Lattnerd5fb7902009-06-19 23:59:57 +000072
73 // New MCInst printing stuff.
74 bool printInstruction(const MCInst *MI);
Chris Lattner475370b2009-06-19 00:47:33 +000075
Chris Lattnerd5fb7902009-06-19 23:59:57 +000076 void printOperand(const MCInst *MI, unsigned OpNo,
Chris Lattner18c59872009-06-27 04:16:01 +000077 const char *Modifier = 0);
Chris Lattnerc1243062009-06-20 07:03:18 +000078 void printMemReference(const MCInst *MI, unsigned Op);
79 void printLeaMemReference(const MCInst *MI, unsigned Op);
Chris Lattnerd5fb7902009-06-19 23:59:57 +000080 void printSSECC(const MCInst *MI, unsigned Op);
81 void printPICLabel(const MCInst *MI, unsigned Op);
Chris Lattner7680e732009-06-20 19:34:09 +000082 void print_pcrel_imm(const MCInst *MI, unsigned OpNo);
83
Chris Lattnerd5fb7902009-06-19 23:59:57 +000084 void printi8mem(const MCInst *MI, unsigned OpNo) {
85 printMemReference(MI, OpNo);
86 }
87 void printi16mem(const MCInst *MI, unsigned OpNo) {
88 printMemReference(MI, OpNo);
89 }
90 void printi32mem(const MCInst *MI, unsigned OpNo) {
91 printMemReference(MI, OpNo);
92 }
93 void printi64mem(const MCInst *MI, unsigned OpNo) {
94 printMemReference(MI, OpNo);
95 }
96 void printi128mem(const MCInst *MI, unsigned OpNo) {
97 printMemReference(MI, OpNo);
98 }
99 void printf32mem(const MCInst *MI, unsigned OpNo) {
100 printMemReference(MI, OpNo);
101 }
102 void printf64mem(const MCInst *MI, unsigned OpNo) {
103 printMemReference(MI, OpNo);
104 }
105 void printf80mem(const MCInst *MI, unsigned OpNo) {
106 printMemReference(MI, OpNo);
107 }
108 void printf128mem(const MCInst *MI, unsigned OpNo) {
109 printMemReference(MI, OpNo);
110 }
111 void printlea32mem(const MCInst *MI, unsigned OpNo) {
112 printLeaMemReference(MI, OpNo);
113 }
114 void printlea64mem(const MCInst *MI, unsigned OpNo) {
115 printLeaMemReference(MI, OpNo);
116 }
117 void printlea64_32mem(const MCInst *MI, unsigned OpNo) {
Chris Lattnerc1243062009-06-20 07:03:18 +0000118 printLeaMemReference(MI, OpNo);
Chris Lattnerd5fb7902009-06-19 23:59:57 +0000119 }
120
121
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000122
Chris Lattnera3b8c572006-02-06 23:41:19 +0000123 // These methods are used by the tablegen'erated instruction printer.
124 void printOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner18c59872009-06-27 04:16:01 +0000125 const char *Modifier = 0);
Chris Lattner7680e732009-06-20 19:34:09 +0000126 void print_pcrel_imm(const MachineInstr *MI, unsigned OpNo);
Nate Begeman391c5d22005-11-30 18:54:35 +0000127 void printi8mem(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000128 printMemReference(MI, OpNo);
129 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000130 void printi16mem(const MachineInstr *MI, unsigned OpNo) {
131 printMemReference(MI, OpNo);
132 }
133 void printi32mem(const MachineInstr *MI, unsigned OpNo) {
134 printMemReference(MI, OpNo);
135 }
136 void printi64mem(const MachineInstr *MI, unsigned OpNo) {
137 printMemReference(MI, OpNo);
138 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000139 void printi128mem(const MachineInstr *MI, unsigned OpNo) {
140 printMemReference(MI, OpNo);
141 }
David Greenef0c3d022009-06-30 19:24:59 +0000142 void printi256mem(const MachineInstr *MI, unsigned OpNo) {
143 printMemReference(MI, OpNo);
144 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000145 void printf32mem(const MachineInstr *MI, unsigned OpNo) {
146 printMemReference(MI, OpNo);
147 }
148 void printf64mem(const MachineInstr *MI, unsigned OpNo) {
149 printMemReference(MI, OpNo);
150 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000151 void printf80mem(const MachineInstr *MI, unsigned OpNo) {
152 printMemReference(MI, OpNo);
153 }
Evan Cheng223547a2006-01-31 22:28:30 +0000154 void printf128mem(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000155 printMemReference(MI, OpNo);
156 }
David Greenef0c3d022009-06-30 19:24:59 +0000157 void printf256mem(const MachineInstr *MI, unsigned OpNo) {
158 printMemReference(MI, OpNo);
159 }
Rafael Espindola094fad32009-04-08 21:14:34 +0000160 void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
161 printLeaMemReference(MI, OpNo);
162 }
163 void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
164 printLeaMemReference(MI, OpNo);
165 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000166 void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
Rafael Espindola094fad32009-04-08 21:14:34 +0000167 printLeaMemReference(MI, OpNo, "subreg64");
Evan Cheng25ab6902006-09-08 06:48:29 +0000168 }
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000169
Chris Lattner37710712009-06-15 04:42:32 +0000170 bool printAsmMRegister(const MachineOperand &MO, char Mode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000171 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000172 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000173 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000174 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000175
Evan Cheng62f27002006-04-28 23:11:40 +0000176 void printMachineInstruction(const MachineInstr *MI);
Nate Begeman391c5d22005-11-30 18:54:35 +0000177 void printSSECC(const MachineInstr *MI, unsigned Op);
Evan Cheng25ab6902006-09-08 06:48:29 +0000178 void printMemReference(const MachineInstr *MI, unsigned Op,
Chris Lattner18c59872009-06-27 04:16:01 +0000179 const char *Modifier=NULL);
Rafael Espindola094fad32009-04-08 21:14:34 +0000180 void printLeaMemReference(const MachineInstr *MI, unsigned Op,
Chris Lattner18c59872009-06-27 04:16:01 +0000181 const char *Modifier=NULL);
Evan Chengcc415862007-11-09 01:32:10 +0000182 void printPICJumpTableSetLabel(unsigned uid,
183 const MachineBasicBlock *MBB) const;
184 void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
185 const MachineBasicBlock *MBB) const {
186 AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
187 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000188 void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
189 const MachineBasicBlock *MBB,
190 unsigned uid) const;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000191
Evan Cheng7ccced62006-02-18 00:15:05 +0000192 void printPICLabel(const MachineInstr *MI, unsigned Op);
Anton Korobeynikove51ab442008-06-28 11:09:32 +0000193 void printModuleLevelGV(const GlobalVariable* GVar);
194
Chris Lattnerb5299dd2009-06-24 19:19:16 +0000195 void PrintPICBaseSymbol() const;
196
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000197 bool runOnMachineFunction(MachineFunction &F);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000198
Anton Korobeynikov1ecf0ee2008-06-28 11:09:01 +0000199 void emitFunctionHeader(const MachineFunction &MF);
200
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000201 // Necessary for Darwin to print out the apprioriate types of linker stubs
Evan Chengae94e592008-12-05 01:06:39 +0000202 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000203
204 // Necessary for dllexport support
205 StringSet<> DLLExportedFns, DLLExportedGVs;
206
207 // We have to propagate some information about MachineFunction to
208 // AsmPrinter. It's ok, when we're printing the function, since we have
209 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
210 // Unfortunately, this is not possible when we're printing reference to
211 // Function (e.g. calling it and so on). Even more, there is no way to get the
212 // corresponding MachineFunctions: it can even be not created at all. That's
213 // why we should use additional structure, when we're collecting all necessary
214 // information.
215 //
216 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
217 // function, since we have to use arguments' size for decoration.
218 typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
219 FMFInfoMap FunctionInfoMap;
220
221 void decorateName(std::string& Name, const GlobalValue* GV);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000222};
223
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000224} // end namespace llvm
225
226#endif