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

Unified Diff: src/isolate.h

Issue 214883002: Two-threaded parser (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebased Created 6 years, 7 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') | 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 1e955a92c6a275a41a65c6fb52a3227ce2a7b1ad..8ae14b5e76651dfb6a4567ec046a1ebde0333cbb 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -45,6 +45,7 @@ class EmptyStatement;
class ExternalCallbackScope;
class ExternalReferenceTable;
class Factory;
+class FastParserThread;
class FunctionInfoListener;
class HandleScopeImplementer;
class HeapProfiler;
@@ -1026,6 +1027,10 @@ class Isolate {
return optimizing_compiler_thread_;
}
+ FastParserThread* fast_parser_thread() {
+ return fast_parser_thread_;
+ }
+
int num_sweeper_threads() const {
return num_sweeper_threads_;
}
@@ -1276,6 +1281,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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698