-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
<string> Add asan annotations #2196
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
6158c7a
to
c86baf6
Compare
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as outdated.
This comment was marked as outdated.
d1d9da7
to
aa2e01a
Compare
* Missing capacity for null terminator * Leaking memor in case of unequal allocators * Not swapping the proxy during swap * swapping data in case of self swap
This comment was marked as resolved.
This comment was marked as resolved.
} | ||
|
||
_NODISCARD static const void* _Get_aligned_first(const void* _First, const size_type _Capacity) noexcept { | ||
const char* _CFirst = reinterpret_cast<const char*>(_First); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this could be a static_cast I think.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would also prefer to use reinterpret_cast here, we need to deal with different character types
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This particular cast does not though
I've pushed a conflict-free merge with |
Educational comment: |
Ah, excellent! IIRC, ASAN is removing (or has removed) the |
I'm mirroring this to the MSVC-internal repo - please notify me if any further changes are pushed. |
I've pushed a commit to fix an internal test run failure ("unresolved external symbol") by copying this pattern: STL/tests/std/tests/GH_002030_asan_annotate_vector/test.cpp Lines 25 to 30 in 313aa59
STL/tests/std/tests/GH_002030_asan_annotate_vector/test.cpp Lines 148 to 185 in 313aa59
|
I've pushed an additional commit to fix ARM64EC and CHPE build breaks. I applied the fix to |
Thanks for implementing this major feature and completing this part of the ASAN story! 😻 🚀 🎉 |
Co-authored-by: Stephan T. Lavavej <[email protected]>
Thanks for this amazing feature! 😄 Maybe you are aware of this already, but this feature unfortunately causes issues, as explained here (but also in 64-bit builds): https://developercommunity.visualstudio.com/t/VS2022---Address-sanitizer-on-x86-Debug-/10116361 I'm looking forward to using it as soon as strings work with ASAN again! 😃 |
This is a mirror of #2071