blob: 051adf72644f544e2b39548adec234884d52e309 [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 MachineModuleInfo *MMI;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000036 const X86Subtarget *Subtarget;
Chris Lattner40e3c7a2009-06-24 05:46:28 +000037
38 MCContext *Context;
39 MCStreamer *Streamer;
Bill Wendling57f0db82009-02-24 08:30:20 +000040 public:
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000041 explicit X86ATTAsmPrinter(raw_ostream &O, X86TargetMachine &TM,
Bill Wendling98a366d2009-04-29 23:29:43 +000042 const TargetAsmInfo *T, CodeGenOpt::Level OL,
43 bool V)
Devang Patel14a55d92009-06-19 21:54:26 +000044 : AsmPrinter(O, TM, T, OL, V), MMI(0) {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000045 Subtarget = &TM.getSubtarget<X86Subtarget>();
Chris Lattner40e3c7a2009-06-24 05:46:28 +000046 Context = 0;
47 Streamer = 0;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000048 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000049
50 virtual const char *getPassName() const {
51 return "X86 AT&T-Style Assembly Printer";
52 }
53
Anton Korobeynikov75b68822008-06-28 11:08:27 +000054 void getAnalysisUsage(AnalysisUsage &AU) const {
55 AU.setPreservesAll();
56 if (Subtarget->isTargetDarwin() ||
57 Subtarget->isTargetELF() ||
58 Subtarget->isTargetCygMing()) {
59 AU.addRequired<MachineModuleInfo>();
60 }
Devang Pateleb3fc282009-01-08 23:40:34 +000061 AU.addRequired<DwarfWriter>();
Anton Korobeynikov75b68822008-06-28 11:08:27 +000062 AsmPrinter::getAnalysisUsage(AU);
63 }
64
Devang Patel66b4d3b2009-06-20 01:00:07 +000065 bool doInitialization(Module &M);
Anton Korobeynikov75b68822008-06-28 11:08:27 +000066 bool doFinalization(Module &M);
67
Chris Lattnerb36cbd02005-07-01 22:44:09 +000068 /// printInstruction - This method is automatically generated by tablegen
69 /// from the instruction set description. This method returns true if the
70 /// machine instruction was sufficiently described to print it, otherwise it
71 /// returns false.
72 bool printInstruction(const MachineInstr *MI);
Chris Lattner475370b2009-06-19 00:47:33 +000073
Chris Lattnerd5fb7902009-06-19 23:59:57 +000074
75 // New MCInst printing stuff.
76 bool printInstruction(const MCInst *MI);
Chris Lattner475370b2009-06-19 00:47:33 +000077
Chris Lattnerd5fb7902009-06-19 23:59:57 +000078 void printOperand(const MCInst *MI, unsigned OpNo,
79 const char *Modifier = 0, bool NotRIPRel = false);
Chris Lattnerc1243062009-06-20 07:03:18 +000080 void printMemReference(const MCInst *MI, unsigned Op);
81 void printLeaMemReference(const MCInst *MI, unsigned Op);
Chris Lattnerd5fb7902009-06-19 23:59:57 +000082 void printSSECC(const MCInst *MI, unsigned Op);
83 void printPICLabel(const MCInst *MI, unsigned Op);
Chris Lattner7680e732009-06-20 19:34:09 +000084 void print_pcrel_imm(const MCInst *MI, unsigned OpNo);
85
Chris Lattnerd5fb7902009-06-19 23:59:57 +000086 void printi8mem(const MCInst *MI, unsigned OpNo) {
87 printMemReference(MI, OpNo);
88 }
89 void printi16mem(const MCInst *MI, unsigned OpNo) {
90 printMemReference(MI, OpNo);
91 }
92 void printi32mem(const MCInst *MI, unsigned OpNo) {
93 printMemReference(MI, OpNo);
94 }
95 void printi64mem(const MCInst *MI, unsigned OpNo) {
96 printMemReference(MI, OpNo);
97 }
98 void printi128mem(const MCInst *MI, unsigned OpNo) {
99 printMemReference(MI, OpNo);
100 }
101 void printf32mem(const MCInst *MI, unsigned OpNo) {
102 printMemReference(MI, OpNo);
103 }
104 void printf64mem(const MCInst *MI, unsigned OpNo) {
105 printMemReference(MI, OpNo);
106 }
107 void printf80mem(const MCInst *MI, unsigned OpNo) {
108 printMemReference(MI, OpNo);
109 }
110 void printf128mem(const MCInst *MI, unsigned OpNo) {
111 printMemReference(MI, OpNo);
112 }
113 void printlea32mem(const MCInst *MI, unsigned OpNo) {
114 printLeaMemReference(MI, OpNo);
115 }
116 void printlea64mem(const MCInst *MI, unsigned OpNo) {
117 printLeaMemReference(MI, OpNo);
118 }
119 void printlea64_32mem(const MCInst *MI, unsigned OpNo) {
Chris Lattnerc1243062009-06-20 07:03:18 +0000120 printLeaMemReference(MI, OpNo);
Chris Lattnerd5fb7902009-06-19 23:59:57 +0000121 }
122
123
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000124
Chris Lattnera3b8c572006-02-06 23:41:19 +0000125 // These methods are used by the tablegen'erated instruction printer.
126 void printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +0000127 const char *Modifier = 0, bool NotRIPRel = false);
Chris Lattner7680e732009-06-20 19:34:09 +0000128 void print_pcrel_imm(const MachineInstr *MI, unsigned OpNo);
Nate Begeman391c5d22005-11-30 18:54:35 +0000129 void printi8mem(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000130 printMemReference(MI, OpNo);
131 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000132 void printi16mem(const MachineInstr *MI, unsigned OpNo) {
133 printMemReference(MI, OpNo);
134 }
135 void printi32mem(const MachineInstr *MI, unsigned OpNo) {
136 printMemReference(MI, OpNo);
137 }
138 void printi64mem(const MachineInstr *MI, unsigned OpNo) {
139 printMemReference(MI, OpNo);
140 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000141 void printi128mem(const MachineInstr *MI, unsigned OpNo) {
142 printMemReference(MI, OpNo);
143 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000144 void printf32mem(const MachineInstr *MI, unsigned OpNo) {
145 printMemReference(MI, OpNo);
146 }
147 void printf64mem(const MachineInstr *MI, unsigned OpNo) {
148 printMemReference(MI, OpNo);
149 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000150 void printf80mem(const MachineInstr *MI, unsigned OpNo) {
151 printMemReference(MI, OpNo);
152 }
Evan Cheng223547a2006-01-31 22:28:30 +0000153 void printf128mem(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000154 printMemReference(MI, OpNo);
155 }
Rafael Espindola094fad32009-04-08 21:14:34 +0000156 void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
157 printLeaMemReference(MI, OpNo);
158 }
159 void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
160 printLeaMemReference(MI, OpNo);
161 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000162 void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
Rafael Espindola094fad32009-04-08 21:14:34 +0000163 printLeaMemReference(MI, OpNo, "subreg64");
Evan Cheng25ab6902006-09-08 06:48:29 +0000164 }
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000165
Chris Lattner37710712009-06-15 04:42:32 +0000166 bool printAsmMRegister(const MachineOperand &MO, char Mode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000167 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000168 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000169 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000170 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000171
Evan Cheng62f27002006-04-28 23:11:40 +0000172 void printMachineInstruction(const MachineInstr *MI);
Nate Begeman391c5d22005-11-30 18:54:35 +0000173 void printSSECC(const MachineInstr *MI, unsigned Op);
Evan Cheng25ab6902006-09-08 06:48:29 +0000174 void printMemReference(const MachineInstr *MI, unsigned Op,
Anton Korobeynikov573c92d2009-04-28 21:49:33 +0000175 const char *Modifier=NULL, bool NotRIPRel = false);
Rafael Espindola094fad32009-04-08 21:14:34 +0000176 void printLeaMemReference(const MachineInstr *MI, unsigned Op,
Anton Korobeynikov573c92d2009-04-28 21:49:33 +0000177 const char *Modifier=NULL, bool NotRIPRel = false);
Evan Chengcc415862007-11-09 01:32:10 +0000178 void printPICJumpTableSetLabel(unsigned uid,
179 const MachineBasicBlock *MBB) const;
180 void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
181 const MachineBasicBlock *MBB) const {
182 AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
183 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000184 void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
185 const MachineBasicBlock *MBB,
186 unsigned uid) const;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000187
Evan Cheng7ccced62006-02-18 00:15:05 +0000188 void printPICLabel(const MachineInstr *MI, unsigned Op);
Anton Korobeynikove51ab442008-06-28 11:09:32 +0000189 void printModuleLevelGV(const GlobalVariable* GVar);
190
Evan Cheng77c8f762008-07-08 00:55:58 +0000191 void printGVStub(const char *GV, const char *Prefix = NULL);
Evan Chengae94e592008-12-05 01:06:39 +0000192 void printHiddenGVStub(const char *GV, const char *Prefix = NULL);
Evan Cheng77c8f762008-07-08 00:55:58 +0000193
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000194 bool runOnMachineFunction(MachineFunction &F);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000195
Anton Korobeynikov1ecf0ee2008-06-28 11:09:01 +0000196 void emitFunctionHeader(const MachineFunction &MF);
197
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000198 // Necessary for Darwin to print out the apprioriate types of linker stubs
Evan Chengae94e592008-12-05 01:06:39 +0000199 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000200
201 // Necessary for dllexport support
202 StringSet<> DLLExportedFns, DLLExportedGVs;
203
204 // We have to propagate some information about MachineFunction to
205 // AsmPrinter. It's ok, when we're printing the function, since we have
206 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
207 // Unfortunately, this is not possible when we're printing reference to
208 // Function (e.g. calling it and so on). Even more, there is no way to get the
209 // corresponding MachineFunctions: it can even be not created at all. That's
210 // why we should use additional structure, when we're collecting all necessary
211 // information.
212 //
213 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
214 // function, since we have to use arguments' size for decoration.
215 typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
216 FMFInfoMap FunctionInfoMap;
217
218 void decorateName(std::string& Name, const GlobalValue* GV);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000219};
220
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000221} // end namespace llvm
222
223#endif