1 //===-- SparcInstPrinter.h - Convert Sparc MCInst to assembly syntax ------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This class prints an Sparc MCInst to a .s file.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLVM_LIB_TARGET_SPARC_MCTARGETDESC_SPARCINSTPRINTER_H
14 #define LLVM_LIB_TARGET_SPARC_MCTARGETDESC_SPARCINSTPRINTER_H
15 
16 #include "llvm/MC/MCInstPrinter.h"
17 
18 namespace llvm {
19 
20 class SparcInstPrinter : public MCInstPrinter {
21 public:
22   SparcInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
23                    const MCRegisterInfo &MRI)
24       : MCInstPrinter(MAI, MII, MRI) {}
25 
26   void printRegName(raw_ostream &OS, MCRegister Reg) const override;
27   void printInst(const MCInst *MI, uint64_t Address, StringRef Annot,
28                  const MCSubtargetInfo &STI, raw_ostream &O) override;
29   bool printSparcAliasInstr(const MCInst *MI, const MCSubtargetInfo &STI,
30                             raw_ostream &OS);
31   bool isV9(const MCSubtargetInfo &STI) const;
32 
33   // Autogenerated by tblgen.
34   std::pair<const char *, uint64_t> getMnemonic(const MCInst *MI) override;
35   void printInstruction(const MCInst *MI, uint64_t Address,
36                         const MCSubtargetInfo &STI, raw_ostream &O);
37   bool printAliasInstr(const MCInst *MI, uint64_t Address,
38                        const MCSubtargetInfo &STI, raw_ostream &O);
39   void printCustomAliasOperand(const MCInst *MI, uint64_t Address,
40                                unsigned OpIdx, unsigned PrintMethodIdx,
41                                const MCSubtargetInfo &STI, raw_ostream &O);
42   static const char *getRegisterName(MCRegister Reg);
43 
44   void printOperand(const MCInst *MI, int opNum, const MCSubtargetInfo &STI,
45                     raw_ostream &OS);
46   void printMemOperand(const MCInst *MI, int opNum, const MCSubtargetInfo &STI,
47                        raw_ostream &OS, const char *Modifier = nullptr);
48   void printCCOperand(const MCInst *MI, int opNum, const MCSubtargetInfo &STI,
49                       raw_ostream &OS);
50   bool printGetPCX(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI,
51                    raw_ostream &OS);
52   void printMembarTag(const MCInst *MI, int opNum, const MCSubtargetInfo &STI,
53                       raw_ostream &O);
54 };
55 } // end namespace llvm
56 
57 #endif
58