| 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" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 class ExternalReferenceTable; | 51 class ExternalReferenceTable; |
| 52 class Factory; | 52 class Factory; |
| 53 class FunctionInfoListener; | 53 class FunctionInfoListener; |
| 54 class HandleScopeImplementer; | 54 class HandleScopeImplementer; |
| 55 class HeapProfiler; | 55 class HeapProfiler; |
| 56 class HStatistics; | 56 class HStatistics; |
| 57 class HTracer; | 57 class HTracer; |
| 58 class InlineRuntimeFunctionsTable; | 58 class InlineRuntimeFunctionsTable; |
| 59 class InnerPointerToCodeCache; | 59 class InnerPointerToCodeCache; |
| 60 class MaterializedObjectStore; | 60 class MaterializedObjectStore; |
| 61 class NoAllocationStringAllocator; | |
| 62 class CodeAgingHelper; | 61 class CodeAgingHelper; |
| 63 class RegExpStack; | 62 class RegExpStack; |
| 64 class SaveContext; | 63 class SaveContext; |
| 65 class StringTracker; | 64 class StringTracker; |
| 66 class StubCache; | 65 class StubCache; |
| 67 class SweeperThread; | 66 class SweeperThread; |
| 68 class ThreadManager; | 67 class ThreadManager; |
| 69 class ThreadState; | 68 class ThreadState; |
| 70 class ThreadVisitor; // Defined in v8threads.h | 69 class ThreadVisitor; // Defined in v8threads.h |
| 71 class UnicodeCache; | 70 class UnicodeCache; |
| (...skipping 1453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1525 } | 1524 } |
| 1526 | 1525 |
| 1527 EmbeddedVector<char, 128> filename_; | 1526 EmbeddedVector<char, 128> filename_; |
| 1528 FILE* file_; | 1527 FILE* file_; |
| 1529 int scope_depth_; | 1528 int scope_depth_; |
| 1530 }; | 1529 }; |
| 1531 | 1530 |
| 1532 } } // namespace v8::internal | 1531 } } // namespace v8::internal |
| 1533 | 1532 |
| 1534 #endif // V8_ISOLATE_H_ | 1533 #endif // V8_ISOLATE_H_ |
| OLD | NEW |