2012-12-11 20:27:27 +08:00
|
|
|
//===-- msan_new_delete.cc ------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is a part of MemorySanitizer.
|
|
|
|
//
|
|
|
|
// Interceptors for operators new and delete.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "msan.h"
|
2014-11-18 18:33:15 +08:00
|
|
|
#include "interception/interception.h"
|
2012-12-11 20:27:27 +08:00
|
|
|
|
2013-04-15 20:41:52 +08:00
|
|
|
#if MSAN_REPLACE_OPERATORS_NEW_AND_DELETE
|
|
|
|
|
2012-12-11 20:27:27 +08:00
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
using namespace __msan; // NOLINT
|
|
|
|
|
|
|
|
// Fake std::nothrow_t to avoid including <new>.
|
|
|
|
namespace std {
|
|
|
|
struct nothrow_t {};
|
|
|
|
} // namespace std
|
|
|
|
|
|
|
|
|
|
|
|
#define OPERATOR_NEW_BODY \
|
|
|
|
GET_MALLOC_STACK_TRACE; \
|
|
|
|
return MsanReallocate(&stack, 0, size, sizeof(u64), false)
|
|
|
|
|
2013-12-20 21:18:07 +08:00
|
|
|
INTERCEPTOR_ATTRIBUTE
|
2012-12-11 20:27:27 +08:00
|
|
|
void *operator new(size_t size) { OPERATOR_NEW_BODY; }
|
2013-12-20 21:18:07 +08:00
|
|
|
INTERCEPTOR_ATTRIBUTE
|
2012-12-11 20:27:27 +08:00
|
|
|
void *operator new[](size_t size) { OPERATOR_NEW_BODY; }
|
2013-12-20 21:18:07 +08:00
|
|
|
INTERCEPTOR_ATTRIBUTE
|
2012-12-11 20:27:27 +08:00
|
|
|
void *operator new(size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
|
2013-12-20 21:18:07 +08:00
|
|
|
INTERCEPTOR_ATTRIBUTE
|
2012-12-11 20:27:27 +08:00
|
|
|
void *operator new[](size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
|
|
|
|
|
|
|
|
#define OPERATOR_DELETE_BODY \
|
2013-09-16 19:03:31 +08:00
|
|
|
GET_MALLOC_STACK_TRACE; \
|
|
|
|
if (ptr) MsanDeallocate(&stack, ptr)
|
2012-12-11 20:27:27 +08:00
|
|
|
|
2013-12-20 21:18:07 +08:00
|
|
|
INTERCEPTOR_ATTRIBUTE
|
2015-08-10 23:24:22 +08:00
|
|
|
void operator delete(void *ptr) NOEXCEPT { OPERATOR_DELETE_BODY; }
|
2013-12-20 21:18:07 +08:00
|
|
|
INTERCEPTOR_ATTRIBUTE
|
2015-08-10 23:24:22 +08:00
|
|
|
void operator delete[](void *ptr) NOEXCEPT { OPERATOR_DELETE_BODY; }
|
2013-12-20 21:18:07 +08:00
|
|
|
INTERCEPTOR_ATTRIBUTE
|
2012-12-11 20:27:27 +08:00
|
|
|
void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; }
|
2013-12-20 21:18:07 +08:00
|
|
|
INTERCEPTOR_ATTRIBUTE
|
2012-12-11 20:27:27 +08:00
|
|
|
void operator delete[](void *ptr, std::nothrow_t const&) {
|
|
|
|
OPERATOR_DELETE_BODY;
|
|
|
|
}
|
2013-04-15 20:41:52 +08:00
|
|
|
|
|
|
|
#endif // MSAN_REPLACE_OPERATORS_NEW_AND_DELETE
|