-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
[LICM] LICM breaks initializes
attribute
#133038
Comments
Sorry, the original reproducer is over-reduced. New reproducer:
|
nikic
added a commit
to nikic/llvm-project
that referenced
this issue
Apr 4, 2025
Specify the initializes attribute in terms of an "initialized" shadow state, such that: * Loads prior to initialization return undef. * Bytes that are not explicitly initialized are written with undef on function return. This is intended to preserve the core semantics of the attribute, but adjusts the wording in a way that is compatible with existing optimizations, such as insertion of spurious loads and removal of uninitialized writes. Fixes llvm#133038. Fixes llvm#133059.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reproducer: https://godbolt.org/z/evTP9P17j
After LICM, the first memory access to
%0
isload <4 x i16>, ptr %0, align 1
, which breaks theinitializes
attribute:Should we clarify the LangRef wording on
initializes
to allow loads before the initialization is complete, if they are not externally observable?This case is generated by rustlantis + llubi.
Original rust mir program: https://gist.github.com/dtcxzyw/fcf0905a562f8734428e0b216198e0c0
cc @haopliu @nikic
The text was updated successfully, but these errors were encountered: