blob: 87845fbb0a9ff261052a6bdef208fafb4d1fadff [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86ATTAsmPrinter.h - Convert X86 LLVM code to AT&T assembly -------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// AT&T assembly code printer class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef X86ATTASMPRINTER_H
15#define X86ATTASMPRINTER_H
16
Cédric Venet96125062008-08-17 18:24:26 +000017#include "../X86.h"
18#include "../X86MachineFunctionInfo.h"
19#include "../X86TargetMachine.h"
Anton Korobeynikovab6c6a42008-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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/CodeGen/ValueTypes.h"
Anton Korobeynikovab6c6a42008-06-28 11:08:27 +000025#include "llvm/Support/Compiler.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026
27namespace llvm {
28
Anton Korobeynikov5772c672007-11-14 09:18:41 +000029struct MachineJumpTableInfo;
Anton Korobeynikovab6c6a42008-06-28 11:08:27 +000030
31struct VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
32 DwarfWriter DW;
33 MachineModuleInfo *MMI;
34
35 const X86Subtarget *Subtarget;
36
Owen Anderson847b99b2008-08-21 00:14:44 +000037 X86ATTAsmPrinter(raw_ostream &O, X86TargetMachine &TM,
Anton Korobeynikovab6c6a42008-06-28 11:08:27 +000038 const TargetAsmInfo *T)
39 : AsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
40 Subtarget = &TM.getSubtarget<X86Subtarget>();
41 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042
43 virtual const char *getPassName() const {
44 return "X86 AT&T-Style Assembly Printer";
45 }
46
Anton Korobeynikovab6c6a42008-06-28 11:08:27 +000047 void getAnalysisUsage(AnalysisUsage &AU) const {
48 AU.setPreservesAll();
49 if (Subtarget->isTargetDarwin() ||
50 Subtarget->isTargetELF() ||
51 Subtarget->isTargetCygMing()) {
52 AU.addRequired<MachineModuleInfo>();
53 }
54 AsmPrinter::getAnalysisUsage(AU);
55 }
56
57 bool doInitialization(Module &M);
58 bool doFinalization(Module &M);
59
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
66 // These methods are used by the tablegen'erated instruction printer.
67 void printOperand(const MachineInstr *MI, unsigned OpNo,
68 const char *Modifier = 0, bool NotRIPRel = false);
69 void printi8mem(const MachineInstr *MI, unsigned OpNo) {
70 printMemReference(MI, OpNo);
71 }
72 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 }
81 void printi128mem(const MachineInstr *MI, unsigned OpNo) {
82 printMemReference(MI, OpNo);
83 }
84 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 Johannesen4ab00bd2007-08-05 18:49:15 +000090 void printf80mem(const MachineInstr *MI, unsigned OpNo) {
91 printMemReference(MI, OpNo);
92 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093 void printf128mem(const MachineInstr *MI, unsigned OpNo) {
94 printMemReference(MI, OpNo);
95 }
96 void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
97 printMemReference(MI, OpNo, "subreg64");
98 }
Anton Korobeynikovab6c6a42008-06-28 11:08:27 +000099
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100 bool printAsmMRegister(const MachineOperand &MO, const char Mode);
Anton Korobeynikov0737ff52008-06-28 11:09:48 +0000101 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov0737ff52008-06-28 11:09:48 +0000103 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikovab6c6a42008-06-28 11:08:27 +0000105
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106 void printMachineInstruction(const MachineInstr *MI);
107 void printSSECC(const MachineInstr *MI, unsigned Op);
108 void printMemReference(const MachineInstr *MI, unsigned Op,
109 const char *Modifier=NULL);
Evan Cheng6fb06762007-11-09 01:32:10 +0000110 void printPICJumpTableSetLabel(unsigned uid,
111 const MachineBasicBlock *MBB) const;
112 void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
113 const MachineBasicBlock *MBB) const {
114 AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
115 }
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000116 void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
117 const MachineBasicBlock *MBB,
118 unsigned uid) const;
Anton Korobeynikovab6c6a42008-06-28 11:08:27 +0000119
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 void printPICLabel(const MachineInstr *MI, unsigned Op);
Anton Korobeynikovfc3efd82008-06-28 11:09:32 +0000121 void printModuleLevelGV(const GlobalVariable* GVar);
122
Evan Cheng76443dc2008-07-08 00:55:58 +0000123 void printGVStub(const char *GV, const char *Prefix = NULL);
124
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 bool runOnMachineFunction(MachineFunction &F);
Anton Korobeynikovab6c6a42008-06-28 11:08:27 +0000126
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 /// getSectionForFunction - Return the section that we should emit the
128 /// specified function body into.
129 virtual std::string getSectionForFunction(const Function &F) const;
Anton Korobeynikovab6c6a42008-06-28 11:08:27 +0000130
Anton Korobeynikov30948e32008-06-28 11:09:01 +0000131 void emitFunctionHeader(const MachineFunction &MF);
132
Anton Korobeynikovab6c6a42008-06-28 11:08:27 +0000133 // Necessary for Darwin to print out the apprioriate types of linker stubs
134 StringSet<> FnStubs, GVStubs, LinkOnceStubs;
135
136 // Necessary for dllexport support
137 StringSet<> DLLExportedFns, DLLExportedGVs;
138
139 // We have to propagate some information about MachineFunction to
140 // AsmPrinter. It's ok, when we're printing the function, since we have
141 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
142 // Unfortunately, this is not possible when we're printing reference to
143 // Function (e.g. calling it and so on). Even more, there is no way to get the
144 // corresponding MachineFunctions: it can even be not created at all. That's
145 // why we should use additional structure, when we're collecting all necessary
146 // information.
147 //
148 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
149 // function, since we have to use arguments' size for decoration.
150 typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
151 FMFInfoMap FunctionInfoMap;
152
153 void decorateName(std::string& Name, const GlobalValue* GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154};
155
156} // end namespace llvm
157
158#endif