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 { |
| 20 | class MCOperand; |
| 21 | |
| 22 | class X86ATTInstPrinter : public MCInstPrinter { |
| 23 | public: |
Chris Lattner | d374087 | 2010-04-04 05:04:31 +0000 | [diff] [blame] | 24 | X86ATTInstPrinter(const MCAsmInfo &MAI) : MCInstPrinter(MAI) {} |
Chris Lattner | c493fb2 | 2009-09-14 01:49:26 +0000 | [diff] [blame] | 25 | |
| 26 | |
Chris Lattner | d374087 | 2010-04-04 05:04:31 +0000 | [diff] [blame] | 27 | virtual void printInst(const MCInst *MI, raw_ostream &OS); |
Chris Lattner | 0d7b0aa | 2010-02-11 22:57:32 +0000 | [diff] [blame] | 28 | virtual StringRef getOpcodeName(unsigned Opcode) const; |
| 29 | |
Chris Lattner | 05af261 | 2009-09-13 20:08:00 +0000 | [diff] [blame] | 30 | // Autogenerated by tblgen. |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 31 | void printInstruction(const MCInst *MI, raw_ostream &OS); |
Chris Lattner | d95148f | 2009-09-13 20:19:22 +0000 | [diff] [blame] | 32 | static const char *getRegisterName(unsigned RegNo); |
Chris Lattner | 0d7b0aa | 2010-02-11 22:57:32 +0000 | [diff] [blame] | 33 | static const char *getInstructionName(unsigned Opcode); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 34 | |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 35 | void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &OS); |
| 36 | void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &OS); |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 37 | void printSSECC(const MCInst *MI, unsigned Op, raw_ostream &OS); |
| 38 | void print_pcrel_imm(const MCInst *MI, unsigned OpNo, raw_ostream &OS); |
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 printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 41 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 42 | } |
| 43 | |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 44 | void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 45 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 46 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 47 | void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 48 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 49 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 50 | void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 51 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 52 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 53 | void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 54 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 55 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 56 | void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 57 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 58 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 59 | void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 60 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 61 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 62 | void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 63 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 64 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 65 | void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 66 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 67 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame] | 68 | void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 69 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 70 | } |
Bruno Cardoso Lopes | e86b01c | 2010-07-09 18:27:43 +0000 | [diff] [blame^] | 71 | void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 72 | printMemReference(MI, OpNo, O); |
| 73 | } |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 74 | }; |
| 75 | |
| 76 | } |
| 77 | |
| 78 | #endif |