Fixed some bugs.
[llvm/zpu.git] / lib / Target / X86 / InstPrinter / X86ATTInstPrinter.h
blobeb986643014c782f30d0fde91c34d72ee2686485
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.
12 //===----------------------------------------------------------------------===//
14 #ifndef X86_ATT_INST_PRINTER_H
15 #define X86_ATT_INST_PRINTER_H
17 #include "llvm/MC/MCInstPrinter.h"
19 namespace llvm {
20 class MCOperand;
22 class X86ATTInstPrinter : public MCInstPrinter {
23 public:
24 X86ATTInstPrinter(const MCAsmInfo &MAI) : MCInstPrinter(MAI) {}
27 virtual void printInst(const MCInst *MI, raw_ostream &OS);
28 virtual StringRef getOpcodeName(unsigned Opcode) const;
30 // Autogenerated by tblgen.
31 void printInstruction(const MCInst *MI, raw_ostream &OS);
32 static const char *getRegisterName(unsigned RegNo);
33 static const char *getInstructionName(unsigned Opcode);
35 void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
36 void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &OS);
37 void printSSECC(const MCInst *MI, unsigned Op, raw_ostream &OS);
38 void print_pcrel_imm(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
40 void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
41 printMemReference(MI, OpNo, O);
44 void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
45 printMemReference(MI, OpNo, O);
47 void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
48 printMemReference(MI, OpNo, O);
50 void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
51 printMemReference(MI, OpNo, O);
53 void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
54 printMemReference(MI, OpNo, O);
56 void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
57 printMemReference(MI, OpNo, O);
59 void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
60 printMemReference(MI, OpNo, O);
62 void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
63 printMemReference(MI, OpNo, O);
65 void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
66 printMemReference(MI, OpNo, O);
68 void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
69 printMemReference(MI, OpNo, O);
71 void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
72 printMemReference(MI, OpNo, O);
74 void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
75 printMemReference(MI, OpNo, O);
81 #endif