1 //===-- SparcInstPrinter.h - Convert Sparc MCInst to assembly syntax ------===//
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
7 //===----------------------------------------------------------------------===//
9 // This class prints an Sparc MCInst to a .s file.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_SPARC_MCTARGETDESC_SPARCINSTPRINTER_H
14 #define LLVM_LIB_TARGET_SPARC_MCTARGETDESC_SPARCINSTPRINTER_H
16 #include "llvm/MC/MCInstPrinter.h"
20 class SparcInstPrinter
: public MCInstPrinter
{
22 SparcInstPrinter(const MCAsmInfo
&MAI
, const MCInstrInfo
&MII
,
23 const MCRegisterInfo
&MRI
)
24 : MCInstPrinter(MAI
, MII
, MRI
) {}
26 void printRegName(raw_ostream
&OS
, unsigned RegNo
) const override
;
27 void printInst(const MCInst
*MI
, raw_ostream
&O
, StringRef Annot
,
28 const MCSubtargetInfo
&STI
) override
;
29 bool printSparcAliasInstr(const MCInst
*MI
, const MCSubtargetInfo
&STI
,
31 bool isV9(const MCSubtargetInfo
&STI
) const;
33 // Autogenerated by tblgen.
34 void printInstruction(const MCInst
*MI
, const MCSubtargetInfo
&STI
,
36 bool printAliasInstr(const MCInst
*MI
, const MCSubtargetInfo
&STI
,
38 void printCustomAliasOperand(const MCInst
*MI
, unsigned OpIdx
,
39 unsigned PrintMethodIdx
,
40 const MCSubtargetInfo
&STI
, raw_ostream
&O
);
41 static const char *getRegisterName(unsigned RegNo
);
43 void printOperand(const MCInst
*MI
, int opNum
, const MCSubtargetInfo
&STI
,
45 void printMemOperand(const MCInst
*MI
, int opNum
, const MCSubtargetInfo
&STI
,
46 raw_ostream
&OS
, const char *Modifier
= nullptr);
47 void printCCOperand(const MCInst
*MI
, int opNum
, const MCSubtargetInfo
&STI
,
49 bool printGetPCX(const MCInst
*MI
, unsigned OpNo
, const MCSubtargetInfo
&STI
,
51 void printMembarTag(const MCInst
*MI
, int opNum
, const MCSubtargetInfo
&STI
,
54 } // end namespace llvm