LLVM  8.0.1
SparcInstPrinter.h
Go to the documentation of this file.
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 
14 #ifndef LLVM_LIB_TARGET_SPARC_INSTPRINTER_SPARCINSTPRINTER_H
15 #define LLVM_LIB_TARGET_SPARC_INSTPRINTER_SPARCINSTPRINTER_H
16 
17 #include "llvm/MC/MCInstPrinter.h"
18 
19 namespace llvm {
20 
22 public:
24  const MCRegisterInfo &MRI)
25  : MCInstPrinter(MAI, MII, MRI) {}
26 
27  void printRegName(raw_ostream &OS, unsigned RegNo) const override;
28  void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot,
29  const MCSubtargetInfo &STI) override;
30  bool printSparcAliasInstr(const MCInst *MI, const MCSubtargetInfo &STI,
31  raw_ostream &OS);
32  bool isV9(const MCSubtargetInfo &STI) const;
33 
34  // Autogenerated by tblgen.
35  void printInstruction(const MCInst *MI, const MCSubtargetInfo &STI,
36  raw_ostream &O);
37  bool printAliasInstr(const MCInst *MI, const MCSubtargetInfo &STI,
38  raw_ostream &O);
39  void printCustomAliasOperand(const MCInst *MI, unsigned OpIdx,
40  unsigned PrintMethodIdx,
41  const MCSubtargetInfo &STI, raw_ostream &O);
42  static const char *getRegisterName(unsigned RegNo);
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
bool printAliasInstr(const MCInst *MI, const MCSubtargetInfo &STI, raw_ostream &O)
void printInstruction(const MCInst *MI, const MCSubtargetInfo &STI, raw_ostream &O)
SparcInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot, const MCSubtargetInfo &STI) override
Print the specified MCInst to the specified raw_ostream.
void printMembarTag(const MCInst *MI, int opNum, const MCSubtargetInfo &STI, raw_ostream &O)
static const char * getRegisterName(unsigned RegNo)
void printRegName(raw_ostream &OS, unsigned RegNo) const override
Print the assembler register name.
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:161
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition: MCAsmInfo.h:56
void printMemOperand(const MCInst *MI, int opNum, const MCSubtargetInfo &STI, raw_ostream &OS, const char *Modifier=nullptr)
Interface to description of machine instruction set.
Definition: MCInstrInfo.h:24
void printCustomAliasOperand(const MCInst *MI, unsigned OpIdx, unsigned PrintMethodIdx, const MCSubtargetInfo &STI, raw_ostream &O)
bool printGetPCX(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &OS)
void printOperand(const MCInst *MI, int opNum, const MCSubtargetInfo &STI, raw_ostream &OS)
void printCCOperand(const MCInst *MI, int opNum, const MCSubtargetInfo &STI, raw_ostream &OS)
const MCAsmInfo & MAI
Definition: MCInstPrinter.h:46
This is an instance of a target assembly language printer that converts an MCInst to valid target ass...
Definition: MCInstPrinter.h:40
bool isV9(const MCSubtargetInfo &STI) const
Generic base class for all target subtargets.
const MCInstrInfo & MII
Definition: MCInstPrinter.h:47
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
IRTranslator LLVM IR MI
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
bool printSparcAliasInstr(const MCInst *MI, const MCSubtargetInfo &STI, raw_ostream &OS)
const MCRegisterInfo & MRI
Definition: MCInstPrinter.h:48