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

Unified Diff: src/isolate.cc

Issue 13016003: GDBJIT: Add gdbjit_zone for --gdbjit_full (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 9 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 | « src/isolate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
===================================================================
--- src/isolate.cc (revision 14041)
+++ src/isolate.cc (working copy)
@@ -1663,6 +1663,9 @@
handle_scope_implementer_(NULL),
unicode_cache_(NULL),
runtime_zone_(this),
+#ifdef ENABLE_GDB_JIT_INTERFACE
+ gdbjit_zone_(this),
+#endif
in_use_list_(0),
free_list_(0),
preallocated_storage_preallocated_(false),
@@ -1858,6 +1861,10 @@
// Has to be called while counters_ are still alive.
runtime_zone_.DeleteKeptSegment();
+#ifdef ENABLE_GDB_JIT_INTERFACE
+ gdbjit_zone_.DeleteKeptSegment();
+#endif
+
delete[] assembler_spare_buffer_;
assembler_spare_buffer_ = NULL;
« no previous file with comments | « src/isolate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698