Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Looking at the compiler-time tracker link, there are some codegen changes. Do you know where those are coming from and if we could avoid regressions?
Comment Actions
I think some codegen changes are expected, because DSE walks over uses, and this will mean that more "irrelevant" uses are visited that count towards the scan limit. The MemorySSAScanLimit is fairly generous at 150 accesses, so it's probably okay in practice, though we could also raise the limit if this causes performance regressions.