| 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> | |
| 11 | 10 |
| 12 #include "include/v8-debug.h" | 11 #include "include/v8-debug.h" |
| 13 #include "src/allocation.h" | 12 #include "src/allocation.h" |
| 14 #include "src/assert-scope.h" | |
| 15 #include "src/base/accounting-allocator.h" | |
| 16 #include "src/base/atomicops.h" | 13 #include "src/base/atomicops.h" |
| 17 #include "src/base/hashmap.h" | |
| 18 #include "src/builtins/builtins.h" | 14 #include "src/builtins/builtins.h" |
| 19 #include "src/cancelable-task.h" | |
| 20 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h" | |
| 21 #include "src/contexts.h" | 15 #include "src/contexts.h" |
| 22 #include "src/date.h" | 16 #include "src/date.h" |
| 23 #include "src/execution.h" | 17 #include "src/execution.h" |
| 24 #include "src/frames.h" | 18 #include "src/frames.h" |
| 25 #include "src/futex-emulation.h" | 19 #include "src/futex-emulation.h" |
| 26 #include "src/global-handles.h" | 20 #include "src/global-handles.h" |
| 27 #include "src/handles.h" | 21 #include "src/handles.h" |
| 28 #include "src/heap/heap.h" | 22 #include "src/heap/heap.h" |
| 29 #include "src/messages.h" | 23 #include "src/messages.h" |
| 30 #include "src/regexp/regexp-stack.h" | 24 #include "src/regexp/regexp-stack.h" |
| 31 #include "src/runtime-profiler.h" | |
| 32 #include "src/runtime/runtime.h" | 25 #include "src/runtime/runtime.h" |
| 33 #include "src/tracing/trace-event.h" | 26 #include "src/tracing/trace-event.h" |
| 34 #include "src/zone.h" | 27 #include "src/zone.h" |
| 35 | 28 |
| 36 namespace v8 { | 29 namespace v8 { |
| 37 | 30 |
| 38 namespace base { | 31 namespace base { |
| 32 class AccountingAllocator; |
| 39 class RandomNumberGenerator; | 33 class RandomNumberGenerator; |
| 40 } | 34 } |
| 41 | 35 |
| 42 namespace internal { | 36 namespace internal { |
| 43 | 37 |
| 44 class BasicBlockProfiler; | 38 class BasicBlockProfiler; |
| 45 class Bootstrapper; | 39 class Bootstrapper; |
| 40 class CancelableTaskManager; |
| 46 class CallInterfaceDescriptorData; | 41 class CallInterfaceDescriptorData; |
| 47 class CodeAgingHelper; | 42 class CodeAgingHelper; |
| 48 class CodeEventDispatcher; | 43 class CodeEventDispatcher; |
| 49 class CodeGenerator; | 44 class CodeGenerator; |
| 50 class CodeRange; | 45 class CodeRange; |
| 51 class CodeStubDescriptor; | 46 class CodeStubDescriptor; |
| 52 class CodeTracer; | 47 class CodeTracer; |
| 53 class CompilationCache; | 48 class CompilationCache; |
| 54 class CompilationStatistics; | 49 class CompilationStatistics; |
| 55 class ContextSlotCache; | 50 class ContextSlotCache; |
| 56 class Counters; | 51 class Counters; |
| 57 class CpuFeatures; | 52 class CpuFeatures; |
| 58 class CpuProfiler; | 53 class CpuProfiler; |
| 59 class DeoptimizerData; | 54 class DeoptimizerData; |
| 60 class Deserializer; | 55 class Deserializer; |
| 61 class EmptyStatement; | 56 class EmptyStatement; |
| 62 class ExternalCallbackScope; | 57 class ExternalCallbackScope; |
| 63 class ExternalReferenceTable; | 58 class ExternalReferenceTable; |
| 64 class Factory; | 59 class Factory; |
| 65 class HandleScopeImplementer; | 60 class HandleScopeImplementer; |
| 66 class HeapProfiler; | 61 class HeapProfiler; |
| 67 class HStatistics; | 62 class HStatistics; |
| 68 class HTracer; | 63 class HTracer; |
| 69 class InlineRuntimeFunctionsTable; | 64 class InlineRuntimeFunctionsTable; |
| 70 class InnerPointerToCodeCache; | 65 class InnerPointerToCodeCache; |
| 71 class Logger; | 66 class Logger; |
| 72 class MaterializedObjectStore; | 67 class MaterializedObjectStore; |
| 68 class OptimizingCompileDispatcher; |
| 73 class RegExpStack; | 69 class RegExpStack; |
| 70 class RuntimeProfiler; |
| 74 class SaveContext; | 71 class SaveContext; |
| 75 class StatsTable; | 72 class StatsTable; |
| 76 class StringTracker; | 73 class StringTracker; |
| 77 class StubCache; | 74 class StubCache; |
| 78 class SweeperThread; | 75 class SweeperThread; |
| 79 class ThreadManager; | 76 class ThreadManager; |
| 80 class ThreadState; | 77 class ThreadState; |
| 81 class ThreadVisitor; // Defined in v8threads.h | 78 class ThreadVisitor; // Defined in v8threads.h |
| 82 class UnicodeCache; | 79 class UnicodeCache; |
| 83 template <StateTag Tag> class VMState; | 80 template <StateTag Tag> class VMState; |
| (...skipping 1593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1677 | 1674 |
| 1678 EmbeddedVector<char, 128> filename_; | 1675 EmbeddedVector<char, 128> filename_; |
| 1679 FILE* file_; | 1676 FILE* file_; |
| 1680 int scope_depth_; | 1677 int scope_depth_; |
| 1681 }; | 1678 }; |
| 1682 | 1679 |
| 1683 } // namespace internal | 1680 } // namespace internal |
| 1684 } // namespace v8 | 1681 } // namespace v8 |
| 1685 | 1682 |
| 1686 #endif // V8_ISOLATE_H_ | 1683 #endif // V8_ISOLATE_H_ |
| OLD | NEW |