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

MemcpyOpt doesn't strip TBAA correctly #133984

Open
gbaraldi opened this issue Apr 1, 2025 · 2 comments
Open

MemcpyOpt doesn't strip TBAA correctly #133984

gbaraldi opened this issue Apr 1, 2025 · 2 comments

Comments

@gbaraldi
Copy link
Contributor

gbaraldi commented Apr 1, 2025

While debugging JuliaLang/julia#57959. It got minimized to what looks to be a bug in MemCpyOpt, where it strips the noalias attribute of a memcpy

// As this transformation can cause memory accesses that didn't previously
// alias to begin to alias one another, we remove !noalias metadata from any
// uses of either alloca. This is conservative, but more precision doesn't
// seem worthwhile right now.
for (Instruction *I : NoAliasInstrs)
I->setMetadata(LLVMContext::MD_noalias, nullptr);
but not the other aliasing metadatas (tbaa,tbaa.struct). Probably using combineMetadata as used elsewhere in the pass
@khei4 was the one that originally added this optimization

@gbaraldi
Copy link
Contributor Author

gbaraldi commented Apr 1, 2025

https://godbolt.org/z/qv1Mqo7eP For a small reproducer

@nikic
Copy link
Contributor

nikic commented Apr 3, 2025

There is a related PR here: #129537

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants