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

🍒 [llvm] ASan Memory Effects #10268

Merged
merged 2 commits into from
Mar 23, 2025
Merged

Conversation

guy-david
Copy link

Fixes an issue when passes such as DeadStoreElimination follow AddressSanitizer instrumentation and may create false-positives.

If left as-is, subsequent optimizations might utilize the possible
memory effects and optimize-out the instrumentation. Think of the
following case:
```
  store i8 4, ptr %shadow
  call void @llvm.lifetime.start.p0(i64 4, ptr %local)
  %28 = call void @foo(ptr %local)
  store i8 -8, ptr %shadow
  call void @llvm.lifetime.end.p0(i64 4, ptr %local)
```

where `foo` is an external function with `memory(argmem: write)`. A pass
such as DeadStoreElimination is allowed to remove the initial store,
which might fail sanitizer checks within `foo`.

My first attempt was to add a `memory(readwrite)` at the call-site
level, but unfortunately the current implementation of
`getMemoryEffects` doesn't exactly give it "precedence" as specified,
but rather restricts the access specified by the call-site and not the
other way around as well.
@guy-david guy-david requested a review from a team as a code owner March 16, 2025 10:35
@guy-david
Copy link
Author

@swift-ci test

@guy-david
Copy link
Author

@swift-ci test macOS

@guy-david guy-david merged commit 206e1b2 into stable/20240723 Mar 23, 2025
3 checks passed
@guy-david guy-david deleted the llvm/asan-memory-effects branch March 23, 2025 09:12
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