[llvm] [AArch64] Adjust ROBsize for Ampere1/Ampere1A (NFC) (PR #86330)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 22 12:43:31 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-aarch64
Author: Philipp Tomsich (ptomsich)
<details>
<summary>Changes</summary>
To align more closely with common usage, we now use the size of the reorder-buffer for MicroOpBufferSize instead of the entries of the global micro-op scheduler.
---
Full diff: https://github.com/llvm/llvm-project/pull/86330.diff
1 Files Affected:
- (modified) llvm/lib/Target/AArch64/AArch64SchedAmpere1.td (+1-1)
``````````diff
diff --git a/llvm/lib/Target/AArch64/AArch64SchedAmpere1.td b/llvm/lib/Target/AArch64/AArch64SchedAmpere1.td
index cf9f50c2784bbe..269f4ec5e5fb16 100644
--- a/llvm/lib/Target/AArch64/AArch64SchedAmpere1.td
+++ b/llvm/lib/Target/AArch64/AArch64SchedAmpere1.td
@@ -18,7 +18,7 @@
def Ampere1Model : SchedMachineModel {
let IssueWidth = 4; // 4-way decode and dispatch
- let MicroOpBufferSize = 174; // micro-op re-order buffer size
+ let MicroOpBufferSize = 192; // re-order buffer size
let LoadLatency = 4; // Optimistic load latency
let MispredictPenalty = 10; // Branch mispredict penalty
let LoopMicroOpBufferSize = 32; // Instruction queue size
``````````
</details>
https://github.com/llvm/llvm-project/pull/86330
More information about the llvm-commits
mailing list