1 //===-- X86ATTAsmPrinter.h - Convert X86 LLVM code to AT&T assembly -------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // AT&T assembly code printer class.
12 //===----------------------------------------------------------------------===//
14 #ifndef X86ATTASMPRINTER_H
15 #define X86ATTASMPRINTER_H
18 #include "../X86MachineFunctionInfo.h"
19 #include "../X86TargetMachine.h"
20 #include "llvm/ADT/StringSet.h"
21 #include "llvm/CodeGen/AsmPrinter.h"
22 #include "llvm/CodeGen/DwarfWriter.h"
23 #include "llvm/CodeGen/MachineModuleInfo.h"
24 #include "llvm/CodeGen/ValueTypes.h"
25 #include "llvm/Support/Compiler.h"
29 class MachineJumpTableInfo
;
35 class VISIBILITY_HIDDEN X86ATTAsmPrinter
: public AsmPrinter
{
36 const X86Subtarget
*Subtarget
;
38 explicit X86ATTAsmPrinter(formatted_raw_ostream
&O
, TargetMachine
&TM
,
39 const MCAsmInfo
*T
, bool V
)
40 : AsmPrinter(O
, TM
, T
, V
) {
41 Subtarget
= &TM
.getSubtarget
<X86Subtarget
>();
44 virtual const char *getPassName() const {
45 return "X86 AT&T-Style Assembly Printer";
48 const X86Subtarget
&getSubtarget() const { return *Subtarget
; }
50 void getAnalysisUsage(AnalysisUsage
&AU
) const {
52 if (Subtarget
->isTargetDarwin() ||
53 Subtarget
->isTargetELF() ||
54 Subtarget
->isTargetCygMing()) {
55 AU
.addRequired
<MachineModuleInfo
>();
57 AU
.addRequired
<DwarfWriter
>();
58 AsmPrinter::getAnalysisUsage(AU
);
61 bool doFinalization(Module
&M
);
63 void printInstructionThroughMCStreamer(const MachineInstr
*MI
);
66 void printMCInst(const MCInst
*MI
);
68 void printSymbolOperand(const MachineOperand
&MO
);
72 // These methods are used by the tablegen'erated instruction printer.
73 void printOperand(const MachineInstr
*MI
, unsigned OpNo
,
74 const char *Modifier
= 0);
75 void print_pcrel_imm(const MachineInstr
*MI
, unsigned OpNo
);
77 void printopaquemem(const MachineInstr
*MI
, unsigned OpNo
) {
78 printMemReference(MI
, OpNo
);
81 void printi8mem(const MachineInstr
*MI
, unsigned OpNo
) {
82 printMemReference(MI
, OpNo
);
84 void printi16mem(const MachineInstr
*MI
, unsigned OpNo
) {
85 printMemReference(MI
, OpNo
);
87 void printi32mem(const MachineInstr
*MI
, unsigned OpNo
) {
88 printMemReference(MI
, OpNo
);
90 void printi64mem(const MachineInstr
*MI
, unsigned OpNo
) {
91 printMemReference(MI
, OpNo
);
93 void printi128mem(const MachineInstr
*MI
, unsigned OpNo
) {
94 printMemReference(MI
, OpNo
);
96 void printi256mem(const MachineInstr
*MI
, unsigned OpNo
) {
97 printMemReference(MI
, OpNo
);
99 void printf32mem(const MachineInstr
*MI
, unsigned OpNo
) {
100 printMemReference(MI
, OpNo
);
102 void printf64mem(const MachineInstr
*MI
, unsigned OpNo
) {
103 printMemReference(MI
, OpNo
);
105 void printf80mem(const MachineInstr
*MI
, unsigned OpNo
) {
106 printMemReference(MI
, OpNo
);
108 void printf128mem(const MachineInstr
*MI
, unsigned OpNo
) {
109 printMemReference(MI
, OpNo
);
111 void printf256mem(const MachineInstr
*MI
, unsigned OpNo
) {
112 printMemReference(MI
, OpNo
);
114 void printlea32mem(const MachineInstr
*MI
, unsigned OpNo
) {
115 printLeaMemReference(MI
, OpNo
);
117 void printlea64mem(const MachineInstr
*MI
, unsigned OpNo
) {
118 printLeaMemReference(MI
, OpNo
);
120 void printlea64_32mem(const MachineInstr
*MI
, unsigned OpNo
) {
121 printLeaMemReference(MI
, OpNo
, "subreg64");
124 bool printAsmMRegister(const MachineOperand
&MO
, char Mode
);
125 bool PrintAsmOperand(const MachineInstr
*MI
, unsigned OpNo
,
126 unsigned AsmVariant
, const char *ExtraCode
);
127 bool PrintAsmMemoryOperand(const MachineInstr
*MI
, unsigned OpNo
,
128 unsigned AsmVariant
, const char *ExtraCode
);
130 void printMachineInstruction(const MachineInstr
*MI
);
131 void printSSECC(const MachineInstr
*MI
, unsigned Op
);
132 void printMemReference(const MachineInstr
*MI
, unsigned Op
,
133 const char *Modifier
=NULL
);
134 void printLeaMemReference(const MachineInstr
*MI
, unsigned Op
,
135 const char *Modifier
=NULL
);
136 void printPICJumpTableSetLabel(unsigned uid
,
137 const MachineBasicBlock
*MBB
) const;
138 void printPICJumpTableSetLabel(unsigned uid
, unsigned uid2
,
139 const MachineBasicBlock
*MBB
) const {
140 AsmPrinter::printPICJumpTableSetLabel(uid
, uid2
, MBB
);
142 void printPICJumpTableEntry(const MachineJumpTableInfo
*MJTI
,
143 const MachineBasicBlock
*MBB
,
146 void printPICLabel(const MachineInstr
*MI
, unsigned Op
);
147 void PrintGlobalVariable(const GlobalVariable
* GVar
);
149 void PrintPICBaseSymbol() const;
151 bool runOnMachineFunction(MachineFunction
&F
);
153 void emitFunctionHeader(const MachineFunction
&MF
);
155 // Necessary for dllexport support
156 StringSet
<> CygMingStubs
, DLLExportedFns
, DLLExportedGVs
;
158 // We have to propagate some information about MachineFunction to
159 // AsmPrinter. It's ok, when we're printing the function, since we have
160 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
161 // Unfortunately, this is not possible when we're printing reference to
162 // Function (e.g. calling it and so on). Even more, there is no way to get the
163 // corresponding MachineFunctions: it can even be not created at all. That's
164 // why we should use additional structure, when we're collecting all necessary
167 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
168 // function, since we have to use arguments' size for decoration.
169 typedef std::map
<const Function
*, X86MachineFunctionInfo
> FMFInfoMap
;
170 FMFInfoMap FunctionInfoMap
;
172 void DecorateCygMingName(std::string
&Name
, const GlobalValue
*GV
);
173 void DecorateCygMingName(SmallVectorImpl
<char> &Name
, const GlobalValue
*GV
);
176 } // end namespace llvm