blob: 30630e97846a6d236f16d836807e7eebb0a7cd2b [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
Anton Korobeynikov9de19342007-11-14 09:18:41 +000029struct MachineJumpTableInfo;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000030
Bill Wendling57f0db82009-02-24 08:30:20 +000031class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
Devang Pateleb3fc282009-01-08 23:40:34 +000032 DwarfWriter *DW;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000033 MachineModuleInfo *MMI;
Anton Korobeynikov75b68822008-06-28 11:08:27 +000034 const X86Subtarget *Subtarget;
Bill Wendling57f0db82009-02-24 08:30:20 +000035 public:
Owen Andersoncb371882008-08-21 00:14:44 +000036 X86ATTAsmPrinter(raw_ostream &O, X86TargetMachine &TM,
Evan Cheng42bf74b2009-03-25 01:47:28 +000037 const TargetAsmInfo *T, bool F, bool V)
38 : AsmPrinter(O, TM, T, F, V), DW(0), MMI(0) {
Anton Korobeynikov75b68822008-06-28 11:08:27 +000039 Subtarget = &TM.getSubtarget<X86Subtarget>();
40 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000041
42 virtual const char *getPassName() const {
43 return "X86 AT&T-Style Assembly Printer";
44 }
45
Anton Korobeynikov75b68822008-06-28 11:08:27 +000046 void getAnalysisUsage(AnalysisUsage &AU) const {
47 AU.setPreservesAll();
48 if (Subtarget->isTargetDarwin() ||
49 Subtarget->isTargetELF() ||
50 Subtarget->isTargetCygMing()) {
51 AU.addRequired<MachineModuleInfo>();
52 }
Devang Pateleb3fc282009-01-08 23:40:34 +000053 AU.addRequired<DwarfWriter>();
Anton Korobeynikov75b68822008-06-28 11:08:27 +000054 AsmPrinter::getAnalysisUsage(AU);
55 }
56
57 bool doInitialization(Module &M);
58 bool doFinalization(Module &M);
59
Chris Lattnerb36cbd02005-07-01 22:44:09 +000060 /// printInstruction - This method is automatically generated by tablegen
61 /// from the instruction set description. This method returns true if the
62 /// machine instruction was sufficiently described to print it, otherwise it
63 /// returns false.
64 bool printInstruction(const MachineInstr *MI);
65
Chris Lattnera3b8c572006-02-06 23:41:19 +000066 // These methods are used by the tablegen'erated instruction printer.
67 void printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +000068 const char *Modifier = 0, bool NotRIPRel = false);
Nate Begeman391c5d22005-11-30 18:54:35 +000069 void printi8mem(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerb36cbd02005-07-01 22:44:09 +000070 printMemReference(MI, OpNo);
71 }
Nate Begeman391c5d22005-11-30 18:54:35 +000072 void printi16mem(const MachineInstr *MI, unsigned OpNo) {
73 printMemReference(MI, OpNo);
74 }
75 void printi32mem(const MachineInstr *MI, unsigned OpNo) {
76 printMemReference(MI, OpNo);
77 }
78 void printi64mem(const MachineInstr *MI, unsigned OpNo) {
79 printMemReference(MI, OpNo);
80 }
Evan Cheng470a6ad2006-02-22 02:26:30 +000081 void printi128mem(const MachineInstr *MI, unsigned OpNo) {
82 printMemReference(MI, OpNo);
83 }
Nate Begeman391c5d22005-11-30 18:54:35 +000084 void printf32mem(const MachineInstr *MI, unsigned OpNo) {
85 printMemReference(MI, OpNo);
86 }
87 void printf64mem(const MachineInstr *MI, unsigned OpNo) {
88 printMemReference(MI, OpNo);
89 }
Dale Johannesen59a58732007-08-05 18:49:15 +000090 void printf80mem(const MachineInstr *MI, unsigned OpNo) {
91 printMemReference(MI, OpNo);
92 }
Evan Cheng223547a2006-01-31 22:28:30 +000093 void printf128mem(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman391c5d22005-11-30 18:54:35 +000094 printMemReference(MI, OpNo);
95 }
Rafael Espindola2a6411b2009-04-07 21:37:46 +000096 void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
97 printLeaMemReference(MI, OpNo);
98 }
99 void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
100 printLeaMemReference(MI, OpNo);
101 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000102 void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000103 printLeaMemReference(MI, OpNo, "subreg64");
Evan Cheng25ab6902006-09-08 06:48:29 +0000104 }
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000105
Evan Cheng55c25f22006-04-28 23:19:39 +0000106 bool printAsmMRegister(const MachineOperand &MO, const char Mode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000107 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000108 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikovf0302cd2008-06-28 11:09:48 +0000109 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng3d48a902006-04-28 21:19:05 +0000110 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000111
Evan Cheng62f27002006-04-28 23:11:40 +0000112 void printMachineInstruction(const MachineInstr *MI);
Nate Begeman391c5d22005-11-30 18:54:35 +0000113 void printSSECC(const MachineInstr *MI, unsigned Op);
Evan Cheng25ab6902006-09-08 06:48:29 +0000114 void printMemReference(const MachineInstr *MI, unsigned Op,
115 const char *Modifier=NULL);
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000116 void printLeaMemReference(const MachineInstr *MI, unsigned Op,
117 const char *Modifier=NULL);
Evan Chengcc415862007-11-09 01:32:10 +0000118 void printPICJumpTableSetLabel(unsigned uid,
119 const MachineBasicBlock *MBB) const;
120 void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
121 const MachineBasicBlock *MBB) const {
122 AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
123 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000124 void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
125 const MachineBasicBlock *MBB,
126 unsigned uid) const;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000127
Evan Cheng7ccced62006-02-18 00:15:05 +0000128 void printPICLabel(const MachineInstr *MI, unsigned Op);
Anton Korobeynikove51ab442008-06-28 11:09:32 +0000129 void printModuleLevelGV(const GlobalVariable* GVar);
130
Evan Cheng77c8f762008-07-08 00:55:58 +0000131 void printGVStub(const char *GV, const char *Prefix = NULL);
Evan Chengae94e592008-12-05 01:06:39 +0000132 void printHiddenGVStub(const char *GV, const char *Prefix = NULL);
Evan Cheng77c8f762008-07-08 00:55:58 +0000133
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000134 bool runOnMachineFunction(MachineFunction &F);
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000135
Anton Korobeynikov1ecf0ee2008-06-28 11:09:01 +0000136 void emitFunctionHeader(const MachineFunction &MF);
137
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000138 // Necessary for Darwin to print out the apprioriate types of linker stubs
Evan Chengae94e592008-12-05 01:06:39 +0000139 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Anton Korobeynikov75b68822008-06-28 11:08:27 +0000140
141 // Necessary for dllexport support
142 StringSet<> DLLExportedFns, DLLExportedGVs;
143
144 // We have to propagate some information about MachineFunction to
145 // AsmPrinter. It's ok, when we're printing the function, since we have
146 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
147 // Unfortunately, this is not possible when we're printing reference to
148 // Function (e.g. calling it and so on). Even more, there is no way to get the
149 // corresponding MachineFunctions: it can even be not created at all. That's
150 // why we should use additional structure, when we're collecting all necessary
151 // information.
152 //
153 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
154 // function, since we have to use arguments' size for decoration.
155 typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
156 FMFInfoMap FunctionInfoMap;
157
158 void decorateName(std::string& Name, const GlobalValue* GV);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000159};
160
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000161} // end namespace llvm
162
163#endif