1 //===-- X86IntelInstPrinter.h - Convert X86 MCInst to assembly syntax -----===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This class prints an X86 MCInst to intel style .s file syntax.
12 //===----------------------------------------------------------------------===//
14 #ifndef X86_INTEL_INST_PRINTER_H
15 #define X86_INTEL_INST_PRINTER_H
17 #include "llvm/MC/MCInstPrinter.h"
18 #include "llvm/Support/raw_ostream.h"
24 class X86IntelInstPrinter
: public MCInstPrinter
{
26 X86IntelInstPrinter(const MCAsmInfo
&MAI
)
27 : MCInstPrinter(MAI
) {}
29 virtual void printRegName(raw_ostream
&OS
, unsigned RegNo
) const;
30 virtual void printInst(const MCInst
*MI
, raw_ostream
&OS
);
31 virtual StringRef
getOpcodeName(unsigned Opcode
) const;
33 // Autogenerated by tblgen.
34 void printInstruction(const MCInst
*MI
, raw_ostream
&O
);
35 static const char *getRegisterName(unsigned RegNo
);
36 static const char *getInstructionName(unsigned Opcode
);
38 void printOperand(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
);
39 void printMemReference(const MCInst
*MI
, unsigned Op
, raw_ostream
&O
);
40 void printSSECC(const MCInst
*MI
, unsigned Op
, raw_ostream
&O
);
41 void print_pcrel_imm(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
);
43 void printopaquemem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
45 printMemReference(MI
, OpNo
, O
);
48 void printi8mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
50 printMemReference(MI
, OpNo
, O
);
52 void printi16mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
54 printMemReference(MI
, OpNo
, O
);
56 void printi32mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
58 printMemReference(MI
, OpNo
, O
);
60 void printi64mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
62 printMemReference(MI
, OpNo
, O
);
64 void printi128mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
66 printMemReference(MI
, OpNo
, O
);
68 void printi256mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
70 printMemReference(MI
, OpNo
, O
);
72 void printf32mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
74 printMemReference(MI
, OpNo
, O
);
76 void printf64mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
78 printMemReference(MI
, OpNo
, O
);
80 void printf80mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
82 printMemReference(MI
, OpNo
, O
);
84 void printf128mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
86 printMemReference(MI
, OpNo
, O
);
88 void printf256mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
90 printMemReference(MI
, OpNo
, O
);