Skip to content

Commit b621269

Browse files
authored
[AArch64] Adjust ROBsize for Ampere1B (NFC) (#86331)
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.
1 parent af63c6e commit b621269

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AArch64/AArch64SchedAmpere1B.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
def Ampere1BModel : SchedMachineModel {
2020
let IssueWidth = 12; // Maximum micro-ops dispatch rate.
21-
let MicroOpBufferSize = 192; // micro-op re-order buffer size
21+
let MicroOpBufferSize = 208; // micro-op re-order buffer size
2222
let LoadLatency = 3; // Optimistic load latency
2323
let MispredictPenalty = 10; // Branch mispredict penalty
2424
let LoopMicroOpBufferSize = 32; // Instruction queue size

0 commit comments

Comments
 (0)