-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigate escape analysis for array allocations #43107
Closed
pchintalapudi
wants to merge
21
commits into
JuliaLang:master
from
pchintalapudi:pc/array-simple-optimize
Closed
Investigate escape analysis for array allocations #43107
pchintalapudi
wants to merge
21
commits into
JuliaLang:master
from
pchintalapudi:pc/array-simple-optimize
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pchintalapudi
force-pushed
the
pc/array-simple-optimize
branch
from
November 24, 2021 21:17
ae492d0
to
e87787d
Compare
…tions on array dimensions
pchintalapudi
force-pushed
the
pc/array-simple-optimize
branch
from
December 1, 2021 01:17
97115e7
to
19cb27e
Compare
JeffBezanson
added
compiler:codegen
Generation of LLVM IR and native code
performance
Must go faster
labels
Dec 8, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Many objects in Julia are allocated on the stack or removed altogether through the use of escape analysis, allowing for further optimizations and dead code elimination. This draft PR proposes extending escape analysis to array allocations for 1D, 2D, 3D, and ND cases. So far, the following optimizations have been implemented for arrays:
Similar logic applies for write barriers in late-gc-lowering-- these write barriers branch off values that are liable to change during GC and cannot be optimized. However, they are inserted late enough in the pass pipeline that they don't affect upstream optimizations.This depends on #43057 for breaking out escape analysis from alloc-opt.
Performance analysis and compile-time regressions are currently being computed.