[llvm] [CodeGen] Add MachineRegisterClassInfo analysis pass (PR #120690)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 13 00:39:50 PST 2025
================
@@ -345,9 +347,11 @@
; GCN-O1-NEXT: Slot index numbering
; GCN-O1-NEXT: Live Interval Analysis
; GCN-O1-NEXT: Machine Natural Loop Construction
+; GCN-O1-NEXT: Machine Register Class Info Analysis
; GCN-O1-NEXT: Register Coalescer
; GCN-O1-NEXT: Rename Disconnected Subregister Components
; GCN-O1-NEXT: Rewrite Partial Register Uses
+; GCN-O1-NEXT: Machine Register Class Info Analysis
----------------
nikic wrote:
Every line here indicates an uncached re-computation of the the analysis. So for example on X86 it is computed 7 times, because it's not preserved by the passes running in between.
https://github.com/llvm/llvm-project/pull/120690
More information about the llvm-commits
mailing list