[llvm] [PowerPC] Do not rely on MachineSink threshold to optimize CR spilling (PR #128745)
Min-Yih Hsu via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 11:40:01 PST 2025
================
@@ -16,21 +16,21 @@
define void @p9_setb_spill() {
; CHECK-P9-LABEL: p9_setb_spill:
-; CHECK-P9: # %bb.1: # %if.then
+; CHECK-P9: # %if.then
; CHECK-P9-DAG: crnot 4*cr[[CREG:.*]]+lt, eq
; CHECK-P9-DAG: setb [[REG1:.*]], cr[[CREG]]
; CHECK-P9-DAG: stw [[REG1]]
; CHECK-P9: blr
-; CHECK-P9: .LBB0_4: # %if.then1
+; CHECK-P9: # %if.then1
;
; CHECK-P8-LABEL: p9_setb_spill:
-; CHECK-P8: # %bb.1: # %if.then
+; CHECK-P8: # %if.then
; CHECK-P8-DAG: crnot 4*cr[[CREG2:.*]]+lt, eq
; CHECK-P8-DAG: mfocrf [[REG2:.*]],
; CHECK-P8-DAG: rlwinm [[REG2]], [[REG2]]
; CHECK-P8-DAG: stw [[REG2]]
; CHECK-P8: blr
-; CHECK-P8: .LBB0_4: # %if.then1
----------------
mshockwave wrote:
does this test really show that you break critical edges for cheap instructions? It's a little hard to tell but it seems like you eliminate a block, which is the opposite of breaking a critical edge.
https://github.com/llvm/llvm-project/pull/128745
More information about the llvm-commits
mailing list