@@ -303,7 +303,8 @@ std::string NativeSymbolDebuggingContext::SymbolInfo::Display() const {
303
303
return oss.str ();
304
304
}
305
305
306
- void DumpBacktrace (FILE* fp) {
306
+ void DumpNativeBacktrace (FILE* fp) {
307
+ fprintf (fp, " ----- Native stack trace -----\n\n " );
307
308
auto sym_ctx = NativeSymbolDebuggingContext::New ();
308
309
void * frames[256 ];
309
310
const int size = sym_ctx->GetStackTrace (frames, arraysize (frames));
@@ -314,6 +315,31 @@ void DumpBacktrace(FILE* fp) {
314
315
}
315
316
}
316
317
318
+ static std::atomic<bool > is_dumping_js_stacktrace { false };
319
+ void DumpJavaScriptBacktrace (FILE* fp) {
320
+ // Printing JavaScript stack trace can result in V8 fatal error,
321
+ // which can re-enter this function.
322
+ if (is_dumping_js_stacktrace.load ()) {
323
+ return ;
324
+ }
325
+
326
+ v8::Isolate* isolate = v8::Isolate::GetCurrent ();
327
+ if (isolate == nullptr ) {
328
+ return ;
329
+ }
330
+
331
+ std::string js_stack;
332
+ std::stringstream ss;
333
+ is_dumping_js_stacktrace.store (true );
334
+ v8::Message::PrintCurrentStackTrace (isolate, ss);
335
+ js_stack = ss.str ();
336
+ fprintf (fp,
337
+ " \n ----- JavaScript stack trace -----\n\n "
338
+ " %s\n\n " ,
339
+ js_stack.c_str ());
340
+ is_dumping_js_stacktrace.store (false );
341
+ }
342
+
317
343
void CheckedUvLoopClose (uv_loop_t * loop) {
318
344
if (uv_loop_close (loop) == 0 ) return ;
319
345
@@ -514,5 +540,6 @@ void FWrite(FILE* file, const std::string& str) {
514
540
} // namespace node
515
541
516
542
extern " C" void __DumpBacktrace (FILE* fp) {
517
- node::DumpBacktrace (fp);
543
+ node::DumpNativeBacktrace (fp);
544
+ node::DumpJavaScriptBacktrace (fp);
518
545
}
0 commit comments