| 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 "allocation.h" | 9 #include "src/allocation.h" |
| 10 #include "assert-scope.h" | 10 #include "src/assert-scope.h" |
| 11 #include "atomicops.h" | 11 #include "src/atomicops.h" |
| 12 #include "builtins.h" | 12 #include "src/builtins.h" |
| 13 #include "contexts.h" | 13 #include "src/contexts.h" |
| 14 #include "execution.h" | 14 #include "src/execution.h" |
| 15 #include "frames.h" | 15 #include "src/frames.h" |
| 16 #include "date.h" | 16 #include "src/date.h" |
| 17 #include "global-handles.h" | 17 #include "src/global-handles.h" |
| 18 #include "handles.h" | 18 #include "src/handles.h" |
| 19 #include "hashmap.h" | 19 #include "src/hashmap.h" |
| 20 #include "heap.h" | 20 #include "src/heap.h" |
| 21 #include "optimizing-compiler-thread.h" | 21 #include "src/optimizing-compiler-thread.h" |
| 22 #include "regexp-stack.h" | 22 #include "src/regexp-stack.h" |
| 23 #include "runtime-profiler.h" | 23 #include "src/runtime-profiler.h" |
| 24 #include "runtime.h" | 24 #include "src/runtime.h" |
| 25 #include "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 struct CodeStubInterfaceDescriptor; |
| 35 class CodeTracer; | 35 class CodeTracer; |
| (...skipping 1453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1489 } | 1489 } |
| 1490 | 1490 |
| 1491 EmbeddedVector<char, 128> filename_; | 1491 EmbeddedVector<char, 128> filename_; |
| 1492 FILE* file_; | 1492 FILE* file_; |
| 1493 int scope_depth_; | 1493 int scope_depth_; |
| 1494 }; | 1494 }; |
| 1495 | 1495 |
| 1496 } } // namespace v8::internal | 1496 } } // namespace v8::internal |
| 1497 | 1497 |
| 1498 #endif // V8_ISOLATE_H_ | 1498 #endif // V8_ISOLATE_H_ |
| OLD | NEW |