@@ -101,7 +101,6 @@ using v8::Exception;
101
101
using v8::Float64Array;
102
102
using v8::Function;
103
103
using v8::FunctionCallbackInfo;
104
- using v8::FunctionTemplate;
105
104
using v8::HandleScope;
106
105
using v8::HeapStatistics;
107
106
using v8::Integer;
@@ -2864,39 +2863,15 @@ static void NeedImmediateCallbackSetter(
2864
2863
}
2865
2864
2866
2865
2867
- void SetIdle (uv_prepare_t * handle) {
2868
- Environment* env = Environment::from_idle_prepare_handle (handle);
2869
- env->isolate ()->GetCpuProfiler ()->SetIdle (true );
2870
- }
2871
-
2872
-
2873
- void ClearIdle (uv_check_t * handle) {
2874
- Environment* env = Environment::from_idle_check_handle (handle);
2875
- env->isolate ()->GetCpuProfiler ()->SetIdle (false );
2876
- }
2877
-
2878
-
2879
- void StartProfilerIdleNotifier (Environment* env) {
2880
- uv_prepare_start (env->idle_prepare_handle (), SetIdle);
2881
- uv_check_start (env->idle_check_handle (), ClearIdle);
2882
- }
2883
-
2884
-
2885
- void StopProfilerIdleNotifier (Environment* env) {
2886
- uv_prepare_stop (env->idle_prepare_handle ());
2887
- uv_check_stop (env->idle_check_handle ());
2888
- }
2889
-
2890
-
2891
2866
void StartProfilerIdleNotifier (const FunctionCallbackInfo<Value>& args) {
2892
2867
Environment* env = Environment::GetCurrent (args);
2893
- StartProfilerIdleNotifier (env );
2868
+ env-> StartProfilerIdleNotifier ();
2894
2869
}
2895
2870
2896
2871
2897
2872
void StopProfilerIdleNotifier (const FunctionCallbackInfo<Value>& args) {
2898
2873
Environment* env = Environment::GetCurrent (args);
2899
- StopProfilerIdleNotifier (env );
2874
+ env-> StopProfilerIdleNotifier ();
2900
2875
}
2901
2876
2902
2877
@@ -4262,20 +4237,6 @@ int EmitExit(Environment* env) {
4262
4237
}
4263
4238
4264
4239
4265
- static void HandleCloseCb (uv_handle_t * handle) {
4266
- Environment* env = reinterpret_cast <Environment*>(handle->data );
4267
- env->FinishHandleCleanup (handle);
4268
- }
4269
-
4270
-
4271
- static void HandleCleanup (Environment* env,
4272
- uv_handle_t * handle,
4273
- void * arg) {
4274
- handle->data = env;
4275
- uv_close (handle, HandleCloseCb);
4276
- }
4277
-
4278
-
4279
4240
IsolateData* CreateIsolateData (Isolate* isolate, uv_loop_t * loop) {
4280
4241
return new IsolateData (isolate, loop);
4281
4242
}
@@ -4294,64 +4255,9 @@ Environment* CreateEnvironment(IsolateData* isolate_data,
4294
4255
const char * const * exec_argv) {
4295
4256
Isolate* isolate = context->GetIsolate ();
4296
4257
HandleScope handle_scope (isolate);
4297
-
4298
4258
Context::Scope context_scope (context);
4299
4259
Environment* env = Environment::New (isolate_data, context);
4300
-
4301
- isolate->SetAutorunMicrotasks (false );
4302
-
4303
- uv_check_init (env->event_loop (), env->immediate_check_handle ());
4304
- uv_unref (
4305
- reinterpret_cast <uv_handle_t *>(env->immediate_check_handle ()));
4306
-
4307
- uv_idle_init (env->event_loop (), env->immediate_idle_handle ());
4308
-
4309
- // Inform V8's CPU profiler when we're idle. The profiler is sampling-based
4310
- // but not all samples are created equal; mark the wall clock time spent in
4311
- // epoll_wait() and friends so profiling tools can filter it out. The samples
4312
- // still end up in v8.log but with state=IDLE rather than state=EXTERNAL.
4313
- // TODO(bnoordhuis) Depends on a libuv implementation detail that we should
4314
- // probably fortify in the API contract, namely that the last started prepare
4315
- // or check watcher runs first. It's not 100% foolproof; if an add-on starts
4316
- // a prepare or check watcher after us, any samples attributed to its callback
4317
- // will be recorded with state=IDLE.
4318
- uv_prepare_init (env->event_loop (), env->idle_prepare_handle ());
4319
- uv_check_init (env->event_loop (), env->idle_check_handle ());
4320
- uv_unref (reinterpret_cast <uv_handle_t *>(env->idle_prepare_handle ()));
4321
- uv_unref (reinterpret_cast <uv_handle_t *>(env->idle_check_handle ()));
4322
-
4323
- // Register handle cleanups
4324
- env->RegisterHandleCleanup (
4325
- reinterpret_cast <uv_handle_t *>(env->immediate_check_handle ()),
4326
- HandleCleanup,
4327
- nullptr );
4328
- env->RegisterHandleCleanup (
4329
- reinterpret_cast <uv_handle_t *>(env->immediate_idle_handle ()),
4330
- HandleCleanup,
4331
- nullptr );
4332
- env->RegisterHandleCleanup (
4333
- reinterpret_cast <uv_handle_t *>(env->idle_prepare_handle ()),
4334
- HandleCleanup,
4335
- nullptr );
4336
- env->RegisterHandleCleanup (
4337
- reinterpret_cast <uv_handle_t *>(env->idle_check_handle ()),
4338
- HandleCleanup,
4339
- nullptr );
4340
-
4341
- if (v8_is_profiling) {
4342
- StartProfilerIdleNotifier (env);
4343
- }
4344
-
4345
- Local<FunctionTemplate> process_template = FunctionTemplate::New (isolate);
4346
- process_template->SetClassName (FIXED_ONE_BYTE_STRING (isolate, " process" ));
4347
-
4348
- Local<Object> process_object =
4349
- process_template->GetFunction ()->NewInstance (context).ToLocalChecked ();
4350
- env->set_process_object (process_object);
4351
-
4352
- SetupProcessObject (env, argc, argv, exec_argc, exec_argv);
4353
- LoadAsyncWrapperInfo (env);
4354
-
4260
+ env->Start (argc, argv, exec_argc, exec_argv, v8_is_profiling);
4355
4261
return env;
4356
4262
}
4357
4263
0 commit comments