aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/clang18-rt/lib/memprof/memprof_interceptors_memintrinsics.cpp
blob: 56bd11614d6aca77e7fe0c3ec288c675e67fcbab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//===-- memprof_interceptors_memintrinsics.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.
//
// MemProf versions of memcpy, memmove, and memset.
//===---------------------------------------------------------------------===//

#define SANITIZER_COMMON_NO_REDEFINE_BUILTINS

#include "memprof_interceptors_memintrinsics.h"

#include "memprof_interceptors.h"
#include "memprof_stack.h"

using namespace __memprof;

// memcpy is called during __memprof_init() from the internals of printf(...).
// We do not treat memcpy with to==from as a bug.
// See http://llvm.org/bugs/show_bug.cgi?id=11763.
#define MEMPROF_MEMCPY_IMPL(to, from, size)                                    \
  do {                                                                         \
    if (UNLIKELY(!memprof_inited))                                             \
      return internal_memcpy(to, from, size);                                  \
    if (memprof_init_is_running) {                                             \
      return REAL(memcpy)(to, from, size);                                     \
    }                                                                          \
    ENSURE_MEMPROF_INITED();                                                   \
    MEMPROF_READ_RANGE(from, size);                                            \
    MEMPROF_WRITE_RANGE(to, size);                                             \
    return REAL(memcpy)(to, from, size);                                       \
  } while (0)

// memset is called inside Printf.
#define MEMPROF_MEMSET_IMPL(block, c, size)                                    \
  do {                                                                         \
    if (UNLIKELY(!memprof_inited))                                             \
      return internal_memset(block, c, size);                                  \
    if (memprof_init_is_running) {                                             \
      return REAL(memset)(block, c, size);                                     \
    }                                                                          \
    ENSURE_MEMPROF_INITED();                                                   \
    MEMPROF_WRITE_RANGE(block, size);                                          \
    return REAL(memset)(block, c, size);                                       \
  } while (0)

#define MEMPROF_MEMMOVE_IMPL(to, from, size)                                   \
  do {                                                                         \
    if (UNLIKELY(!memprof_inited))                                             \
      return internal_memmove(to, from, size);                                 \
    ENSURE_MEMPROF_INITED();                                                   \
    MEMPROF_READ_RANGE(from, size);                                            \
    MEMPROF_WRITE_RANGE(to, size);                                             \
    return internal_memmove(to, from, size);                                   \
  } while (0)

#define COMMON_INTERCEPTOR_MEMMOVE_IMPL(ctx, to, from, size)                   \
  do {                                                                         \
    MEMPROF_INTERCEPTOR_ENTER(ctx, memmove);                                   \
    MEMPROF_MEMMOVE_IMPL(to, from, size);                                      \
  } while (false)

#define COMMON_INTERCEPTOR_MEMCPY_IMPL(ctx, to, from, size)                    \
  do {                                                                         \
    MEMPROF_INTERCEPTOR_ENTER(ctx, memcpy);                                    \
    MEMPROF_MEMCPY_IMPL(to, from, size);                                       \
  } while (false)

#define COMMON_INTERCEPTOR_MEMSET_IMPL(ctx, block, c, size)                    \
  do {                                                                         \
    MEMPROF_INTERCEPTOR_ENTER(ctx, memset);                                    \
    MEMPROF_MEMSET_IMPL(block, c, size);                                       \
  } while (false)

#include "sanitizer_common/sanitizer_common_interceptors_memintrinsics.inc"

void *__memprof_memcpy(void *to, const void *from, uptr size) {
  MEMPROF_MEMCPY_IMPL(to, from, size);
}

void *__memprof_memset(void *block, int c, uptr size) {
  MEMPROF_MEMSET_IMPL(block, c, size);
}

void *__memprof_memmove(void *to, const void *from, uptr size) {
  MEMPROF_MEMMOVE_IMPL(to, from, size);
}