27#define DEBUG_TYPE "asm-printer"
30#define PRINT_ALIAS_INSTR
31#include "RISCVGenAsmWriter.inc"
35 cl::desc(
"Disable the emission of assembler pseudo instructions"),
39 cl::desc(
"Emit x8 as fp instead of s0"),
54 if (Opt ==
"no-aliases") {
58 if (Opt ==
"numeric") {
62 if (Opt ==
"emit-x8-as-fp") {
80 NewMI = &UncompressedMI;
105 assert(MO.
isExpr() &&
"Unknown operand kind in printOperand");
134 unsigned Imm =
MI->getOperand(OpNo).getImm();
135 auto Range = RISCVSysReg::lookupSysRegByEncoding(Imm);
136 for (
auto &Reg :
Range) {
137 if (Reg.IsAltName || Reg.IsDeprecatedName)
150 unsigned FenceArg =
MI->getOperand(OpNo).getImm();
151 assert (((FenceArg >> 4) == 0) &&
"Invalid immediate in printFenceArg");
190 unsigned Imm =
MI->getOperand(OpNo).getImm();
193 }
else if (Imm == 30) {
195 }
else if (Imm == 31) {
203 if (FPVal == (
int)(FPVal))
215 assert(MO.
isReg() &&
"printZeroOffsetMemOp can only print register operands");
223 unsigned Imm =
MI->getOperand(OpNo).getImm();
229 !(STI.
hasFeature(RISCV::FeatureStdExtZvqwdota8i) ||
230 STI.
hasFeature(RISCV::FeatureStdExtZvqwdota16i) ||
231 STI.
hasFeature(RISCV::FeatureStdExtZvfwdota16bf) ||
232 STI.
hasFeature(RISCV::FeatureStdExtZvfqwdota8f) ||
234 STI.
hasFeature(RISCV::FeatureStdExtZvfofp8min) ||
235 STI.
hasFeature(RISCV::FeatureVendorXSfvfbfexp16e) ||
236 STI.
hasFeature(RISCV::FeatureStdExtZvqwbdota8i) ||
237 STI.
hasFeature(RISCV::FeatureStdExtZvqwbdota16i) ||
238 STI.
hasFeature(RISCV::FeatureStdExtZvfqwbdota8f) ||
239 STI.
hasFeature(RISCV::FeatureStdExtZvfwbdota16bf))) ||
251 unsigned Imm =
MI->getOperand(OpNo).getImm();
267 unsigned Imm =
MI->getOperand(OpNo).getImm();
309 const MCOperand &OffsetMO =
MI->getOperand(OpNo + 1);
311 assert(OffsetMO.
isReg() &&
"printRegReg can only print register operands");
316 assert(BaseMO.
isReg() &&
"printRegReg can only print register operands");
324 int64_t Imm =
MI->getOperand(OpNo).getImm();
325 bool IsRV64 = STI.
hasFeature(RISCV::Feature64Bit);
326 int64_t StackAdj = 0;
327 auto RlistVal =
MI->getOperand(0).getImm();
329 StackAdj = Imm +
Base;
331 "Incorrect stack adjust");
333 StackAdj = -StackAdj;
345 assert(MO.
isReg() &&
"printVMaskReg can only print register operands");
346 if (MO.
getReg() == RISCV::NoRegister)
358 assert(MO.
isReg() &&
"printVScaleReg can only print register operands");
369 assert(MO.
isImm() &&
"printTileLambda can only print immediate operands");
370 unsigned Lambda = MO.
getImm();
374 assert(Lambda <= 7 &&
"Unexpected tile lambda encoding");
375 O <<
", L" << (1U << (Lambda - 1));
381 const unsigned Opcode =
MI->getOpcode();
384 (Opcode == RISCV::ANDI || Opcode == RISCV::ORI || Opcode == RISCV::XORI ||
385 Opcode == RISCV::C_ANDI || Opcode == RISCV::AUIPC ||
386 Opcode == RISCV::LUI)) {
403 : 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
bool SymbolizeOperands
If true, symbolize branch target and memory reference operands.
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 Triple & getTargetTriple() const
const FeatureBitset & getFeatureBits() const
void printRegList(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
void printTileLambda(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 printImm(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 printVScaleReg(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)
Represent a constant reference to a string, i.e.
bool isOSBinFormatMachO() const
Tests whether the environment is MachO.
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)
static bool isValidVType(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 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.
DWARFExpression::Operation Op