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");
52 "Number of instructions transformed to non-W-ops");
55 cl::desc(
"Disable removal of sext.w"),
63class RISCVOptWInstrsImpl {
79 RISCVOptWInstrsLegacy() : MachineFunctionPass(ID) {}
83 void getAnalysisUsage(AnalysisUsage &AU)
const override {
93char RISCVOptWInstrsLegacy::ID = 0;
98 return new RISCVOptWInstrsLegacy();
118 auto NumDemandedBits =
120 return NumDemandedBits && Bits >= *NumDemandedBits;
135 while (!Worklist.
empty()) {
138 unsigned Bits =
P.second;
144 if (
MI->getNumExplicitDefs() != 1)
147 Register DestReg =
MI->getOperand(0).getReg();
153 unsigned OpIdx = UserOp.getOperandNo();
184 case RISCV::FCVT_H_W:
185 case RISCV::FCVT_H_W_INX:
186 case RISCV::FCVT_H_WU:
187 case RISCV::FCVT_H_WU_INX:
188 case RISCV::FCVT_S_W:
189 case RISCV::FCVT_S_W_INX:
190 case RISCV::FCVT_S_WU:
191 case RISCV::FCVT_S_WU_INX:
192 case RISCV::FCVT_D_W:
193 case RISCV::FCVT_D_W_INX:
194 case RISCV::FCVT_D_WU:
195 case RISCV::FCVT_D_WU_INX:
207 case RISCV::ZEXT_H_RV32:
208 case RISCV::ZEXT_H_RV64:
215 if (Bits >= (ST.getXLen() / 2))
235 if (Bits >= (ST.getXLen() - ShAmt))
242 if (Bits >= 32 - ShAmt)
269 if (Bits >=
Log2_32(ST.getXLen()))
281 if (OpIdx == 2 && Bits >=
Log2_32(ST.getXLen()))
286 case RISCV::SH1ADD_UW:
287 case RISCV::SH2ADD_UW:
288 case RISCV::SH3ADD_UW:
290 if (OpIdx == 1 && Bits >= 32)
302 if (OpIdx == 0 && Bits >= 8)
307 if (OpIdx == 0 && Bits >= 16)
312 if (OpIdx == 0 && Bits >= 32)
349 case RISCV::PseudoCCMOVGPR:
350 case RISCV::PseudoCCMOVGPRNoX0:
354 if (OpIdx != 1 && OpIdx != 2)
359 case RISCV::CZERO_EQZ:
360 case RISCV::CZERO_NEZ:
370 if (Msb >= Lsb && Bits > Msb)
395 switch (
MI.getOpcode()) {
398 return MI.getOperand(2).getImm() >= 32;
400 return MI.getOperand(2).getImm() > 32;
403 return MI.getOperand(1).isReg() &&
MI.getOperand(1).getReg() == RISCV::X0;
412 return MI.getOperand(2).getImm() < 31 &&
413 MI.getOperand(1).getReg() == RISCV::X0;
416 return MI.getOperand(1).getReg() == RISCV::X0;
418 case RISCV::PseudoAtomicLoadNand32:
420 case RISCV::PseudoVMV_X_S: {
422 int64_t Log2SEW =
MI.getOperand(2).getImm();
423 assert(Log2SEW >= 3 && Log2SEW <= 6 &&
"Unexpected Log2SEW");
426 case RISCV::TH_EXT: {
427 unsigned Msb =
MI.getOperand(2).getImm();
428 unsigned Lsb =
MI.getOperand(3).getImm();
429 return Msb >= Lsb && (Msb - Lsb + 1) <= 32;
431 case RISCV::TH_EXTU: {
432 unsigned Msb =
MI.getOperand(2).getImm();
433 unsigned Lsb =
MI.getOperand(3).getImm();
434 return Msb >= Lsb && (Msb - Lsb + 1) < 32;
436 case RISCV::SATI_RV64:
439 return MI.getOperand(2).getImm() <= 32;
440 case RISCV::USATI_RV64:
443 return MI.getOperand(2).getImm() < 32;
455 auto AddRegToWorkList = [&](
Register SrcReg) {
462 if (!AddRegToWorkList(SrcReg))
465 while (!Worklist.
empty()) {
476 int OpNo =
MI->findRegisterDefOperandIdx(
Reg,
nullptr);
477 assert(OpNo != -1 &&
"Couldn't find register");
484 switch (
MI->getOpcode()) {
495 if (
MI->getParent() == &MF->
front() &&
499 Register CopySrcReg =
MI->getOperand(1).getReg();
500 if (CopySrcReg == RISCV::X10) {
510 auto II =
MI->getIterator();
511 if (
II ==
MBB->instr_begin() ||
512 (--
II)->getOpcode() != RISCV::ADJCALLSTACKUP)
528 const AttributeSet &Attrs = CalleeFn->getAttributes().getRetAttrs();
529 unsigned BitWidth = IntTy->getBitWidth();
530 if ((
BitWidth <= 32 && Attrs.hasAttribute(Attribute::SExt)) ||
531 (
BitWidth < 32 && Attrs.hasAttribute(Attribute::ZExt)))
535 if (!AddRegToWorkList(CopySrcReg))
545 if (
MI->getOperand(2).getImm() >= 31)
557 if (!AddRegToWorkList(
MI->getOperand(1).getReg()))
561 case RISCV::PseudoCCADDW:
562 case RISCV::PseudoCCADDIW:
563 case RISCV::PseudoCCSUBW:
564 case RISCV::PseudoCCSLLW:
565 case RISCV::PseudoCCSRLW:
566 case RISCV::PseudoCCSRAW:
567 case RISCV::PseudoCCSLLIW:
568 case RISCV::PseudoCCSRLIW:
569 case RISCV::PseudoCCSRAIW:
572 if (!AddRegToWorkList(
MI->getOperand(1).getReg()))
586 case RISCV::PseudoCCMOVGPR:
587 case RISCV::PseudoCCMOVGPRNoX0:
588 case RISCV::PseudoCCAND:
589 case RISCV::PseudoCCOR:
590 case RISCV::PseudoCCXOR:
591 case RISCV::PseudoCCANDN:
592 case RISCV::PseudoCCORN:
593 case RISCV::PseudoCCXNOR:
606 unsigned B = 1,
E = 3,
D = 1;
607 switch (
MI->getOpcode()) {
609 E =
MI->getNumOperands();
612 case RISCV::PseudoCCMOVGPR:
613 case RISCV::PseudoCCMOVGPRNoX0:
617 case RISCV::PseudoCCAND:
618 case RISCV::PseudoCCOR:
619 case RISCV::PseudoCCXOR:
620 case RISCV::PseudoCCANDN:
621 case RISCV::PseudoCCORN:
622 case RISCV::PseudoCCXNOR:
634 for (
unsigned I =
B;
I !=
E;
I +=
D) {
635 if (!
MI->getOperand(
I).isReg())
638 if (!AddRegToWorkList(
MI->getOperand(
I).getReg()))
645 case RISCV::CZERO_EQZ:
646 case RISCV::CZERO_NEZ:
649 if (!AddRegToWorkList(
MI->getOperand(1).getReg()))
654 if (
MI->getOperand(1).isReg() &&
MI->getOperand(1).getReg().isVirtual()) {
656 if (SrcMI->getOpcode() == RISCV::LUI &&
657 SrcMI->getOperand(1).isImm()) {
676 if (
MI->hasOneMemOperand() && !(*
MI->memoperands_begin())->isVolatile() &&
688 if (
MI->getOperand(2).getImm() >= 32)
705 if (!
MI->getOperand(2).isReg() ||
MI->getOperand(2).getReg() != RISCV::X0)
751 bool MadeChange =
false;
752 for (MachineBasicBlock &
MBB : MF) {
755 if (!RISCVInstrInfo::isSEXT_W(
MI))
760 SmallPtrSet<MachineInstr *, 4> FixableDefs;
774 for (MachineInstr *Fixable : FixableDefs) {
777 if (Fixable->getOpcode() == RISCV::ADD_UW) {
778 assert(Fixable->getOperand(2).isReg() &&
779 Fixable->getOperand(2).getReg() == RISCV::X0 &&
780 "Unexpected ADD_UW operand.");
781 Fixable->setDesc(
TII.get(RISCV::ADDIW));
782 Fixable->getOperand(2).ChangeToImmediate(0);
784 Fixable->setDesc(
TII.get(
getWOp(Fixable->getOpcode())));
786 Fixable->clearFlag(MachineInstr::MIFlag::NoSWrap);
787 Fixable->clearFlag(MachineInstr::MIFlag::NoUWrap);
788 Fixable->clearFlag(MachineInstr::MIFlag::IsExact);
790 ++NumTransformedToWInstrs;
796 MI.eraseFromParent();
808 const RISCVInstrInfo &
TII,
809 const RISCVSubtarget &ST,
810 MachineRegisterInfo &MRI) {
812 bool ShouldPreferW =
ST.preferWInst();
813 bool MadeChange =
false;
815 for (MachineBasicBlock &
MBB : MF) {
816 for (MachineInstr &
MI :
MBB) {
817 std::optional<unsigned> WOpc;
818 std::optional<unsigned> NonWOpc;
819 unsigned OrigOpc =
MI.getOpcode();
824 NonWOpc = RISCV::ADD;
827 NonWOpc = RISCV::ADDI;
830 NonWOpc = RISCV::MUL;
833 NonWOpc = RISCV::SLLI;
836 NonWOpc = RISCV::SUB;
852 if (
MI.getOperand(2).getImm() >= 32)
857 if (!
MI.hasOneMemOperand() || (*
MI.memoperands_begin())->isVolatile())
865 if (!
MI.hasOneMemOperand() || (*
MI.memoperands_begin())->isVolatile())
874 if (ShouldStripW && NonWOpc.has_value() &&
hasAllWUsers(
MI, ST, MRI)) {
876 MI.setDesc(
TII.get(NonWOpc.value()));
878 ++NumTransformedToNonWInstrs;
884 if ((ShouldPreferW || OrigOpc == RISCV::LWU) && WOpc.has_value() &&
887 MI.setDesc(
TII.get(WOpc.value()));
888 MI.clearFlag(MachineInstr::MIFlag::NoSWrap);
889 MI.clearFlag(MachineInstr::MIFlag::NoUWrap);
890 MI.clearFlag(MachineInstr::MIFlag::IsExact);
892 ++NumTransformedToWInstrs;
904 const RISCVInstrInfo &
TII = *
ST.getInstrInfo();
909 bool MadeChange =
false;
910 MadeChange |= removeSExtWInstrs(MF,
TII, ST, MRI);
911 MadeChange |= canonicalizeWSuffixes(MF,
TII, ST, MRI);
918 return RISCVOptWInstrsImpl().run(MF);
924 bool Changed = RISCVOptWInstrsImpl().run(MF);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
const HexagonInstrInfo * TII
static cl::opt< bool > DisableSExtWRemoval("loongarch-disable-sextw-removal", cl::desc("Disable removal of sign-extend insn"), cl::init(false), cl::Hidden)
static bool hasAllWUsers(const MachineInstr &OrigMI, const LoongArchSubtarget &ST, const MachineRegisterInfo &MRI)
static bool isSignExtendedW(Register SrcReg, const LoongArchSubtarget &ST, const MachineRegisterInfo &MRI, SmallPtrSetImpl< MachineInstr * > &FixableDef)
static unsigned getWOp(unsigned Opcode)
Promote Memory to Register
uint64_t IntrinsicInst * II
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
static bool vectorPseudoHasAllNBitUsers(const MachineInstr &MI, unsigned OpIdx, unsigned Bits)
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 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)
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)
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
This class holds the attributes for a particular argument, parameter, function, or return value.
Represents analyses that only rely on functions' control flow.
FunctionPass class - This class is used to implement most global optimizations.
Describe properties that are true of each instruction in the target description file.
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.
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
const GlobalValue * getGlobal() const
bool isGlobal() const
isGlobal - Tests if this is a MO_GlobalAddress operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
LLVM_ABI void clearKillFlags(Register Reg) const
clearKillFlags - Iterate over all the uses of the given register and clear the kill flag from the Mac...
LLVM_ABI LLVM_READONLY MachineInstr * getVRegDef(Register Reg) const
getVRegDef - Return the machine instr that defines the specified virtual register or null if none is ...
iterator_range< use_nodbg_iterator > use_nodbg_operands(Register Reg) const
LLVM_ABI const TargetRegisterClass * constrainRegClass(Register Reg, const TargetRegisterClass *RC, unsigned MinNumRegs=0)
constrainRegClass - Constrain the register class of the specified virtual register to be a common sub...
LLVM_ABI void replaceRegWith(Register FromReg, Register ToReg)
replaceRegWith - Replace all instances of FromReg with ToReg in the machine function.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & preserveSet()
Mark an analysis set as preserved.
RISCVMachineFunctionInfo - This class is derived from MachineFunctionInfo and contains private RISCV-...
bool isSExt32Register(Register Reg) const
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
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.
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.
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
static unsigned getVLOpNum(const MCInstrDesc &Desc)
static bool hasVLOp(uint64_t TSFlags)
static unsigned getSEWOpNum(const MCInstrDesc &Desc)
static bool hasSEWOp(uint64_t TSFlags)
unsigned getRVVMCOpcode(unsigned RVVPseudoOpcode)
std::optional< unsigned > getVectorLowDemandedScalarBits(unsigned Opcode, unsigned Log2SEW)
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
FunctionPass * createRISCVOptWInstrsLegacyPass()
auto dyn_cast_if_present(const Y &Val)
dyn_cast_if_present<X> - Functionally identical to dyn_cast, except that a null (or none in the case ...
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...
constexpr T alignDown(U Value, V Align, W Skew=0)
Returns the largest unsigned integer less than or equal to Value and is Skew mod Align.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
LLVM_ABI PreservedAnalyses getMachineFunctionPassPreservedAnalyses()
Returns the minimum set of Analyses that all machine function passes must preserve.
unsigned Log2_32(uint32_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
constexpr bool isUInt(uint64_t x)
Checks if an unsigned integer fits into the given bit width.
constexpr unsigned BitWidth
constexpr int64_t SignExtend64(uint64_t x)
Sign-extend the number in the bottom B bits of X to a 64-bit integer.