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 | 475370b | 2009-06-19 00:47:33 +0000 | [diff] [blame^] | 30 | class MCInst; |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 31 | |
Bill Wendling | 57f0db8 | 2009-02-24 08:30:20 +0000 | [diff] [blame] | 32 | class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter { |
Devang Patel | eb3fc28 | 2009-01-08 23:40:34 +0000 | [diff] [blame] | 33 | DwarfWriter *DW; |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 34 | MachineModuleInfo *MMI; |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 35 | const X86Subtarget *Subtarget; |
Bill Wendling | 57f0db8 | 2009-02-24 08:30:20 +0000 | [diff] [blame] | 36 | public: |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 37 | explicit X86ATTAsmPrinter(raw_ostream &O, X86TargetMachine &TM, |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 38 | const TargetAsmInfo *T, CodeGenOpt::Level OL, |
| 39 | bool V) |
Bill Wendling | be8cc2a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 40 | : AsmPrinter(O, TM, T, OL, V), DW(0), MMI(0) { |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 41 | Subtarget = &TM.getSubtarget<X86Subtarget>(); |
| 42 | } |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 43 | |
| 44 | virtual const char *getPassName() const { |
| 45 | return "X86 AT&T-Style Assembly Printer"; |
| 46 | } |
| 47 | |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 48 | void getAnalysisUsage(AnalysisUsage &AU) const { |
| 49 | AU.setPreservesAll(); |
| 50 | if (Subtarget->isTargetDarwin() || |
| 51 | Subtarget->isTargetELF() || |
| 52 | Subtarget->isTargetCygMing()) { |
| 53 | AU.addRequired<MachineModuleInfo>(); |
| 54 | } |
Devang Patel | eb3fc28 | 2009-01-08 23:40:34 +0000 | [diff] [blame] | 55 | AU.addRequired<DwarfWriter>(); |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 56 | AsmPrinter::getAnalysisUsage(AU); |
| 57 | } |
| 58 | |
| 59 | bool doInitialization(Module &M); |
| 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. |
| 66 | bool printInstruction(const MachineInstr *MI); |
Chris Lattner | 475370b | 2009-06-19 00:47:33 +0000 | [diff] [blame^] | 67 | |
| 68 | bool printInstruction(const MCInst &TmpInst); |
| 69 | |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 70 | |
Chris Lattner | a3b8c57 | 2006-02-06 23:41:19 +0000 | [diff] [blame] | 71 | // These methods are used by the tablegen'erated instruction printer. |
| 72 | void printOperand(const MachineInstr *MI, unsigned OpNo, |
Evan Cheng | 28b51439 | 2006-12-05 19:50:18 +0000 | [diff] [blame] | 73 | const char *Modifier = 0, bool NotRIPRel = false); |
Nate Begeman | 391c5d2 | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 74 | void printi8mem(const MachineInstr *MI, unsigned OpNo) { |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 75 | printMemReference(MI, OpNo); |
| 76 | } |
Nate Begeman | 391c5d2 | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 77 | void printi16mem(const MachineInstr *MI, unsigned OpNo) { |
| 78 | printMemReference(MI, OpNo); |
| 79 | } |
| 80 | void printi32mem(const MachineInstr *MI, unsigned OpNo) { |
| 81 | printMemReference(MI, OpNo); |
| 82 | } |
| 83 | void printi64mem(const MachineInstr *MI, unsigned OpNo) { |
| 84 | printMemReference(MI, OpNo); |
| 85 | } |
Evan Cheng | 470a6ad | 2006-02-22 02:26:30 +0000 | [diff] [blame] | 86 | void printi128mem(const MachineInstr *MI, unsigned OpNo) { |
| 87 | printMemReference(MI, OpNo); |
| 88 | } |
Nate Begeman | 391c5d2 | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 89 | void printf32mem(const MachineInstr *MI, unsigned OpNo) { |
| 90 | printMemReference(MI, OpNo); |
| 91 | } |
| 92 | void printf64mem(const MachineInstr *MI, unsigned OpNo) { |
| 93 | printMemReference(MI, OpNo); |
| 94 | } |
Dale Johannesen | 59a5873 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 95 | void printf80mem(const MachineInstr *MI, unsigned OpNo) { |
| 96 | printMemReference(MI, OpNo); |
| 97 | } |
Evan Cheng | 223547a | 2006-01-31 22:28:30 +0000 | [diff] [blame] | 98 | void printf128mem(const MachineInstr *MI, unsigned OpNo) { |
Nate Begeman | 391c5d2 | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 99 | printMemReference(MI, OpNo); |
| 100 | } |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 101 | void printlea32mem(const MachineInstr *MI, unsigned OpNo) { |
| 102 | printLeaMemReference(MI, OpNo); |
| 103 | } |
| 104 | void printlea64mem(const MachineInstr *MI, unsigned OpNo) { |
| 105 | printLeaMemReference(MI, OpNo); |
| 106 | } |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 107 | void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) { |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 108 | printLeaMemReference(MI, OpNo, "subreg64"); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 109 | } |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 110 | |
Chris Lattner | 3771071 | 2009-06-15 04:42:32 +0000 | [diff] [blame] | 111 | bool printAsmMRegister(const MachineOperand &MO, char Mode); |
Anton Korobeynikov | f0302cd | 2008-06-28 11:09:48 +0000 | [diff] [blame] | 112 | bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, |
Evan Cheng | 3d48a90 | 2006-04-28 21:19:05 +0000 | [diff] [blame] | 113 | unsigned AsmVariant, const char *ExtraCode); |
Anton Korobeynikov | f0302cd | 2008-06-28 11:09:48 +0000 | [diff] [blame] | 114 | bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo, |
Evan Cheng | 3d48a90 | 2006-04-28 21:19:05 +0000 | [diff] [blame] | 115 | unsigned AsmVariant, const char *ExtraCode); |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 116 | |
Evan Cheng | 62f2700 | 2006-04-28 23:11:40 +0000 | [diff] [blame] | 117 | void printMachineInstruction(const MachineInstr *MI); |
Nate Begeman | 391c5d2 | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 118 | void printSSECC(const MachineInstr *MI, unsigned Op); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 119 | void printMemReference(const MachineInstr *MI, unsigned Op, |
Anton Korobeynikov | 573c92d | 2009-04-28 21:49:33 +0000 | [diff] [blame] | 120 | const char *Modifier=NULL, bool NotRIPRel = false); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 121 | void printLeaMemReference(const MachineInstr *MI, unsigned Op, |
Anton Korobeynikov | 573c92d | 2009-04-28 21:49:33 +0000 | [diff] [blame] | 122 | const char *Modifier=NULL, bool NotRIPRel = false); |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 123 | void printPICJumpTableSetLabel(unsigned uid, |
| 124 | const MachineBasicBlock *MBB) const; |
| 125 | void printPICJumpTableSetLabel(unsigned uid, unsigned uid2, |
| 126 | const MachineBasicBlock *MBB) const { |
| 127 | AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB); |
| 128 | } |
Anton Korobeynikov | 9de1934 | 2007-11-14 09:18:41 +0000 | [diff] [blame] | 129 | void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI, |
| 130 | const MachineBasicBlock *MBB, |
| 131 | unsigned uid) const; |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 132 | |
Evan Cheng | 7ccced6 | 2006-02-18 00:15:05 +0000 | [diff] [blame] | 133 | void printPICLabel(const MachineInstr *MI, unsigned Op); |
Anton Korobeynikov | e51ab44 | 2008-06-28 11:09:32 +0000 | [diff] [blame] | 134 | void printModuleLevelGV(const GlobalVariable* GVar); |
| 135 | |
Evan Cheng | 77c8f76 | 2008-07-08 00:55:58 +0000 | [diff] [blame] | 136 | void printGVStub(const char *GV, const char *Prefix = NULL); |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 137 | void printHiddenGVStub(const char *GV, const char *Prefix = NULL); |
Evan Cheng | 77c8f76 | 2008-07-08 00:55:58 +0000 | [diff] [blame] | 138 | |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 139 | bool runOnMachineFunction(MachineFunction &F); |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 140 | |
Anton Korobeynikov | 1ecf0ee | 2008-06-28 11:09:01 +0000 | [diff] [blame] | 141 | void emitFunctionHeader(const MachineFunction &MF); |
| 142 | |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 143 | // Necessary for Darwin to print out the apprioriate types of linker stubs |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 144 | StringSet<> FnStubs, GVStubs, HiddenGVStubs; |
Anton Korobeynikov | 75b6882 | 2008-06-28 11:08:27 +0000 | [diff] [blame] | 145 | |
| 146 | // Necessary for dllexport support |
| 147 | StringSet<> DLLExportedFns, DLLExportedGVs; |
| 148 | |
| 149 | // We have to propagate some information about MachineFunction to |
| 150 | // AsmPrinter. It's ok, when we're printing the function, since we have |
| 151 | // access to MachineFunction and can get the appropriate MachineFunctionInfo. |
| 152 | // Unfortunately, this is not possible when we're printing reference to |
| 153 | // Function (e.g. calling it and so on). Even more, there is no way to get the |
| 154 | // corresponding MachineFunctions: it can even be not created at all. That's |
| 155 | // why we should use additional structure, when we're collecting all necessary |
| 156 | // information. |
| 157 | // |
| 158 | // This structure is using e.g. for name decoration for stdcall & fastcall'ed |
| 159 | // function, since we have to use arguments' size for decoration. |
| 160 | typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap; |
| 161 | FMFInfoMap FunctionInfoMap; |
| 162 | |
| 163 | void decorateName(std::string& Name, const GlobalValue* GV); |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 164 | }; |
| 165 | |
Chris Lattner | b36cbd0 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 166 | } // end namespace llvm |
| 167 | |
| 168 | #endif |