blob: c6b57f826b29f32fc4e738c8e47997543abd773c [file] [log] [blame]
Venkatraman Govindaraju0b938652013-12-25 23:43:39 +00001//===-- 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
19namespace llvm {
20
21class MCOperand;
22
23class SparcInstPrinter : public MCInstPrinter {
24public:
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