mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 20:46:05 +00:00

See RFC for background: http://lists.llvm.org/pipermail/llvm-dev/2020-June/142744.html Follow on companion to the clang/llvm instrumentation support in D85948 and committed earlier. This patch adds the compiler-rt runtime support for the memory profiling. Note that much of this support was cloned from asan (and then greatly simplified and renamed). For example the interactions with the sanitizer_common allocators, error handling, interception, etc. The bulk of the memory profiling specific code can be found in the MemInfoBlock, MemInfoBlockCache, and related classes defined and used in memprof_allocator.cpp. For now, the memory profile is dumped to text (stderr by default, but honors the sanitizer_common log_path flag). It is dumped in either a default verbose format, or an optional terse format. This patch also adds a set of tests for the core functionality. Differential Revision: https://reviews.llvm.org/D87120
146 lines
5.4 KiB
C++
146 lines
5.4 KiB
C++
//===-- memprof_interceptors.cpp -----------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file is a part of MemProfiler, a memory profiler.
|
|
//
|
|
// Interceptors for operators new and delete.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "memprof_allocator.h"
|
|
#include "memprof_internal.h"
|
|
#include "memprof_stack.h"
|
|
#include "sanitizer_common/sanitizer_allocator_report.h"
|
|
|
|
#include "interception/interception.h"
|
|
|
|
#include <stddef.h>
|
|
|
|
#define CXX_OPERATOR_ATTRIBUTE INTERCEPTOR_ATTRIBUTE
|
|
|
|
using namespace __memprof;
|
|
|
|
// Fake std::nothrow_t and std::align_val_t to avoid including <new>.
|
|
namespace std {
|
|
struct nothrow_t {};
|
|
enum class align_val_t : size_t {};
|
|
} // namespace std
|
|
|
|
#define OPERATOR_NEW_BODY(type, nothrow) \
|
|
GET_STACK_TRACE_MALLOC; \
|
|
void *res = memprof_memalign(0, size, &stack, type); \
|
|
if (!nothrow && UNLIKELY(!res)) \
|
|
ReportOutOfMemory(size, &stack); \
|
|
return res;
|
|
#define OPERATOR_NEW_BODY_ALIGN(type, nothrow) \
|
|
GET_STACK_TRACE_MALLOC; \
|
|
void *res = memprof_memalign((uptr)align, size, &stack, type); \
|
|
if (!nothrow && UNLIKELY(!res)) \
|
|
ReportOutOfMemory(size, &stack); \
|
|
return res;
|
|
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void *operator new(size_t size) {
|
|
OPERATOR_NEW_BODY(FROM_NEW, false /*nothrow*/);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void *operator new[](size_t size) {
|
|
OPERATOR_NEW_BODY(FROM_NEW_BR, false /*nothrow*/);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void *operator new(size_t size, std::nothrow_t const &) {
|
|
OPERATOR_NEW_BODY(FROM_NEW, true /*nothrow*/);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void *operator new[](size_t size, std::nothrow_t const &) {
|
|
OPERATOR_NEW_BODY(FROM_NEW_BR, true /*nothrow*/);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void *operator new(size_t size, std::align_val_t align) {
|
|
OPERATOR_NEW_BODY_ALIGN(FROM_NEW, false /*nothrow*/);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void *operator new[](size_t size, std::align_val_t align) {
|
|
OPERATOR_NEW_BODY_ALIGN(FROM_NEW_BR, false /*nothrow*/);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void *operator new(size_t size, std::align_val_t align,
|
|
std::nothrow_t const &) {
|
|
OPERATOR_NEW_BODY_ALIGN(FROM_NEW, true /*nothrow*/);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void *operator new[](size_t size, std::align_val_t align,
|
|
std::nothrow_t const &) {
|
|
OPERATOR_NEW_BODY_ALIGN(FROM_NEW_BR, true /*nothrow*/);
|
|
}
|
|
|
|
#define OPERATOR_DELETE_BODY(type) \
|
|
GET_STACK_TRACE_FREE; \
|
|
memprof_delete(ptr, 0, 0, &stack, type);
|
|
|
|
#define OPERATOR_DELETE_BODY_SIZE(type) \
|
|
GET_STACK_TRACE_FREE; \
|
|
memprof_delete(ptr, size, 0, &stack, type);
|
|
|
|
#define OPERATOR_DELETE_BODY_ALIGN(type) \
|
|
GET_STACK_TRACE_FREE; \
|
|
memprof_delete(ptr, 0, static_cast<uptr>(align), &stack, type);
|
|
|
|
#define OPERATOR_DELETE_BODY_SIZE_ALIGN(type) \
|
|
GET_STACK_TRACE_FREE; \
|
|
memprof_delete(ptr, size, static_cast<uptr>(align), &stack, type);
|
|
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete(void *ptr)NOEXCEPT { OPERATOR_DELETE_BODY(FROM_NEW); }
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete[](void *ptr) NOEXCEPT {
|
|
OPERATOR_DELETE_BODY(FROM_NEW_BR);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete(void *ptr, std::nothrow_t const &) {
|
|
OPERATOR_DELETE_BODY(FROM_NEW);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete[](void *ptr, std::nothrow_t const &) {
|
|
OPERATOR_DELETE_BODY(FROM_NEW_BR);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete(void *ptr, size_t size)NOEXCEPT {
|
|
OPERATOR_DELETE_BODY_SIZE(FROM_NEW);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete[](void *ptr, size_t size) NOEXCEPT {
|
|
OPERATOR_DELETE_BODY_SIZE(FROM_NEW_BR);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete(void *ptr, std::align_val_t align)NOEXCEPT {
|
|
OPERATOR_DELETE_BODY_ALIGN(FROM_NEW);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete[](void *ptr, std::align_val_t align) NOEXCEPT {
|
|
OPERATOR_DELETE_BODY_ALIGN(FROM_NEW_BR);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete(void *ptr, std::align_val_t align,
|
|
std::nothrow_t const &) {
|
|
OPERATOR_DELETE_BODY_ALIGN(FROM_NEW);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete[](void *ptr, std::align_val_t align,
|
|
std::nothrow_t const &) {
|
|
OPERATOR_DELETE_BODY_ALIGN(FROM_NEW_BR);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete(void *ptr, size_t size, std::align_val_t align)NOEXCEPT {
|
|
OPERATOR_DELETE_BODY_SIZE_ALIGN(FROM_NEW);
|
|
}
|
|
CXX_OPERATOR_ATTRIBUTE
|
|
void operator delete[](void *ptr, size_t size,
|
|
std::align_val_t align) NOEXCEPT {
|
|
OPERATOR_DELETE_BODY_SIZE_ALIGN(FROM_NEW_BR);
|
|
}
|