| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 V(ExternalReferenceRedirectorPointer*, external_reference_redirector, \ | 397 V(ExternalReferenceRedirectorPointer*, external_reference_redirector, \ |
| 398 nullptr) \ | 398 nullptr) \ |
| 399 /* State for Relocatable. */ \ | 399 /* State for Relocatable. */ \ |
| 400 V(Relocatable*, relocatable_top, nullptr) \ | 400 V(Relocatable*, relocatable_top, nullptr) \ |
| 401 V(DebugObjectCache*, string_stream_debug_object_cache, nullptr) \ | 401 V(DebugObjectCache*, string_stream_debug_object_cache, nullptr) \ |
| 402 V(Object*, string_stream_current_security_token, nullptr) \ | 402 V(Object*, string_stream_current_security_token, nullptr) \ |
| 403 V(ExternalReferenceTable*, external_reference_table, nullptr) \ | 403 V(ExternalReferenceTable*, external_reference_table, nullptr) \ |
| 404 V(intptr_t*, api_external_references, nullptr) \ | 404 V(intptr_t*, api_external_references, nullptr) \ |
| 405 V(AddressToIndexHashMap*, external_reference_map, nullptr) \ | 405 V(AddressToIndexHashMap*, external_reference_map, nullptr) \ |
| 406 V(HeapObjectToIndexHashMap*, root_index_map, nullptr) \ | 406 V(HeapObjectToIndexHashMap*, root_index_map, nullptr) \ |
| 407 V(v8::DeserializeInternalFieldsCallback, \ | |
| 408 deserialize_internal_fields_callback, nullptr) \ | |
| 409 V(int, pending_microtask_count, 0) \ | 407 V(int, pending_microtask_count, 0) \ |
| 410 V(int, debug_microtask_count, kDebugPromiseFirstID) \ | 408 V(int, debug_microtask_count, kDebugPromiseFirstID) \ |
| 411 V(HStatistics*, hstatistics, nullptr) \ | 409 V(HStatistics*, hstatistics, nullptr) \ |
| 412 V(CompilationStatistics*, turbo_statistics, nullptr) \ | 410 V(CompilationStatistics*, turbo_statistics, nullptr) \ |
| 413 V(HTracer*, htracer, nullptr) \ | 411 V(HTracer*, htracer, nullptr) \ |
| 414 V(CodeTracer*, code_tracer, nullptr) \ | 412 V(CodeTracer*, code_tracer, nullptr) \ |
| 415 V(bool, fp_stubs_generated, false) \ | 413 V(bool, fp_stubs_generated, false) \ |
| 416 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ | 414 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ |
| 417 V(PromiseRejectCallback, promise_reject_callback, nullptr) \ | 415 V(PromiseRejectCallback, promise_reject_callback, nullptr) \ |
| 418 V(const v8::StartupData*, snapshot_blob, nullptr) \ | 416 V(const v8::StartupData*, snapshot_blob, nullptr) \ |
| (...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1697 | 1695 |
| 1698 EmbeddedVector<char, 128> filename_; | 1696 EmbeddedVector<char, 128> filename_; |
| 1699 FILE* file_; | 1697 FILE* file_; |
| 1700 int scope_depth_; | 1698 int scope_depth_; |
| 1701 }; | 1699 }; |
| 1702 | 1700 |
| 1703 } // namespace internal | 1701 } // namespace internal |
| 1704 } // namespace v8 | 1702 } // namespace v8 |
| 1705 | 1703 |
| 1706 #endif // V8_ISOLATE_H_ | 1704 #endif // V8_ISOLATE_H_ |
| OLD | NEW |