| 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 13 matching lines...) Expand all Loading... |
| 24 #include "src/runtime-profiler.h" | 24 #include "src/runtime-profiler.h" |
| 25 #include "src/zone.h" | 25 #include "src/zone.h" |
| 26 | 26 |
| 27 namespace v8 { | 27 namespace v8 { |
| 28 namespace internal { | 28 namespace internal { |
| 29 | 29 |
| 30 class Bootstrapper; | 30 class Bootstrapper; |
| 31 struct CallInterfaceDescriptor; | 31 struct CallInterfaceDescriptor; |
| 32 class CodeGenerator; | 32 class CodeGenerator; |
| 33 class CodeRange; | 33 class CodeRange; |
| 34 struct CodeStubInterfaceDescriptor; | 34 class CodeStubInterfaceDescriptor; |
| 35 class CodeTracer; | 35 class CodeTracer; |
| 36 class CompilationCache; | 36 class CompilationCache; |
| 37 class ConsStringIteratorOp; | 37 class ConsStringIteratorOp; |
| 38 class ContextSlotCache; | 38 class ContextSlotCache; |
| 39 class Counters; | 39 class Counters; |
| 40 class CpuFeatures; | 40 class CpuFeatures; |
| 41 class CpuProfiler; | 41 class CpuProfiler; |
| 42 class DeoptimizerData; | 42 class DeoptimizerData; |
| 43 class Deserializer; | 43 class Deserializer; |
| 44 class EmptyStatement; | 44 class EmptyStatement; |
| (...skipping 1458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1503 } | 1503 } |
| 1504 | 1504 |
| 1505 EmbeddedVector<char, 128> filename_; | 1505 EmbeddedVector<char, 128> filename_; |
| 1506 FILE* file_; | 1506 FILE* file_; |
| 1507 int scope_depth_; | 1507 int scope_depth_; |
| 1508 }; | 1508 }; |
| 1509 | 1509 |
| 1510 } } // namespace v8::internal | 1510 } } // namespace v8::internal |
| 1511 | 1511 |
| 1512 #endif // V8_ISOLATE_H_ | 1512 #endif // V8_ISOLATE_H_ |
| OLD | NEW |