f71cb81690dd7cc434ad1737fa5fb94ea3f23e41
[oota-llvm.git] / lib / Target / X86 / InstPrinter / X86ATTInstPrinter.h
1 //==- X86ATTInstPrinter.h - Convert X86 MCInst to assembly syntax -*- C++ -*-=//
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 LLVM_LIB_TARGET_X86_INSTPRINTER_X86ATTINSTPRINTER_H
15 #define LLVM_LIB_TARGET_X86_INSTPRINTER_X86ATTINSTPRINTER_H
16
17 #include "llvm/MC/MCInstPrinter.h"
18 #include "llvm/MC/MCSubtargetInfo.h"
19
20 namespace llvm {
21
22 class MCOperand;
23
24 class X86ATTInstPrinter final : public MCInstPrinter {
25 public:
26   X86ATTInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
27                     const MCRegisterInfo &MRI, const MCSubtargetInfo &STI)
28     : MCInstPrinter(MAI, MII, MRI) {
29     // Initialize the set of available features.
30     setAvailableFeatures(STI.getFeatureBits());
31   }
32
33   void printRegName(raw_ostream &OS, unsigned RegNo) const override;
34   void printInst(const MCInst *MI, raw_ostream &OS, StringRef Annot) override;
35
36   // Autogenerated by tblgen, returns true if we successfully printed an
37   // alias.
38   bool printAliasInstr(const MCInst *MI, raw_ostream &OS);
39   void printCustomAliasOperand(const MCInst *MI, unsigned OpIdx,
40                                unsigned PrintMethodIdx, raw_ostream &O);
41
42   // Autogenerated by tblgen.
43   void printInstruction(const MCInst *MI, raw_ostream &OS);
44   static const char *getRegisterName(unsigned RegNo);
45
46   void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
47   void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &OS);
48   void printSSEAVXCC(const MCInst *MI, unsigned Op, raw_ostream &OS);
49   void printXOPCC(const MCInst *MI, unsigned Op, raw_ostream &OS);
50   void printPCRelImm(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
51   void printSrcIdx(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
52   void printDstIdx(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
53   void printMemOffset(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
54   void printRoundingControl(const MCInst *MI, unsigned Op, raw_ostream &OS);
55   void printU8Imm(const MCInst *MI, unsigned Op, raw_ostream &OS);
56
57   void printanymem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
58     printMemReference(MI, OpNo, O);
59   }
60
61   void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
62     printMemReference(MI, OpNo, O);
63   }
64
65   void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
66     printMemReference(MI, OpNo, O);
67   }
68   void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
69     printMemReference(MI, OpNo, O);
70   }
71   void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
72     printMemReference(MI, OpNo, O);
73   }
74   void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
75     printMemReference(MI, OpNo, O);
76   }
77   void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
78     printMemReference(MI, OpNo, O);
79   }
80   void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
81     printMemReference(MI, OpNo, O);
82   }
83   void printi512mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
84     printMemReference(MI, OpNo, O);
85   }
86   void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
87     printMemReference(MI, OpNo, O);
88   }
89   void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
90     printMemReference(MI, OpNo, O);
91   }
92   void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
93     printMemReference(MI, OpNo, O);
94   }
95   void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
96     printMemReference(MI, OpNo, O);
97   }
98   void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
99     printMemReference(MI, OpNo, O);
100   }
101   void printf512mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
102     printMemReference(MI, OpNo, O);
103   }
104
105   void printSrcIdx8(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
106     printSrcIdx(MI, OpNo, O);
107   }
108   void printSrcIdx16(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
109     printSrcIdx(MI, OpNo, O);
110   }
111   void printSrcIdx32(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
112     printSrcIdx(MI, OpNo, O);
113   }
114   void printSrcIdx64(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
115     printSrcIdx(MI, OpNo, O);
116   }
117   void printDstIdx8(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
118     printDstIdx(MI, OpNo, O);
119   }
120   void printDstIdx16(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
121     printDstIdx(MI, OpNo, O);
122   }
123   void printDstIdx32(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
124     printDstIdx(MI, OpNo, O);
125   }
126   void printDstIdx64(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
127     printDstIdx(MI, OpNo, O);
128   }
129   void printMemOffs8(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
130     printMemOffset(MI, OpNo, O);
131   }
132   void printMemOffs16(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
133     printMemOffset(MI, OpNo, O);
134   }
135   void printMemOffs32(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
136     printMemOffset(MI, OpNo, O);
137   }
138   void printMemOffs64(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
139     printMemOffset(MI, OpNo, O);
140   }
141
142 private:
143   bool HasCustomInstComment;
144 };
145
146 }
147
148 #endif