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

Unified Diff: src/isolate.h

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/gdb-jit.cc ('k') | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
===================================================================
--- src/isolate.h (revision 14041)
+++ src/isolate.h (working copy)
@@ -891,6 +891,10 @@
}
Zone* runtime_zone() { return &runtime_zone_; }
+#ifdef ENABLE_GDB_JIT_INTERFACE
+ Zone* gdbjit_zone() { return &gdbjit_zone_; }
+#endif
+
UnicodeCache* unicode_cache() {
return unicode_cache_;
}
@@ -1261,6 +1265,9 @@
HandleScopeImplementer* handle_scope_implementer_;
UnicodeCache* unicode_cache_;
Zone runtime_zone_;
+#ifdef ENABLE_GDB_JIT_INTERFACE
+ Zone gdbjit_zone_;
+#endif
PreallocatedStorage in_use_list_;
PreallocatedStorage free_list_;
bool preallocated_storage_preallocated_;
« no previous file with comments | « src/gdb-jit.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698