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 <set> | 9 #include <set> |
10 | 10 |
(...skipping 1340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1351 friend class ThreadManager; | 1351 friend class ThreadManager; |
1352 friend class Simulator; | 1352 friend class Simulator; |
1353 friend class StackGuard; | 1353 friend class StackGuard; |
1354 friend class ThreadId; | 1354 friend class ThreadId; |
1355 friend class TestMemoryAllocatorScope; | 1355 friend class TestMemoryAllocatorScope; |
1356 friend class TestCodeRangeScope; | 1356 friend class TestCodeRangeScope; |
1357 friend class v8::Isolate; | 1357 friend class v8::Isolate; |
1358 friend class v8::Locker; | 1358 friend class v8::Locker; |
1359 friend class v8::Unlocker; | 1359 friend class v8::Unlocker; |
1360 friend v8::StartupData v8::V8::CreateSnapshotDataBlob(const char*); | 1360 friend v8::StartupData v8::V8::CreateSnapshotDataBlob(const char*); |
| 1361 friend v8::StartupData v8::V8::WarmUpSnapshotDataBlob(v8::StartupData, |
| 1362 const char*); |
1361 | 1363 |
1362 DISALLOW_COPY_AND_ASSIGN(Isolate); | 1364 DISALLOW_COPY_AND_ASSIGN(Isolate); |
1363 }; | 1365 }; |
1364 | 1366 |
1365 | 1367 |
1366 #undef FIELD_ACCESSOR | 1368 #undef FIELD_ACCESSOR |
1367 #undef THREAD_LOCAL_TOP_ACCESSOR | 1369 #undef THREAD_LOCAL_TOP_ACCESSOR |
1368 | 1370 |
1369 | 1371 |
1370 class PromiseOnStack { | 1372 class PromiseOnStack { |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1566 | 1568 |
1567 EmbeddedVector<char, 128> filename_; | 1569 EmbeddedVector<char, 128> filename_; |
1568 FILE* file_; | 1570 FILE* file_; |
1569 int scope_depth_; | 1571 int scope_depth_; |
1570 }; | 1572 }; |
1571 | 1573 |
1572 } // namespace internal | 1574 } // namespace internal |
1573 } // namespace v8 | 1575 } // namespace v8 |
1574 | 1576 |
1575 #endif // V8_ISOLATE_H_ | 1577 #endif // V8_ISOLATE_H_ |
OLD | NEW |