GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: node_v8.cc Lines: 93 93 100.0 %
Date: 2022-08-30 04:20:47 Branches: 8 14 57.1 %

Line Branch Exec Source
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
6191
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
6191
                                  kHeapCodeStatisticsPropertiesCount) {
100
6191
  obj->Set(env->context(),
101
           FIXED_ONE_BYTE_STRING(env->isolate(), "heapStatisticsBuffer"),
102
24764
           heap_statistics_buffer.GetJSArray())
103
      .Check();
104
6191
  obj->Set(env->context(),
105
           FIXED_ONE_BYTE_STRING(env->isolate(), "heapCodeStatisticsBuffer"),
106
24764
           heap_code_statistics_buffer.GetJSArray())
107
      .Check();
108
6191
  obj->Set(env->context(),
109
           FIXED_ONE_BYTE_STRING(env->isolate(), "heapSpaceStatisticsBuffer"),
110
18573
           heap_space_statistics_buffer.GetJSArray())
111
      .Check();
112
6191
}
113
114
6
bool 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
  // Return true because we need to maintain the reference to the binding from
122
  // JS land.
123
6
  return true;
124
}
125
126
5412
void BindingData::Deserialize(Local<Context> context,
127
                              Local<Object> holder,
128
                              int index,
129
                              InternalFieldInfoBase* info) {
130
  DCHECK_EQ(index, BaseObject::kEmbedderType);
131
10824
  HandleScope scope(context->GetIsolate());
132
5412
  Environment* env = Environment::GetCurrent(context);
133
5412
  BindingData* binding = env->AddBindingData<BindingData>(context, holder);
134
5412
  CHECK_NOT_NULL(binding);
135
5412
}
136
137
6
InternalFieldInfoBase* BindingData::Serialize(int index) {
138
  DCHECK_EQ(index, BaseObject::kEmbedderType);
139
  InternalFieldInfo* info =
140
6
      InternalFieldInfoBase::New<InternalFieldInfo>(type());
141
6
  return info;
142
}
143
144
24
void BindingData::MemoryInfo(MemoryTracker* tracker) const {
145
24
  tracker->TrackField("heap_statistics_buffer", heap_statistics_buffer);
146
24
  tracker->TrackField("heap_space_statistics_buffer",
147
24
                      heap_space_statistics_buffer);
148
24
  tracker->TrackField("heap_code_statistics_buffer",
149
24
                      heap_code_statistics_buffer);
150
24
}
151
152
4
void CachedDataVersionTag(const FunctionCallbackInfo<Value>& args) {
153
4
  Environment* env = Environment::GetCurrent(args);
154
  Local<Integer> result =
155
      Integer::NewFromUnsigned(env->isolate(),
156
4
                               ScriptCompiler::CachedDataVersionTag());
157
4
  args.GetReturnValue().Set(result);
158
4
}
159
160
1499
void UpdateHeapStatisticsBuffer(const FunctionCallbackInfo<Value>& args) {
161
1499
  BindingData* data = Environment::GetBindingData<BindingData>(args);
162
1499
  HeapStatistics s;
163
1499
  args.GetIsolate()->GetHeapStatistics(&s);
164
1499
  AliasedFloat64Array& buffer = data->heap_statistics_buffer;
165
#define V(index, name, _) buffer[index] = static_cast<double>(s.name());
166
1499
  HEAP_STATISTICS_PROPERTIES(V)
167
#undef V
168
1499
}
169
170
171
11992
void UpdateHeapSpaceStatisticsBuffer(const FunctionCallbackInfo<Value>& args) {
172
11992
  BindingData* data = Environment::GetBindingData<BindingData>(args);
173
11992
  HeapSpaceStatistics s;
174
11992
  Isolate* const isolate = args.GetIsolate();
175
11992
  CHECK(args[0]->IsUint32());
176
23984
  size_t space_index = static_cast<size_t>(args[0].As<v8::Uint32>()->Value());
177
11992
  isolate->GetHeapSpaceStatistics(&s, space_index);
178
179
11992
  AliasedFloat64Array& buffer = data->heap_space_statistics_buffer;
180
181
#define V(index, name, _) buffer[index] = static_cast<double>(s.name());
182
11992
  HEAP_SPACE_STATISTICS_PROPERTIES(V)
183
#undef V
184
11992
}
185
186
1
void UpdateHeapCodeStatisticsBuffer(const FunctionCallbackInfo<Value>& args) {
187
1
  BindingData* data = Environment::GetBindingData<BindingData>(args);
188
1
  HeapCodeStatistics s;
189
1
  args.GetIsolate()->GetHeapCodeAndMetadataStatistics(&s);
190
1
  AliasedFloat64Array& buffer = data->heap_code_statistics_buffer;
191
192
#define V(index, name, _) buffer[index] = static_cast<double>(s.name());
193
1
  HEAP_CODE_STATISTICS_PROPERTIES(V)
194
#undef V
195
1
}
196
197
198
8
void SetFlagsFromString(const FunctionCallbackInfo<Value>& args) {
199
16
  CHECK(args[0]->IsString());
200
16
  String::Utf8Value flags(args.GetIsolate(), args[0]);
201
8
  V8::SetFlagsFromString(*flags, static_cast<size_t>(flags.length()));
202
8
}
203
204
779
void Initialize(Local<Object> target,
205
                Local<Value> unused,
206
                Local<Context> context,
207
                void* priv) {
208
779
  Environment* env = Environment::GetCurrent(context);
209
  BindingData* const binding_data =
210
779
      env->AddBindingData<BindingData>(context, target);
211
779
  if (binding_data == nullptr) return;
212
213
779
  SetMethodNoSideEffect(
214
      context, target, "cachedDataVersionTag", CachedDataVersionTag);
215
779
  SetMethod(context,
216
            target,
217
            "updateHeapStatisticsBuffer",
218
            UpdateHeapStatisticsBuffer);
219
220
779
  SetMethod(context,
221
            target,
222
            "updateHeapCodeStatisticsBuffer",
223
            UpdateHeapCodeStatisticsBuffer);
224
225
779
  size_t number_of_heap_spaces = env->isolate()->NumberOfHeapSpaces();
226
227
  // Heap space names are extracted once and exposed to JavaScript to
228
  // avoid excessive creation of heap space name Strings.
229
779
  HeapSpaceStatistics s;
230
1558
  MaybeStackBuffer<Local<Value>, 16> heap_spaces(number_of_heap_spaces);
231
7011
  for (size_t i = 0; i < number_of_heap_spaces; i++) {
232
6232
    env->isolate()->GetHeapSpaceStatistics(&s, i);
233
12464
    heap_spaces[i] = String::NewFromUtf8(env->isolate(), s.space_name())
234
                                             .ToLocalChecked();
235
  }
236
  target
237
779
      ->Set(
238
          context,
239
          FIXED_ONE_BYTE_STRING(env->isolate(), "kHeapSpaces"),
240
2337
          Array::New(env->isolate(), heap_spaces.out(), number_of_heap_spaces))
241
      .Check();
242
243
779
  SetMethod(context,
244
            target,
245
            "updateHeapSpaceStatisticsBuffer",
246
            UpdateHeapSpaceStatisticsBuffer);
247
248
#define V(i, _, name)                                                          \
249
  target                                                                       \
250
      ->Set(context,                                                           \
251
            FIXED_ONE_BYTE_STRING(env->isolate(), #name),                      \
252
            Uint32::NewFromUnsigned(env->isolate(), i))                        \
253
      .Check();
254
255
33497
  HEAP_STATISTICS_PROPERTIES(V)
256
10127
  HEAP_CODE_STATISTICS_PROPERTIES(V)
257
9348
  HEAP_SPACE_STATISTICS_PROPERTIES(V)
258
#undef V
259
260
  // Export symbols used by v8.setFlagsFromString()
261
779
  SetMethod(context, target, "setFlagsFromString", SetFlagsFromString);
262
}
263
264
5419
void RegisterExternalReferences(ExternalReferenceRegistry* registry) {
265
5419
  registry->Register(CachedDataVersionTag);
266
5419
  registry->Register(UpdateHeapStatisticsBuffer);
267
5419
  registry->Register(UpdateHeapCodeStatisticsBuffer);
268
5419
  registry->Register(UpdateHeapSpaceStatisticsBuffer);
269
5419
  registry->Register(SetFlagsFromString);
270
5419
}
271
272
}  // namespace v8_utils
273
}  // namespace node
274
275
5491
NODE_MODULE_CONTEXT_AWARE_INTERNAL(v8, node::v8_utils::Initialize)
276
5419
NODE_MODULE_EXTERNAL_REFERENCE(v8, node::v8_utils::RegisterExternalReferences)