| 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 <queue> | 8 #include <queue> |
| 9 #include "include/v8-debug.h" | 9 #include "include/v8-debug.h" |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1355 #endif | 1355 #endif |
| 1356 | 1356 |
| 1357 // List of callbacks when a Call completes. | 1357 // List of callbacks when a Call completes. |
| 1358 List<CallCompletedCallback> call_completed_callbacks_; | 1358 List<CallCompletedCallback> call_completed_callbacks_; |
| 1359 | 1359 |
| 1360 v8::Isolate::UseCounterCallback use_counter_callback_; | 1360 v8::Isolate::UseCounterCallback use_counter_callback_; |
| 1361 BasicBlockProfiler* basic_block_profiler_; | 1361 BasicBlockProfiler* basic_block_profiler_; |
| 1362 | 1362 |
| 1363 friend class ExecutionAccess; | 1363 friend class ExecutionAccess; |
| 1364 friend class HandleScopeImplementer; | 1364 friend class HandleScopeImplementer; |
| 1365 friend class IsolateInitializer; | |
| 1366 friend class OptimizingCompilerThread; | 1365 friend class OptimizingCompilerThread; |
| 1367 friend class SweeperThread; | 1366 friend class SweeperThread; |
| 1368 friend class ThreadManager; | 1367 friend class ThreadManager; |
| 1369 friend class Simulator; | 1368 friend class Simulator; |
| 1370 friend class StackGuard; | 1369 friend class StackGuard; |
| 1371 friend class ThreadId; | 1370 friend class ThreadId; |
| 1372 friend class TestMemoryAllocatorScope; | 1371 friend class TestMemoryAllocatorScope; |
| 1373 friend class TestCodeRangeScope; | 1372 friend class TestCodeRangeScope; |
| 1374 friend class v8::Isolate; | 1373 friend class v8::Isolate; |
| 1375 friend class v8::Locker; | 1374 friend class v8::Locker; |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1581 } | 1580 } |
| 1582 | 1581 |
| 1583 EmbeddedVector<char, 128> filename_; | 1582 EmbeddedVector<char, 128> filename_; |
| 1584 FILE* file_; | 1583 FILE* file_; |
| 1585 int scope_depth_; | 1584 int scope_depth_; |
| 1586 }; | 1585 }; |
| 1587 | 1586 |
| 1588 } } // namespace v8::internal | 1587 } } // namespace v8::internal |
| 1589 | 1588 |
| 1590 #endif // V8_ISOLATE_H_ | 1589 #endif // V8_ISOLATE_H_ |
| OLD | NEW |