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

Side by Side Diff: src/compiler-dispatcher/compiler-dispatcher-job.h

Issue 2645403002: [Compiler] Enable use of seperate zones for parsing and compiling. (Closed)
Patch Set: Add back header Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « src/compiler.cc ('k') | src/compiler-dispatcher/compiler-dispatcher-job.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_ 5 #ifndef V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_
6 #define V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_ 6 #define V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "include/v8.h" 10 #include "include/v8.h"
(...skipping 10 matching lines...) Expand all
21 class CompilationInfo; 21 class CompilationInfo;
22 class CompilationJob; 22 class CompilationJob;
23 class FunctionLiteral; 23 class FunctionLiteral;
24 class Isolate; 24 class Isolate;
25 class ParseInfo; 25 class ParseInfo;
26 class Parser; 26 class Parser;
27 class SharedFunctionInfo; 27 class SharedFunctionInfo;
28 class String; 28 class String;
29 class UnicodeCache; 29 class UnicodeCache;
30 class Utf16CharacterStream; 30 class Utf16CharacterStream;
31 class Zone;
32 31
33 enum class CompileJobStatus { 32 enum class CompileJobStatus {
34 kInitial, 33 kInitial,
35 kReadyToParse, 34 kReadyToParse,
36 kParsed, 35 kParsed,
37 kReadyToAnalyze, 36 kReadyToAnalyze,
38 kAnalyzed, 37 kAnalyzed,
39 kReadyToCompile, 38 kReadyToCompile,
40 kCompiled, 39 kCompiled,
41 kFailed, 40 kFailed,
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 119
121 bool trace_compiler_dispatcher_jobs_; 120 bool trace_compiler_dispatcher_jobs_;
122 121
123 DISALLOW_COPY_AND_ASSIGN(CompilerDispatcherJob); 122 DISALLOW_COPY_AND_ASSIGN(CompilerDispatcherJob);
124 }; 123 };
125 124
126 } // namespace internal 125 } // namespace internal
127 } // namespace v8 126 } // namespace v8
128 127
129 #endif // V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_ 128 #endif // V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/compiler-dispatcher/compiler-dispatcher-job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698