| 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 1436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1508 } | 1507 } |
| 1509 | 1508 |
| 1510 EmbeddedVector<char, 128> filename_; | 1509 EmbeddedVector<char, 128> filename_; |
| 1511 FILE* file_; | 1510 FILE* file_; |
| 1512 int scope_depth_; | 1511 int scope_depth_; |
| 1513 }; | 1512 }; |
| 1514 | 1513 |
| 1515 } } // namespace v8::internal | 1514 } } // namespace v8::internal |
| 1516 | 1515 |
| 1517 #endif // V8_ISOLATE_H_ | 1516 #endif // V8_ISOLATE_H_ |
| OLD | NEW |