Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index f9b5fde7ae3035e18651f59790b68ac004dcc7ac..3c65d09d2b1dcd06747c54222d65e6e46ef98f41 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -8126,6 +8126,14 @@ static void MaterializeArgumentsObjectInFrame(Isolate* isolate, |
ASSERT(*arguments != isolate->heap()->undefined_value()); |
} |
frame->SetExpression(i, *arguments); |
+ if (FLAG_trace_deopt) { |
+ PrintF("Materializing arguments object for frame %p - %p: %p ", |
+ reinterpret_cast<void*>(frame->sp()), |
+ reinterpret_cast<void*>(frame->fp()), |
+ reinterpret_cast<void*>(*arguments)); |
+ arguments->ShortPrint(); |
+ PrintF("\n"); |
+ } |
} |
} |
} |