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

Side by Side Diff: src/isolate.h

Issue 1741893003: Introduce v8::MicrotasksScope. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: SetAutorunMicrotasks fix Created 4 years, 9 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/api.cc ('k') | src/isolate.cc » ('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 <queue> 8 #include <queue>
9 #include <set> 9 #include <set>
10 10
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 /* Part of the state of liveedit. */ \ 371 /* Part of the state of liveedit. */ \
372 V(FunctionInfoListener*, active_function_info_listener, NULL) \ 372 V(FunctionInfoListener*, active_function_info_listener, NULL) \
373 /* State for Relocatable. */ \ 373 /* State for Relocatable. */ \
374 V(Relocatable*, relocatable_top, NULL) \ 374 V(Relocatable*, relocatable_top, NULL) \
375 V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \ 375 V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \
376 V(Object*, string_stream_current_security_token, NULL) \ 376 V(Object*, string_stream_current_security_token, NULL) \
377 V(ExternalReferenceTable*, external_reference_table, NULL) \ 377 V(ExternalReferenceTable*, external_reference_table, NULL) \
378 V(HashMap*, external_reference_map, NULL) \ 378 V(HashMap*, external_reference_map, NULL) \
379 V(HashMap*, root_index_map, NULL) \ 379 V(HashMap*, root_index_map, NULL) \
380 V(int, pending_microtask_count, 0) \ 380 V(int, pending_microtask_count, 0) \
381 V(bool, autorun_microtasks, true) \
382 V(HStatistics*, hstatistics, NULL) \ 381 V(HStatistics*, hstatistics, NULL) \
383 V(CompilationStatistics*, turbo_statistics, NULL) \ 382 V(CompilationStatistics*, turbo_statistics, NULL) \
384 V(HTracer*, htracer, NULL) \ 383 V(HTracer*, htracer, NULL) \
385 V(CodeTracer*, code_tracer, NULL) \ 384 V(CodeTracer*, code_tracer, NULL) \
386 V(bool, fp_stubs_generated, false) \ 385 V(bool, fp_stubs_generated, false) \
387 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ 386 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \
388 V(PromiseRejectCallback, promise_reject_callback, NULL) \ 387 V(PromiseRejectCallback, promise_reject_callback, NULL) \
389 V(const v8::StartupData*, snapshot_blob, NULL) \ 388 V(const v8::StartupData*, snapshot_blob, NULL) \
390 ISOLATE_INIT_SIMULATOR_LIST(V) 389 ISOLATE_INIT_SIMULATOR_LIST(V)
391 390
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1574 1573
1575 EmbeddedVector<char, 128> filename_; 1574 EmbeddedVector<char, 128> filename_;
1576 FILE* file_; 1575 FILE* file_;
1577 int scope_depth_; 1576 int scope_depth_;
1578 }; 1577 };
1579 1578
1580 } // namespace internal 1579 } // namespace internal
1581 } // namespace v8 1580 } // namespace v8
1582 1581
1583 #endif // V8_ISOLATE_H_ 1582 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698