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/isolate.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
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_ISOLATE_H_ 5 #ifndef V8_ISOLATE_H_
6 #define V8_ISOLATE_H_ 6 #define V8_ISOLATE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <queue> 9 #include <queue>
10 #include <set> 10 #include <set>
11 11
12 #include "include/v8-debug.h" 12 #include "include/v8-debug.h"
13 #include "src/allocation.h" 13 #include "src/allocation.h"
14 #include "src/assert-scope.h" 14 #include "src/assert-scope.h"
15 #include "src/base/accounting-allocator.h" 15 #include "src/base/accounting-allocator.h"
16 #include "src/base/atomicops.h" 16 #include "src/base/atomicops.h"
17 #include "src/base/hashmap.h" 17 #include "src/base/hashmap.h"
18 #include "src/builtins/builtins.h" 18 #include "src/builtins/builtins.h"
19 #include "src/cancelable-task.h" 19 #include "src/cancelable-task.h"
20 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h"
20 #include "src/contexts.h" 21 #include "src/contexts.h"
21 #include "src/date.h" 22 #include "src/date.h"
22 #include "src/execution.h" 23 #include "src/execution.h"
23 #include "src/frames.h" 24 #include "src/frames.h"
24 #include "src/futex-emulation.h" 25 #include "src/futex-emulation.h"
25 #include "src/global-handles.h" 26 #include "src/global-handles.h"
26 #include "src/handles.h" 27 #include "src/handles.h"
27 #include "src/heap/heap.h" 28 #include "src/heap/heap.h"
28 #include "src/messages.h" 29 #include "src/messages.h"
29 #include "src/optimizing-compile-dispatcher.h"
30 #include "src/regexp/regexp-stack.h" 30 #include "src/regexp/regexp-stack.h"
31 #include "src/runtime-profiler.h" 31 #include "src/runtime-profiler.h"
32 #include "src/runtime/runtime.h" 32 #include "src/runtime/runtime.h"
33 #include "src/zone.h" 33 #include "src/zone.h"
34 34
35 namespace v8 { 35 namespace v8 {
36 36
37 namespace base { 37 namespace base {
38 class RandomNumberGenerator; 38 class RandomNumberGenerator;
39 } 39 }
(...skipping 1602 matching lines...) Expand 10 before | Expand all | Expand 10 after
1642 1642
1643 EmbeddedVector<char, 128> filename_; 1643 EmbeddedVector<char, 128> filename_;
1644 FILE* file_; 1644 FILE* file_;
1645 int scope_depth_; 1645 int scope_depth_;
1646 }; 1646 };
1647 1647
1648 } // namespace internal 1648 } // namespace internal
1649 } // namespace v8 1649 } // namespace v8
1650 1650
1651 #endif // V8_ISOLATE_H_ 1651 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/compiler-dispatcher/optimizing-compile-dispatcher.cc ('k') | src/optimizing-compile-dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698