Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 1 | //===-- X86ATTInstPrinter.h - Convert X86 MCInst to assembly syntax -------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This class prints an X86 MCInst to AT&T style .s file syntax. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef X86_ATT_INST_PRINTER_H |
| 15 | #define X86_ATT_INST_PRINTER_H |
| 16 | |
Chris Lattner | c493fb2 | 2009-09-14 01:49:26 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCInstPrinter.h" |
Chris Lattner | 05af261 | 2009-09-13 20:08:00 +0000 | [diff] [blame] | 18 | |
Chris Lattner | c493fb2 | 2009-09-14 01:49:26 +0000 | [diff] [blame] | 19 | namespace llvm { |
Bill Wendling | a5c177e | 2011-03-21 04:13:46 +0000 | [diff] [blame] | 20 | |
| 21 | class MCOperand; |
Chris Lattner | c493fb2 | 2009-09-14 01:49:26 +0000 | [diff] [blame] | 22 | |
| 23 | class X86ATTInstPrinter : public MCInstPrinter { |
| 24 | public: |
Evan Cheng | b262799 | 2011-07-06 19:45:42 +0000 | [diff] [blame^] | 25 | X86ATTInstPrinter(const MCAsmInfo &MAI); |
Chris Lattner | c493fb2 | 2009-09-14 01:49:26 +0000 | [diff] [blame] | 26 | |
Rafael Espindola | cde4ce4 | 2011-06-02 02:34:55 +0000 | [diff] [blame] | 27 | virtual void printRegName(raw_ostream &OS, unsigned RegNo) const; |
Chris Lattner | d374087 | 2010-04-04 05:04:31 +0000 | [diff] [blame] | 28 | virtual void printInst(const MCInst *MI, raw_ostream &OS); |
Chris Lattner | 0d7b0aa | 2010-02-11 22:57:32 +0000 | [diff] [blame] | 29 | virtual StringRef getOpcodeName(unsigned Opcode) const; |
| 30 | |
Eric Christopher | 721ef66 | 2011-04-18 21:28:11 +0000 | [diff] [blame] | 31 | // Autogenerated by tblgen, returns true if we successfully printed an |
| 32 | // alias. |
Bill Wendling | 44dcfd3 | 2011-04-07 21:20:06 +0000 | [diff] [blame] | 33 | bool printAliasInstr(const MCInst *MI, raw_ostream &OS); |
| 34 | |
Chris Lattner | 05af261 | 2009-09-13 20:08:00 +0000 | [diff] [blame] | 35 | // Autogenerated by tblgen. |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 36 | void printInstruction(const MCInst *MI, raw_ostream &OS); |
Chris Lattner | d95148f | 2009-09-13 20:19:22 +0000 | [diff] [blame] | 37 | static const char *getRegisterName(unsigned RegNo); |
Chris Lattner | 0d7b0aa | 2010-02-11 22:57:32 +0000 | [diff] [blame] | 38 | static const char *getInstructionName(unsigned Opcode); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 39 | |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 40 | void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &OS); |
| 41 | void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &OS); |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 42 | void printSSECC(const MCInst *MI, unsigned Op, raw_ostream &OS); |
| 43 | void print_pcrel_imm(const MCInst *MI, unsigned OpNo, raw_ostream &OS); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 44 | |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 45 | void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 46 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 47 | } |
| 48 | |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 49 | void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 50 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 51 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 52 | void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 53 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 54 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 55 | void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 56 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 57 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 58 | void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 59 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 60 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 61 | void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 62 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 63 | } |
Bruno Cardoso Lopes | 94143ee | 2010-07-19 23:32:44 +0000 | [diff] [blame] | 64 | void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 65 | printMemReference(MI, OpNo, O); |
| 66 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 67 | void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 68 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 69 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 70 | void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 71 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 72 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 73 | void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 74 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 75 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 76 | void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 77 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 78 | } |
Bruno Cardoso Lopes | e86b01c | 2010-07-09 18:27:43 +0000 | [diff] [blame] | 79 | void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 80 | printMemReference(MI, OpNo, O); |
| 81 | } |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | } |
| 85 | |
| 86 | #endif |