https://github.com/JuliaLang/julia
Revision 6c78ef08043863973d233de031daf05cbbcdbac7 authored by Shuhei Kadowaki on 23 December 2021, 02:09:24 UTC, committed by GitHub on 23 December 2021, 02:09:24 UTC
Essentially this commit reduces the runtime count # of domtree construction.
The key observation is that SROA of mutable allocations isn't often successful.
More specifically, during the sysimg build, `sroa_mutables!` is called
`5776` times, and actual SROA happened only for `126` cases out of those cases.
(, which means we should be able to avoid domtree construction in `5650`/`5776` cases).
1 parent 5200211
History
Tip revision: 6c78ef08043863973d233de031daf05cbbcdbac7 authored by Shuhei Kadowaki on 23 December 2021, 02:09:24 UTC
optimizer: improve SROA performance (#43488)
Tip revision: 6c78ef0
File Mode Size
.buildkite
.devcontainer
.github
base
cli
contrib
deps
doc
etc
src
stdlib
test
.clang-format -rw-r--r-- 3.3 KB
.codecov.yml -rw-r--r-- 52 bytes
.gitattributes -rw-r--r-- 65 bytes
.gitignore -rw-r--r-- 433 bytes
.mailmap -rw-r--r-- 11.1 KB
CITATION.bib -rw-r--r-- 513 bytes
CITATION.cff -rw-r--r-- 942 bytes
CONTRIBUTING.md -rw-r--r-- 22.5 KB
HISTORY.md -rw-r--r-- 333.2 KB
LICENSE.md -rw-r--r-- 1.3 KB
Make.inc -rw-r--r-- 49.3 KB
Makefile -rw-r--r-- 25.6 KB
NEWS.md -rw-r--r-- 8.9 KB
README.md -rw-r--r-- 7.4 KB
THIRDPARTY.md -rw-r--r-- 3.7 KB
VERSION -rw-r--r-- 10 bytes
julia.spdx.json -rw-r--r-- 35.0 KB
sysimage.mk -rw-r--r-- 4.0 KB

README.md

back to top