[llvm] [AMDGPU] Extend SRA i64 simplification for shift amts in range [33:62] (PR #138913)
via llvm-commits
llvm-commits at lists.llvm.org
Wed May 28 18:46:22 PDT 2025
================
@@ -4153,22 +4153,23 @@ SDValue AMDGPUTargetLowering::performSraCombine(SDNode *N,
SDLoc SL(N);
unsigned RHSVal = RHS->getZExtValue();
- // (sra i64:x, 32) -> build_pair x, (sra hi_32(x), 31)
- if (RHSVal == 32) {
+ // For C >= 32
+ // (sra i64:x, C) -> build_pair (sra hi_32(x), C - 32), (sra hi_32(x), 31)
----------------
LU-JOHN wrote:
I tried to create a scaled down verification for shifting by 33, but alive2 has a timeout if ashr is used:
https://alive2.llvm.org/ce/z/S-gaBW
Replacing ashr with the commented 4-instruction sequence in the link avoids the timeout.
https://github.com/llvm/llvm-project/pull/138913
More information about the llvm-commits
mailing list