blob: ea1e9a7605650dcf9d3d41b07791565261e731a1 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86IntelAsmPrinter.h - Convert X86 LLVM code to Intel 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// Intel assembly code printer class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef X86INTELASMPRINTER_H
15#define X86INTELASMPRINTER_H
16
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +000017#include "X86.h"
18#include "X86MachineFunctionInfo.h"
19#include "X86TargetMachine.h"
20#include "llvm/CodeGen/AsmPrinter.h"
21#include "llvm/ADT/StringSet.h"
22#include "llvm/Support/Compiler.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023
24namespace llvm {
25
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +000026struct VISIBILITY_HIDDEN X86IntelAsmPrinter : public AsmPrinter {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027 X86IntelAsmPrinter(std::ostream &O, X86TargetMachine &TM,
28 const TargetAsmInfo *T)
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +000029 : AsmPrinter(O, TM, T) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030 }
31
32 virtual const char *getPassName() const {
33 return "X86 Intel-Style Assembly Printer";
34 }
35
36 /// printInstruction - This method is automatically generated by tablegen
37 /// from the instruction set description. This method returns true if the
38 /// machine instruction was sufficiently described to print it, otherwise it
39 /// returns false.
40 bool printInstruction(const MachineInstr *MI);
41
42 // This method is used by the tablegen'erated instruction printer.
43 void printOperand(const MachineInstr *MI, unsigned OpNo,
44 const char *Modifier = 0) {
45 const MachineOperand &MO = MI->getOperand(OpNo);
46 if (MO.isRegister()) {
Dan Gohman1e57df32008-02-10 18:45:23 +000047 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
48 "Not physreg??");
Bill Wendling8eeb9792008-02-26 21:11:01 +000049 O << TM.getRegisterInfo()->get(MO.getReg()).AsmName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050 } else {
51 printOp(MO, Modifier);
52 }
53 }
54
55 void printi8mem(const MachineInstr *MI, unsigned OpNo) {
56 O << "BYTE PTR ";
57 printMemReference(MI, OpNo);
58 }
59 void printi16mem(const MachineInstr *MI, unsigned OpNo) {
60 O << "WORD PTR ";
61 printMemReference(MI, OpNo);
62 }
63 void printi32mem(const MachineInstr *MI, unsigned OpNo) {
64 O << "DWORD PTR ";
65 printMemReference(MI, OpNo);
66 }
67 void printi64mem(const MachineInstr *MI, unsigned OpNo) {
68 O << "QWORD PTR ";
69 printMemReference(MI, OpNo);
70 }
71 void printi128mem(const MachineInstr *MI, unsigned OpNo) {
72 O << "XMMWORD PTR ";
73 printMemReference(MI, OpNo);
74 }
75 void printf32mem(const MachineInstr *MI, unsigned OpNo) {
76 O << "DWORD PTR ";
77 printMemReference(MI, OpNo);
78 }
79 void printf64mem(const MachineInstr *MI, unsigned OpNo) {
80 O << "QWORD PTR ";
81 printMemReference(MI, OpNo);
82 }
Dale Johannesen4ab00bd2007-08-05 18:49:15 +000083 void printf80mem(const MachineInstr *MI, unsigned OpNo) {
84 O << "XWORD PTR ";
85 printMemReference(MI, OpNo);
86 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087 void printf128mem(const MachineInstr *MI, unsigned OpNo) {
88 O << "XMMWORD PTR ";
89 printMemReference(MI, OpNo);
90 }
91 void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
92 O << "QWORD PTR ";
93 printMemReference(MI, OpNo, "subreg64");
94 }
95
96 bool printAsmMRegister(const MachineOperand &MO, const char Mode);
97 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
98 unsigned AsmVariant, const char *ExtraCode);
99 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
100 unsigned AsmVariant, const char *ExtraCode);
101 void printMachineInstruction(const MachineInstr *MI);
102 void printOp(const MachineOperand &MO, const char *Modifier = 0);
103 void printSSECC(const MachineInstr *MI, unsigned Op);
104 void printMemReference(const MachineInstr *MI, unsigned Op,
105 const char *Modifier=NULL);
Evan Cheng6fb06762007-11-09 01:32:10 +0000106 void printPICJumpTableSetLabel(unsigned uid,
107 const MachineBasicBlock *MBB) const;
108 void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
109 const MachineBasicBlock *MBB) const {
110 AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
111 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112 void printPICLabel(const MachineInstr *MI, unsigned Op);
113 bool runOnMachineFunction(MachineFunction &F);
114 bool doInitialization(Module &M);
115 bool doFinalization(Module &M);
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +0000116
117 // We have to propagate some information about MachineFunction to
118 // AsmPrinter. It's ok, when we're printing the function, since we have
119 // access to MachineFunction and can get the appropriate MachineFunctionInfo.
120 // Unfortunately, this is not possible when we're printing reference to
121 // Function (e.g. calling it and so on). Even more, there is no way to get the
122 // corresponding MachineFunctions: it can even be not created at all. That's
123 // why we should use additional structure, when we're collecting all necessary
124 // information.
125 //
126 // This structure is using e.g. for name decoration for stdcall & fastcall'ed
127 // function, since we have to use arguments' size for decoration.
128 typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
129 FMFInfoMap FunctionInfoMap;
130
131 void decorateName(std::string& Name, const GlobalValue* GV);
132
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 /// getSectionForFunction - Return the section that we should emit the
134 /// specified function body into.
135 virtual std::string getSectionForFunction(const Function &F) const;
136
137 virtual void EmitString(const ConstantArray *CVA) const;
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +0000138
139 // Necessary for dllexport support
140 StringSet<> DLLExportedFns, DLLExportedGVs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141};
142
143} // end namespace llvm
144
145#endif