| 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 <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 Loading... |
| 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_ |
| OLD | NEW |