blob: 12c3d1168e9974d0961a790280039127b4df76b5 [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;
Chris Lattner9b60e042009-08-16 04:28:14 +000033class MCSymbol;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000034
Bill Wendling57f0db82009-02-24 08:30:20 +000035class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000036 const X86Subtarget *Subtarget;
Bill Wendling57f0db82009-02-24 08:30:20 +000037 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +000038 explicit X86ATTAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +000039 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000040 : AsmPrinter(O, TM, T, V) {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000041 Subtarget = &TM.getSubtarget<X86Subtarget>();
42 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000043
44 virtual const char *getPassName() const {
45 return "X86 AT&T-Style Assembly Printer";
46 }
Chris Lattner8fea32f2009-09-12 20:34:57 +000047
48 const X86Subtarget &getSubtarget() const { return *Subtarget; }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000049
Anton Korobeynikov75b68822008-06-28 11:08:27 +000050 void getAnalysisUsage(AnalysisUsage &AU) const {
51 AU.setPreservesAll();
52 if (Subtarget->isTargetDarwin() ||
53 Subtarget->isTargetELF() ||
54 Subtarget->isTargetCygMing()) {
55 AU.addRequired<MachineModuleInfo>();
56 }
Devang Pateleb3fc282009-01-08 23:40:34 +000057 AU.addRequired<DwarfWriter>();
Anton Korobeynikov75b68822008-06-28 11:08:27 +000058 AsmPrinter::getAnalysisUsage(AU);
59 }
60
Anton Korobeynikov75b68822008-06-28 11:08:27 +000061 bool doFinalization(Module &M);
62
Chris Lattner522e9a02009-09-02 17:35:12 +000063 void printInstructionThroughMCStreamer(const MachineInstr *MI);
64
Chris Lattner118c27c2009-09-03 04:44:53 +000065
Chris Lattnercae05cb2009-09-13 19:30:11 +000066 // FIXME: REMOVE.
67 virtual void printMCInst(const MCInst *MI);
Daniel Dunbar575327b2009-08-14 03:43:57 +000068
Chris Lattner174f8162009-07-13 21:41:08 +000069 void printSymbolOperand(const MachineOperand &MO);
Chris Lattnerd5fb7902009-06-19 23:59:57 +000070
71
Chris Lattnerb36cbd02005-07-01 22:44:09 +000072
Chris Lattnera3b8c572006-02-06 23:41:19 +000073 // These methods are used by the tablegen'erated instruction printer.
74 void printOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner18c59872009-06-27 04:16:01 +000075 const char *Modifier = 0);
Chris Lattner7680e732009-06-20 19:34:09 +000076 void print_pcrel_imm(const MachineInstr *MI, unsigned OpNo);
Sean Callanan9947bbb2009-09-03 00:04:47 +000077
78 void printopaquemem(const MachineInstr *MI, unsigned OpNo) {
79 printMemReference(MI, OpNo);
80 }
81
Nate Begeman391c5d22005-11-30 18:54:35 +000082 void printi8mem(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerb36cbd02005-07-01 22:44:09 +000083 printMemReference(MI, OpNo);
84 }
Nate Begeman391c5d22005-11-30 18:54:35 +000085 void printi16mem(const MachineInstr *MI, unsigned OpNo) {
86 printMemReference(MI, OpNo);
87 }
88 void printi32mem(const MachineInstr *MI, unsigned OpNo) {
89 printMemReference(MI, OpNo);
90 }
91 void printi64mem(const MachineInstr *MI, unsigned OpNo) {
92 printMemReference(MI, OpNo);
93 }
Evan Cheng470a6ad2006-02-22 02:26:30 +000094 void printi128mem(const MachineInstr *MI, unsigned OpNo) {
95 printMemReference(MI, OpNo);
96 }
David Greenef0c3d022009-06-30 19:24:59 +000097 void printi256mem(const MachineInstr *MI, unsigned OpNo) {
98 printMemReference(MI, OpNo);
99 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000100 void printf32mem(const MachineInstr *MI, unsigned OpNo) {
101 printMemReference(MI, OpNo);
102 }
103 void printf64mem(const MachineInstr *MI, unsigned OpNo) {
104 printMemReference(MI, OpNo);
105 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000106 void printf80mem(const MachineInstr *MI, unsigned OpNo) {
107 printMemReference(MI, OpNo);
108 }
Evan Cheng223547a2006-01-31 22:28:30 +0000109 void printf128mem(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000110 printMemReference(MI, OpNo);
111 }
David Greenef0c3d022009-06-30 19:24:59 +0000112 void printf256mem(const MachineInstr *MI, unsigned OpNo) {
113 printMemReference(MI, OpNo);
114 }
Rafael Espindola094fad32009-04-08 21:14:34 +0000115 void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
116 printLeaMemReference(MI, OpNo);
117 }
118 void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
119 printLeaMemReference(MI, OpNo);
120 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000121 void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
Rafael Espindola094fad32009-04-08 21:14:34 +0000122 printLeaMemReference(MI, OpNo, "subreg64");
Evan Cheng25ab6902006-09-08 06:48:29 +0000123 }
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000124
Chris Lattner37710712009-06-15 04:42:32 +0000125 bool printAsmMRegister(const MachineOperand &MO, char Mode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000126 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000127 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000128 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000129 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000130
Evan Cheng62f27002006-04-28 23:11:40 +0000131 void printMachineInstruction(const MachineInstr *MI);
Nate Begeman391c5d22005-11-30 18:54:35 +0000132 void printSSECC(const MachineInstr *MI, unsigned Op);
Evan Cheng25ab6902006-09-08 06:48:29 +0000133 void printMemReference(const MachineInstr *MI, unsigned Op,
Chris Lattner18c59872009-06-27 04:16:01 +0000134 const char *Modifier=NULL);
Rafael Espindola094fad32009-04-08 21:14:34 +0000135 void printLeaMemReference(const MachineInstr *MI, unsigned Op,
Chris Lattner18c59872009-06-27 04:16:01 +0000136 const char *Modifier=NULL);
Evan Chengcc415862007-11-09 01:32:10 +0000137 void printPICJumpTableSetLabel(unsigned uid,
138 const MachineBasicBlock *MBB) const;
139 void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
140 const MachineBasicBlock *MBB) const {
141 AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
142 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000143 void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
144 const MachineBasicBlock *MBB,
145 unsigned uid) const;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000146
Evan Cheng7ccced62006-02-18 00:15:05 +0000147 void printPICLabel(const MachineInstr *MI, unsigned Op);
Chris Lattner40bbebd2009-07-21 18:38:57 +0000148 void PrintGlobalVariable(const GlobalVariable* GVar);
Anton Korobeynikove51ab442008-06-28 11:09:32 +0000149
Chris Lattnerb5299dd2009-06-24 19:19:16 +0000150 void PrintPICBaseSymbol() const;
151
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000152 bool runOnMachineFunction(MachineFunction &F);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000153
Anton Korobeynikov1ecf0ee2008-06-28 11:09:01 +0000154 void emitFunctionHeader(const MachineFunction &MF);
155
Chris Lattner9e6ffba2009-09-11 07:03:20 +0000156 // Necessary for Darwin to print out the appropriate types of linker stubs.
Chris Lattner46091d72009-09-11 06:59:18 +0000157 DenseMap<MCSymbol*, MCSymbol*> FnStubs; // Darwin $stub stubs.
158 DenseMap<MCSymbol*, MCSymbol*> GVStubs; // Darwin $non_lazy_ptr stub.
Chris Lattner9e6ffba2009-09-11 07:03:20 +0000159 DenseMap<MCSymbol*, MCSymbol*> HiddenGVStubs; // Darwin $non_lazy_ptr stub.
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000160
161 // Necessary for dllexport support
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000162 StringSet<> CygMingStubs, DLLExportedFns, DLLExportedGVs;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000163
164 // We have to propagate some information about MachineFunction to
165 // AsmPrinter. It's ok, when we're printing the function, since we have
166 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
167 // Unfortunately, this is not possible when we're printing reference to
168 // Function (e.g. calling it and so on). Even more, there is no way to get the
169 // corresponding MachineFunctions: it can even be not created at all. That's
170 // why we should use additional structure, when we're collecting all necessary
171 // information.
172 //
173 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
174 // function, since we have to use arguments' size for decoration.
175 typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
176 FMFInfoMap FunctionInfoMap;
177
Chris Lattnerc08872e2009-07-15 04:55:56 +0000178 void DecorateCygMingName(std::string &Name, const GlobalValue *GV);
Chris Lattnercf1ed752009-09-11 04:28:13 +0000179 void DecorateCygMingName(SmallVectorImpl<char> &Name, const GlobalValue *GV);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000180};
181
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000182} // end namespace llvm
183
184#endif