OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_OPTIMIZING_COMPILE_DISPATCHER_H_ | 5 #ifndef V8_COMPILER_DISPATCHER_OPTIMIZING_COMPILE_DISPATCHER_H_ |
6 #define V8_OPTIMIZING_COMPILE_DISPATCHER_H_ | 6 #define V8_COMPILER_DISPATCHER_OPTIMIZING_COMPILE_DISPATCHER_H_ |
7 | 7 |
8 #include <queue> | 8 #include <queue> |
9 | 9 |
10 #include "src/base/atomicops.h" | 10 #include "src/base/atomicops.h" |
11 #include "src/base/platform/condition-variable.h" | 11 #include "src/base/platform/condition-variable.h" |
12 #include "src/base/platform/mutex.h" | 12 #include "src/base/platform/mutex.h" |
13 #include "src/base/platform/platform.h" | 13 #include "src/base/platform/platform.h" |
14 #include "src/flags.h" | 14 #include "src/flags.h" |
15 #include "src/list.h" | 15 #include "src/list.h" |
16 | 16 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 // Copy of FLAG_concurrent_recompilation_delay that will be used from the | 92 // Copy of FLAG_concurrent_recompilation_delay that will be used from the |
93 // background thread. | 93 // background thread. |
94 // | 94 // |
95 // Since flags might get modified while the background thread is running, it | 95 // Since flags might get modified while the background thread is running, it |
96 // is not safe to access them directly. | 96 // is not safe to access them directly. |
97 int recompilation_delay_; | 97 int recompilation_delay_; |
98 }; | 98 }; |
99 } // namespace internal | 99 } // namespace internal |
100 } // namespace v8 | 100 } // namespace v8 |
101 | 101 |
102 #endif // V8_OPTIMIZING_COMPILE_DISPATCHER_H_ | 102 #endif // V8_COMPILER_DISPATCHER_OPTIMIZING_COMPILE_DISPATCHER_H_ |
OLD | NEW |