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

Unified Diff: src/isolate.h

Issue 2867013: [Isolates] CompilationCache was moved to Isolate. (Closed) Base URL: git@github.com:v8isolate/v8isolates.git
Patch Set: Created 10 years, 6 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/heap.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 ce54e319971e6caef1c9b13a9f02e9347ad91a77..3bcf3eeaf93cb85fc2b34835f455644e8b4649d6 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -39,6 +39,7 @@ namespace v8 {
namespace internal {
class Bootstrapper;
+class CompilationCache;
class ContextSlotCache;
class CpuFeatures;
class Deserializer;
@@ -195,6 +196,7 @@ class Isolate {
// Accessors.
Bootstrapper* bootstrapper() { return bootstrapper_; }
CpuFeatures* cpu_features() { return cpu_features_; }
+ CompilationCache* compilation_cache() { return compilation_cache_; }
StackGuard* stack_guard() { return &stack_guard_; }
Heap* heap() { return &heap_; }
StubCache* stub_cache() { return stub_cache_; }
@@ -261,6 +263,7 @@ class Isolate {
State state_;
Bootstrapper* bootstrapper_;
+ CompilationCache* compilation_cache_;
CpuFeatures* cpu_features_;
Mutex* break_access_;
Heap heap_;
« no previous file with comments | « src/heap.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698