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"
23 class X86IntelInstPrinter
: public MCInstPrinter
{
25 X86IntelInstPrinter(const MCAsmInfo
&MAI
)
26 : MCInstPrinter(MAI
) {}
28 virtual void printInst(const MCInst
*MI
, raw_ostream
&OS
);
29 virtual StringRef
getOpcodeName(unsigned Opcode
) const;
31 // Autogenerated by tblgen.
32 void printInstruction(const MCInst
*MI
, raw_ostream
&O
);
33 static const char *getRegisterName(unsigned RegNo
);
34 static const char *getInstructionName(unsigned Opcode
);
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 print_pcrel_imm(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
);
42 void printopaquemem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
44 printMemReference(MI
, OpNo
, O
);
47 void printi8mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
49 printMemReference(MI
, OpNo
, O
);
51 void printi16mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
53 printMemReference(MI
, OpNo
, O
);
55 void printi32mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
57 printMemReference(MI
, OpNo
, O
);
59 void printi64mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
61 printMemReference(MI
, OpNo
, O
);
63 void printi128mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
65 printMemReference(MI
, OpNo
, O
);
67 void printi256mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
69 printMemReference(MI
, OpNo
, O
);
71 void printf32mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
73 printMemReference(MI
, OpNo
, O
);
75 void printf64mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
77 printMemReference(MI
, OpNo
, O
);
79 void printf80mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
81 printMemReference(MI
, OpNo
, O
);
83 void printf128mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
85 printMemReference(MI
, OpNo
, O
);
87 void printf256mem(const MCInst
*MI
, unsigned OpNo
, raw_ostream
&O
) {
89 printMemReference(MI
, OpNo
, O
);