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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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, \ | 407 V(v8::DeserializeInternalFieldsCallback, \ |
408 deserialize_internal_fields_callback, nullptr) \ | 408 deserialize_internal_fields_callback, nullptr) \ |
409 V(int, pending_microtask_count, 0) \ | 409 V(int, pending_microtask_count, 0) \ |
410 V(int, debug_microtask_count, 0) \ | 410 V(int, debug_microtask_count, kDebugPromiseFirstID) \ |
411 V(HStatistics*, hstatistics, nullptr) \ | 411 V(HStatistics*, hstatistics, nullptr) \ |
412 V(CompilationStatistics*, turbo_statistics, nullptr) \ | 412 V(CompilationStatistics*, turbo_statistics, nullptr) \ |
413 V(HTracer*, htracer, nullptr) \ | 413 V(HTracer*, htracer, nullptr) \ |
414 V(CodeTracer*, code_tracer, nullptr) \ | 414 V(CodeTracer*, code_tracer, nullptr) \ |
415 V(bool, fp_stubs_generated, false) \ | 415 V(bool, fp_stubs_generated, false) \ |
416 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ | 416 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ |
417 V(PromiseRejectCallback, promise_reject_callback, nullptr) \ | 417 V(PromiseRejectCallback, promise_reject_callback, nullptr) \ |
418 V(const v8::StartupData*, snapshot_blob, nullptr) \ | 418 V(const v8::StartupData*, snapshot_blob, nullptr) \ |
419 V(int, code_and_metadata_size, 0) \ | 419 V(int, code_and_metadata_size, 0) \ |
420 V(int, bytecode_and_metadata_size, 0) \ | 420 V(int, bytecode_and_metadata_size, 0) \ |
(...skipping 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1697 | 1697 |
1698 EmbeddedVector<char, 128> filename_; | 1698 EmbeddedVector<char, 128> filename_; |
1699 FILE* file_; | 1699 FILE* file_; |
1700 int scope_depth_; | 1700 int scope_depth_; |
1701 }; | 1701 }; |
1702 | 1702 |
1703 } // namespace internal | 1703 } // namespace internal |
1704 } // namespace v8 | 1704 } // namespace v8 |
1705 | 1705 |
1706 #endif // V8_ISOLATE_H_ | 1706 #endif // V8_ISOLATE_H_ |
OLD | NEW |