1 |
|
|
// Copyright Joyent, Inc. and other Node contributors. |
2 |
|
|
// |
3 |
|
|
// Permission is hereby granted, free of charge, to any person obtaining a |
4 |
|
|
// copy of this software and associated documentation files (the |
5 |
|
|
// "Software"), to deal in the Software without restriction, including |
6 |
|
|
// without limitation the rights to use, copy, modify, merge, publish, |
7 |
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit |
8 |
|
|
// persons to whom the Software is furnished to do so, subject to the |
9 |
|
|
// following conditions: |
10 |
|
|
// |
11 |
|
|
// The above copyright notice and this permission notice shall be included |
12 |
|
|
// in all copies or substantial portions of the Software. |
13 |
|
|
// |
14 |
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
15 |
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
16 |
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN |
17 |
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
18 |
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
19 |
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
20 |
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE. |
21 |
|
|
|
22 |
|
|
#include "node_v8.h" |
23 |
|
|
#include "base_object-inl.h" |
24 |
|
|
#include "env-inl.h" |
25 |
|
|
#include "memory_tracker-inl.h" |
26 |
|
|
#include "node.h" |
27 |
|
|
#include "node_external_reference.h" |
28 |
|
|
#include "util-inl.h" |
29 |
|
|
#include "v8.h" |
30 |
|
|
|
31 |
|
|
namespace node { |
32 |
|
|
namespace v8_utils { |
33 |
|
|
using v8::Array; |
34 |
|
|
using v8::Context; |
35 |
|
|
using v8::FunctionCallbackInfo; |
36 |
|
|
using v8::HandleScope; |
37 |
|
|
using v8::HeapCodeStatistics; |
38 |
|
|
using v8::HeapSpaceStatistics; |
39 |
|
|
using v8::HeapStatistics; |
40 |
|
|
using v8::Integer; |
41 |
|
|
using v8::Isolate; |
42 |
|
|
using v8::Local; |
43 |
|
|
using v8::Object; |
44 |
|
|
using v8::ScriptCompiler; |
45 |
|
|
using v8::String; |
46 |
|
|
using v8::Uint32; |
47 |
|
|
using v8::V8; |
48 |
|
|
using v8::Value; |
49 |
|
|
|
50 |
|
|
#define HEAP_STATISTICS_PROPERTIES(V) \ |
51 |
|
|
V(0, total_heap_size, kTotalHeapSizeIndex) \ |
52 |
|
|
V(1, total_heap_size_executable, kTotalHeapSizeExecutableIndex) \ |
53 |
|
|
V(2, total_physical_size, kTotalPhysicalSizeIndex) \ |
54 |
|
|
V(3, total_available_size, kTotalAvailableSize) \ |
55 |
|
|
V(4, used_heap_size, kUsedHeapSizeIndex) \ |
56 |
|
|
V(5, heap_size_limit, kHeapSizeLimitIndex) \ |
57 |
|
|
V(6, malloced_memory, kMallocedMemoryIndex) \ |
58 |
|
|
V(7, peak_malloced_memory, kPeakMallocedMemoryIndex) \ |
59 |
|
|
V(8, does_zap_garbage, kDoesZapGarbageIndex) \ |
60 |
|
|
V(9, number_of_native_contexts, kNumberOfNativeContextsIndex) \ |
61 |
|
|
V(10, number_of_detached_contexts, kNumberOfDetachedContextsIndex) \ |
62 |
|
|
V(11, total_global_handles_size, kTotalGlobalHandlesSizeIndex) \ |
63 |
|
|
V(12, used_global_handles_size, kUsedGlobalHandlesSizeIndex) \ |
64 |
|
|
V(13, external_memory, kExternalMemoryIndex) |
65 |
|
|
|
66 |
|
|
#define V(a, b, c) +1 |
67 |
|
|
static constexpr size_t kHeapStatisticsPropertiesCount = |
68 |
|
|
HEAP_STATISTICS_PROPERTIES(V); |
69 |
|
|
#undef V |
70 |
|
|
|
71 |
|
|
#define HEAP_SPACE_STATISTICS_PROPERTIES(V) \ |
72 |
|
|
V(0, space_size, kSpaceSizeIndex) \ |
73 |
|
|
V(1, space_used_size, kSpaceUsedSizeIndex) \ |
74 |
|
|
V(2, space_available_size, kSpaceAvailableSizeIndex) \ |
75 |
|
|
V(3, physical_space_size, kPhysicalSpaceSizeIndex) |
76 |
|
|
|
77 |
|
|
#define V(a, b, c) +1 |
78 |
|
|
static constexpr size_t kHeapSpaceStatisticsPropertiesCount = |
79 |
|
|
HEAP_SPACE_STATISTICS_PROPERTIES(V); |
80 |
|
|
#undef V |
81 |
|
|
|
82 |
|
|
#define HEAP_CODE_STATISTICS_PROPERTIES(V) \ |
83 |
|
|
V(0, code_and_metadata_size, kCodeAndMetadataSizeIndex) \ |
84 |
|
|
V(1, bytecode_and_metadata_size, kBytecodeAndMetadataSizeIndex) \ |
85 |
|
|
V(2, external_script_source_size, kExternalScriptSourceSizeIndex) \ |
86 |
|
|
V(3, cpu_profiler_metadata_size, kCPUProfilerMetaDataSizeIndex) |
87 |
|
|
|
88 |
|
|
#define V(a, b, c) +1 |
89 |
|
|
static const size_t kHeapCodeStatisticsPropertiesCount = |
90 |
|
|
HEAP_CODE_STATISTICS_PROPERTIES(V); |
91 |
|
|
#undef V |
92 |
|
|
|
93 |
|
5949 |
BindingData::BindingData(Environment* env, Local<Object> obj) |
94 |
|
|
: SnapshotableObject(env, obj, type_int), |
95 |
|
|
heap_statistics_buffer(env->isolate(), kHeapStatisticsPropertiesCount), |
96 |
|
|
heap_space_statistics_buffer(env->isolate(), |
97 |
|
|
kHeapSpaceStatisticsPropertiesCount), |
98 |
|
|
heap_code_statistics_buffer(env->isolate(), |
99 |
|
5949 |
kHeapCodeStatisticsPropertiesCount) { |
100 |
|
5949 |
obj->Set(env->context(), |
101 |
|
|
FIXED_ONE_BYTE_STRING(env->isolate(), "heapStatisticsBuffer"), |
102 |
|
23796 |
heap_statistics_buffer.GetJSArray()) |
103 |
|
|
.Check(); |
104 |
|
5949 |
obj->Set(env->context(), |
105 |
|
|
FIXED_ONE_BYTE_STRING(env->isolate(), "heapCodeStatisticsBuffer"), |
106 |
|
23796 |
heap_code_statistics_buffer.GetJSArray()) |
107 |
|
|
.Check(); |
108 |
|
5949 |
obj->Set(env->context(), |
109 |
|
|
FIXED_ONE_BYTE_STRING(env->isolate(), "heapSpaceStatisticsBuffer"), |
110 |
|
17847 |
heap_space_statistics_buffer.GetJSArray()) |
111 |
|
|
.Check(); |
112 |
|
5949 |
} |
113 |
|
|
|
114 |
|
6 |
void BindingData::PrepareForSerialization(Local<Context> context, |
115 |
|
|
v8::SnapshotCreator* creator) { |
116 |
|
|
// We'll just re-initialize the buffers in the constructor since their |
117 |
|
|
// contents can be thrown away once consumed in the previous call. |
118 |
|
6 |
heap_statistics_buffer.Release(); |
119 |
|
6 |
heap_space_statistics_buffer.Release(); |
120 |
|
6 |
heap_code_statistics_buffer.Release(); |
121 |
|
6 |
} |
122 |
|
|
|
123 |
|
5105 |
void BindingData::Deserialize(Local<Context> context, |
124 |
|
|
Local<Object> holder, |
125 |
|
|
int index, |
126 |
|
|
InternalFieldInfo* info) { |
127 |
|
|
DCHECK_EQ(index, BaseObject::kSlot); |
128 |
|
10210 |
HandleScope scope(context->GetIsolate()); |
129 |
|
5105 |
Environment* env = Environment::GetCurrent(context); |
130 |
|
5105 |
BindingData* binding = env->AddBindingData<BindingData>(context, holder); |
131 |
✗✓ |
5105 |
CHECK_NOT_NULL(binding); |
132 |
|
5105 |
} |
133 |
|
|
|
134 |
|
6 |
InternalFieldInfo* BindingData::Serialize(int index) { |
135 |
|
|
DCHECK_EQ(index, BaseObject::kSlot); |
136 |
|
6 |
InternalFieldInfo* info = InternalFieldInfo::New(type()); |
137 |
|
6 |
return info; |
138 |
|
|
} |
139 |
|
|
|
140 |
|
24 |
void BindingData::MemoryInfo(MemoryTracker* tracker) const { |
141 |
|
24 |
tracker->TrackField("heap_statistics_buffer", heap_statistics_buffer); |
142 |
|
24 |
tracker->TrackField("heap_space_statistics_buffer", |
143 |
|
24 |
heap_space_statistics_buffer); |
144 |
|
24 |
tracker->TrackField("heap_code_statistics_buffer", |
145 |
|
24 |
heap_code_statistics_buffer); |
146 |
|
24 |
} |
147 |
|
|
|
148 |
|
4 |
void CachedDataVersionTag(const FunctionCallbackInfo<Value>& args) { |
149 |
|
4 |
Environment* env = Environment::GetCurrent(args); |
150 |
|
|
Local<Integer> result = |
151 |
|
|
Integer::NewFromUnsigned(env->isolate(), |
152 |
|
4 |
ScriptCompiler::CachedDataVersionTag()); |
153 |
|
4 |
args.GetReturnValue().Set(result); |
154 |
|
4 |
} |
155 |
|
|
|
156 |
|
1621 |
void UpdateHeapStatisticsBuffer(const FunctionCallbackInfo<Value>& args) { |
157 |
|
1621 |
BindingData* data = Environment::GetBindingData<BindingData>(args); |
158 |
|
1621 |
HeapStatistics s; |
159 |
|
1621 |
args.GetIsolate()->GetHeapStatistics(&s); |
160 |
|
1621 |
AliasedFloat64Array& buffer = data->heap_statistics_buffer; |
161 |
|
|
#define V(index, name, _) buffer[index] = static_cast<double>(s.name()); |
162 |
|
1621 |
HEAP_STATISTICS_PROPERTIES(V) |
163 |
|
|
#undef V |
164 |
|
1621 |
} |
165 |
|
|
|
166 |
|
|
|
167 |
|
12968 |
void UpdateHeapSpaceStatisticsBuffer(const FunctionCallbackInfo<Value>& args) { |
168 |
|
12968 |
BindingData* data = Environment::GetBindingData<BindingData>(args); |
169 |
|
12968 |
HeapSpaceStatistics s; |
170 |
✓✗ |
12968 |
Isolate* const isolate = args.GetIsolate(); |
171 |
✗✓ |
12968 |
CHECK(args[0]->IsUint32()); |
172 |
|
25936 |
size_t space_index = static_cast<size_t>(args[0].As<v8::Uint32>()->Value()); |
173 |
|
12968 |
isolate->GetHeapSpaceStatistics(&s, space_index); |
174 |
|
|
|
175 |
|
12968 |
AliasedFloat64Array& buffer = data->heap_space_statistics_buffer; |
176 |
|
|
|
177 |
|
|
#define V(index, name, _) buffer[index] = static_cast<double>(s.name()); |
178 |
|
12968 |
HEAP_SPACE_STATISTICS_PROPERTIES(V) |
179 |
|
|
#undef V |
180 |
|
12968 |
} |
181 |
|
|
|
182 |
|
1 |
void UpdateHeapCodeStatisticsBuffer(const FunctionCallbackInfo<Value>& args) { |
183 |
|
1 |
BindingData* data = Environment::GetBindingData<BindingData>(args); |
184 |
|
1 |
HeapCodeStatistics s; |
185 |
|
1 |
args.GetIsolate()->GetHeapCodeAndMetadataStatistics(&s); |
186 |
|
1 |
AliasedFloat64Array& buffer = data->heap_code_statistics_buffer; |
187 |
|
|
|
188 |
|
|
#define V(index, name, _) buffer[index] = static_cast<double>(s.name()); |
189 |
|
1 |
HEAP_CODE_STATISTICS_PROPERTIES(V) |
190 |
|
|
#undef V |
191 |
|
1 |
} |
192 |
|
|
|
193 |
|
|
|
194 |
✓✗ |
8 |
void SetFlagsFromString(const FunctionCallbackInfo<Value>& args) { |
195 |
✗✓ |
16 |
CHECK(args[0]->IsString()); |
196 |
|
16 |
String::Utf8Value flags(args.GetIsolate(), args[0]); |
197 |
|
8 |
V8::SetFlagsFromString(*flags, static_cast<size_t>(flags.length())); |
198 |
|
8 |
} |
199 |
|
|
|
200 |
|
844 |
void Initialize(Local<Object> target, |
201 |
|
|
Local<Value> unused, |
202 |
|
|
Local<Context> context, |
203 |
|
|
void* priv) { |
204 |
|
844 |
Environment* env = Environment::GetCurrent(context); |
205 |
|
|
BindingData* const binding_data = |
206 |
|
844 |
env->AddBindingData<BindingData>(context, target); |
207 |
✗✓ |
844 |
if (binding_data == nullptr) return; |
208 |
|
|
|
209 |
|
844 |
env->SetMethodNoSideEffect(target, "cachedDataVersionTag", |
210 |
|
|
CachedDataVersionTag); |
211 |
|
844 |
env->SetMethod( |
212 |
|
|
target, "updateHeapStatisticsBuffer", UpdateHeapStatisticsBuffer); |
213 |
|
|
|
214 |
|
844 |
env->SetMethod( |
215 |
|
|
target, "updateHeapCodeStatisticsBuffer", UpdateHeapCodeStatisticsBuffer); |
216 |
|
|
|
217 |
|
844 |
size_t number_of_heap_spaces = env->isolate()->NumberOfHeapSpaces(); |
218 |
|
|
|
219 |
|
|
// Heap space names are extracted once and exposed to JavaScript to |
220 |
|
|
// avoid excessive creation of heap space name Strings. |
221 |
|
844 |
HeapSpaceStatistics s; |
222 |
|
1688 |
MaybeStackBuffer<Local<Value>, 16> heap_spaces(number_of_heap_spaces); |
223 |
✓✓ |
7596 |
for (size_t i = 0; i < number_of_heap_spaces; i++) { |
224 |
|
6752 |
env->isolate()->GetHeapSpaceStatistics(&s, i); |
225 |
|
13504 |
heap_spaces[i] = String::NewFromUtf8(env->isolate(), s.space_name()) |
226 |
|
|
.ToLocalChecked(); |
227 |
|
|
} |
228 |
|
844 |
target->Set(env->context(), |
229 |
|
|
FIXED_ONE_BYTE_STRING(env->isolate(), "kHeapSpaces"), |
230 |
|
|
Array::New(env->isolate(), |
231 |
|
|
heap_spaces.out(), |
232 |
|
2532 |
number_of_heap_spaces)).Check(); |
233 |
|
|
|
234 |
|
844 |
env->SetMethod(target, |
235 |
|
|
"updateHeapSpaceStatisticsBuffer", |
236 |
|
|
UpdateHeapSpaceStatisticsBuffer); |
237 |
|
|
|
238 |
|
|
#define V(i, _, name) \ |
239 |
|
|
target \ |
240 |
|
|
->Set(env->context(), \ |
241 |
|
|
FIXED_ONE_BYTE_STRING(env->isolate(), #name), \ |
242 |
|
|
Uint32::NewFromUnsigned(env->isolate(), i)) \ |
243 |
|
|
.Check(); |
244 |
|
|
|
245 |
|
36292 |
HEAP_STATISTICS_PROPERTIES(V) |
246 |
|
10972 |
HEAP_CODE_STATISTICS_PROPERTIES(V) |
247 |
|
10128 |
HEAP_SPACE_STATISTICS_PROPERTIES(V) |
248 |
|
|
#undef V |
249 |
|
|
|
250 |
|
|
// Export symbols used by v8.setFlagsFromString() |
251 |
|
844 |
env->SetMethod(target, "setFlagsFromString", SetFlagsFromString); |
252 |
|
|
} |
253 |
|
|
|
254 |
|
5111 |
void RegisterExternalReferences(ExternalReferenceRegistry* registry) { |
255 |
|
5111 |
registry->Register(CachedDataVersionTag); |
256 |
|
5111 |
registry->Register(UpdateHeapStatisticsBuffer); |
257 |
|
5111 |
registry->Register(UpdateHeapCodeStatisticsBuffer); |
258 |
|
5111 |
registry->Register(UpdateHeapSpaceStatisticsBuffer); |
259 |
|
5111 |
registry->Register(SetFlagsFromString); |
260 |
|
5111 |
} |
261 |
|
|
|
262 |
|
|
} // namespace v8_utils |
263 |
|
|
} // namespace node |
264 |
|
|
|
265 |
|
5169 |
NODE_MODULE_CONTEXT_AWARE_INTERNAL(v8, node::v8_utils::Initialize) |
266 |
|
5111 |
NODE_MODULE_EXTERNAL_REFERENCE(v8, node::v8_utils::RegisterExternalReferences) |