]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/Target/X86/AsmPrinter/X86ATTInstPrinter.h
Update LLVM to r84949.
[FreeBSD/FreeBSD.git] / lib / Target / X86 / AsmPrinter / 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   class MCOperand;
21   
22 class X86ATTInstPrinter : public MCInstPrinter {
23 public:
24   X86ATTInstPrinter(raw_ostream &O, const MCAsmInfo &MAI)
25     : MCInstPrinter(O, MAI) {}
26
27   
28   virtual void printInst(const MCInst *MI);
29   
30   // Autogenerated by tblgen.
31   void printInstruction(const MCInst *MI);
32   static const char *getRegisterName(unsigned RegNo);
33
34
35   void printOperand(const MCInst *MI, unsigned OpNo);
36   void printMemReference(const MCInst *MI, unsigned Op);
37   void printLeaMemReference(const MCInst *MI, unsigned Op);
38   void printSSECC(const MCInst *MI, unsigned Op);
39   void print_pcrel_imm(const MCInst *MI, unsigned OpNo);
40   
41   void printopaquemem(const MCInst *MI, unsigned OpNo) {
42     printMemReference(MI, OpNo);
43   }
44   
45   void printi8mem(const MCInst *MI, unsigned OpNo) {
46     printMemReference(MI, OpNo);
47   }
48   void printi16mem(const MCInst *MI, unsigned OpNo) {
49     printMemReference(MI, OpNo);
50   }
51   void printi32mem(const MCInst *MI, unsigned OpNo) {
52     printMemReference(MI, OpNo);
53   }
54   void printi64mem(const MCInst *MI, unsigned OpNo) {
55     printMemReference(MI, OpNo);
56   }
57   void printi128mem(const MCInst *MI, unsigned OpNo) {
58     printMemReference(MI, OpNo);
59   }
60   void printf32mem(const MCInst *MI, unsigned OpNo) {
61     printMemReference(MI, OpNo);
62   }
63   void printf64mem(const MCInst *MI, unsigned OpNo) {
64     printMemReference(MI, OpNo);
65   }
66   void printf80mem(const MCInst *MI, unsigned OpNo) {
67     printMemReference(MI, OpNo);
68   }
69   void printf128mem(const MCInst *MI, unsigned OpNo) {
70     printMemReference(MI, OpNo);
71   }
72   void printlea32mem(const MCInst *MI, unsigned OpNo) {
73     printLeaMemReference(MI, OpNo);
74   }
75   void printlea64mem(const MCInst *MI, unsigned OpNo) {
76     printLeaMemReference(MI, OpNo);
77   }
78   void printlea64_32mem(const MCInst *MI, unsigned OpNo) {
79     printLeaMemReference(MI, OpNo);
80   }
81 };
82   
83 }
84
85 #endif