LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AMDGPUInstPrinter.h
Go to the documentation of this file.
1 //===-- AMDGPUInstPrinter.h - AMDGPU MC Inst -> ASM interface ---*- C++ -*-===//
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 /// \file
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef AMDGPUINSTPRINTER_H
14 #define AMDGPUINSTPRINTER_H
15 
16 #include "llvm/ADT/StringRef.h"
17 #include "llvm/MC/MCInstPrinter.h"
19 
20 namespace llvm {
21 
23 public:
25  const MCRegisterInfo &MRI)
26  : MCInstPrinter(MAI, MII, MRI) {}
27 
28  //Autogenerated by tblgen
29  void printInstruction(const MCInst *MI, raw_ostream &O);
30  static const char *getRegisterName(unsigned RegNo);
31 
32  virtual void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot);
33 
34 private:
35  void printRegOperand(unsigned RegNo, raw_ostream &O);
36  void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
37  void printInterpSlot(const MCInst *MI, unsigned OpNum, raw_ostream &O);
38  void printMemOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
39  void printIfSet(const MCInst *MI, unsigned OpNo, raw_ostream &O,
41  void printAbs(const MCInst *MI, unsigned OpNo, raw_ostream &O);
42  void printClamp(const MCInst *MI, unsigned OpNo, raw_ostream &O);
43  void printLiteral(const MCInst *MI, unsigned OpNo, raw_ostream &O);
44  void printLast(const MCInst *MI, unsigned OpNo, raw_ostream &O);
45  void printNeg(const MCInst *MI, unsigned OpNo, raw_ostream &O);
46  void printOMOD(const MCInst *MI, unsigned OpNo, raw_ostream &O);
47  void printRel(const MCInst *MI, unsigned OpNo, raw_ostream &O);
48  void printUpdateExecMask(const MCInst *MI, unsigned OpNo, raw_ostream &O);
49  void printUpdatePred(const MCInst *MI, unsigned OpNo, raw_ostream &O);
50  void printWrite(const MCInst *MI, unsigned OpNo, raw_ostream &O);
51  void printSel(const MCInst *MI, unsigned OpNo, raw_ostream &O);
52  void printBankSwizzle(const MCInst *MI, unsigned OpNo, raw_ostream &O);
53  void printRSel(const MCInst *MI, unsigned OpNo, raw_ostream &O);
54  void printCT(const MCInst *MI, unsigned OpNo, raw_ostream &O);
55  void printKCache(const MCInst *MI, unsigned OpNo, raw_ostream &O);
56  void printWaitFlag(const MCInst *MI, unsigned OpNo, raw_ostream &O);
57 };
58 
59 } // End namespace llvm
60 
61 #endif // AMDGPUINSTRPRINTER_H
virtual void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot)
void printInstruction(const MCInst *MI, raw_ostream &O)
AMDGPUInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI)
static const char * getRegisterName(unsigned RegNo)
const MCAsmInfo & MAI
Definition: MCInstPrinter.h:39
const MCInstrInfo & MII
Definition: MCInstPrinter.h:40
const MCRegisterInfo & MRI
Definition: MCInstPrinter.h:41