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

Unified Diff: src/isolate.h

Issue 4070003: [Isolates] Convert more static data either to read-only or to per-isolate. (Closed)
Patch Set: Created 10 years, 2 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
« src/frames.h ('K') | « src/full-codegen.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
diff --git a/src/isolate.h b/src/isolate.h
index 3f60d371288b970b46750fc0c54b2df0d123eb2f..eb2bfda71ae48dcdd60606a0680f96c4f13c64d4 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -33,7 +33,6 @@
#include "builtins.h"
#include "contexts.h"
#include "execution.h"
-#include "frames-inl.h"
#include "frames.h"
#include "global-handles.h"
#include "handles.h"
@@ -705,6 +704,8 @@ class Isolate {
return scanner_character_classes_;
}
+ PcToCodeCache* pc_to_code_cache() { return pc_to_code_cache_; }
+
StringInputBuffer* write_input_buffer() { return write_input_buffer_; }
GlobalHandles* global_handles() { return global_handles_; }
@@ -975,6 +976,7 @@ class Isolate {
PreallocatedStorage in_use_list_;
PreallocatedStorage free_list_;
bool preallocated_storage_preallocated_;
+ PcToCodeCache* pc_to_code_cache_;
StringInputBuffer* write_input_buffer_;
GlobalHandles* global_handles_;
ContextSwitcher* context_switcher_;
@@ -1198,5 +1200,6 @@ inline void Context::mark_out_of_memory() {
// they're needed.
#include "allocation-inl.h"
#include "zone-inl.h"
+#include "frames-inl.h"
#endif // V8_ISOLATE_H_
« src/frames.h ('K') | « src/full-codegen.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698