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

Side by Side Diff: src/compiler-dispatcher/optimizing-compile-dispatcher.h

Issue 2161033003: Create compiler-scheduler subdir and move existing scheduler there (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 | « BUILD.gn ('k') | src/compiler-dispatcher/optimizing-compile-dispatcher.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 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
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_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/compiler-dispatcher/optimizing-compile-dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698