25#define DEBUG_TYPE "asm-printer" 
   28#define PRINT_ALIAS_INSTR 
   29#include "RISCVGenAsmWriter.inc" 
   33              cl::desc(
"Disable the emission of assembler pseudo instructions"),
 
   37                                cl::desc(
"Emit x8 as fp instead of s0"),
 
   52  if (Opt == 
"no-aliases") {
 
   56  if (Opt == 
"numeric") {
 
   60  if (Opt == 
"emit-x8-as-fp") {
 
 
   78    NewMI = &UncompressedMI;
 
 
  103  assert(MO.
isExpr() && 
"Unknown operand kind in printOperand");
 
 
  128  unsigned Imm = 
MI->getOperand(OpNo).getImm();
 
  129  auto Range = RISCVSysReg::lookupSysRegByEncoding(Imm);
 
  130  for (
auto &Reg : 
Range) {
 
  131    if (Reg.IsAltName || Reg.IsDeprecatedName)
 
 
  144  unsigned FenceArg = 
MI->getOperand(OpNo).getImm();
 
  145  assert (((FenceArg >> 4) == 0) && 
"Invalid immediate in printFenceArg");
 
 
  184  unsigned Imm = 
MI->getOperand(OpNo).getImm();
 
  187  } 
else if (Imm == 30) {
 
  189  } 
else if (Imm == 31) {
 
  197    if (FPVal == (
int)(FPVal))
 
 
  209  assert(MO.
isReg() && 
"printZeroOffsetMemOp can only print register operands");
 
 
  217  unsigned Imm = 
MI->getOperand(OpNo).getImm();
 
  223       !(STI.
hasFeature(RISCV::FeatureStdExtZvfbfa) ||
 
  224         STI.
hasFeature(RISCV::FeatureVendorXSfvfbfexp16e))) ||
 
 
  236  unsigned Imm = 
MI->getOperand(OpNo).getImm();
 
 
  252  unsigned Imm = 
MI->getOperand(OpNo).getImm();
 
 
  294  const MCOperand &OffsetMO = 
MI->getOperand(OpNo + 1);
 
  296  assert(OffsetMO.
isReg() && 
"printRegReg can only print register operands");
 
  301  assert(BaseMO.
isReg() && 
"printRegReg can only print register operands");
 
 
  309  int64_t Imm = 
MI->getOperand(OpNo).getImm();
 
  310  bool IsRV64 = STI.
hasFeature(RISCV::Feature64Bit);
 
  311  int64_t StackAdj = 0;
 
  312  auto RlistVal = 
MI->getOperand(0).getImm();
 
  314  StackAdj = Imm + 
Base;
 
  316         "Incorrect stack adjust");
 
  318    StackAdj = -StackAdj;
 
 
  330  assert(MO.
isReg() && 
"printVMaskReg can only print register operands");
 
  331  if (MO.
getReg() == RISCV::NoRegister)
 
 
  347                                           : RISCV::ABIRegAltName);
 
 
static SDValue Widen(SelectionDAG *CurDAG, SDValue N)
 
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
 
static cl::opt< bool > NoAliases("csky-no-aliases", cl::desc("Disable the emission of assembler pseudo instructions"), cl::init(false), cl::Hidden)
 
static cl::opt< bool > ArchRegNames("csky-arch-reg-names", cl::desc("Print architectural register names rather than the " "ABI names (such as r14 instead of sp)"), cl::init(false), cl::Hidden)
 
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
 
static cl::opt< bool > EmitX8AsFP("riscv-emit-x8-as-fp", cl::desc("Emit x8 as fp instead of s0"), cl::init(false), cl::Hidden)
 
static cl::opt< bool > NoAliases("riscv-no-aliases", cl::desc("Disable the emission of assembler pseudo instructions"), cl::init(false), cl::Hidden)
 
WithMarkup markup(raw_ostream &OS, Markup M)
 
format_object< int64_t > formatHex(int64_t Value) const
 
void printAnnotation(raw_ostream &OS, StringRef Annot)
Utility function for printing annotations.
 
format_object< int64_t > formatImm(int64_t Value) const
Utility function to print immediates in decimal or hex.
 
bool PrintBranchImmAsAddress
If true, a branch immediate (e.g.
 
bool PrintAliases
True if we prefer aliases (e.g. nop) to raw mnemonics.
 
Instances of this class represent a single low-level machine instruction.
 
Instances of this class represent operands of the MCInst class.
 
MCRegister getReg() const
Returns the register number.
 
const MCExpr * getExpr() const
 
Wrapper class representing physical registers. Should be passed by value.
 
Generic base class for all target subtargets.
 
bool hasFeature(unsigned Feature) const
 
const FeatureBitset & getFeatureBits() const
 
void printRegList(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
static const char * getRegisterName(MCRegister Reg)
 
void printCSRSystemRegister(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printXSfmmVType(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printFenceArg(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printVMaskReg(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
bool applyTargetSpecificCLOption(StringRef Opt) override
Customize the printer according to a command line option.
 
void printFRMArgLegacy(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
bool printAliasInstr(const MCInst *MI, uint64_t Address, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printRegReg(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printFRMArg(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printInst(const MCInst *MI, uint64_t Address, StringRef Annot, const MCSubtargetInfo &STI, raw_ostream &O) override
Print the specified MCInst to the specified raw_ostream.
 
void printFPImmOperand(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printInstruction(const MCInst *MI, uint64_t Address, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printZeroOffsetMemOp(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printRegName(raw_ostream &O, MCRegister Reg) override
Print the assembler register name.
 
void printVTypeI(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printOperand(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
void printStackAdj(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O, bool Negate=false)
 
void printBranchOperand(const MCInst *MI, uint64_t Address, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
 
StringRef - Represent a constant reference to a string, i.e.
 
This class implements an extremely fast bulk output stream that can only output to a stream.
 
static StringRef roundingModeToString(RoundingMode RndMode)
 
float getFPImm(unsigned Imm)
 
bool uncompress(MCInst &OutInst, const MCInst &MI, const MCSubtargetInfo &STI)
 
static unsigned getXSfmmWiden(unsigned VType)
 
LLVM_ABI void printVType(unsigned VType, raw_ostream &OS)
 
static bool isValidXSfmmVType(unsigned VTypeI)
 
static bool isAltFmt(unsigned VType)
 
static unsigned getSEW(unsigned VType)
 
static VLMUL getVLMUL(unsigned VType)
 
static unsigned getStackAdjBase(unsigned RlistVal, bool IsRV64)
 
initializer< Ty > init(const Ty &Val)
 
This is an optimization pass for GlobalISel generic memory operations.
 
MachineInstr * getImm(const MachineOperand &MO, const MachineRegisterInfo *MRI)
 
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.