| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |