Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: src/isolate.h

Issue 2619203002: [serializer] pass internal fields deserializer callback as argument. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/debug/debug.cc ('k') | src/snapshot/deserializer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/debug/debug.cc ('k') | src/snapshot/deserializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698