Use the dwarf->llvm mapping to print register names in the cfi
[oota-llvm.git] / lib / Target / X86 / InstPrinter / X86ATTInstPrinter.h
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
17 #include "llvm/MC/MCInstPrinter.h"
18
19 namespace llvm {
20
21 class MCOperand;
22 class X86Subtarget;
23 class TargetMachine;
24   
25 class X86ATTInstPrinter : public MCInstPrinter {
26 public:
27   X86ATTInstPrinter(TargetMachine &TM, const MCAsmInfo &MAI);
28   
29   StringRef getRegName(unsigned RegNo) const;
30   virtual void printInst(const MCInst *MI, raw_ostream &OS);
31   virtual StringRef getOpcodeName(unsigned Opcode) const;
32
33   // Methods used to print the alias of an instruction.
34   unsigned ComputeAvailableFeatures(const X86Subtarget *Subtarget) const;
35   // Autogenerated by tblgen, returns true if we successfully printed an
36   // alias.
37   bool printAliasInstr(const MCInst *MI, raw_ostream &OS);
38
39   // Autogenerated by tblgen.
40   void printInstruction(const MCInst *MI, raw_ostream &OS);
41   static const char *getRegisterName(unsigned RegNo);
42   static const char *getInstructionName(unsigned Opcode);
43
44   void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
45   void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &OS);
46   void printSSECC(const MCInst *MI, unsigned Op, raw_ostream &OS);
47   void print_pcrel_imm(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
48   
49   void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
50     printMemReference(MI, OpNo, O);
51   }
52   
53   void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
54     printMemReference(MI, OpNo, O);
55   }
56   void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
57     printMemReference(MI, OpNo, O);
58   }
59   void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
60     printMemReference(MI, OpNo, O);
61   }
62   void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
63     printMemReference(MI, OpNo, O);
64   }
65   void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
66     printMemReference(MI, OpNo, O);
67   }
68   void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
69     printMemReference(MI, OpNo, O);
70   }
71   void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
72     printMemReference(MI, OpNo, O);
73   }
74   void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
75     printMemReference(MI, OpNo, O);
76   }
77   void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
78     printMemReference(MI, OpNo, O);
79   }
80   void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
81     printMemReference(MI, OpNo, O);
82   }
83   void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
84     printMemReference(MI, OpNo, O);
85   }
86 };
87   
88 }
89
90 #endif