brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.6 KiB · 3d17244 Raw
64 lines · c
1//= NVPTXInstPrinter.h - Convert NVPTX MCInst to assembly syntax --*- C++ -*-=//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-exception6//7//===----------------------------------------------------------------------===//8//9// This class prints an NVPTX MCInst to .ptx file syntax.10//11//===----------------------------------------------------------------------===//12 13#ifndef LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXINSTPRINTER_H14#define LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXINSTPRINTER_H15 16#include "llvm/MC/MCInstPrinter.h"17 18namespace llvm {19 20class MCSubtargetInfo;21 22class NVPTXInstPrinter : public MCInstPrinter {23public:24  NVPTXInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,25                   const MCRegisterInfo &MRI);26 27  void printRegName(raw_ostream &OS, MCRegister Reg) override;28  void printInst(const MCInst *MI, uint64_t Address, StringRef Annot,29                 const MCSubtargetInfo &STI, raw_ostream &OS) override;30 31  // Autogenerated by tblgen.32  std::pair<const char *, uint64_t>33  getMnemonic(const MCInst &MI) const override;34  void printInstruction(const MCInst *MI, uint64_t Address, raw_ostream &O);35  static const char *getRegisterName(MCRegister Reg);36  // End37 38  void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);39  void printCvtMode(const MCInst *MI, int OpNum, raw_ostream &O,40                    StringRef Modifier = {});41  void printCmpMode(const MCInst *MI, int OpNum, raw_ostream &O,42                    StringRef Modifier = {});43  void printAtomicCode(const MCInst *MI, int OpNum, raw_ostream &O,44                       StringRef Modifier = {});45  void printMmaCode(const MCInst *MI, int OpNum, raw_ostream &O,46                    StringRef Modifier = {});47  void printMemOperand(const MCInst *MI, int OpNum, raw_ostream &O,48                       StringRef Modifier = {});49  void printUsedBytesMaskPragma(const MCInst *MI, int OpNum, raw_ostream &O);50  void printRegisterOrSinkSymbol(const MCInst *MI, int OpNum, raw_ostream &O);51  void printHexu32imm(const MCInst *MI, int OpNum, raw_ostream &O);52  void printProtoIdent(const MCInst *MI, int OpNum, raw_ostream &O);53  void printPrmtMode(const MCInst *MI, int OpNum, raw_ostream &O);54  void printTmaReductionMode(const MCInst *MI, int OpNum, raw_ostream &O);55  void printCTAGroup(const MCInst *MI, int OpNum, raw_ostream &O);56  void printCallOperand(const MCInst *MI, int OpNum, raw_ostream &O,57                        StringRef Modifier = {});58  void printFTZFlag(const MCInst *MI, int OpNum, raw_ostream &O);59};60 61}62 63#endif64