325b43d32b2cd3a5e500feb8854f567117515a30
[oota-llvm.git] / lib / Target / X86 / X86ATTAsmPrinter.h
1 //===-- X86ATTAsmPrinter.h - Convert X86 LLVM code to Intel assembly ------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // AT&T assembly code printer class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef X86ATTASMPRINTER_H
15 #define X86ATTASMPRINTER_H
16
17 #include "X86AsmPrinter.h"
18 #include "llvm/CodeGen/ValueTypes.h"
19
20 namespace llvm {
21 namespace x86 {
22
23 struct X86ATTAsmPrinter : public X86SharedAsmPrinter {
24  X86ATTAsmPrinter(std::ostream &O, TargetMachine &TM)
25     : X86SharedAsmPrinter(O, TM) { }
26
27   virtual const char *getPassName() const {
28     return "X86 AT&T-Style Assembly Printer";
29   }
30
31   /// printInstruction - This method is automatically generated by tablegen
32   /// from the instruction set description.  This method returns true if the
33   /// machine instruction was sufficiently described to print it, otherwise it
34   /// returns false.
35   bool printInstruction(const MachineInstr *MI);
36
37   // These methods are used by the tablegen'erated instruction printer.
38   void printOperand(const MachineInstr *MI, unsigned OpNo,
39                     const char *Modifier = 0);
40   void printi8mem(const MachineInstr *MI, unsigned OpNo) {
41     printMemReference(MI, OpNo);
42   }
43   void printi16mem(const MachineInstr *MI, unsigned OpNo) {
44     printMemReference(MI, OpNo);
45   }
46   void printi32mem(const MachineInstr *MI, unsigned OpNo) {
47     printMemReference(MI, OpNo);
48   }
49   void printi64mem(const MachineInstr *MI, unsigned OpNo) {
50     printMemReference(MI, OpNo);
51   }
52   void printi128mem(const MachineInstr *MI, unsigned OpNo) {
53     printMemReference(MI, OpNo);
54   }
55   void printf32mem(const MachineInstr *MI, unsigned OpNo) {
56     printMemReference(MI, OpNo);
57   }
58   void printf64mem(const MachineInstr *MI, unsigned OpNo) {
59     printMemReference(MI, OpNo);
60   }
61   void printf128mem(const MachineInstr *MI, unsigned OpNo) {
62     printMemReference(MI, OpNo);
63   }
64   
65   void printMachineInstruction(const MachineInstr *MI);
66   void printSSECC(const MachineInstr *MI, unsigned Op);
67   void printMemReference(const MachineInstr *MI, unsigned Op);
68   void printPICLabel(const MachineInstr *MI, unsigned Op);
69   bool runOnMachineFunction(MachineFunction &F);
70 };
71
72 } // end namespace x86
73 } // end namespace llvm
74
75 #endif