[llvm] [RISCV] Porting hasAllNBitUsers to RISCV GISel for instruction select (PR #125795)

Luke Quinn via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 5 06:31:18 PST 2025


================
@@ -57,6 +57,20 @@ class RISCVInstructionSelector : public InstructionSelector {
   const TargetRegisterClass *
   getRegClassForTypeOnBank(LLT Ty, const RegisterBank &RB) const;
 
+  static constexpr unsigned MaxRecursionDepth = 6;
+
+  bool hasAllNBitUsers(const MachineInstr &MI, unsigned Bits,
+                       const unsigned Depth = 0) const;
+  bool hasAllBUsers(const MachineInstr &MI) const {
----------------
lquinn2015 wrote:

Should I remove the B type and safe it for later

https://github.com/llvm/llvm-project/pull/125795


More information about the llvm-commits mailing list