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