FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/src/node_perf.cc at test-https-req-split · BruceFletcher/node · GitHub
BruceFletcher
/
node
Public
forked from
nodejs/node
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
src
/
node_perf.cc
Copy path
More file actions
More file actions
Latest commit
History
History
History
390 lines (336 loc) · 13.9 KB
Breadcrumbs
node
/
src
/
node_perf.cc
Copy path
File metadata and controls
390 lines (336 loc) · 13.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
#
include
"
node_internals.h
"
#
include
"
node_perf.h
"
#
include
<
vector
>
namespace
node
{
namespace
performance
{
using
v8::Array;
using
v8::ArrayBuffer;
using
v8::Context;
using
v8::Function;
using
v8::FunctionCallbackInfo;
using
v8::FunctionTemplate;
using
v8::HandleScope;
using
v8::Integer;
using
v8::Isolate;
using
v8::Local;
using
v8::Name;
using
v8::Object;
using
v8::ObjectTemplate;
using
v8::PropertyCallbackInfo;
using
v8::String;
using
v8::Value;
const
uint64_t
timeOrigin =
PERFORMANCE_NOW
();
uint64_t
performance_node_start;
uint64_t
performance_v8_start;
uint64_t
performance_last_gc_start_mark_ =
0
;
v8::GCType performance_last_gc_type_ = v8::GCType::
kGCTypeAll
;
void
PerformanceEntry::New
(
const
FunctionCallbackInfo<Value>& args) {
Environment* env =
Environment::GetCurrent
(args);
Isolate* isolate = env->
isolate
();
Utf8Value
name
(isolate, args[
0
]);
Utf8Value
type
(isolate, args[
1
]);
uint64_t
now =
PERFORMANCE_NOW
();
new
PerformanceEntry
(env, args.
This
(), *name, *type, now, now);
}
void
PerformanceEntry::NotifyObservers
(Environment* env,
PerformanceEntry* entry) {
uint32_t
* observers = env->
performance_state
()->
observers
;
PerformanceEntryType type =
ToPerformanceEntryTypeEnum
(entry->
type
().
c_str
());
if
(observers ==
nullptr
||
type ==
NODE_PERFORMANCE_ENTRY_TYPE_INVALID
||
!observers[type]) {
return
;
}
Local<Context> context = env->
context
();
Isolate* isolate = env->
isolate
();
Local<Value> argv = entry->
object
();
env->
performance_entry_callback
()->
Call
(context,
v8::Undefined
(isolate),
1
, &argv).
ToLocalChecked
();
}
void
Mark
(
const
FunctionCallbackInfo<Value>& args) {
Environment* env =
Environment::GetCurrent
(args);
Local<Context> context = env->
context
();
Isolate* isolate = env->
isolate
();
Utf8Value
name
(isolate, args[
0
]);
uint64_t
now =
PERFORMANCE_NOW
();
auto
marks = env->
performance_marks
();
(*marks)[*name] = now;
//
TODO(jasnell): Once Tracing API is fully implemented, this should
//
record a trace event also.
Local<Function> fn = env->
performance_entry_template
();
Local<Object> obj = fn->
NewInstance
(context).
ToLocalChecked
();
new
PerformanceEntry
(env, obj, *name,
"
mark
"
, now, now);
args.
GetReturnValue
().
Set
(obj);
}
inline
uint64_t
GetPerformanceMark
(Environment* env, std::string name) {
auto
marks = env->
performance_marks
();
auto
res = marks->
find
(name);
return
res != marks->
end
() ? res->
second
:
0
;
}
void
Measure
(
const
FunctionCallbackInfo<Value>& args) {
Environment* env =
Environment::GetCurrent
(args);
Local<Context> context = env->
context
();
Isolate* isolate = env->
isolate
();
Utf8Value
name
(isolate, args[
0
]);
Utf8Value
startMark
(isolate, args[
1
]);
Utf8Value
endMark
(isolate, args[
2
]);
double
* milestones = env->
performance_state
()->
milestones
;
uint64_t
startTimestamp = timeOrigin;
uint64_t
start =
GetPerformanceMark
(env, *startMark);
if
(start !=
0
) {
startTimestamp = start;
}
else
{
PerformanceMilestone milestone =
ToPerformanceMilestoneEnum
(*startMark);
if
(milestone !=
NODE_PERFORMANCE_MILESTONE_INVALID
)
startTimestamp = milestones[milestone];
}
uint64_t
endTimestamp =
GetPerformanceMark
(env, *endMark);
if
(endTimestamp ==
0
) {
PerformanceMilestone milestone =
ToPerformanceMilestoneEnum
(*endMark);
if
(milestone !=
NODE_PERFORMANCE_MILESTONE_INVALID
)
endTimestamp = milestones[milestone];
}
if
(endTimestamp < startTimestamp)
endTimestamp = startTimestamp;
//
TODO(jasnell): Once Tracing API is fully implemented, this should
//
record a trace event also.
Local<Function> fn = env->
performance_entry_template
();
Local<Object> obj = fn->
NewInstance
(context).
ToLocalChecked
();
new
PerformanceEntry
(env, obj, *name,
"
measure
"
,
startTimestamp, endTimestamp);
args.
GetReturnValue
().
Set
(obj);
}
void
GetPerformanceEntryName
(
const
Local<String> prop,
const
PropertyCallbackInfo<Value>& info) {
Isolate* isolate = info.
GetIsolate
();
PerformanceEntry* entry;
ASSIGN_OR_RETURN_UNWRAP
(&entry, info.
Holder
());
info.
GetReturnValue
().
Set
(
String::NewFromUtf8
(isolate, entry->
name
().
c_str
(), String::
kNormalString
));
}
void
GetPerformanceEntryType
(
const
Local<String> prop,
const
PropertyCallbackInfo<Value>& info) {
Isolate* isolate = info.
GetIsolate
();
PerformanceEntry* entry;
ASSIGN_OR_RETURN_UNWRAP
(&entry, info.
Holder
());
info.
GetReturnValue
().
Set
(
String::NewFromUtf8
(isolate, entry->
type
().
c_str
(), String::
kNormalString
));
}
void
GetPerformanceEntryStartTime
(
const
Local<String> prop,
const
PropertyCallbackInfo<Value>& info) {
PerformanceEntry* entry;
ASSIGN_OR_RETURN_UNWRAP
(&entry, info.
Holder
());
info.
GetReturnValue
().
Set
(entry->
startTime
());
}
void
GetPerformanceEntryDuration
(
const
Local<String> prop,
const
PropertyCallbackInfo<Value>& info) {
PerformanceEntry* entry;
ASSIGN_OR_RETURN_UNWRAP
(&entry, info.
Holder
());
info.
GetReturnValue
().
Set
(entry->
duration
());
}
void
MarkMilestone
(
const
FunctionCallbackInfo<Value>& args) {
Environment* env =
Environment::GetCurrent
(args);
Local<Context> context = env->
context
();
double
* milestones = env->
performance_state
()->
milestones
;
PerformanceMilestone milestone =
static_cast
<PerformanceMilestone>(
args[
0
]->
Int32Value
(context).
ToChecked
());
if
(milestone !=
NODE_PERFORMANCE_MILESTONE_INVALID
) {
milestones[milestone] =
PERFORMANCE_NOW
();
}
}
void
SetupPerformanceObservers
(
const
FunctionCallbackInfo<Value>& args) {
Environment* env =
Environment::GetCurrent
(args);
CHECK
(args[
0
]->
IsFunction
());
env->
set_performance_entry_callback
(args[
0
].
As
<Function>());
}
void
PerformanceGCCallback
(
uv_async_t
* handle) {
PerformanceEntry::Data* data =
static_cast
<PerformanceEntry::Data*>(handle->
data
);
Environment* env = data->
env
();
Isolate* isolate = env->
isolate
();
HandleScope
scope
(isolate);
Local<Context> context = env->
context
();
Context::Scope
context_scope
(context);
Local<Function> fn;
Local<Object> obj;
PerformanceGCKind kind =
static_cast
<PerformanceGCKind>(data->
data
());
uint32_t
* observers = env->
performance_state
()->
observers
;
if
(!observers[
NODE_PERFORMANCE_ENTRY_TYPE_GC
]) {
goto
cleanup;
}
fn = env->
performance_entry_template
();
obj = fn->
NewInstance
(context).
ToLocalChecked
();
obj->
Set
(context,
FIXED_ONE_BYTE_STRING
(isolate,
"
kind
"
),
Integer::New
(isolate, kind)).
FromJust
();
new
PerformanceEntry
(env, obj, data);
cleanup:
delete
data;
auto
closeCB = [](
uv_handle_t
* handle) {
delete
handle; };
uv_close
(
reinterpret_cast
<
uv_handle_t
*>(handle), closeCB);
}
void
MarkGarbageCollectionStart
(Isolate* isolate,
v8::GCType type,
v8::GCCallbackFlags flags) {
performance_last_gc_start_mark_ =
PERFORMANCE_NOW
();
performance_last_gc_type_ = type;
}
void
MarkGarbageCollectionEnd
(Isolate* isolate,
v8::GCType type,
v8::GCCallbackFlags flags,
void
* data) {
Environment* env =
static_cast
<Environment*>(data);
uv_async_t
* async =
new
uv_async_t
();
//
coverity[leaked_storage]
if
(
uv_async_init
(env->
event_loop
(), async, PerformanceGCCallback))
return
delete
async;
async->
data
=
new
PerformanceEntry::Data
(env,
"
gc
"
,
"
gc
"
,
performance_last_gc_start_mark_,
PERFORMANCE_NOW
(), type);
CHECK_EQ
(
0
,
uv_async_send
(async));
}
inline
void
SetupGarbageCollectionTracking
(Environment* env) {
env->
isolate
()->
AddGCPrologueCallback
(MarkGarbageCollectionStart);
env->
isolate
()->
AddGCEpilogueCallback
(MarkGarbageCollectionEnd,
static_cast
<
void
*>(env));
}
inline
Local<Value>
GetName
(Local<Function> fn) {
Local<Value> val = fn->
GetDebugName
();
if
(val.
IsEmpty
() || val->
IsUndefined
()) {
Local<Value> boundFunction = fn->
GetBoundFunction
();
if
(!boundFunction.
IsEmpty
() && !boundFunction->
IsUndefined
()) {
val =
GetName
(boundFunction.
As
<Function>());
}
}
return
val;
}
void
TimerFunctionCall
(
const
FunctionCallbackInfo<Value>& args) {
Isolate* isolate = args.
GetIsolate
();
HandleScope
scope
(isolate);
Environment* env =
Environment::GetCurrent
(isolate);
Local<Context> context = env->
context
();
Local<Function> fn = args.
Data
().
As
<Function>();
size_t
count = args.
Length
();
size_t
idx;
std::vector<Local<Value>> call_args;
for
(
size_t
i =
0
; i < count; ++i) {
call_args.
push_back
(args[i]);
}
Utf8Value
name
(isolate,
GetName
(fn));
uint64_t
start;
uint64_t
end;
v8::TryCatch
try_catch
(isolate);
if
(args.
IsConstructCall
()) {
start =
PERFORMANCE_NOW
();
v8::MaybeLocal<Object> ret = fn->
NewInstance
(context,
call_args.
size
(),
call_args.
data
());
end =
PERFORMANCE_NOW
();
if
(ret.
IsEmpty
()) {
try_catch.
ReThrow
();
return
;
}
args.
GetReturnValue
().
Set
(ret.
ToLocalChecked
());
}
else
{
start =
PERFORMANCE_NOW
();
v8::MaybeLocal<Value> ret = fn->
Call
(context,
args.
This
(),
call_args.
size
(),
call_args.
data
());
end =
PERFORMANCE_NOW
();
if
(ret.
IsEmpty
()) {
try_catch.
ReThrow
();
return
;
}
args.
GetReturnValue
().
Set
(ret.
ToLocalChecked
());
}
uint32_t
* observers = env->
performance_state
()->
observers
;
if
(!observers[
NODE_PERFORMANCE_ENTRY_TYPE_FUNCTION
])
return
;
Local<Function> ctor = env->
performance_entry_template
();
v8::MaybeLocal<Object> instance = ctor->
NewInstance
(context);
Local<Object> obj = instance.
ToLocalChecked
();
for
(idx =
0
; idx < count; idx++) {
obj->
Set
(context, idx, args[idx]).
ToChecked
();
}
new
PerformanceEntry
(env, obj, *name,
"
function
"
, start, end);
}
void
Timerify
(
const
FunctionCallbackInfo<Value>& args) {
Environment* env =
Environment::GetCurrent
(args);
Local<Context> context = env->
context
();
CHECK
(args[
0
]->
IsFunction
());
CHECK
(args[
1
]->
IsNumber
());
Local<Function> fn = args[
0
].
As
<Function>();
int
length = args[
1
]->
IntegerValue
(context).
ToChecked
();
Local<Function> wrap =
Function::New
(context, TimerFunctionCall, fn, length).
ToLocalChecked
();
args.
GetReturnValue
().
Set
(wrap);
}
void
Init
(Local<Object> target,
Local<Value> unused,
Local<Context> context) {
Environment* env =
Environment::GetCurrent
(context);
Isolate* isolate = env->
isolate
();
performance_state* state = env->
performance_state
();
auto
state_ab =
ArrayBuffer::New
(isolate, state,
sizeof
(*state));
#
define
SET_STATE_TYPEDARRAY
(
name, type, field
) \
target->
Set
(context, \
FIXED_ONE_BYTE_STRING
(isolate, (name)), \
type::New
(state_ab, \
offsetof
(performance_state, field), \
arraysize
(state->
field
))) \
.
FromJust
()
SET_STATE_TYPEDARRAY
(
"
observerCounts
"
, v8::Uint32Array, observers);
SET_STATE_TYPEDARRAY
(
"
milestones
"
, v8::Float64Array, milestones);
#
undef
SET_STATE_TYPEDARRAY
Local<String> performanceEntryString =
FIXED_ONE_BYTE_STRING
(isolate,
"
PerformanceEntry
"
);
Local<FunctionTemplate> pe = env->
NewFunctionTemplate
(PerformanceEntry::New);
pe->
InstanceTemplate
()->
SetInternalFieldCount
(
1
);
pe->
SetClassName
(performanceEntryString);
Local<ObjectTemplate> ot = pe->
InstanceTemplate
();
ot->
SetAccessor
(env->
name_string
(), GetPerformanceEntryName);
ot->
SetAccessor
(
FIXED_ONE_BYTE_STRING
(isolate,
"
entryType
"
),
GetPerformanceEntryType);
ot->
SetAccessor
(
FIXED_ONE_BYTE_STRING
(isolate,
"
startTime
"
),
GetPerformanceEntryStartTime);
ot->
SetAccessor
(
FIXED_ONE_BYTE_STRING
(isolate,
"
duration
"
),
GetPerformanceEntryDuration);
Local<Function> fn = pe->
GetFunction
();
target->
Set
(performanceEntryString, fn);
env->
set_performance_entry_template
(fn);
env->
SetMethod
(target,
"
mark
"
, Mark);
env->
SetMethod
(target,
"
measure
"
, Measure);
env->
SetMethod
(target,
"
markMilestone
"
, MarkMilestone);
env->
SetMethod
(target,
"
setupObservers
"
, SetupPerformanceObservers);
env->
SetMethod
(target,
"
timerify
"
, Timerify);
Local<Object> constants =
Object::New
(isolate);
NODE_DEFINE_CONSTANT
(constants,
NODE_PERFORMANCE_GC_MAJOR
);
NODE_DEFINE_CONSTANT
(constants,
NODE_PERFORMANCE_GC_MINOR
);
NODE_DEFINE_CONSTANT
(constants,
NODE_PERFORMANCE_GC_INCREMENTAL
);
NODE_DEFINE_CONSTANT
(constants,
NODE_PERFORMANCE_GC_WEAKCB
);
#
define
V
(
name, _
) \
NODE_DEFINE_HIDDEN_CONSTANT
(constants,
NODE_PERFORMANCE_ENTRY_TYPE_
##name);
NODE_PERFORMANCE_ENTRY_TYPES
(V)
#
undef
V
#
define
V
(
name, _
) \
NODE_DEFINE_HIDDEN_CONSTANT
(constants,
NODE_PERFORMANCE_MILESTONE_
##name);
NODE_PERFORMANCE_MILESTONES
(V)
#
undef
V
v8::PropertyAttribute attr =
static_cast
<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete);
target->
DefineOwnProperty
(context,
FIXED_ONE_BYTE_STRING
(isolate,
"
timeOrigin
"
),
v8::Number::New
(isolate, timeOrigin /
1e6
),
attr).
ToChecked
();
target->
DefineOwnProperty
(context,
env->
constants_string
(),
constants,
attr).
ToChecked
();
SetupGarbageCollectionTracking
(env);
}
}
//
namespace performance
}
//
namespace node
NODE_MODULE_CONTEXT_AWARE_BUILTIN
(performance, node::performance::Init)
Back
|
FazBrowse Home
|
New Git URL