forked from OSchip/llvm-project
Reinstate MSan suppression of PR24578.
Summary:
Revert "Rollback of commit "Repress sanitization on User dtor.""
There is no point in keeping an active MSan error in the codebase.
PR24578 tracks the actual UB in LLVM code; this change enables testing
of LLVM with MSAN + -fsanitize-memory-use-after-dtor.
This reverts commit 21c1bc46ae
.
Reviewers: vitalybuka
Subscribers: hiraditya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D70611
This commit is contained in:
parent
97e0fd27eb
commit
8ca7871add
|
@ -406,10 +406,12 @@
|
|||
#if __has_feature(memory_sanitizer)
|
||||
# define LLVM_MEMORY_SANITIZER_BUILD 1
|
||||
# include <sanitizer/msan_interface.h>
|
||||
# define LLVM_NO_SANITIZE_MEMORY_ATTRIBUTE __attribute__((no_sanitize_memory))
|
||||
#else
|
||||
# define LLVM_MEMORY_SANITIZER_BUILD 0
|
||||
# define __msan_allocated_memory(p, size)
|
||||
# define __msan_unpoison(p, size)
|
||||
# define LLVM_NO_SANITIZE_MEMORY_ATTRIBUTE
|
||||
#endif
|
||||
|
||||
/// \macro LLVM_ADDRESS_SANITIZER_BUILD
|
||||
|
|
|
@ -489,7 +489,9 @@ void *MDNode::operator new(size_t Size, unsigned NumOps) {
|
|||
return Ptr;
|
||||
}
|
||||
|
||||
void MDNode::operator delete(void *Mem) {
|
||||
// Repress memory sanitization, due to use-after-destroy by operator
|
||||
// delete. Bug report 24578 identifies this issue.
|
||||
LLVM_NO_SANITIZE_MEMORY_ATTRIBUTE void MDNode::operator delete(void *Mem) {
|
||||
MDNode *N = static_cast<MDNode *>(Mem);
|
||||
size_t OpSize = N->NumOperands * sizeof(MDOperand);
|
||||
OpSize = alignTo(OpSize, alignof(uint64_t));
|
||||
|
|
|
@ -162,7 +162,9 @@ void *User::operator new(size_t Size) {
|
|||
// User operator delete Implementation
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
void User::operator delete(void *Usr) {
|
||||
// Repress memory sanitization, due to use-after-destroy by operator
|
||||
// delete. Bug report 24578 identifies this issue.
|
||||
LLVM_NO_SANITIZE_MEMORY_ATTRIBUTE void User::operator delete(void *Usr) {
|
||||
// Hung off uses use a single Use* before the User, while other subclasses
|
||||
// use a Use[] allocated prior to the user.
|
||||
User *Obj = static_cast<User *>(Usr);
|
||||
|
|
Loading…
Reference in New Issue