[x86] Make the 'x86-64' cpu, what I see as and many use as the generic
[oota-llvm.git] / lib / Target / X86 / InstPrinter / X86IntelInstPrinter.h
1 //= X86IntelInstPrinter.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 Intel style .s file syntax.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef X86_INTEL_INST_PRINTER_H
15 #define X86_INTEL_INST_PRINTER_H
16
17 #include "llvm/MC/MCInstPrinter.h"
18 #include "llvm/Support/raw_ostream.h"
19
20 namespace llvm {
21
22 class MCOperand;
23
24 class X86IntelInstPrinter final : public MCInstPrinter {
25 public:
26   X86IntelInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
27                       const MCRegisterInfo &MRI)
28     : MCInstPrinter(MAI, MII, MRI) {}
29
30   void printRegName(raw_ostream &OS, unsigned RegNo) const override;
31   void printInst(const MCInst *MI, raw_ostream &OS, StringRef Annot) override;
32
33   // Autogenerated by tblgen.
34   void printInstruction(const MCInst *MI, raw_ostream &O);
35   static const char *getRegisterName(unsigned RegNo);
36
37   void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
38   void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &O);
39   void printSSECC(const MCInst *MI, unsigned Op, raw_ostream &O);
40   void printAVXCC(const MCInst *MI, unsigned Op, raw_ostream &O);
41   void printPCRelImm(const MCInst *MI, unsigned OpNo, raw_ostream &O);
42   void printMemOffset(const MCInst *MI, unsigned OpNo, raw_ostream &O);
43   void printSrcIdx(const MCInst *MI, unsigned OpNo, raw_ostream &O);
44   void printDstIdx(const MCInst *MI, unsigned OpNo, raw_ostream &O);
45   void printRoundingControl(const MCInst *MI, unsigned Op, raw_ostream &OS);
46
47   void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
48     O << "opaque ptr ";
49     printMemReference(MI, OpNo, O);
50   }
51   
52   void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
53     O << "byte ptr ";
54     printMemReference(MI, OpNo, O);
55   }
56   void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
57     O << "word ptr ";
58     printMemReference(MI, OpNo, O);
59   }
60   void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
61     O << "dword ptr ";
62     printMemReference(MI, OpNo, O);
63   }
64   void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
65     O << "qword ptr ";
66     printMemReference(MI, OpNo, O);
67   }
68   void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
69     O << "xmmword ptr ";
70     printMemReference(MI, OpNo, O);
71   }
72   void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
73     O << "ymmword ptr ";
74     printMemReference(MI, OpNo, O);
75   }
76   void printi512mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
77     O << "zmmword ptr ";
78     printMemReference(MI, OpNo, O);
79   }
80   void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
81     O << "dword ptr ";
82     printMemReference(MI, OpNo, O);
83   }
84   void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
85     O << "qword ptr ";
86     printMemReference(MI, OpNo, O);
87   }
88   void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
89     O << "xword ptr ";
90     printMemReference(MI, OpNo, O);
91   }
92   void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
93     O << "xmmword ptr ";
94     printMemReference(MI, OpNo, O);
95   }
96   void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
97     O << "ymmword ptr ";
98     printMemReference(MI, OpNo, O);
99   }
100   void printf512mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
101     O << "zmmword ptr ";
102     printMemReference(MI, OpNo, O);
103   }
104
105
106   void printSrcIdx8(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
107     O << "byte ptr ";
108     printSrcIdx(MI, OpNo, O);
109   }
110   void printSrcIdx16(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
111     O << "word ptr ";
112     printSrcIdx(MI, OpNo, O);
113   }
114   void printSrcIdx32(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
115     O << "dword ptr ";
116     printSrcIdx(MI, OpNo, O);
117   }
118   void printSrcIdx64(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
119     O << "qword ptr ";
120     printSrcIdx(MI, OpNo, O);
121   }
122   void printDstIdx8(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
123     O << "byte ptr ";
124     printDstIdx(MI, OpNo, O);
125   }
126   void printDstIdx16(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
127     O << "word ptr ";
128     printDstIdx(MI, OpNo, O);
129   }
130   void printDstIdx32(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
131     O << "dword ptr ";
132     printDstIdx(MI, OpNo, O);
133   }
134   void printDstIdx64(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
135     O << "qword ptr ";
136     printDstIdx(MI, OpNo, O);
137   }
138   void printMemOffs8(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
139     O << "byte ptr ";
140     printMemOffset(MI, OpNo, O);
141   }
142   void printMemOffs16(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
143     O << "word ptr ";
144     printMemOffset(MI, OpNo, O);
145   }
146   void printMemOffs32(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
147     O << "dword ptr ";
148     printMemOffset(MI, OpNo, O);
149   }
150   void printMemOffs64(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
151     O << "qword ptr ";
152     printMemOffset(MI, OpNo, O);
153   }
154 };
155   
156 }
157
158 #endif