Refactor X86AsmPrinter.cpp into multiple files. Patch contributed
[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   // This method is used by the tablegen'erated instruction printer.
38   void printOperand(const MachineInstr *MI, unsigned OpNo, MVT::ValueType VT){
39     printOp(MI->getOperand(OpNo));
40   }
41
42   void printCallOperand(const MachineInstr *MI, unsigned OpNo,
43                         MVT::ValueType VT) {
44     printOp(MI->getOperand(OpNo), true); // Don't print '$' prefix.
45   }
46
47   void printMemoryOperand(const MachineInstr *MI, unsigned OpNo,
48                           MVT::ValueType VT) {
49     printMemReference(MI, OpNo);
50   }
51
52   void printMachineInstruction(const MachineInstr *MI);
53   void printOp(const MachineOperand &MO, bool isCallOperand = false);
54   void printMemReference(const MachineInstr *MI, unsigned Op);
55   bool runOnMachineFunction(MachineFunction &F);
56 };
57
58 } // end namespace x86
59 } // end namespace llvm
60
61 #endif