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

Unified Diff: src/objects.cc

Issue 552153: Add code to help diagnose the cause of issue 555. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/issue555/
Patch Set: Created 10 years, 11 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
« no previous file with comments | « no previous file | src/runtime.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
===================================================================
--- src/objects.cc (revision 3704)
+++ src/objects.cc (working copy)
@@ -8303,4 +8303,25 @@
#endif
+// BUG(555): This function is used to diagnose issue 555 from
+// runtime.cc. We avoid inlining it by placing it here.
+void CaptureInfoForIssue555(
+ bool is_bootstrapping,
+ AllocationSpace context_space,
+ Object* context,
+ Object* context_map,
+ int context_length,
+ Object* context_closure,
+ Object* context_fcontext,
+ Object* context_previous,
+ Object* context_extension,
+ Object* context_global,
+ AllocationSpace function_space,
+ Object* function,
+ bool runs_in_inner_context,
+ bool runs_in_outer_context) {
+ // Kill the virtual machine.
+ OS::Abort();
+}
+
} } // namespace v8::internal
« no previous file with comments | « no previous file | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698