| 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 <memory> | 8 #include <memory> |
| 9 #include <queue> | 9 #include <queue> |
| 10 | 10 |
| (...skipping 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1462 | 1462 |
| 1463 v8::Isolate::AbortOnUncaughtExceptionCallback | 1463 v8::Isolate::AbortOnUncaughtExceptionCallback |
| 1464 abort_on_uncaught_exception_callback_; | 1464 abort_on_uncaught_exception_callback_; |
| 1465 | 1465 |
| 1466 #ifdef USE_SIMULATOR | 1466 #ifdef USE_SIMULATOR |
| 1467 base::Mutex simulator_i_cache_mutex_; | 1467 base::Mutex simulator_i_cache_mutex_; |
| 1468 #endif | 1468 #endif |
| 1469 | 1469 |
| 1470 friend class ExecutionAccess; | 1470 friend class ExecutionAccess; |
| 1471 friend class HandleScopeImplementer; | 1471 friend class HandleScopeImplementer; |
| 1472 friend class HeapTester; |
| 1472 friend class OptimizingCompileDispatcher; | 1473 friend class OptimizingCompileDispatcher; |
| 1473 friend class SweeperThread; | 1474 friend class SweeperThread; |
| 1474 friend class ThreadManager; | 1475 friend class ThreadManager; |
| 1475 friend class Simulator; | 1476 friend class Simulator; |
| 1476 friend class StackGuard; | 1477 friend class StackGuard; |
| 1477 friend class ThreadId; | 1478 friend class ThreadId; |
| 1478 friend class v8::Isolate; | 1479 friend class v8::Isolate; |
| 1479 friend class v8::Locker; | 1480 friend class v8::Locker; |
| 1480 friend class v8::Unlocker; | 1481 friend class v8::Unlocker; |
| 1481 friend class v8::SnapshotCreator; | 1482 friend class v8::SnapshotCreator; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1695 | 1696 |
| 1696 EmbeddedVector<char, 128> filename_; | 1697 EmbeddedVector<char, 128> filename_; |
| 1697 FILE* file_; | 1698 FILE* file_; |
| 1698 int scope_depth_; | 1699 int scope_depth_; |
| 1699 }; | 1700 }; |
| 1700 | 1701 |
| 1701 } // namespace internal | 1702 } // namespace internal |
| 1702 } // namespace v8 | 1703 } // namespace v8 |
| 1703 | 1704 |
| 1704 #endif // V8_ISOLATE_H_ | 1705 #endif // V8_ISOLATE_H_ |
| OLD | NEW |