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

Unified Diff: src/isolate.h

Issue 214883002: Two-threaded parser (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: . 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
« no previous file with comments | « src/flag-definitions.h ('k') | src/isolate.cc » ('j') | src/parser-thread.cc » ('J')
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 afebdf1381aa378e35fceaf2b3821b5465787ad7..c6dceb538b3771a5ba42535e1f782c96f73b3e12 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -68,6 +68,7 @@ class EmptyStatement;
class ExternalCallbackScope;
class ExternalReferenceTable;
class Factory;
+class FastParserThread;
class FunctionInfoListener;
class HandleScopeImplementer;
class HeapProfiler;
@@ -1100,6 +1101,10 @@ class Isolate {
return optimizing_compiler_thread_;
}
+ FastParserThread* fast_parser_thread() {
+ return fast_parser_thread_;
+ }
+
int num_sweeper_threads() const {
return num_sweeper_threads_;
}
@@ -1349,6 +1354,7 @@ class Isolate {
DeferredHandles* deferred_handles_head_;
OptimizingCompilerThread* optimizing_compiler_thread_;
+ FastParserThread* fast_parser_thread_;
SweeperThread** sweeper_thread_;
int num_sweeper_threads_;
« no previous file with comments | « src/flag-definitions.h ('k') | src/isolate.cc » ('j') | src/parser-thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698