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 | 10 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 class CodeRange; | 45 class CodeRange; |
46 class CodeStubDescriptor; | 46 class CodeStubDescriptor; |
47 class CodeTracer; | 47 class CodeTracer; |
48 class CompilationCache; | 48 class CompilationCache; |
49 class CompilationStatistics; | 49 class CompilationStatistics; |
50 class ContextSlotCache; | 50 class ContextSlotCache; |
51 class Counters; | 51 class Counters; |
52 class CpuFeatures; | 52 class CpuFeatures; |
53 class CpuProfiler; | 53 class CpuProfiler; |
54 class DeoptimizerData; | 54 class DeoptimizerData; |
| 55 class DescriptorLookupCache; |
55 class Deserializer; | 56 class Deserializer; |
56 class EmptyStatement; | 57 class EmptyStatement; |
57 class ExternalCallbackScope; | 58 class ExternalCallbackScope; |
58 class ExternalReferenceTable; | 59 class ExternalReferenceTable; |
59 class Factory; | 60 class Factory; |
60 class HandleScopeImplementer; | 61 class HandleScopeImplementer; |
61 class HeapProfiler; | 62 class HeapProfiler; |
62 class HStatistics; | 63 class HStatistics; |
63 class HTracer; | 64 class HTracer; |
64 class InlineRuntimeFunctionsTable; | 65 class InlineRuntimeFunctionsTable; |
65 class InnerPointerToCodeCache; | 66 class InnerPointerToCodeCache; |
| 67 class KeyedLookupCache; |
66 class Logger; | 68 class Logger; |
67 class MaterializedObjectStore; | 69 class MaterializedObjectStore; |
68 class OptimizingCompileDispatcher; | 70 class OptimizingCompileDispatcher; |
69 class RegExpStack; | 71 class RegExpStack; |
70 class RuntimeProfiler; | 72 class RuntimeProfiler; |
71 class SaveContext; | 73 class SaveContext; |
72 class StatsTable; | 74 class StatsTable; |
73 class StringTracker; | 75 class StringTracker; |
74 class StubCache; | 76 class StubCache; |
75 class SweeperThread; | 77 class SweeperThread; |
(...skipping 1598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1674 | 1676 |
1675 EmbeddedVector<char, 128> filename_; | 1677 EmbeddedVector<char, 128> filename_; |
1676 FILE* file_; | 1678 FILE* file_; |
1677 int scope_depth_; | 1679 int scope_depth_; |
1678 }; | 1680 }; |
1679 | 1681 |
1680 } // namespace internal | 1682 } // namespace internal |
1681 } // namespace v8 | 1683 } // namespace v8 |
1682 | 1684 |
1683 #endif // V8_ISOLATE_H_ | 1685 #endif // V8_ISOLATE_H_ |
OLD | NEW |