-
Notifications
You must be signed in to change notification settings - Fork 11
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
Temporarily disable LLVM optimizations. #203
Merged
Merged
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
These are causing some kind of problem with program termination on arm64 platforms (including arm64-apple-macosx and arm64-unknown-linux-musl). We will re-enable these later once we've solved the problem.
jemc
added a commit
that referenced
this pull request
May 7, 2022
In LLVM 13.0.0 we had observed a bug in which, when using the new LLVM PassBuilder, some functions were being generated without return instructions, causing the instruction pointer to just blunder off the end of one function definition into the next one in the executable binary's memory layout, likely violating stack/argument assumptions of that function, ultimately leading to some form of memory corruption. This is why we had disabled use of those optimizations temporarily in an earlier PR (#203), though it was only diagnosed in detail this morning. We update to the latest available LLVM release (14.0.3) to avoid this issue and also to keep up with the times. Note that in this update to 14.0.3 an issue was discovered in Pony with the use of `NoAlias` attributes on allocation functions for those functions that allocate an object with a finalizer. These attributes were technically incorrect, and a new optimization present in 14.0.3 now can optimize away code that shouldn't be removed if it trusts the erroneous use of that attribute. See ponylang/ponyc#4055 This bug had not been observed directly in Savi because we do not yet support allocations with finalizers. But the attributes are updated here nonetheless, as it's easy to fix this correctness issue now while it's at top of mind.
jemc
added a commit
that referenced
this pull request
May 7, 2022
This reverts PR #203, in which we temporarily disabled these optimizations due to an LLVM bug. We no longer observe this bug after upgrading LLVM from 13.0.0 to 14.0.3 (see previous commit). We also move the emission of LLVM IR to ensure it happens after optimizations (in the new place where they are, after linking to the runtime bitcode and thus allowing link time optimization with it).
jemc
added a commit
that referenced
this pull request
May 7, 2022
In LLVM 13.0.0 we had observed a bug in which, when using the new LLVM PassBuilder, some functions were being generated without return instructions, causing the instruction pointer to just blunder off the end of one function definition into the next one in the executable binary's memory layout, likely violating stack/argument assumptions of that function, ultimately leading to some form of memory corruption. This is why we had disabled use of those optimizations temporarily in an earlier PR (#203), though it was only diagnosed in detail this morning. We update to the latest available LLVM release (14.0.3) to avoid this issue and also to keep up with the times. Note that in this update to 14.0.3 an issue was discovered in Pony with the use of `NoAlias` attributes on allocation functions for those functions that allocate an object with a finalizer. These attributes were technically incorrect, and a new optimization present in 14.0.3 now can optimize away code that shouldn't be removed if it trusts the erroneous use of that attribute. See ponylang/ponyc#4055 This bug had not been observed directly in Savi because we do not yet support allocations with finalizers. But the attributes are updated here nonetheless, as it's easy to fix this correctness issue now while it's at top of mind.
jemc
added a commit
that referenced
this pull request
May 7, 2022
This reverts PR #203, in which we temporarily disabled these optimizations due to an LLVM bug. We no longer observe this bug after upgrading LLVM from 13.0.0 to 14.0.3 (see previous commit). We also move the emission of LLVM IR to ensure it happens after optimizations (in the new place where they are, after linking to the runtime bitcode and thus allowing link time optimization with it).
jemc
added a commit
that referenced
this pull request
May 7, 2022
In LLVM 13.0.0 we had observed a bug in which, when using the new LLVM PassBuilder, some functions were being generated without return instructions, causing the instruction pointer to just blunder off the end of one function definition into the next one in the executable binary's memory layout, likely violating stack/argument assumptions of that function, ultimately leading to some form of memory corruption. This is why we had disabled use of those optimizations temporarily in an earlier PR (#203), though it was only diagnosed in detail this morning. We update to the latest available LLVM release (14.0.3) to avoid this issue and also to keep up with the times. Note that in this update to 14.0.3 an issue was discovered in Pony with the use of `NoAlias` attributes on allocation functions for those functions that allocate an object with a finalizer. These attributes were technically incorrect, and a new optimization present in 14.0.3 now can optimize away code that shouldn't be removed if it trusts the erroneous use of that attribute. See ponylang/ponyc#4055 This bug had not been observed directly in Savi because we do not yet support allocations with finalizers. But the attributes are updated here nonetheless, as it's easy to fix this correctness issue now while it's at top of mind.
jemc
added a commit
that referenced
this pull request
May 7, 2022
This reverts PR #203, in which we temporarily disabled these optimizations due to an LLVM bug. We no longer observe this bug after upgrading LLVM from 13.0.0 to 14.0.3 (see previous commit). We also move the emission of LLVM IR to ensure it happens after optimizations (in the new place where they are, after linking to the runtime bitcode and thus allowing link time optimization with it).
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.
These are causing some kind of problem with program termination
on arm64 platforms (including arm64-apple-macosx and
arm64-unknown-linux-musl).
We will re-enable these later once we've solved the problem.