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_ISOLATE_H_ | 5 #ifndef V8_ISOLATE_H_ |
6 #define V8_ISOLATE_H_ | 6 #define V8_ISOLATE_H_ |
7 | 7 |
8 #include "include/v8-debug.h" | 8 #include "include/v8-debug.h" |
9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
10 #include "src/assert-scope.h" | 10 #include "src/assert-scope.h" |
11 #include "src/base/atomicops.h" | 11 #include "src/base/atomicops.h" |
12 #include "src/builtins.h" | 12 #include "src/builtins.h" |
13 #include "src/contexts.h" | 13 #include "src/contexts.h" |
| 14 #include "src/date.h" |
14 #include "src/execution.h" | 15 #include "src/execution.h" |
15 #include "src/frames.h" | 16 #include "src/frames.h" |
16 #include "src/date.h" | |
17 #include "src/global-handles.h" | 17 #include "src/global-handles.h" |
18 #include "src/handles.h" | 18 #include "src/handles.h" |
19 #include "src/hashmap.h" | 19 #include "src/hashmap.h" |
20 #include "src/heap.h" | 20 #include "src/heap.h" |
21 #include "src/optimizing-compiler-thread.h" | 21 #include "src/optimizing-compiler-thread.h" |
22 #include "src/regexp-stack.h" | 22 #include "src/regexp-stack.h" |
| 23 #include "src/runtime.h" |
23 #include "src/runtime-profiler.h" | 24 #include "src/runtime-profiler.h" |
24 #include "src/runtime.h" | |
25 #include "src/zone.h" | 25 #include "src/zone.h" |
26 | 26 |
27 namespace v8 { | 27 namespace v8 { |
28 namespace internal { | 28 namespace internal { |
29 | 29 |
30 class Bootstrapper; | 30 class Bootstrapper; |
31 struct CallInterfaceDescriptor; | 31 struct CallInterfaceDescriptor; |
32 class CodeGenerator; | 32 class CodeGenerator; |
33 class CodeRange; | 33 class CodeRange; |
34 struct CodeStubInterfaceDescriptor; | 34 struct CodeStubInterfaceDescriptor; |
(...skipping 1458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1493 } | 1493 } |
1494 | 1494 |
1495 EmbeddedVector<char, 128> filename_; | 1495 EmbeddedVector<char, 128> filename_; |
1496 FILE* file_; | 1496 FILE* file_; |
1497 int scope_depth_; | 1497 int scope_depth_; |
1498 }; | 1498 }; |
1499 | 1499 |
1500 } } // namespace v8::internal | 1500 } } // namespace v8::internal |
1501 | 1501 |
1502 #endif // V8_ISOLATE_H_ | 1502 #endif // V8_ISOLATE_H_ |
OLD | NEW |