45#define DEBUG_TYPE "riscv-opt-w-instrs"
46#define RISCV_OPT_W_INSTRS_NAME "RISC-V Optimize W Instructions"
48STATISTIC(NumRemovedSExtW,
"Number of removed sign-extensions");
50 "Number of instructions transformed to W-ops");
53 cl::desc(
"Disable removal of sext.w"),
85char RISCVOptWInstrs::ID = 0;
90 return new RISCVOptWInstrs();
111 auto NumDemandedBits =
113 return NumDemandedBits && Bits >= *NumDemandedBits;
126 Worklist.
push_back(std::make_pair(&OrigMI, OrigBits));
128 while (!Worklist.
empty()) {
131 unsigned Bits =
P.second;
137 if (
MI->getNumExplicitDefs() != 1)
140 Register DestReg =
MI->getOperand(0).getReg();
144 for (
auto &UserOp :
MRI.use_nodbg_operands(DestReg)) {
146 unsigned OpIdx = UserOp.getOperandNo();
176 case RISCV::FCVT_H_W:
177 case RISCV::FCVT_H_W_INX:
178 case RISCV::FCVT_H_WU:
179 case RISCV::FCVT_H_WU_INX:
180 case RISCV::FCVT_S_W:
181 case RISCV::FCVT_S_W_INX:
182 case RISCV::FCVT_S_WU:
183 case RISCV::FCVT_S_WU_INX:
184 case RISCV::FCVT_D_W:
185 case RISCV::FCVT_D_W_INX:
186 case RISCV::FCVT_D_WU:
187 case RISCV::FCVT_D_WU_INX:
198 case RISCV::ZEXT_H_RV32:
199 case RISCV::ZEXT_H_RV64:
206 if (Bits >= (ST.getXLen() / 2))
216 Worklist.
push_back(std::make_pair(UserMI, Bits - ShAmt));
226 if (Bits >= (ST.getXLen() - ShAmt))
228 Worklist.
push_back(std::make_pair(UserMI, Bits + ShAmt));
235 Worklist.
push_back(std::make_pair(UserMI, Bits));
240 if (Bits >= (
unsigned)llvm::bit_width<uint64_t>(~Imm))
242 Worklist.
push_back(std::make_pair(UserMI, Bits));
252 if (Bits >=
Log2_32(ST.getXLen()))
256 Worklist.
push_back(std::make_pair(UserMI, Bits));
264 if (OpIdx == 2 && Bits >=
Log2_32(ST.getXLen()))
269 case RISCV::SH1ADD_UW:
270 case RISCV::SH2ADD_UW:
271 case RISCV::SH3ADD_UW:
273 if (OpIdx == 1 && Bits >= 32)
275 Worklist.
push_back(std::make_pair(UserMI, Bits));
285 if (OpIdx == 0 && Bits >= 8)
290 if (OpIdx == 0 && Bits >= 16)
295 if (OpIdx == 0 && Bits >= 32)
325 Worklist.
push_back(std::make_pair(UserMI, Bits));
328 case RISCV::PseudoCCMOVGPR:
332 if (OpIdx != 4 && OpIdx != 5)
334 Worklist.
push_back(std::make_pair(UserMI, Bits));
337 case RISCV::CZERO_EQZ:
338 case RISCV::CZERO_NEZ:
339 case RISCV::VT_MASKC:
340 case RISCV::VT_MASKCN:
343 Worklist.
push_back(std::make_pair(UserMI, Bits));
367 switch (
MI.getOpcode()) {
370 return MI.getOperand(2).getImm() >= 32;
372 return MI.getOperand(2).getImm() > 32;
375 return MI.getOperand(1).isReg() &&
MI.getOperand(1).getReg() == RISCV::X0;
378 return isUInt<11>(
MI.getOperand(2).getImm());
381 return !isUInt<11>(
MI.getOperand(2).getImm());
384 return MI.getOperand(2).getImm() < 31 &&
385 MI.getOperand(1).getReg() == RISCV::X0;
388 return MI.getOperand(1).getReg() == RISCV::X0;
390 case RISCV::PseudoAtomicLoadNand32:
392 case RISCV::PseudoVMV_X_S: {
394 int64_t Log2SEW =
MI.getOperand(2).getImm();
395 assert(Log2SEW >= 3 && Log2SEW <= 6 &&
"Unexpected Log2SEW");
409 auto AddRegToWorkList = [&](
Register SrcReg) {
416 if (!AddRegToWorkList(SrcReg))
419 while (!Worklist.
empty()) {
423 if (!Visited.
insert(Reg).second)
430 int OpNo =
MI->findRegisterDefOperandIdx(Reg,
nullptr);
431 assert(OpNo != -1 &&
"Couldn't find register");
438 switch (
MI->getOpcode()) {
449 if (
MI->getParent() == &MF->
front()) {
455 Register CopySrcReg =
MI->getOperand(1).getReg();
456 if (CopySrcReg == RISCV::X10) {
466 auto II =
MI->getIterator();
480 auto *IntTy = dyn_cast<IntegerType>(CalleeFn->getReturnType());
484 const AttributeSet &Attrs = CalleeFn->getAttributes().getRetAttrs();
485 unsigned BitWidth = IntTy->getBitWidth();
486 if ((
BitWidth <= 32 && Attrs.hasAttribute(Attribute::SExt)) ||
487 (
BitWidth < 32 && Attrs.hasAttribute(Attribute::ZExt)))
491 if (!AddRegToWorkList(CopySrcReg))
501 if (
MI->getOperand(2).getImm() >= 31)
511 if (!AddRegToWorkList(
MI->getOperand(1).getReg()))
515 case RISCV::PseudoCCADDW:
516 case RISCV::PseudoCCADDIW:
517 case RISCV::PseudoCCSUBW:
518 case RISCV::PseudoCCSLLW:
519 case RISCV::PseudoCCSRLW:
520 case RISCV::PseudoCCSRAW:
521 case RISCV::PseudoCCSLLIW:
522 case RISCV::PseudoCCSRLIW:
523 case RISCV::PseudoCCSRAIW:
526 if (!AddRegToWorkList(
MI->getOperand(4).getReg()))
540 case RISCV::PseudoCCMOVGPR:
541 case RISCV::PseudoCCAND:
542 case RISCV::PseudoCCOR:
543 case RISCV::PseudoCCXOR:
552 unsigned B = 1, E = 3,
D = 1;
553 switch (
MI->getOpcode()) {
555 E =
MI->getNumOperands();
558 case RISCV::PseudoCCMOVGPR:
562 case RISCV::PseudoCCAND:
563 case RISCV::PseudoCCOR:
564 case RISCV::PseudoCCXOR:
570 for (
unsigned I =
B;
I != E;
I +=
D) {
571 if (!
MI->getOperand(
I).isReg())
574 if (!AddRegToWorkList(
MI->getOperand(
I).getReg()))
581 case RISCV::CZERO_EQZ:
582 case RISCV::CZERO_NEZ:
583 case RISCV::VT_MASKC:
584 case RISCV::VT_MASKCN:
587 if (!AddRegToWorkList(
MI->getOperand(1).getReg()))
595 if (
MI->getOperand(2).getImm() >= 32)
644 bool MadeChange =
false;
663 if (!
MRI.constrainRegClass(SrcReg,
MRI.getRegClass(DstReg)))
669 Fixable->setDesc(
TII.get(
getWOp(Fixable->getOpcode())));
670 Fixable->clearFlag(MachineInstr::MIFlag::NoSWrap);
671 Fixable->clearFlag(MachineInstr::MIFlag::NoUWrap);
672 Fixable->clearFlag(MachineInstr::MIFlag::IsExact);
674 ++NumTransformedToWInstrs;
678 MRI.replaceRegWith(DstReg, SrcReg);
679 MRI.clearKillFlags(SrcReg);
680 MI.eraseFromParent();
693 bool MadeChange =
false;
697 switch (
MI.getOpcode()) {
700 case RISCV::ADDW: Opc = RISCV::ADD;
break;
701 case RISCV::ADDIW: Opc = RISCV::ADDI;
break;
702 case RISCV::MULW: Opc = RISCV::MUL;
break;
703 case RISCV::SLLIW: Opc = RISCV::SLLI;
break;
707 MI.setDesc(
TII.get(Opc));
720 bool MadeChange =
false;
725 switch (
MI.getOpcode()) {
742 if (
MI.getOperand(2).getImm() >= 32)
754 MI.setDesc(
TII.get(WOpc));
755 MI.clearFlag(MachineInstr::MIFlag::NoSWrap);
756 MI.clearFlag(MachineInstr::MIFlag::NoUWrap);
757 MI.clearFlag(MachineInstr::MIFlag::IsExact);
759 ++NumTransformedToWInstrs;
779 bool MadeChange =
false;
780 MadeChange |= removeSExtWInstrs(MF,
TII, ST,
MRI);
783 MadeChange |= stripWSuffixes(MF,
TII, ST,
MRI);
785 if (
ST.preferWInst())
786 MadeChange |= appendWSuffixes(MF,
TII, ST,
MRI);
unsigned const MachineRegisterInfo * MRI
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
const HexagonInstrInfo * TII
uint64_t IntrinsicInst * II
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
static bool isSignExtendedW(Register SrcReg, const RISCVSubtarget &ST, const MachineRegisterInfo &MRI, SmallPtrSetImpl< MachineInstr * > &FixableDef)
static bool hasAllWUsers(const MachineInstr &OrigMI, const RISCVSubtarget &ST, const MachineRegisterInfo &MRI)
static bool isSignExtendingOpW(const MachineInstr &MI, unsigned OpNo)
static cl::opt< bool > DisableStripWSuffix("riscv-disable-strip-w-suffix", cl::desc("Disable strip W suffix"), cl::init(false), cl::Hidden)
static bool hasAllNBitUsers(const MachineInstr &OrigMI, const RISCVSubtarget &ST, const MachineRegisterInfo &MRI, unsigned OrigBits)
#define RISCV_OPT_W_INSTRS_NAME
static bool vectorPseudoHasAllNBitUsers(const MachineOperand &UserOp, unsigned Bits)
static cl::opt< bool > DisableSExtWRemoval("riscv-disable-sextw-removal", cl::desc("Disable removal of sext.w"), cl::init(false), cl::Hidden)
static unsigned getWOp(unsigned Opcode)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallSet class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
static std::optional< unsigned > getOpcode(ArrayRef< VPValue * > Values)
Returns the opcode of Values or ~0 if they do not all agree.
Represent the analysis usage information of a pass.
void setPreservesCFG()
This function should be called by the pass, iff they do not:
FunctionPass class - This class is used to implement most global optimizations.
Describe properties that are true of each instruction in the target description file.
instr_iterator instr_begin()
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
virtual bool runOnMachineFunction(MachineFunction &MF)=0
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
const MachineBasicBlock & front() const
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineBasicBlock * getParent() const
bool isCall(QueryType Type=AnyInBundle) const
const MachineOperand & getOperand(unsigned i) const
MachineOperand class - Representation of each machine instruction operand.
unsigned getOperandNo() const
Returns the index of this operand in the instruction that it belongs to.
const GlobalValue * getGlobal() const
MachineInstr * getParent()
getParent - Return the instruction that this operand belongs to.
bool isGlobal() const
isGlobal - Tests if this is a MO_GlobalAddress operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
bool isLiveIn(Register Reg) const
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
RISCVMachineFunctionInfo - This class is derived from MachineFunctionInfo and contains private RISCV-...
bool isSExt32Register(Register Reg) const
Wrapper class representing virtual and physical registers.
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
static unsigned getVLOpNum(const MCInstrDesc &Desc)
static bool hasVLOp(uint64_t TSFlags)
static unsigned getSEWOpNum(const MCInstrDesc &Desc)
static bool hasSEWOp(uint64_t TSFlags)
std::optional< unsigned > getVectorLowDemandedScalarBits(uint16_t Opcode, unsigned Log2SEW)
unsigned getRVVMCOpcode(unsigned RVVPseudoOpcode)
bool isSEXT_W(const MachineInstr &MI)
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
int bit_width(T Value)
Returns the number of bits needed to represent Value if Value is nonzero.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
unsigned Log2_32(uint32_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
FunctionPass * createRISCVOptWInstrsPass()
constexpr unsigned BitWidth