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/date.h" |
15 #include "src/execution.h" | 15 #include "src/execution.h" |
16 #include "src/frames.h" | 16 #include "src/frames.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/heap.h" | 20 #include "src/heap/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/runtime.h" |
24 #include "src/runtime-profiler.h" | 24 #include "src/runtime-profiler.h" |
25 #include "src/zone.h" | 25 #include "src/zone.h" |
26 | 26 |
27 namespace v8 { | 27 namespace v8 { |
28 | 28 |
29 namespace base { | 29 namespace base { |
30 class RandomNumberGenerator; | 30 class RandomNumberGenerator; |
31 } | 31 } |
32 | 32 |
33 namespace internal { | 33 namespace internal { |
(...skipping 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1549 } | 1549 } |
1550 | 1550 |
1551 EmbeddedVector<char, 128> filename_; | 1551 EmbeddedVector<char, 128> filename_; |
1552 FILE* file_; | 1552 FILE* file_; |
1553 int scope_depth_; | 1553 int scope_depth_; |
1554 }; | 1554 }; |
1555 | 1555 |
1556 } } // namespace v8::internal | 1556 } } // namespace v8::internal |
1557 | 1557 |
1558 #endif // V8_ISOLATE_H_ | 1558 #endif // V8_ISOLATE_H_ |
OLD | NEW |