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: |
| 24 | X86ATTInstPrinter(raw_ostream &O, const MCAsmInfo &MAI) |
| 25 | : MCInstPrinter(O, MAI) {} |
| 26 | |
| 27 | |
| 28 | virtual void printInst(const MCInst *MI); |
Chris Lattner | 0d7b0aa | 2010-02-11 22:57:32 +0000 | [diff] [blame] | 29 | virtual StringRef getOpcodeName(unsigned Opcode) const; |
| 30 | |
Chris Lattner | 05af261 | 2009-09-13 20:08:00 +0000 | [diff] [blame] | 31 | // Autogenerated by tblgen. |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame^] | 32 | void printInstruction(const MCInst *MI, raw_ostream &OS); |
Chris Lattner | d95148f | 2009-09-13 20:19:22 +0000 | [diff] [blame] | 33 | static const char *getRegisterName(unsigned RegNo); |
Chris Lattner | 0d7b0aa | 2010-02-11 22:57:32 +0000 | [diff] [blame] | 34 | static const char *getInstructionName(unsigned Opcode); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 35 | |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame^] | 36 | void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &OS); |
| 37 | void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &OS); |
| 38 | void printLeaMemReference(const MCInst *MI, unsigned Op, raw_ostream &OS); |
| 39 | void printSSECC(const MCInst *MI, unsigned Op, raw_ostream &OS); |
| 40 | void print_pcrel_imm(const MCInst *MI, unsigned OpNo, raw_ostream &OS); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 41 | |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame^] | 42 | void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 43 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 44 | } |
| 45 | |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame^] | 46 | void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 47 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 48 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame^] | 49 | void printi16mem(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 printi32mem(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 printi64mem(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 printi128mem(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 printf32mem(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 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame^] | 64 | void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 65 | printMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 66 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame^] | 67 | void printf80mem(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 printf128mem(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 printlea32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 74 | printLeaMemReference(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 printlea64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 77 | printLeaMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 78 | } |
Chris Lattner | 35c33bd | 2010-04-04 04:47:45 +0000 | [diff] [blame^] | 79 | void printlea64_32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) { |
| 80 | printLeaMemReference(MI, OpNo, O); |
Chris Lattner | cae05cb | 2009-09-13 19:30:11 +0000 | [diff] [blame] | 81 | } |
| 82 | }; |
| 83 | |
| 84 | } |
| 85 | |
| 86 | #endif |