brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.6 KiB · 2732986 Raw
47 lines · c
1//- SystemZHLASMInstPrinter.h - Convert SystemZ MCInst to assembly -*- 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 a SystemZ MCInst to a .s file in HLASM assembly format.10//11//===----------------------------------------------------------------------===//12 13#ifndef LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZHLASMINSTPRINTER_H14#define LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZHLASMINSTPRINTER_H15 16#include "SystemZInstPrinterCommon.h"17#include "llvm/MC/MCInstPrinter.h"18#include <cstdint>19 20namespace llvm {21 22class MCOperand;23 24class SystemZHLASMInstPrinter : public SystemZInstPrinterCommon {25public:26  SystemZHLASMInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,27                          const MCRegisterInfo &MRI)28      : SystemZInstPrinterCommon(MAI, MII, MRI) {}29 30  // Automatically generated by tblgen.31  std::pair<const char *, uint64_t>32  getMnemonic(const MCInst &MI) const override;33  void printInstruction(const MCInst *MI, uint64_t Address, raw_ostream &O);34  static const char *getRegisterName(MCRegister Reg);35 36  void printInst(const MCInst *MI, uint64_t Address, StringRef Annot,37                 const MCSubtargetInfo &STI, raw_ostream &O) override;38 39private:40  void printFormattedRegName(const MCAsmInfo *MAI, MCRegister Reg,41                             raw_ostream &O) override;42};43 44} // end namespace llvm45 46#endif // LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZHLASMINSTPRINTER_H47