From b1f5a27aea73b36e37126989a68b2dd89700541e Mon Sep 17 00:00:00 2001 From: daomingq Date: Tue, 13 Sep 2022 22:14:39 +0800 Subject: [PATCH] src: dump isolate stats when process exits When process exits, dump v8 isolate's internal stats for performance evaluation and debugging. It fixed the incorrect profiling log output when running V8's builtin PGO profiling for node.js service type application,which exits by user pressing CTRL+C etc. keys. PR-URL: https://github.com/nodejs/node/pull/44534 Reviewed-By: Anna Henningsen --- src/api/environment.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/environment.cc b/src/api/environment.cc index 3ac22a91c5fc9b..60d6b0a14ebba6 100644 --- a/src/api/environment.cc +++ b/src/api/environment.cc @@ -766,6 +766,7 @@ ThreadId AllocateEnvironmentThreadId() { void DefaultProcessExitHandler(Environment* env, int exit_code) { env->set_can_call_into_js(false); env->stop_sub_worker_contexts(); + env->isolate()->DumpAndResetStats(); DisposePlatform(); uv_library_shutdown(); exit(exit_code);