[llvm] [RISCV] Prefer preindexed addressing mode when XTheadMemIdx exists (PR #147921)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 10 02:06:52 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-risc-v
Author: Pengcheng Wang (wangpc-pp)
<details>
<summary>Changes</summary>
The experimental result shows that we can generate more XTheadMemIdx
instructions when using preindexed addressing mode.
| -lsr-preferred-addressing-mode | Num |
|--------------------------------|-------|
| none | 47308 |
| preindexed | 54125 |
| postindexed | 50255 |
---
Full diff: https://github.com/llvm/llvm-project/pull/147921.diff
1 Files Affected:
- (modified) llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp (+3)
``````````diff
diff --git a/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp b/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
index 67a51c12b508e..c07472a55c731 100644
--- a/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
+++ b/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
@@ -2709,6 +2709,9 @@ RISCVTTIImpl::getPreferredAddressingMode(const Loop *L,
if (ST->hasVendorXCVmem() && !ST->is64Bit())
return TTI::AMK_PostIndexed;
+ if (ST->hasVendorXTHeadMemIdx())
+ return TTI::AMK_PreIndexed;
+
return BasicTTIImplBase::getPreferredAddressingMode(L, SE);
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/147921
More information about the llvm-commits
mailing list