| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 1 | //===-- X86IntelAsmPrinter.h - Convert X86 LLVM code to Intel assembly ----===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| Chris Lattner | f3ebc3f | 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 | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Intel assembly code printer class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef X86INTELASMPRINTER_H |
| 15 | #define X86INTELASMPRINTER_H |
| 16 | |
| Anton Korobeynikov | 4e9dfe8 | 2008-06-28 11:07:54 +0000 | [diff] [blame] | 17 | #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" |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 23 | |
| 24 | namespace llvm { |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 25 | |
| Anton Korobeynikov | 4e9dfe8 | 2008-06-28 11:07:54 +0000 | [diff] [blame] | 26 | struct VISIBILITY_HIDDEN X86IntelAsmPrinter : public AsmPrinter { |
| Jim Laskey | 261779b | 2006-09-07 22:06:40 +0000 | [diff] [blame] | 27 | X86IntelAsmPrinter(std::ostream &O, X86TargetMachine &TM, |
| 28 | const TargetAsmInfo *T) |
| Anton Korobeynikov | 4e9dfe8 | 2008-06-28 11:07:54 +0000 | [diff] [blame] | 29 | : AsmPrinter(O, TM, T) { |
| Jim Laskey | a6211dc | 2006-09-06 18:34:40 +0000 | [diff] [blame] | 30 | } |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 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. |
| Chris Lattner | d62a3bf | 2006-02-06 23:41:19 +0000 | [diff] [blame] | 43 | void printOperand(const MachineInstr *MI, unsigned OpNo, |
| 44 | const char *Modifier = 0) { |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 45 | const MachineOperand &MO = MI->getOperand(OpNo); |
| Chris Lattner | 10b71c0 | 2006-05-04 18:05:43 +0000 | [diff] [blame] | 46 | if (MO.isRegister()) { |
| Dan Gohman | 3a4be0f | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 47 | assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) && |
| 48 | "Not physreg??"); |
| Evan Cheng | 90a92af | 2008-07-07 22:21:06 +0000 | [diff] [blame] | 49 | O << TM.getRegisterInfo()->get(MO.getReg()).Name; // Capitalized names |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 50 | } else { |
| Chris Lattner | d62a3bf | 2006-02-06 23:41:19 +0000 | [diff] [blame] | 51 | printOp(MO, Modifier); |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 52 | } |
| 53 | } |
| 54 | |
| Nate Begeman | 6f8c1ac | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 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) { |
| Nate Begeman | 11695c0 | 2005-11-30 18:57:39 +0000 | [diff] [blame] | 64 | O << "DWORD PTR "; |
| Nate Begeman | 6f8c1ac | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 65 | printMemReference(MI, OpNo); |
| 66 | } |
| 67 | void printi64mem(const MachineInstr *MI, unsigned OpNo) { |
| Nate Begeman | 11695c0 | 2005-11-30 18:57:39 +0000 | [diff] [blame] | 68 | O << "QWORD PTR "; |
| Nate Begeman | 6f8c1ac | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 69 | printMemReference(MI, OpNo); |
| 70 | } |
| Evan Cheng | 9e252e3 | 2006-02-22 02:26:30 +0000 | [diff] [blame] | 71 | void printi128mem(const MachineInstr *MI, unsigned OpNo) { |
| 72 | O << "XMMWORD PTR "; |
| 73 | printMemReference(MI, OpNo); |
| 74 | } |
| Nate Begeman | 6f8c1ac | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 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 Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 83 | void printf80mem(const MachineInstr *MI, unsigned OpNo) { |
| 84 | O << "XWORD PTR "; |
| 85 | printMemReference(MI, OpNo); |
| 86 | } |
| Evan Cheng | 72d5c25 | 2006-01-31 22:28:30 +0000 | [diff] [blame] | 87 | void printf128mem(const MachineInstr *MI, unsigned OpNo) { |
| 88 | O << "XMMWORD PTR "; |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 89 | printMemReference(MI, OpNo); |
| 90 | } |
| Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 91 | void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) { |
| 92 | O << "QWORD PTR "; |
| 93 | printMemReference(MI, OpNo, "subreg64"); |
| 94 | } |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 95 | |
| Evan Cheng | d369603 | 2006-04-28 23:19:39 +0000 | [diff] [blame] | 96 | bool printAsmMRegister(const MachineOperand &MO, const char Mode); |
| Evan Cheng | 68a44dc | 2006-04-28 21:19:05 +0000 | [diff] [blame] | 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); |
| Jeff Cohen | 24a62a9 | 2006-05-02 01:16:28 +0000 | [diff] [blame] | 101 | void printMachineInstruction(const MachineInstr *MI); |
| Chris Lattner | d62a3bf | 2006-02-06 23:41:19 +0000 | [diff] [blame] | 102 | void printOp(const MachineOperand &MO, const char *Modifier = 0); |
| Nate Begeman | 6f8c1ac | 2005-11-30 18:54:35 +0000 | [diff] [blame] | 103 | void printSSECC(const MachineInstr *MI, unsigned Op); |
| Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 104 | void printMemReference(const MachineInstr *MI, unsigned Op, |
| 105 | const char *Modifier=NULL); |
| Evan Cheng | 797d56f | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 106 | 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 | } |
| Evan Cheng | 5588de9 | 2006-02-18 00:15:05 +0000 | [diff] [blame] | 112 | void printPICLabel(const MachineInstr *MI, unsigned Op); |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 113 | bool runOnMachineFunction(MachineFunction &F); |
| 114 | bool doInitialization(Module &M); |
| Jeff Cohen | bfe9ffb | 2006-05-02 03:11:50 +0000 | [diff] [blame] | 115 | bool doFinalization(Module &M); |
| Anton Korobeynikov | 4e9dfe8 | 2008-06-28 11:07:54 +0000 | [diff] [blame] | 116 | |
| 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 | |
| Chris Lattner | b82247b | 2006-10-05 02:43:52 +0000 | [diff] [blame] | 133 | /// getSectionForFunction - Return the section that we should emit the |
| 134 | /// specified function body into. |
| 135 | virtual std::string getSectionForFunction(const Function &F) const; |
| Jeff Cohen | 24a62a9 | 2006-05-02 01:16:28 +0000 | [diff] [blame] | 136 | |
| Jeff Cohen | 24a62a9 | 2006-05-02 01:16:28 +0000 | [diff] [blame] | 137 | virtual void EmitString(const ConstantArray *CVA) const; |
| Anton Korobeynikov | 4e9dfe8 | 2008-06-28 11:07:54 +0000 | [diff] [blame] | 138 | |
| 139 | // Necessary for dllexport support |
| 140 | StringSet<> DLLExportedFns, DLLExportedGVs; |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 141 | }; |
| 142 | |
| Chris Lattner | b974046 | 2005-07-01 22:44:09 +0000 | [diff] [blame] | 143 | } // end namespace llvm |
| 144 | |
| 145 | #endif |