[ARM] VQADD instructions
[llvm-complete.git] / lib / Target / Sparc / MCTargetDesc / SparcInstPrinter.h
blob499bcadb0d4d16ae35be66cfb7f81cd6d3fe8f3e
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.
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"
18 namespace llvm {
20 class SparcInstPrinter : public MCInstPrinter {
21 public:
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,
30 raw_ostream &OS);
31 bool isV9(const MCSubtargetInfo &STI) const;
33 // Autogenerated by tblgen.
34 void printInstruction(const MCInst *MI, const MCSubtargetInfo &STI,
35 raw_ostream &O);
36 bool printAliasInstr(const MCInst *MI, const MCSubtargetInfo &STI,
37 raw_ostream &O);
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,
44 raw_ostream &OS);
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,
48 raw_ostream &OS);
49 bool printGetPCX(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI,
50 raw_ostream &OS);
51 void printMembarTag(const MCInst *MI, int opNum, const MCSubtargetInfo &STI,
52 raw_ostream &O);
54 } // end namespace llvm
56 #endif