#define SANITIZER_COMMON_NO_REDEFINE_BUILTINS
#include "memprof_interceptors_memintrinsics.h"
#include "memprof_interceptors.h"
#include "memprof_stack.h"
usingnamespace__memprof;
#define MEMPROF_MEMCPY_IMPL(to, from, size) …
#define MEMPROF_MEMSET_IMPL(block, c, size) …
#define MEMPROF_MEMMOVE_IMPL(to, from, size) …
#define COMMON_INTERCEPTOR_MEMMOVE_IMPL(ctx, to, from, size) …
#define COMMON_INTERCEPTOR_MEMCPY_IMPL(ctx, to, from, size) …
#define COMMON_INTERCEPTOR_MEMSET_IMPL(ctx, block, c, size) …
#include "sanitizer_common/sanitizer_common_interceptors_memintrinsics.inc"
void *__memprof_memcpy(void *to, const void *from, uptr size) { … }
void *__memprof_memset(void *block, int c, uptr size) { … }
void *__memprof_memmove(void *to, const void *from, uptr size) { … }