Invert the meaning of printAliasInstr's return value. It now returns
[oota-llvm.git] / lib / Target / X86 / InstPrinter / X86ATTInstPrinter.h
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.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef X86_ATT_INST_PRINTER_H
15 #define X86_ATT_INST_PRINTER_H
16
17 #include "llvm/MC/MCInstPrinter.h"
18
19 namespace llvm {
20
21 class MCOperand;
22 class X86Subtarget;
23 class TargetMachine;
24   
25 class X86ATTInstPrinter : public MCInstPrinter {
26 public:
27   X86ATTInstPrinter(TargetMachine &TM, const MCAsmInfo &MAI);
28   
29   virtual void printInst(const MCInst *MI, raw_ostream &OS);
30   virtual StringRef getOpcodeName(unsigned Opcode) const;
31
32   // Methods used to print the alias of an instruction.
33   unsigned ComputeAvailableFeatures(const X86Subtarget *Subtarget) const;
34   // Autogenerated by tblgen, returns true if we successfully printed an
35   // alias.
36   bool printAliasInstr(const MCInst *MI, raw_ostream &OS);
37
38   // Autogenerated by tblgen.
39   void printInstruction(const MCInst *MI, raw_ostream &OS);
40   static const char *getRegisterName(unsigned RegNo);
41   static const char *getInstructionName(unsigned Opcode);
42
43   void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
44   void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &OS);
45   void printSSECC(const MCInst *MI, unsigned Op, raw_ostream &OS);
46   void print_pcrel_imm(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
47   
48   void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
49     printMemReference(MI, OpNo, O);
50   }
51   
52   void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
53     printMemReference(MI, OpNo, O);
54   }
55   void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
56     printMemReference(MI, OpNo, O);
57   }
58   void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
59     printMemReference(MI, OpNo, O);
60   }
61   void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
62     printMemReference(MI, OpNo, O);
63   }
64   void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
65     printMemReference(MI, OpNo, O);
66   }
67   void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
68     printMemReference(MI, OpNo, O);
69   }
70   void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
71     printMemReference(MI, OpNo, O);
72   }
73   void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
74     printMemReference(MI, OpNo, O);
75   }
76   void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
77     printMemReference(MI, OpNo, O);
78   }
79   void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
80     printMemReference(MI, OpNo, O);
81   }
82   void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
83     printMemReference(MI, OpNo, O);
84   }
85 };
86   
87 }
88
89 #endif