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

Unified Diff: src/isolate.h

Issue 261953002: Fix for 3303 MultithreadedParallelIsolates has a race condition. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ports. Created 6 years, 8 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/codegen.h ('K') | « src/ia32/codegen-ia32.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 fdd89b4f4e605fc06834200079e343c4bb96d695..7c2f2c792f539b14945bb3404797b57c8247bb97 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -54,6 +54,7 @@ class InlineRuntimeFunctionsTable;
class InnerPointerToCodeCache;
class MaterializedObjectStore;
class NoAllocationStringAllocator;
+class NoCodeAgeSequence;
class RandomNumberGenerator;
class RegExpStack;
class SaveContext;
@@ -836,6 +837,7 @@ class Isolate {
Heap* heap() { return &heap_; }
StatsTable* stats_table();
StubCache* stub_cache() { return stub_cache_; }
+ NoCodeAgeSequence* no_code_age_sequence() { return no_code_age_sequence_; }
DeoptimizerData* deoptimizer_data() { return deoptimizer_data_; }
ThreadLocalTop* thread_local_top() { return &thread_local_top_; }
MaterializedObjectStore* materialized_object_store() {
@@ -1203,6 +1205,7 @@ class Isolate {
StackGuard stack_guard_;
StatsTable* stats_table_;
StubCache* stub_cache_;
+ NoCodeAgeSequence* no_code_age_sequence_;
DeoptimizerData* deoptimizer_data_;
MaterializedObjectStore* materialized_object_store_;
ThreadLocalTop thread_local_top_;
« src/codegen.h ('K') | « src/ia32/codegen-ia32.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698