| 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 #include <set> | 10 #include <set> |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 V(ExternalReferenceRedirectorPointer*, external_reference_redirector, \ | 415 V(ExternalReferenceRedirectorPointer*, external_reference_redirector, \ |
| 416 nullptr) \ | 416 nullptr) \ |
| 417 /* State for Relocatable. */ \ | 417 /* State for Relocatable. */ \ |
| 418 V(Relocatable*, relocatable_top, nullptr) \ | 418 V(Relocatable*, relocatable_top, nullptr) \ |
| 419 V(DebugObjectCache*, string_stream_debug_object_cache, nullptr) \ | 419 V(DebugObjectCache*, string_stream_debug_object_cache, nullptr) \ |
| 420 V(Object*, string_stream_current_security_token, nullptr) \ | 420 V(Object*, string_stream_current_security_token, nullptr) \ |
| 421 V(ExternalReferenceTable*, external_reference_table, nullptr) \ | 421 V(ExternalReferenceTable*, external_reference_table, nullptr) \ |
| 422 V(intptr_t*, api_external_references, nullptr) \ | 422 V(intptr_t*, api_external_references, nullptr) \ |
| 423 V(base::HashMap*, external_reference_map, nullptr) \ | 423 V(base::HashMap*, external_reference_map, nullptr) \ |
| 424 V(base::HashMap*, root_index_map, nullptr) \ | 424 V(base::HashMap*, root_index_map, nullptr) \ |
| 425 V(int, pending_microtask_count, 0) \ | 425 V(int, pending_microtask_count, 1) \ |
| 426 V(HStatistics*, hstatistics, nullptr) \ | 426 V(HStatistics*, hstatistics, nullptr) \ |
| 427 V(CompilationStatistics*, turbo_statistics, nullptr) \ | 427 V(CompilationStatistics*, turbo_statistics, nullptr) \ |
| 428 V(HTracer*, htracer, nullptr) \ | 428 V(HTracer*, htracer, nullptr) \ |
| 429 V(CodeTracer*, code_tracer, nullptr) \ | 429 V(CodeTracer*, code_tracer, nullptr) \ |
| 430 V(bool, fp_stubs_generated, false) \ | 430 V(bool, fp_stubs_generated, false) \ |
| 431 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ | 431 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ |
| 432 V(PromiseRejectCallback, promise_reject_callback, nullptr) \ | 432 V(PromiseRejectCallback, promise_reject_callback, nullptr) \ |
| 433 V(const v8::StartupData*, snapshot_blob, nullptr) \ | 433 V(const v8::StartupData*, snapshot_blob, nullptr) \ |
| 434 V(int, code_and_metadata_size, 0) \ | 434 V(int, code_and_metadata_size, 0) \ |
| 435 V(int, bytecode_and_metadata_size, 0) \ | 435 V(int, bytecode_and_metadata_size, 0) \ |
| (...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1677 | 1677 |
| 1678 EmbeddedVector<char, 128> filename_; | 1678 EmbeddedVector<char, 128> filename_; |
| 1679 FILE* file_; | 1679 FILE* file_; |
| 1680 int scope_depth_; | 1680 int scope_depth_; |
| 1681 }; | 1681 }; |
| 1682 | 1682 |
| 1683 } // namespace internal | 1683 } // namespace internal |
| 1684 } // namespace v8 | 1684 } // namespace v8 |
| 1685 | 1685 |
| 1686 #endif // V8_ISOLATE_H_ | 1686 #endif // V8_ISOLATE_H_ |
| OLD | NEW |