Venkatraman Govindaraju | 0b93865 | 2013-12-25 23:43:39 +0000 | [diff] [blame] | 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 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_TARGET_SPARC_INSTPRINTER_SPARCINSTPRINTER_H |
| 15 | #define LLVM_LIB_TARGET_SPARC_INSTPRINTER_SPARCINSTPRINTER_H |
Venkatraman Govindaraju | 0b93865 | 2013-12-25 23:43:39 +0000 | [diff] [blame] | 16 | |
| 17 | #include "llvm/MC/MCInstPrinter.h" |
Venkatraman Govindaraju | 81aae57 | 2014-03-02 03:39:39 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCSubtargetInfo.h" |
Venkatraman Govindaraju | 0b93865 | 2013-12-25 23:43:39 +0000 | [diff] [blame] | 19 | |
| 20 | namespace llvm { |
| 21 | |
| 22 | class MCOperand; |
| 23 | |
| 24 | class SparcInstPrinter : public MCInstPrinter { |
| 25 | public: |
| 26 | SparcInstPrinter(const MCAsmInfo &MAI, |
| 27 | const MCInstrInfo &MII, |
Venkatraman Govindaraju | 81aae57 | 2014-03-02 03:39:39 +0000 | [diff] [blame] | 28 | const MCRegisterInfo &MRI, |
| 29 | const MCSubtargetInfo &sti) |
Akira Hatanaka | 725657b | 2015-03-28 04:03:51 +0000 | [diff] [blame^] | 30 | : MCInstPrinter(MAI, MII, MRI) {} |
Venkatraman Govindaraju | 0b93865 | 2013-12-25 23:43:39 +0000 | [diff] [blame] | 31 | |
Craig Topper | b0c941b | 2014-04-29 07:57:13 +0000 | [diff] [blame] | 32 | void printRegName(raw_ostream &OS, unsigned RegNo) const override; |
Akira Hatanaka | b46d023 | 2015-03-27 20:36:02 +0000 | [diff] [blame] | 33 | void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot, |
| 34 | const MCSubtargetInfo &STI) override; |
Akira Hatanaka | 725657b | 2015-03-28 04:03:51 +0000 | [diff] [blame^] | 35 | bool printSparcAliasInstr(const MCInst *MI, const MCSubtargetInfo &STI, |
| 36 | raw_ostream &OS); |
| 37 | bool isV9(const MCSubtargetInfo &STI) const; |
Venkatraman Govindaraju | 0b93865 | 2013-12-25 23:43:39 +0000 | [diff] [blame] | 38 | |
| 39 | // Autogenerated by tblgen. |
Akira Hatanaka | 725657b | 2015-03-28 04:03:51 +0000 | [diff] [blame^] | 40 | void printInstruction(const MCInst *MI, const MCSubtargetInfo &STI, |
| 41 | raw_ostream &O); |
| 42 | bool printAliasInstr(const MCInst *MI, const MCSubtargetInfo &STI, |
| 43 | raw_ostream &O); |
Tim Northover | ee20caa | 2014-05-12 18:04:06 +0000 | [diff] [blame] | 44 | void printCustomAliasOperand(const MCInst *MI, unsigned OpIdx, |
Akira Hatanaka | 725657b | 2015-03-28 04:03:51 +0000 | [diff] [blame^] | 45 | unsigned PrintMethodIdx, |
| 46 | const MCSubtargetInfo &STI, raw_ostream &O); |
Venkatraman Govindaraju | 0b93865 | 2013-12-25 23:43:39 +0000 | [diff] [blame] | 47 | static const char *getRegisterName(unsigned RegNo); |
| 48 | |
Akira Hatanaka | 725657b | 2015-03-28 04:03:51 +0000 | [diff] [blame^] | 49 | void printOperand(const MCInst *MI, int opNum, const MCSubtargetInfo &STI, |
| 50 | raw_ostream &OS); |
| 51 | void printMemOperand(const MCInst *MI, int opNum, const MCSubtargetInfo &STI, |
| 52 | raw_ostream &OS, const char *Modifier = nullptr); |
| 53 | void printCCOperand(const MCInst *MI, int opNum, const MCSubtargetInfo &STI, |
| 54 | raw_ostream &OS); |
| 55 | bool printGetPCX(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 56 | raw_ostream &OS); |
Venkatraman Govindaraju | 0b93865 | 2013-12-25 23:43:39 +0000 | [diff] [blame] | 57 | }; |
| 58 | } // end namespace llvm |
| 59 | |
| 60 | #endif |