[llvm] Re apply 130577 narrow math for and operand (PR #133896)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 1 21:41:16 PDT 2025


================
@@ -1561,6 +1561,87 @@ void AMDGPUCodeGenPrepareImpl::expandDivRem64(BinaryOperator &I) const {
   llvm_unreachable("not a division");
 }
 
+Type *findSmallestLegalBits(Instruction *I, int OrigBit, int MaxBitsNeeded,
+                            const TargetLowering *TLI, const DataLayout &DL) {
+  if (MaxBitsNeeded >= OrigBit)
+    return nullptr;
+
+  Type *NewType = I->getType()->getWithNewBitWidth(MaxBitsNeeded);
+  while (OrigBit > MaxBitsNeeded) {
+    if (TLI->isOperationLegalOrCustom(
+            TLI->InstructionOpcodeToISD(I->getOpcode()),
----------------
arsenm wrote:

InstructionOpcodeToISD repeated in loop 

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


More information about the llvm-commits mailing list