minor tidying, only do work if a function is
[oota-llvm.git] / lib / Target / X86 / AsmPrinter / X86IntelInstPrinter.h
1 //===-- X86IntelInstPrinter.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 intel style .s file syntax.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef X86_INTEL_INST_PRINTER_H
15 #define X86_INTEL_INST_PRINTER_H
16
17 #include "llvm/MC/MCInstPrinter.h"
18 #include "llvm/Support/raw_ostream.h"
19
20 namespace llvm {
21   class MCOperand;
22   
23 class X86IntelInstPrinter : public MCInstPrinter {
24 public:
25   X86IntelInstPrinter(raw_ostream &O, const MCAsmInfo &MAI)
26     : MCInstPrinter(O, MAI) {}
27   
28   virtual void printInst(const MCInst *MI);
29   virtual StringRef getOpcodeName(unsigned Opcode) const;
30   
31   // Autogenerated by tblgen.
32   void printInstruction(const MCInst *MI);
33   static const char *getRegisterName(unsigned RegNo);
34   static const char *getInstructionName(unsigned Opcode);
35
36
37   void printOperand(const MCInst *MI, unsigned OpNo,
38                     const char *Modifier = 0);
39   void printMemReference(const MCInst *MI, unsigned Op);
40   void printLeaMemReference(const MCInst *MI, unsigned Op);
41   void printSSECC(const MCInst *MI, unsigned Op);
42   void print_pcrel_imm(const MCInst *MI, unsigned OpNo);
43   
44   void printopaquemem(const MCInst *MI, unsigned OpNo) {
45     O << "OPAQUE PTR ";
46     printMemReference(MI, OpNo);
47   }
48   
49   void printi8mem(const MCInst *MI, unsigned OpNo) {
50     O << "BYTE PTR ";
51     printMemReference(MI, OpNo);
52   }
53   void printi16mem(const MCInst *MI, unsigned OpNo) {
54     O << "WORD PTR ";
55     printMemReference(MI, OpNo);
56   }
57   void printi32mem(const MCInst *MI, unsigned OpNo) {
58     O << "DWORD PTR ";
59     printMemReference(MI, OpNo);
60   }
61   void printi64mem(const MCInst *MI, unsigned OpNo) {
62     O << "QWORD PTR ";
63     printMemReference(MI, OpNo);
64   }
65   void printi128mem(const MCInst *MI, unsigned OpNo) {
66     O << "XMMWORD PTR ";
67     printMemReference(MI, OpNo);
68   }
69   void printf32mem(const MCInst *MI, unsigned OpNo) {
70     O << "DWORD PTR ";
71     printMemReference(MI, OpNo);
72   }
73   void printf64mem(const MCInst *MI, unsigned OpNo) {
74     O << "QWORD PTR ";
75     printMemReference(MI, OpNo);
76   }
77   void printf80mem(const MCInst *MI, unsigned OpNo) {
78     O << "XWORD PTR ";
79     printMemReference(MI, OpNo);
80   }
81   void printf128mem(const MCInst *MI, unsigned OpNo) {
82     O << "XMMWORD PTR ";
83     printMemReference(MI, OpNo);
84   }
85   void printlea32mem(const MCInst *MI, unsigned OpNo) {
86     O << "DWORD PTR ";
87     printLeaMemReference(MI, OpNo);
88   }
89   void printlea64mem(const MCInst *MI, unsigned OpNo) {
90     O << "QWORD PTR ";
91     printLeaMemReference(MI, OpNo);
92   }
93   void printlea64_32mem(const MCInst *MI, unsigned OpNo) {
94     O << "QWORD PTR ";
95     printLeaMemReference(MI, OpNo);
96   }
97 };
98   
99 }
100
101 #endif