Dan Gohman | 8bc49c2 | 2007-06-25 15:11:25 +0000 | [diff] [blame] | 1 | //===-- X86ATTAsmPrinter.h - Convert X86 LLVM code to AT&T assembly -------===// |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // AT&T assembly code printer class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef X86ATTASMPRINTER_H |
| 15 | #define X86ATTASMPRINTER_H |
| 16 | |
Cedric Venet | 94fb5f2 | 2008-08-17 18:24:26 +0000 | [diff] [blame] | 17 | #include "../X86.h" |
| 18 | #include "../X86MachineFunctionInfo.h" |
| 19 | #include "../X86TargetMachine.h" |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/StringSet.h" |
| 21 | #include "llvm/CodeGen/AsmPrinter.h" |
| 22 | #include "llvm/CodeGen/DwarfWriter.h" |
| 23 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/ValueTypes.h" |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Compiler.h" |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 26 | |
| 27 | namespace llvm { |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 28 | |
Bill Wendling | b877a1f | 2009-05-12 21:55:29 +0000 | [diff] [blame] | 29 | class MachineJumpTableInfo; |
Chris Lattner | 40e3c7a | 2009-06-24 05:46:28 +0000 | [diff] [blame] | 30 | class MCContext; |
Chris Lattner | 475370b | 2009-06-19 00:47:33 +0000 | [diff] [blame] | 31 | class MCInst; |
Chris Lattner | 40e3c7a | 2009-06-24 05:46:28 +0000 | [diff] [blame] | 32 | class MCStreamer; |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 33 | |
Bill Wendling | 57f0db8 | 2009-02-24 08:30:20 +0000 | [diff] [blame] | 34 | class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter { |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 35 | const X86Subtarget *Subtarget; |
Chris Lattner | 40e3c7a | 2009-06-24 05:46:28 +0000 | [diff] [blame] | 36 | |
| 37 | MCContext *Context; |
| 38 | MCStreamer *Streamer; |
Bill Wendling | 57f0db8 | 2009-02-24 08:30:20 +0000 | [diff] [blame] | 39 | public: |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 40 | explicit X86ATTAsmPrinter(raw_ostream &O, X86TargetMachine &TM, |
Daniel Dunbar | 5bcc8bd | 2009-07-01 01:48:54 +0000 | [diff] [blame] | 41 | const TargetAsmInfo *T, bool V) |
| 42 | : AsmPrinter(O, TM, T, V) { |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 43 | Subtarget = &TM.getSubtarget<X86Subtarget>(); |
Chris Lattner | 40e3c7a | 2009-06-24 05:46:28 +0000 | [diff] [blame] | 44 | Context = 0; |
| 45 | Streamer = 0; |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 46 | } |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 47 | |
| 48 | virtual const char *getPassName() const { |
| 49 | return "X86 AT&T-Style Assembly Printer"; |
| 50 | } |
| 51 | |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 52 | void getAnalysisUsage(AnalysisUsage &AU) const { |
| 53 | AU.setPreservesAll(); |
| 54 | if (Subtarget->isTargetDarwin() || |
| 55 | Subtarget->isTargetELF() || |
| 56 | Subtarget->isTargetCygMing()) { |
| 57 | AU.addRequired<MachineModuleInfo>(); |
| 58 | } |
Devang Patel | eb3fc28 | 2009-01-08 23:40:34 +0000 | [diff] [blame] | 59 | AU.addRequired<DwarfWriter>(); |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 60 | AsmPrinter::getAnalysisUsage(AU); |
| 61 | } |
| 62 | |
Devang Patel | 66b4d3b | 2009-06-20 01:00:07 +0000 | [diff] [blame] | 63 | bool doInitialization(Module &M); |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 64 | bool doFinalization(Module &M); |
| 65 | |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 66 | /// printInstruction - This method is automatically generated by tablegen |
| 67 | /// from the instruction set description. This method returns true if the |
| 68 | /// machine instruction was sufficiently described to print it, otherwise it |
| 69 | /// returns false. |
| 70 | bool printInstruction(const MachineInstr *MI); |
Chris Lattner | 475370b | 2009-06-19 00:47:33 +0000 | [diff] [blame] | 71 | |
Chris Lattner | d5fb790 | 2009-06-19 23:59:57 +0000 | [diff] [blame] | 72 | |
| 73 | // New MCInst printing stuff. |
| 74 | bool printInstruction(const MCInst *MI); |
Chris Lattner | 475370b | 2009-06-19 00:47:33 +0000 | [diff] [blame] | 75 | |
Chris Lattner | 174f816 | 2009-07-13 21:41:08 +0000 | [diff] [blame^] | 76 | void printSymbolOperand(const MachineOperand &MO); |
Chris Lattner | d5fb790 | 2009-06-19 23:59:57 +0000 | [diff] [blame] | 77 | void printOperand(const MCInst *MI, unsigned OpNo, |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 78 | const char *Modifier = 0); |
Chris Lattner | c124306 | 2009-06-20 07:03:18 +0000 | [diff] [blame] | 79 | void printMemReference(const MCInst *MI, unsigned Op); |
| 80 | void printLeaMemReference(const MCInst *MI, unsigned Op); |
Chris Lattner | d5fb790 | 2009-06-19 23:59:57 +0000 | [diff] [blame] | 81 | void printSSECC(const MCInst *MI, unsigned Op); |
| 82 | void printPICLabel(const MCInst *MI, unsigned Op); |
Chris Lattner | 7680e73 | 2009-06-20 19:34:09 +0000 | [diff] [blame] | 83 | void print_pcrel_imm(const MCInst *MI, unsigned OpNo); |
| 84 | |
Chris Lattner | d5fb790 | 2009-06-19 23:59:57 +0000 | [diff] [blame] | 85 | void printi8mem(const MCInst *MI, unsigned OpNo) { |
| 86 | printMemReference(MI, OpNo); |
| 87 | } |
| 88 | void printi16mem(const MCInst *MI, unsigned OpNo) { |
| 89 | printMemReference(MI, OpNo); |
| 90 | } |
| 91 | void printi32mem(const MCInst *MI, unsigned OpNo) { |
| 92 | printMemReference(MI, OpNo); |
| 93 | } |
| 94 | void printi64mem(const MCInst *MI, unsigned OpNo) { |
| 95 | printMemReference(MI, OpNo); |
| 96 | } |
| 97 | void printi128mem(const MCInst *MI, unsigned OpNo) { |
| 98 | printMemReference(MI, OpNo); |
| 99 | } |
| 100 | void printf32mem(const MCInst *MI, unsigned OpNo) { |
| 101 | printMemReference(MI, OpNo); |
| 102 | } |
| 103 | void printf64mem(const MCInst *MI, unsigned OpNo) { |
| 104 | printMemReference(MI, OpNo); |
| 105 | } |
| 106 | void printf80mem(const MCInst *MI, unsigned OpNo) { |
| 107 | printMemReference(MI, OpNo); |
| 108 | } |
| 109 | void printf128mem(const MCInst *MI, unsigned OpNo) { |
| 110 | printMemReference(MI, OpNo); |
| 111 | } |
| 112 | void printlea32mem(const MCInst *MI, unsigned OpNo) { |
| 113 | printLeaMemReference(MI, OpNo); |
| 114 | } |
| 115 | void printlea64mem(const MCInst *MI, unsigned OpNo) { |
| 116 | printLeaMemReference(MI, OpNo); |
| 117 | } |
| 118 | void printlea64_32mem(const MCInst *MI, unsigned OpNo) { |
Chris Lattner | c124306 | 2009-06-20 07:03:18 +0000 | [diff] [blame] | 119 | printLeaMemReference(MI, OpNo); |
Chris Lattner | d5fb790 | 2009-06-19 23:59:57 +0000 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 123 | |
Chris Lattner | a3b8c57 | 2006-02-06 23:41:19 +0000 | [diff] [blame] | 124 | // These methods are used by the tablegen'erated instruction printer. |
| 125 | void printOperand(const MachineInstr *MI, unsigned OpNo, |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 126 | const char *Modifier = 0); |
Chris Lattner | 7680e73 | 2009-06-20 19:34:09 +0000 | [diff] [blame] | 127 | void print_pcrel_imm(const MachineInstr *MI, unsigned OpNo); |
Nate Begeman | 391c5d2 | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 128 | void printi8mem(const MachineInstr *MI, unsigned OpNo) { |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 129 | printMemReference(MI, OpNo); |
| 130 | } |
Nate Begeman | 391c5d2 | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 131 | void printi16mem(const MachineInstr *MI, unsigned OpNo) { |
| 132 | printMemReference(MI, OpNo); |
| 133 | } |
| 134 | void printi32mem(const MachineInstr *MI, unsigned OpNo) { |
| 135 | printMemReference(MI, OpNo); |
| 136 | } |
| 137 | void printi64mem(const MachineInstr *MI, unsigned OpNo) { |
| 138 | printMemReference(MI, OpNo); |
| 139 | } |
Evan Cheng | 470a6ad | 2006-02-22 02:26:30 +0000 | [diff] [blame] | 140 | void printi128mem(const MachineInstr *MI, unsigned OpNo) { |
| 141 | printMemReference(MI, OpNo); |
| 142 | } |
David Greene | f0c3d02 | 2009-06-30 19:24:59 +0000 | [diff] [blame] | 143 | void printi256mem(const MachineInstr *MI, unsigned OpNo) { |
| 144 | printMemReference(MI, OpNo); |
| 145 | } |
Nate Begeman | 391c5d2 | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 146 | void printf32mem(const MachineInstr *MI, unsigned OpNo) { |
| 147 | printMemReference(MI, OpNo); |
| 148 | } |
| 149 | void printf64mem(const MachineInstr *MI, unsigned OpNo) { |
| 150 | printMemReference(MI, OpNo); |
| 151 | } |
Dale Johannesen | 59a5873 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 152 | void printf80mem(const MachineInstr *MI, unsigned OpNo) { |
| 153 | printMemReference(MI, OpNo); |
| 154 | } |
Evan Cheng | 223547a | 2006-01-31 22:28:30 +0000 | [diff] [blame] | 155 | void printf128mem(const MachineInstr *MI, unsigned OpNo) { |
Nate Begeman | 391c5d2 | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 156 | printMemReference(MI, OpNo); |
| 157 | } |
David Greene | f0c3d02 | 2009-06-30 19:24:59 +0000 | [diff] [blame] | 158 | void printf256mem(const MachineInstr *MI, unsigned OpNo) { |
| 159 | printMemReference(MI, OpNo); |
| 160 | } |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 161 | void printlea32mem(const MachineInstr *MI, unsigned OpNo) { |
| 162 | printLeaMemReference(MI, OpNo); |
| 163 | } |
| 164 | void printlea64mem(const MachineInstr *MI, unsigned OpNo) { |
| 165 | printLeaMemReference(MI, OpNo); |
| 166 | } |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 167 | void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) { |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 168 | printLeaMemReference(MI, OpNo, "subreg64"); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 169 | } |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 170 | |
Chris Lattner | 3771071 | 2009-06-15 04:42:32 +0000 | [diff] [blame] | 171 | bool printAsmMRegister(const MachineOperand &MO, char Mode); |
Anton Korobeynikov | f0302cd | 2008-06-28 11:09:48 +0000 | [diff] [blame] | 172 | bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, |
Evan Cheng | 3d48a90 | 2006-04-28 21:19:05 +0000 | [diff] [blame] | 173 | unsigned AsmVariant, const char *ExtraCode); |
Anton Korobeynikov | f0302cd | 2008-06-28 11:09:48 +0000 | [diff] [blame] | 174 | bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo, |
Evan Cheng | 3d48a90 | 2006-04-28 21:19:05 +0000 | [diff] [blame] | 175 | unsigned AsmVariant, const char *ExtraCode); |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 176 | |
Evan Cheng | 62f2700 | 2006-04-28 23:11:40 +0000 | [diff] [blame] | 177 | void printMachineInstruction(const MachineInstr *MI); |
Nate Begeman | 391c5d2 | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 178 | void printSSECC(const MachineInstr *MI, unsigned Op); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 179 | void printMemReference(const MachineInstr *MI, unsigned Op, |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 180 | const char *Modifier=NULL); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 181 | void printLeaMemReference(const MachineInstr *MI, unsigned Op, |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 182 | const char *Modifier=NULL); |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 183 | void printPICJumpTableSetLabel(unsigned uid, |
| 184 | const MachineBasicBlock *MBB) const; |
| 185 | void printPICJumpTableSetLabel(unsigned uid, unsigned uid2, |
| 186 | const MachineBasicBlock *MBB) const { |
| 187 | AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB); |
| 188 | } |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 189 | void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI, |
| 190 | const MachineBasicBlock *MBB, |
| 191 | unsigned uid) const; |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 192 | |
Evan Cheng | 7ccced6 | 2006-02-18 00:15:05 +0000 | [diff] [blame] | 193 | void printPICLabel(const MachineInstr *MI, unsigned Op); |
Anton Korobeynikov | e51ab44 | 2008-06-28 11:09:32 +0000 | [diff] [blame] | 194 | void printModuleLevelGV(const GlobalVariable* GVar); |
| 195 | |
Chris Lattner | b5299dd | 2009-06-24 19:19:16 +0000 | [diff] [blame] | 196 | void PrintPICBaseSymbol() const; |
| 197 | |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 198 | bool runOnMachineFunction(MachineFunction &F); |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 199 | |
Anton Korobeynikov | 1ecf0ee | 2008-06-28 11:09:01 +0000 | [diff] [blame] | 200 | void emitFunctionHeader(const MachineFunction &MF); |
| 201 | |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 202 | // Necessary for Darwin to print out the apprioriate types of linker stubs |
Chris Lattner | 1ebd3bf | 2009-07-09 05:09:24 +0000 | [diff] [blame] | 203 | StringSet<> FnStubs, GVStubs, HiddenGVStubs, CygMingStubs; |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 204 | |
| 205 | // Necessary for dllexport support |
| 206 | StringSet<> DLLExportedFns, DLLExportedGVs; |
| 207 | |
| 208 | // We have to propagate some information about MachineFunction to |
| 209 | // AsmPrinter. It's ok, when we're printing the function, since we have |
| 210 | // access to MachineFunction and can get the appropriate MachineFunctionInfo. |
| 211 | // Unfortunately, this is not possible when we're printing reference to |
| 212 | // Function (e.g. calling it and so on). Even more, there is no way to get the |
| 213 | // corresponding MachineFunctions: it can even be not created at all. That's |
| 214 | // why we should use additional structure, when we're collecting all necessary |
| 215 | // information. |
| 216 | // |
| 217 | // This structure is using e.g. for name decoration for stdcall & fastcall'ed |
| 218 | // function, since we have to use arguments' size for decoration. |
| 219 | typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap; |
| 220 | FMFInfoMap FunctionInfoMap; |
| 221 | |
| 222 | void decorateName(std::string& Name, const GlobalValue* GV); |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 223 | }; |
| 224 | |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 225 | } // end namespace llvm |
| 226 | |
| 227 | #endif |