Investigate escape analysis for array allocations#43107
Closed
pchintalapudi wants to merge 21 commits intoJuliaLang:masterfrom
Closed
Investigate escape analysis for array allocations#43107pchintalapudi wants to merge 21 commits intoJuliaLang:masterfrom
pchintalapudi wants to merge 21 commits intoJuliaLang:masterfrom
Conversation
ae492d0 to
e87787d
Compare
added 20 commits
November 30, 2021 19:49
…tions on array dimensions
97115e7 to
19cb27e
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.