forked from v8/v8
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemory.h
More file actions
149 lines (102 loc) · 3.89 KB
/
memory.h
File metadata and controls
149 lines (102 loc) · 3.89 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// Copyright 2021 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_HEAP_CPPGC_MEMORY_H_
#define V8_HEAP_CPPGC_MEMORY_H_
#include <cstddef>
#include <cstdint>
#include <cstring>
#include "src/base/macros.h"
#include "src/base/sanitizer/asan.h"
#include "src/base/sanitizer/msan.h"
#include "src/heap/cppgc/globals.h"
namespace cppgc {
namespace internal {
V8_NOINLINE DISABLE_ASAN void NoSanitizeMemset(void* address, char c,
size_t bytes);
static constexpr uint8_t kZappedValue = 0xdc;
V8_INLINE void ZapMemory(void* address, size_t size) {
// The lowest bit of the zapped value should be 0 so that zapped object are
// never viewed as fully constructed objects.
memset(address, kZappedValue, size);
}
V8_INLINE void CheckMemoryIsZapped(const void* address, size_t size) {
for (size_t i = 0; i < size; i++) {
CHECK_EQ(kZappedValue, reinterpret_cast<ConstAddress>(address)[i]);
}
}
V8_INLINE void CheckMemoryIsZero(const void* address, size_t size) {
for (size_t i = 0; i < size; i++) {
CHECK_EQ(0, reinterpret_cast<ConstAddress>(address)[i]);
}
}
// Together `SetMemoryAccessible()` and `SetMemoryInaccessible()` form the
// memory access model for allocation and free.
V8_INLINE void SetMemoryAccessible(void* address, size_t size) {
#if defined(V8_USE_MEMORY_SANITIZER)
MSAN_MEMORY_IS_INITIALIZED(address, size);
#elif defined(V8_USE_ADDRESS_SANITIZER)
ASAN_UNPOISON_MEMORY_REGION(address, size);
#elif DEBUG
memset(address, 0, size);
#else // Release builds.
// Nothing to be done for release builds.
#endif // Release builds.
}
V8_INLINE void SetMemoryInaccessible(void* address, size_t size) {
#if defined(V8_USE_MEMORY_SANITIZER)
memset(address, 0, size);
MSAN_ALLOCATED_UNINITIALIZED_MEMORY(address, size);
#elif defined(V8_USE_ADDRESS_SANITIZER)
NoSanitizeMemset(address, 0, size);
ASAN_POISON_MEMORY_REGION(address, size);
#elif DEBUG
::cppgc::internal::ZapMemory(address, size);
#else // Release builds.
memset(address, 0, size);
#endif // Release builds.
}
constexpr bool CheckMemoryIsInaccessibleIsNoop() {
#if defined(V8_USE_MEMORY_SANITIZER)
return true;
#elif defined(V8_USE_ADDRESS_SANITIZER)
return false;
#elif DEBUG
return false;
#else // Release builds.
return true;
#endif // Release builds.
}
V8_INLINE void CheckMemoryIsInaccessible(const void* address, size_t size) {
#if defined(V8_USE_MEMORY_SANITIZER)
static_assert(CheckMemoryIsInaccessibleIsNoop(),
"CheckMemoryIsInaccessibleIsNoop() needs to reflect "
"CheckMemoryIsInaccessible().");
// Unable to check that memory is marked as uninitialized by MSAN.
#elif defined(V8_USE_ADDRESS_SANITIZER)
static_assert(!CheckMemoryIsInaccessibleIsNoop(),
"CheckMemoryIsInaccessibleIsNoop() needs to reflect "
"CheckMemoryIsInaccessible().");
// Only check if memory is poisoned on 64 bit, since there we make sure that
// object sizes and alignments are multiple of shadow memory granularity.
#if defined(V8_TARGET_ARCH_64_BIT)
ASAN_CHECK_WHOLE_MEMORY_REGION_IS_POISONED(address, size);
#endif
ASAN_UNPOISON_MEMORY_REGION(address, size);
CheckMemoryIsZero(address, size);
ASAN_POISON_MEMORY_REGION(address, size);
#elif DEBUG
static_assert(!CheckMemoryIsInaccessibleIsNoop(),
"CheckMemoryIsInaccessibleIsNoop() needs to reflect "
"CheckMemoryIsInaccessible().");
CheckMemoryIsZapped(address, size);
#else // Release builds.
static_assert(CheckMemoryIsInaccessibleIsNoop(),
"CheckMemoryIsInaccessibleIsNoop() needs to reflect "
"CheckMemoryIsInaccessible().");
// No check in release builds.
#endif // Release builds.
}
} // namespace internal
} // namespace cppgc
#endif // V8_HEAP_CPPGC_MEMORY_H_