[Sparc] Add MCInstPrinter implementation for SPARC.
[oota-llvm.git] / lib / Target / Sparc / InstPrinter / SparcInstPrinter.h
1 //===-- SparcInstPrinter.h - Convert Sparc 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 Sparc MCInst to a .s file.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef SparcINSTPRINTER_H
15 #define SparcINSTPRINTER_H
16
17 #include "llvm/MC/MCInstPrinter.h"
18
19 namespace llvm {
20
21 class MCOperand;
22
23 class SparcInstPrinter : public MCInstPrinter {
24 public:
25  SparcInstPrinter(const MCAsmInfo &MAI,
26                   const MCInstrInfo &MII,
27                   const MCRegisterInfo &MRI)
28    : MCInstPrinter(MAI, MII, MRI) {}
29
30   virtual void printRegName(raw_ostream &OS, unsigned RegNo) const;
31   virtual void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot);
32
33   // Autogenerated by tblgen.
34   void printInstruction(const MCInst *MI, raw_ostream &O);
35   static const char *getRegisterName(unsigned RegNo);
36
37   void printOperand(const MCInst *MI, int opNum, raw_ostream &OS);
38   void printMemOperand(const MCInst *MI, int opNum, raw_ostream &OS,
39                        const char *Modifier = 0);
40   void printCCOperand(const MCInst *MI, int opNum, raw_ostream &OS);
41   bool printGetPCX(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
42
43 };
44 } // end namespace llvm
45
46 #endif