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 <queue> | 8 #include <queue> |
9 #include <set> | 9 #include <set> |
10 | 10 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 class HandleScopeImplementer; | 61 class HandleScopeImplementer; |
62 class HeapProfiler; | 62 class HeapProfiler; |
63 class HStatistics; | 63 class HStatistics; |
64 class HTracer; | 64 class HTracer; |
65 class InlineRuntimeFunctionsTable; | 65 class InlineRuntimeFunctionsTable; |
66 class InnerPointerToCodeCache; | 66 class InnerPointerToCodeCache; |
67 class MaterializedObjectStore; | 67 class MaterializedObjectStore; |
68 class CodeAgingHelper; | 68 class CodeAgingHelper; |
69 class RegExpStack; | 69 class RegExpStack; |
70 class SaveContext; | 70 class SaveContext; |
| 71 class StatsTable; |
71 class StringTracker; | 72 class StringTracker; |
72 class StubCache; | 73 class StubCache; |
73 class SweeperThread; | 74 class SweeperThread; |
74 class ThreadManager; | 75 class ThreadManager; |
75 class ThreadState; | 76 class ThreadState; |
76 class ThreadVisitor; // Defined in v8threads.h | 77 class ThreadVisitor; // Defined in v8threads.h |
77 class UnicodeCache; | 78 class UnicodeCache; |
78 template <StateTag Tag> class VMState; | 79 template <StateTag Tag> class VMState; |
79 | 80 |
80 // 'void function pointer', used to roundtrip the | 81 // 'void function pointer', used to roundtrip the |
(...skipping 1524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1605 } | 1606 } |
1606 | 1607 |
1607 EmbeddedVector<char, 128> filename_; | 1608 EmbeddedVector<char, 128> filename_; |
1608 FILE* file_; | 1609 FILE* file_; |
1609 int scope_depth_; | 1610 int scope_depth_; |
1610 }; | 1611 }; |
1611 | 1612 |
1612 } } // namespace v8::internal | 1613 } } // namespace v8::internal |
1613 | 1614 |
1614 #endif // V8_ISOLATE_H_ | 1615 #endif // V8_ISOLATE_H_ |
OLD | NEW |