Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Unified Diff: src/isolate.cc

Issue 2125163004: Correctly format builtin constructors in stack traces (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@20160704-string-number-builtins
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index ea06d73b84f52eb313053062f271f870ce47b698..9b0166189071c8d16e5cad3549d04981ef2312d5 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -405,6 +405,14 @@ Handle<Object> Isolate::CaptureSimpleStackTrace(Handle<JSReceiver> error_object,
elements = MaybeGrow(this, elements, cursor, cursor + 4);
Handle<AbstractCode> abstract_code = frames[i].abstract_code();
+ if (frame->type() == StackFrame::BUILTIN) {
+ // Help CallSite::IsConstructor correctly detect hand-written
+ // construct stubs.
+ Code* code = Code::cast(*abstract_code);
+ if (code->is_construct_stub()) {
+ recv = handle(heap()->call_site_constructor_symbol(), this);
+ }
+ }
Handle<Smi> offset(Smi::FromInt(frames[i].code_offset()), this);
// The stack trace API should not expose receivers and function

Powered by Google App Engine
This is Rietveld 408576698