Skip to content
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 1 commit into from
Jan 7, 2022
Merged

Conversation

jemc
Copy link
Contributor

@jemc jemc commented Jan 7, 2022

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.

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 jemc self-assigned this Jan 7, 2022
@jemc jemc merged commit 1a5d2b0 into main Jan 7, 2022
@jemc jemc deleted the temp-disable-optimization branch January 7, 2022 17:48
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
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant