From fb7b291886f98fce925dbeacaac8d58256787a2b Mon Sep 17 00:00:00 2001 From: Alexander Markov Date: Tue, 12 Jul 2022 19:30:12 +0000 Subject: [PATCH] [vm] Reduce number of callbacks used in sync* functions This change introduces separate stubs for suspending sync* functions at start and at yield/yield*. Suspend stub for yield/yield* no longer calls Dart callback (in order to make it faster). Also, ReturnSyncStar stub is removed - sync* functions now directly return false instead of going through the stub. TEST=ci Issue: https://github.com/dart-lang/sdk/issues/48378 Change-Id: Iee9a1f48cab2812cf0f9f0e4e6d8e847547e49f7 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/250420 Reviewed-by: Slava Egorov Reviewed-by: Martin Kustermann Commit-Queue: Alexander Markov --- runtime/vm/compiler/backend/il.cc | 11 +- runtime/vm/compiler/backend/il.h | 3 +- runtime/vm/compiler/backend/il_arm.cc | 3 +- runtime/vm/compiler/backend/il_arm64.cc | 3 +- runtime/vm/compiler/backend/il_ia32.cc | 3 +- runtime/vm/compiler/backend/il_printer.cc | 7 +- runtime/vm/compiler/backend/il_riscv.cc | 3 +- runtime/vm/compiler/backend/il_x64.cc | 3 +- .../frontend/kernel_binary_flowgraph.cc | 30 +- runtime/vm/compiler/runtime_api.h | 7 +- .../vm/compiler/runtime_offsets_extracted.h | 4530 ++++++++--------- runtime/vm/compiler/runtime_offsets_list.h | 7 +- runtime/vm/compiler/stub_code_compiler.cc | 55 +- runtime/vm/compiler/stub_code_compiler.h | 1 + runtime/vm/constants_arm.h | 5 +- runtime/vm/constants_arm64.h | 5 +- runtime/vm/constants_ia32.h | 5 +- runtime/vm/constants_riscv.h | 5 +- runtime/vm/constants_x64.h | 5 +- runtime/vm/object_store.cc | 13 +- runtime/vm/object_store.h | 13 +- runtime/vm/runtime_entry.cc | 7 + runtime/vm/stub_code_list.h | 4 +- runtime/vm/symbols.h | 1 + runtime/vm/thread.h | 5 +- sdk/lib/_internal/vm/lib/async_patch.dart | 25 +- 26 files changed, 2317 insertions(+), 2442 deletions(-) diff --git a/runtime/vm/compiler/backend/il.cc b/runtime/vm/compiler/backend/il.cc index 098bb2eafd1..b5f2e3e1a5d 100644 --- a/runtime/vm/compiler/backend/il.cc +++ b/runtime/vm/compiler/backend/il.cc @@ -6851,10 +6851,6 @@ const Code& ReturnInstr::GetReturnStub(FlowGraphCompiler* compiler) const { return Code::ZoneHandle( compiler->zone(), compiler->isolate_group()->object_store()->return_async_star_stub()); - } else if (function.IsSyncGenerator()) { - return Code::ZoneHandle( - compiler->zone(), - compiler->isolate_group()->object_store()->return_sync_star_stub()); } else { UNREACHABLE(); } @@ -7357,8 +7353,11 @@ void SuspendInstr::EmitNativeCode(FlowGraphCompiler* compiler) { case StubId::kYieldAsyncStar: stub = object_store->yield_async_star_stub(); break; - case StubId::kYieldSyncStar: - stub = object_store->yield_sync_star_stub(); + case StubId::kSuspendSyncStarAtStart: + stub = object_store->suspend_sync_star_at_start_stub(); + break; + case StubId::kSuspendSyncStarAtYield: + stub = object_store->suspend_sync_star_at_yield_stub(); break; } compiler->GenerateStubCall(source(), stub, UntaggedPcDescriptors::kOther, diff --git a/runtime/vm/compiler/backend/il.h b/runtime/vm/compiler/backend/il.h index da0b8002398..5506aec69ec 100644 --- a/runtime/vm/compiler/backend/il.h +++ b/runtime/vm/compiler/backend/il.h @@ -9620,7 +9620,8 @@ class SuspendInstr : public TemplateDefinition<1, Throws> { enum class StubId { kAwait, kYieldAsyncStar, - kYieldSyncStar, + kSuspendSyncStarAtStart, + kSuspendSyncStarAtYield, }; SuspendInstr(const InstructionSource& source, diff --git a/runtime/vm/compiler/backend/il_arm.cc b/runtime/vm/compiler/backend/il_arm.cc index cf6cff48678..ef4150c0de5 100644 --- a/runtime/vm/compiler/backend/il_arm.cc +++ b/runtime/vm/compiler/backend/il_arm.cc @@ -484,7 +484,8 @@ void ReturnInstr::EmitNativeCode(FlowGraphCompiler* compiler) { ASSERT(result == CallingConventions::kReturnFpuReg); } - if (compiler->parsed_function().function().IsSuspendableFunction()) { + if (compiler->parsed_function().function().IsAsyncFunction() || + compiler->parsed_function().function().IsAsyncGenerator()) { ASSERT(compiler->flow_graph().graph_entry()->NeedsFrame()); const Code& stub = GetReturnStub(compiler); compiler->EmitJumpToStub(stub); diff --git a/runtime/vm/compiler/backend/il_arm64.cc b/runtime/vm/compiler/backend/il_arm64.cc index 3854245c5e3..8dae4ff7780 100644 --- a/runtime/vm/compiler/backend/il_arm64.cc +++ b/runtime/vm/compiler/backend/il_arm64.cc @@ -421,7 +421,8 @@ void ReturnInstr::EmitNativeCode(FlowGraphCompiler* compiler) { ASSERT(result == CallingConventions::kReturnFpuReg); } - if (compiler->parsed_function().function().IsSuspendableFunction()) { + if (compiler->parsed_function().function().IsAsyncFunction() || + compiler->parsed_function().function().IsAsyncGenerator()) { ASSERT(compiler->flow_graph().graph_entry()->NeedsFrame()); const Code& stub = GetReturnStub(compiler); compiler->EmitJumpToStub(stub); diff --git a/runtime/vm/compiler/backend/il_ia32.cc b/runtime/vm/compiler/backend/il_ia32.cc index 85510fd4364..ee799ff0374 100644 --- a/runtime/vm/compiler/backend/il_ia32.cc +++ b/runtime/vm/compiler/backend/il_ia32.cc @@ -233,7 +233,8 @@ void ReturnInstr::EmitNativeCode(FlowGraphCompiler* compiler) { Register result = locs()->in(0).reg(); ASSERT(result == EAX); - if (compiler->parsed_function().function().IsSuspendableFunction()) { + if (compiler->parsed_function().function().IsAsyncFunction() || + compiler->parsed_function().function().IsAsyncGenerator()) { ASSERT(compiler->flow_graph().graph_entry()->NeedsFrame()); const Code& stub = GetReturnStub(compiler); compiler->EmitJumpToStub(stub); diff --git a/runtime/vm/compiler/backend/il_printer.cc b/runtime/vm/compiler/backend/il_printer.cc index 96b12f460a8..10f9fa5e8a8 100644 --- a/runtime/vm/compiler/backend/il_printer.cc +++ b/runtime/vm/compiler/backend/il_printer.cc @@ -1394,8 +1394,11 @@ void SuspendInstr::PrintOperandsTo(BaseTextBuffer* f) const { case StubId::kYieldAsyncStar: name = "YieldAsyncStar"; break; - case StubId::kYieldSyncStar: - name = "YieldSyncStar"; + case StubId::kSuspendSyncStarAtStart: + name = "SuspendSyncStarAtStart"; + break; + case StubId::kSuspendSyncStarAtYield: + name = "SuspendSyncStarAtYield"; break; } f->Printf("%s(", name); diff --git a/runtime/vm/compiler/backend/il_riscv.cc b/runtime/vm/compiler/backend/il_riscv.cc index 61ce32ce2d6..f53a8222954 100644 --- a/runtime/vm/compiler/backend/il_riscv.cc +++ b/runtime/vm/compiler/backend/il_riscv.cc @@ -496,7 +496,8 @@ void ReturnInstr::EmitNativeCode(FlowGraphCompiler* compiler) { ASSERT(result == CallingConventions::kReturnFpuReg); } - if (compiler->parsed_function().function().IsSuspendableFunction()) { + if (compiler->parsed_function().function().IsAsyncFunction() || + compiler->parsed_function().function().IsAsyncGenerator()) { ASSERT(compiler->flow_graph().graph_entry()->NeedsFrame()); const Code& stub = GetReturnStub(compiler); compiler->EmitJumpToStub(stub); diff --git a/runtime/vm/compiler/backend/il_x64.cc b/runtime/vm/compiler/backend/il_x64.cc index 2b350f8859b..eb536819728 100644 --- a/runtime/vm/compiler/backend/il_x64.cc +++ b/runtime/vm/compiler/backend/il_x64.cc @@ -338,7 +338,8 @@ void ReturnInstr::EmitNativeCode(FlowGraphCompiler* compiler) { ASSERT(result == CallingConventions::kReturnFpuReg); } - if (compiler->parsed_function().function().IsSuspendableFunction()) { + if (compiler->parsed_function().function().IsAsyncFunction() || + compiler->parsed_function().function().IsAsyncGenerator()) { ASSERT(compiler->flow_graph().graph_entry()->NeedsFrame()); const Code& stub = GetReturnStub(compiler); compiler->EmitJumpToStub(stub); diff --git a/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc b/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc index 0fe87f595cd..ef1b9a08585 100644 --- a/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc +++ b/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc @@ -608,7 +608,7 @@ Fragment StreamingFlowGraphBuilder::InitSuspendableFunction( body += Drop(); body += NullConstant(); body += B->Suspend(TokenPosition::kNoSource, - SuspendInstr::StubId::kYieldSyncStar); + SuspendInstr::StubId::kSuspendSyncStarAtStart); body += Drop(); // Clone context if there are any captured parameter variables, so // each invocation of .iterator would get its own copy of parameters. @@ -686,7 +686,12 @@ Fragment StreamingFlowGraphBuilder::BuildFunctionBody( } if (body.is_open()) { - body += NullConstant(); + if (parsed_function()->function().IsSyncGenerator()) { + // Return false from sync* function to indicate the end of iteration. + body += Constant(Bool::False()); + } else { + body += NullConstant(); + } body += Return(dart_function.end_token_pos()); } @@ -4908,9 +4913,19 @@ Fragment StreamingFlowGraphBuilder::BuildReturnStatement( bool inside_try_finally = try_finally_block() != nullptr; - Fragment instructions = tag == kNothing - ? NullConstant() - : BuildExpression(); // read rest of expression. + Fragment instructions; + if (parsed_function()->function().IsSyncGenerator()) { + // Return false from sync* function to indicate the end of iteration. + instructions += Constant(Bool::False()); + if (tag != kNothing) { + ASSERT(PeekTag() == kNullLiteral); + SkipExpression(); + } + } else { + instructions += + (tag == kNothing ? NullConstant() + : BuildExpression()); // read rest of expression. + } if (instructions.is_open()) { if (inside_try_finally) { @@ -5265,8 +5280,9 @@ Fragment StreamingFlowGraphBuilder::BuildYieldStatement( field = IG->object_store()->sync_star_iterator_current(); } instructions += B->StoreInstanceFieldGuarded(field); - instructions += NullConstant(); - instructions += B->Suspend(pos, SuspendInstr::StubId::kYieldSyncStar); + instructions += B->Constant(Bool::True()); + instructions += + B->Suspend(pos, SuspendInstr::StubId::kSuspendSyncStarAtYield); instructions += Drop(); } else { UNREACHABLE(); diff --git a/runtime/vm/compiler/runtime_api.h b/runtime/vm/compiler/runtime_api.h index fb828f0da59..0d77869d024 100644 --- a/runtime/vm/compiler/runtime_api.h +++ b/runtime/vm/compiler/runtime_api.h @@ -1212,7 +1212,6 @@ class Thread : public AllStatic { static word return_async_not_future_stub_offset(); static word return_async_star_stub_offset(); static word return_async_stub_offset(); - static word return_sync_star_stub_offset(); static word stack_overflow_shared_without_fpu_regs_entry_point_offset(); static word stack_overflow_shared_without_fpu_regs_stub_offset(); static word stack_overflow_shared_with_fpu_regs_entry_point_offset(); @@ -1262,8 +1261,7 @@ class Thread : public AllStatic { static word suspend_state_return_async_star_entry_point_offset(); static word suspend_state_init_sync_star_entry_point_offset(); - static word suspend_state_yield_sync_star_entry_point_offset(); - static word suspend_state_return_sync_star_entry_point_offset(); + static word suspend_state_suspend_sync_star_at_start_entry_point_offset(); static word suspend_state_handle_exception_entry_point_offset(); @@ -1300,9 +1298,8 @@ class ObjectStore : public AllStatic { static word suspend_state_return_async_offset(); static word suspend_state_return_async_not_future_offset(); static word suspend_state_return_async_star_offset(); - static word suspend_state_return_sync_star_offset(); + static word suspend_state_suspend_sync_star_at_start_offset(); static word suspend_state_yield_async_star_offset(); - static word suspend_state_yield_sync_star_offset(); }; class Isolate : public AllStatic { diff --git a/runtime/vm/compiler/runtime_offsets_extracted.h b/runtime/vm/compiler/runtime_offsets_extracted.h index fa105e6f1c0..fd7de86e24d 100644 --- a/runtime/vm/compiler/runtime_offsets_extracted.h +++ b/runtime/vm/compiler/runtime_offsets_extracted.h @@ -232,7 +232,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 492; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 528; + ObjectStore_suspend_state_handle_exception_offset = 524; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 488; static constexpr dart::compiler::target::word @@ -246,11 +246,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 512; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 524; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 520; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 508; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 520; static constexpr dart::compiler::target::word OneByteString_data_offset = 12; static constexpr dart::compiler::target::word PointerBase_data_offset = 4; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = 8; @@ -282,115 +280,115 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 12; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 20; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 404; + Thread_AllocateArray_entry_point_offset = 400; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 836; + 828; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 840; + 832; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 296; + Thread_array_write_barrier_entry_point_offset = 292; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 304; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 300; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 184; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 308; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 304; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 188; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 312; + Thread_allocate_object_entry_point_offset = 308; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 192; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 316; + Thread_allocate_object_parameterized_entry_point_offset = 312; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 196; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 320; + Thread_allocate_object_slow_entry_point_offset = 316; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 200; -static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 876; +static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 868; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 204; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 368; + Thread_auto_scope_native_wrapper_entry_point_offset = 364; static constexpr dart::compiler::target::word Thread_bool_false_offset = 120; static constexpr dart::compiler::target::word Thread_bool_true_offset = 116; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 360; + Thread_bootstrap_native_wrapper_entry_point_offset = 356; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 300; + Thread_call_to_runtime_entry_point_offset = 296; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 140; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 904; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 896; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 44; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 880; + Thread_double_truncate_round_supported_offset = 872; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 908; + Thread_service_extension_stream_offset = 900; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 340; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 252; + 336; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 248; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 344; + 340; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 256; + 252; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 384; + 380; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 380; + Thread_double_negate_address_offset = 376; static constexpr dart::compiler::target::word Thread_end_offset = 52; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 276; + Thread_enter_safepoint_stub_offset = 272; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 856; + 848; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 280; + Thread_exit_safepoint_stub_offset = 276; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 284; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 280; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 288; + Thread_call_native_through_safepoint_stub_offset = 284; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 348; + Thread_call_native_through_safepoint_entry_point_offset = 344; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 132; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 128; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 396; + Thread_float_absolute_address_offset = 392; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 392; + Thread_float_negate_address_offset = 388; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 388; + 384; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 400; + Thread_float_zerow_address_offset = 396; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 844; + 836; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 136; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 872; + 864; static constexpr dart::compiler::target::word Thread_isolate_offset = 40; -static constexpr dart::compiler::target::word Thread_isolate_group_offset = 912; +static constexpr dart::compiler::target::word Thread_isolate_group_offset = 904; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 64; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 260; + Thread_lazy_deopt_from_return_stub_offset = 256; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 264; + Thread_lazy_deopt_from_throw_stub_offset = 260; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 272; + Thread_lazy_specialize_type_test_stub_offset = 268; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 80; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 332; + Thread_megamorphic_call_checked_entry_offset = 328; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 336; + Thread_switchable_call_miss_entry_offset = 332; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 236; + Thread_switchable_call_miss_stub_offset = 232; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 364; + Thread_no_scope_native_wrapper_entry_point_offset = 360; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 148; static constexpr dart::compiler::target::word @@ -418,57 +416,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 220; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 212; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 224; static constexpr dart::compiler::target::word Thread_object_null_offset = 112; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 372; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 848; + Thread_predefined_symbols_address_offset = 368; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 840; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 852; + Thread_saved_shadow_call_stack_offset = 844; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 860; + 852; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 268; + Thread_slow_type_test_stub_offset = 264; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 356; + Thread_slow_type_test_entry_point_offset = 352; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 28; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 60; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 328; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 324; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 232; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 228; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 324; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 320; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 228; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 224; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 76; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 796; + Thread_suspend_state_await_entry_point_offset = 792; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 792; + Thread_suspend_state_init_async_entry_point_offset = 788; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 800; + Thread_suspend_state_return_async_entry_point_offset = 796; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 804; + Thread_suspend_state_return_async_not_future_entry_point_offset = 800; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 808; + Thread_suspend_state_init_async_star_entry_point_offset = 804; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 812; + Thread_suspend_state_yield_async_star_entry_point_offset = 808; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 816; + Thread_suspend_state_return_async_star_entry_point_offset = 812; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 820; + Thread_suspend_state_init_sync_star_entry_point_offset = 816; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 824; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 820; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 828; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 832; + Thread_suspend_state_handle_exception_entry_point_offset = 824; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 72; static constexpr dart::compiler::target::word Thread_top_offset = 48; @@ -479,17 +473,17 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 104; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 88; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 292; + Thread_write_barrier_entry_point_offset = 288; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 32; static constexpr dart::compiler::target::word Thread_heap_base_offset = 36; -static constexpr dart::compiler::target::word Thread_callback_code_offset = 864; +static constexpr dart::compiler::target::word Thread_callback_code_offset = 856; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 868; -static constexpr dart::compiler::target::word Thread_random_offset = 888; + Thread_callback_stack_return_offset = 860; +static constexpr dart::compiler::target::word Thread_random_offset = 880; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 352; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 896; + Thread_jump_to_frame_entry_point_offset = 348; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 888; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -582,7 +576,7 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 4, 12, 8, 16}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - 760, 764, 768, 772, 776, -1, 780, -1, 784, 788, -1, -1, -1, -1, -1, -1}; + 756, 760, 764, 768, 772, -1, 776, -1, 780, 784, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 12; static constexpr dart::compiler::target::word ApiError_InstanceSize = 8; static constexpr dart::compiler::target::word Array_header_size = 12; @@ -898,7 +892,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 1056; + ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -912,11 +906,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 1048; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word OneByteString_data_offset = 16; static constexpr dart::compiler::target::word PointerBase_data_offset = 8; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = @@ -949,117 +941,117 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 24; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 40; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 784; + Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 1672; + 1656; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 1680; + 1664; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 568; + Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 600; + Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 608; + Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 616; + Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word Thread_api_top_scope_offset = - 1752; + 1736; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 712; + Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 696; + Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 576; + Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 256; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1792; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1776; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 1760; + Thread_double_truncate_round_supported_offset = 1744; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 1800; + Thread_service_extension_stream_offset = 1784; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 656; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 480; + 648; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 472; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 664; + 656; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 488; + 480; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 744; + 736; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 736; + Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word Thread_end_offset = 104; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 528; + Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 1712; + 1696; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 536; + Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 552; + Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 672; + Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 768; + Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 760; + Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 752; + 744; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 776; + Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 1688; + 1672; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 1744; + 1728; static constexpr dart::compiler::target::word Thread_isolate_offset = 80; static constexpr dart::compiler::target::word Thread_isolate_group_offset = - 1808; + 1792; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 496; + Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 504; + Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 520; + Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 640; + Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 648; + Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 448; + Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 704; + Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -1087,57 +1079,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 720; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1696; + Thread_predefined_symbols_address_offset = 712; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1680; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 1704; + Thread_saved_shadow_call_stack_offset = 1688; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 1720; + 1704; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 512; + Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 688; + Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 112; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 1592; + Thread_suspend_state_await_entry_point_offset = 1584; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 1584; + Thread_suspend_state_init_async_entry_point_offset = 1576; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 1600; + Thread_suspend_state_return_async_entry_point_offset = 1592; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 1608; + Thread_suspend_state_return_async_not_future_entry_point_offset = 1600; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 1616; + Thread_suspend_state_init_async_star_entry_point_offset = 1608; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 1624; + Thread_suspend_state_yield_async_star_entry_point_offset = 1616; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 1632; + Thread_suspend_state_return_async_star_entry_point_offset = 1624; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 1640; + Thread_suspend_state_init_sync_star_entry_point_offset = 1632; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 1648; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 1640; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 1656; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 1664; + Thread_suspend_state_handle_exception_entry_point_offset = 1648; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word Thread_top_offset = 96; @@ -1148,18 +1136,18 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 560; + Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word Thread_callback_code_offset = - 1728; + 1712; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 1736; -static constexpr dart::compiler::target::word Thread_random_offset = 1768; + Thread_callback_stack_return_offset = 1720; +static constexpr dart::compiler::target::word Thread_random_offset = 1752; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 680; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1776; + Thread_jump_to_frame_entry_point_offset = 672; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1760; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -1254,8 +1242,8 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, -1, -1, 1528, 1536, - 1544, 1552, 1560, -1, 1568, 1576, -1, -1}; + 1488, 1496, 1504, 1512, -1, -1, 1520, 1528, + 1536, 1544, 1552, -1, 1560, 1568, -1, -1}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word ApiError_InstanceSize = 16; static constexpr dart::compiler::target::word Array_header_size = 24; @@ -1569,7 +1557,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 492; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 528; + ObjectStore_suspend_state_handle_exception_offset = 524; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 488; static constexpr dart::compiler::target::word @@ -1583,11 +1571,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 512; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 524; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 520; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 508; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 520; static constexpr dart::compiler::target::word OneByteString_data_offset = 12; static constexpr dart::compiler::target::word PointerBase_data_offset = 4; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = 8; @@ -1619,115 +1605,115 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 12; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 20; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 404; + Thread_AllocateArray_entry_point_offset = 400; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 804; + 796; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 808; + 800; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 296; + Thread_array_write_barrier_entry_point_offset = 292; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 304; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 300; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 184; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 308; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 304; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 188; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 312; + Thread_allocate_object_entry_point_offset = 308; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 192; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 316; + Thread_allocate_object_parameterized_entry_point_offset = 312; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 196; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 320; + Thread_allocate_object_slow_entry_point_offset = 316; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 200; -static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 844; +static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 836; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 204; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 368; + Thread_auto_scope_native_wrapper_entry_point_offset = 364; static constexpr dart::compiler::target::word Thread_bool_false_offset = 120; static constexpr dart::compiler::target::word Thread_bool_true_offset = 116; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 360; + Thread_bootstrap_native_wrapper_entry_point_offset = 356; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 300; + Thread_call_to_runtime_entry_point_offset = 296; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 140; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 872; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 864; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 44; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 848; + Thread_double_truncate_round_supported_offset = 840; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 876; + Thread_service_extension_stream_offset = 868; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 340; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 252; + 336; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 248; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 344; + 340; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 256; + 252; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 384; + 380; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 380; + Thread_double_negate_address_offset = 376; static constexpr dart::compiler::target::word Thread_end_offset = 52; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 276; + Thread_enter_safepoint_stub_offset = 272; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 824; + 816; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 280; + Thread_exit_safepoint_stub_offset = 276; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 284; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 280; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 288; + Thread_call_native_through_safepoint_stub_offset = 284; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 348; + Thread_call_native_through_safepoint_entry_point_offset = 344; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 132; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 128; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 396; + Thread_float_absolute_address_offset = 392; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 392; + Thread_float_negate_address_offset = 388; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 388; + 384; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 400; + Thread_float_zerow_address_offset = 396; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 812; + 804; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 136; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 840; + 832; static constexpr dart::compiler::target::word Thread_isolate_offset = 40; -static constexpr dart::compiler::target::word Thread_isolate_group_offset = 880; +static constexpr dart::compiler::target::word Thread_isolate_group_offset = 872; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 64; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 260; + Thread_lazy_deopt_from_return_stub_offset = 256; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 264; + Thread_lazy_deopt_from_throw_stub_offset = 260; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 272; + Thread_lazy_specialize_type_test_stub_offset = 268; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 80; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 332; + Thread_megamorphic_call_checked_entry_offset = 328; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 336; + Thread_switchable_call_miss_entry_offset = 332; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 236; + Thread_switchable_call_miss_stub_offset = 232; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 364; + Thread_no_scope_native_wrapper_entry_point_offset = 360; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 148; static constexpr dart::compiler::target::word @@ -1755,57 +1741,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 220; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 212; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 224; static constexpr dart::compiler::target::word Thread_object_null_offset = 112; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 372; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 816; + Thread_predefined_symbols_address_offset = 368; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 808; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 820; + Thread_saved_shadow_call_stack_offset = 812; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 828; + 820; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 268; + Thread_slow_type_test_stub_offset = 264; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 356; + Thread_slow_type_test_entry_point_offset = 352; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 28; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 60; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 328; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 324; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 232; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 228; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 324; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 320; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 228; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 224; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 76; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 764; + Thread_suspend_state_await_entry_point_offset = 760; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 760; + Thread_suspend_state_init_async_entry_point_offset = 756; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 768; + Thread_suspend_state_return_async_entry_point_offset = 764; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 772; + Thread_suspend_state_return_async_not_future_entry_point_offset = 768; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 776; + Thread_suspend_state_init_async_star_entry_point_offset = 772; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 780; + Thread_suspend_state_yield_async_star_entry_point_offset = 776; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 784; + Thread_suspend_state_return_async_star_entry_point_offset = 780; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 788; + Thread_suspend_state_init_sync_star_entry_point_offset = 784; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 792; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 788; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 796; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 800; + Thread_suspend_state_handle_exception_entry_point_offset = 792; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 72; static constexpr dart::compiler::target::word Thread_top_offset = 48; @@ -1816,17 +1798,17 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 104; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 88; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 292; + Thread_write_barrier_entry_point_offset = 288; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 32; static constexpr dart::compiler::target::word Thread_heap_base_offset = 36; -static constexpr dart::compiler::target::word Thread_callback_code_offset = 832; +static constexpr dart::compiler::target::word Thread_callback_code_offset = 824; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 836; -static constexpr dart::compiler::target::word Thread_random_offset = 856; + Thread_callback_stack_return_offset = 828; +static constexpr dart::compiler::target::word Thread_random_offset = 848; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 352; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 864; + Thread_jump_to_frame_entry_point_offset = 348; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 856; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -2232,7 +2214,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 1056; + ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -2246,11 +2228,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 1048; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word OneByteString_data_offset = 16; static constexpr dart::compiler::target::word PointerBase_data_offset = 8; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = @@ -2283,117 +2263,117 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 24; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 40; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 784; + Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 1736; + 1720; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 1744; + 1728; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 568; + Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 600; + Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 608; + Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 616; + Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word Thread_api_top_scope_offset = - 1816; + 1800; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 712; + Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 696; + Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 576; + Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 256; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1856; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1840; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 1824; + Thread_double_truncate_round_supported_offset = 1808; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 1864; + Thread_service_extension_stream_offset = 1848; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 656; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 480; + 648; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 472; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 664; + 656; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 488; + 480; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 744; + 736; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 736; + Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word Thread_end_offset = 104; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 528; + Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 1776; + 1760; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 536; + Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 552; + Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 672; + Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 768; + Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 760; + Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 752; + 744; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 776; + Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 1752; + 1736; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 1808; + 1792; static constexpr dart::compiler::target::word Thread_isolate_offset = 80; static constexpr dart::compiler::target::word Thread_isolate_group_offset = - 1872; + 1856; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 496; + Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 504; + Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 520; + Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 640; + Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 648; + Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 448; + Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 704; + Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -2421,57 +2401,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 720; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1760; + Thread_predefined_symbols_address_offset = 712; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1744; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 1768; + Thread_saved_shadow_call_stack_offset = 1752; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 1784; + 1768; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 512; + Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 688; + Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 112; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 1656; + Thread_suspend_state_await_entry_point_offset = 1648; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 1648; + Thread_suspend_state_init_async_entry_point_offset = 1640; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 1664; + Thread_suspend_state_return_async_entry_point_offset = 1656; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 1672; + Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 1680; + Thread_suspend_state_init_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 1688; + Thread_suspend_state_yield_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 1696; + Thread_suspend_state_return_async_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 1704; + Thread_suspend_state_init_sync_star_entry_point_offset = 1696; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 1712; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 1704; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 1720; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 1728; + Thread_suspend_state_handle_exception_entry_point_offset = 1712; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word Thread_top_offset = 96; @@ -2482,18 +2458,18 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 560; + Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word Thread_callback_code_offset = - 1792; + 1776; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 1800; -static constexpr dart::compiler::target::word Thread_random_offset = 1832; + Thread_callback_stack_return_offset = 1784; +static constexpr dart::compiler::target::word Thread_random_offset = 1816; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 680; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1840; + Thread_jump_to_frame_entry_point_offset = 672; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1824; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -2588,9 +2564,9 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, 1576, - 1584, 1592, 1600, 1608, -1, -1, -1, -1, 1616, 1624, -1, - -1, 1632, 1640, 1648, -1, -1, -1, -1, -1, -1}; + 1488, 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, + 1576, 1584, 1592, 1600, -1, -1, -1, -1, 1608, 1616, -1, + -1, 1624, 1632, 1640, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word ApiError_InstanceSize = 16; static constexpr dart::compiler::target::word Array_header_size = 24; @@ -2904,7 +2880,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 1056; + ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -2918,11 +2894,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 1048; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word OneByteString_data_offset = 16; static constexpr dart::compiler::target::word PointerBase_data_offset = 8; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = @@ -2955,117 +2929,117 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 24; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 36; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 784; + Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 1672; + 1656; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 1680; + 1664; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 568; + Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 600; + Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 608; + Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 616; + Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word Thread_api_top_scope_offset = - 1752; + 1736; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 712; + Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 696; + Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 576; + Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 256; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1792; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1776; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 1760; + Thread_double_truncate_round_supported_offset = 1744; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 1800; + Thread_service_extension_stream_offset = 1784; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 656; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 480; + 648; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 472; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 664; + 656; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 488; + 480; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 744; + 736; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 736; + Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word Thread_end_offset = 104; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 528; + Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 1712; + 1696; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 536; + Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 552; + Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 672; + Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 768; + Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 760; + Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 752; + 744; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 776; + Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 1688; + 1672; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 1744; + 1728; static constexpr dart::compiler::target::word Thread_isolate_offset = 80; static constexpr dart::compiler::target::word Thread_isolate_group_offset = - 1808; + 1792; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 496; + Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 504; + Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 520; + Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 640; + Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 648; + Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 448; + Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 704; + Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -3093,57 +3067,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 720; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1696; + Thread_predefined_symbols_address_offset = 712; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1680; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 1704; + Thread_saved_shadow_call_stack_offset = 1688; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 1720; + 1704; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 512; + Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 688; + Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 112; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 1592; + Thread_suspend_state_await_entry_point_offset = 1584; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 1584; + Thread_suspend_state_init_async_entry_point_offset = 1576; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 1600; + Thread_suspend_state_return_async_entry_point_offset = 1592; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 1608; + Thread_suspend_state_return_async_not_future_entry_point_offset = 1600; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 1616; + Thread_suspend_state_init_async_star_entry_point_offset = 1608; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 1624; + Thread_suspend_state_yield_async_star_entry_point_offset = 1616; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 1632; + Thread_suspend_state_return_async_star_entry_point_offset = 1624; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 1640; + Thread_suspend_state_init_sync_star_entry_point_offset = 1632; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 1648; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 1640; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 1656; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 1664; + Thread_suspend_state_handle_exception_entry_point_offset = 1648; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word Thread_top_offset = 96; @@ -3154,18 +3124,18 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 560; + Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word Thread_callback_code_offset = - 1728; + 1712; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 1736; -static constexpr dart::compiler::target::word Thread_random_offset = 1768; + Thread_callback_stack_return_offset = 1720; +static constexpr dart::compiler::target::word Thread_random_offset = 1752; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 680; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1776; + Thread_jump_to_frame_entry_point_offset = 672; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1760; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -3260,8 +3230,8 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, -1, -1, 1528, 1536, - 1544, 1552, 1560, -1, 1568, 1576, -1, -1}; + 1488, 1496, 1504, 1512, -1, -1, 1520, 1528, + 1536, 1544, 1552, -1, 1560, 1568, -1, -1}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word ApiError_InstanceSize = 16; static constexpr dart::compiler::target::word Array_header_size = 16; @@ -3575,7 +3545,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 1056; + ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -3589,11 +3559,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 1048; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word OneByteString_data_offset = 16; static constexpr dart::compiler::target::word PointerBase_data_offset = 8; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = @@ -3626,117 +3594,117 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 24; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 36; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 784; + Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 1736; + 1720; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 1744; + 1728; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 568; + Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 600; + Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 608; + Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 616; + Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word Thread_api_top_scope_offset = - 1816; + 1800; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 712; + Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 696; + Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 576; + Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 256; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1856; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1840; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 1824; + Thread_double_truncate_round_supported_offset = 1808; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 1864; + Thread_service_extension_stream_offset = 1848; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 656; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 480; + 648; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 472; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 664; + 656; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 488; + 480; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 744; + 736; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 736; + Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word Thread_end_offset = 104; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 528; + Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 1776; + 1760; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 536; + Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 552; + Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 672; + Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 768; + Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 760; + Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 752; + 744; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 776; + Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 1752; + 1736; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 1808; + 1792; static constexpr dart::compiler::target::word Thread_isolate_offset = 80; static constexpr dart::compiler::target::word Thread_isolate_group_offset = - 1872; + 1856; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 496; + Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 504; + Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 520; + Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 640; + Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 648; + Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 448; + Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 704; + Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -3764,57 +3732,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 720; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1760; + Thread_predefined_symbols_address_offset = 712; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1744; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 1768; + Thread_saved_shadow_call_stack_offset = 1752; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 1784; + 1768; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 512; + Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 688; + Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 112; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 1656; + Thread_suspend_state_await_entry_point_offset = 1648; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 1648; + Thread_suspend_state_init_async_entry_point_offset = 1640; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 1664; + Thread_suspend_state_return_async_entry_point_offset = 1656; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 1672; + Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 1680; + Thread_suspend_state_init_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 1688; + Thread_suspend_state_yield_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 1696; + Thread_suspend_state_return_async_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 1704; + Thread_suspend_state_init_sync_star_entry_point_offset = 1696; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 1712; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 1704; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 1720; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 1728; + Thread_suspend_state_handle_exception_entry_point_offset = 1712; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word Thread_top_offset = 96; @@ -3825,18 +3789,18 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 560; + Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word Thread_callback_code_offset = - 1792; + 1776; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 1800; -static constexpr dart::compiler::target::word Thread_random_offset = 1832; + Thread_callback_stack_return_offset = 1784; +static constexpr dart::compiler::target::word Thread_random_offset = 1816; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 680; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1840; + Thread_jump_to_frame_entry_point_offset = 672; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1824; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -3931,9 +3895,9 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, 1576, - 1584, 1592, 1600, 1608, -1, -1, -1, -1, 1616, 1624, -1, - -1, 1632, 1640, 1648, -1, -1, -1, -1, -1, -1}; + 1488, 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, + 1576, 1584, 1592, 1600, -1, -1, -1, -1, 1608, 1616, -1, + -1, 1624, 1632, 1640, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word ApiError_InstanceSize = 16; static constexpr dart::compiler::target::word Array_header_size = 16; @@ -4247,7 +4211,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 492; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 528; + ObjectStore_suspend_state_handle_exception_offset = 524; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 488; static constexpr dart::compiler::target::word @@ -4261,11 +4225,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 512; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 524; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 520; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 508; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 520; static constexpr dart::compiler::target::word OneByteString_data_offset = 12; static constexpr dart::compiler::target::word PointerBase_data_offset = 4; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = 8; @@ -4297,115 +4259,115 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 12; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 20; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 404; + Thread_AllocateArray_entry_point_offset = 400; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 876; + 868; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 880; + 872; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 296; + Thread_array_write_barrier_entry_point_offset = 292; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 304; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 300; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 184; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 308; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 304; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 188; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 312; + Thread_allocate_object_entry_point_offset = 308; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 192; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 316; + Thread_allocate_object_parameterized_entry_point_offset = 312; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 196; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 320; + Thread_allocate_object_slow_entry_point_offset = 316; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 200; -static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 916; +static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 908; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 204; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 368; + Thread_auto_scope_native_wrapper_entry_point_offset = 364; static constexpr dart::compiler::target::word Thread_bool_false_offset = 120; static constexpr dart::compiler::target::word Thread_bool_true_offset = 116; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 360; + Thread_bootstrap_native_wrapper_entry_point_offset = 356; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 300; + Thread_call_to_runtime_entry_point_offset = 296; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 140; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 944; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 936; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 44; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 920; + Thread_double_truncate_round_supported_offset = 912; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 948; + Thread_service_extension_stream_offset = 940; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 340; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 252; + 336; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 248; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 344; + 340; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 256; + 252; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 384; + 380; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 380; + Thread_double_negate_address_offset = 376; static constexpr dart::compiler::target::word Thread_end_offset = 52; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 276; + Thread_enter_safepoint_stub_offset = 272; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 896; + 888; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 280; + Thread_exit_safepoint_stub_offset = 276; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 284; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 280; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 288; + Thread_call_native_through_safepoint_stub_offset = 284; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 348; + Thread_call_native_through_safepoint_entry_point_offset = 344; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 132; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 128; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 396; + Thread_float_absolute_address_offset = 392; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 392; + Thread_float_negate_address_offset = 388; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 388; + 384; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 400; + Thread_float_zerow_address_offset = 396; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 884; + 876; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 136; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 912; + 904; static constexpr dart::compiler::target::word Thread_isolate_offset = 40; -static constexpr dart::compiler::target::word Thread_isolate_group_offset = 952; +static constexpr dart::compiler::target::word Thread_isolate_group_offset = 944; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 64; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 260; + Thread_lazy_deopt_from_return_stub_offset = 256; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 264; + Thread_lazy_deopt_from_throw_stub_offset = 260; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 272; + Thread_lazy_specialize_type_test_stub_offset = 268; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 80; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 332; + Thread_megamorphic_call_checked_entry_offset = 328; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 336; + Thread_switchable_call_miss_entry_offset = 332; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 236; + Thread_switchable_call_miss_stub_offset = 232; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 364; + Thread_no_scope_native_wrapper_entry_point_offset = 360; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 148; static constexpr dart::compiler::target::word @@ -4433,57 +4395,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 220; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 212; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 224; static constexpr dart::compiler::target::word Thread_object_null_offset = 112; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 372; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 888; + Thread_predefined_symbols_address_offset = 368; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 880; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 892; + Thread_saved_shadow_call_stack_offset = 884; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 900; + 892; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 268; + Thread_slow_type_test_stub_offset = 264; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 356; + Thread_slow_type_test_entry_point_offset = 352; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 28; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 60; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 328; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 324; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 232; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 228; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 324; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 320; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 228; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 224; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 76; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 836; + Thread_suspend_state_await_entry_point_offset = 832; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 832; + Thread_suspend_state_init_async_entry_point_offset = 828; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 840; + Thread_suspend_state_return_async_entry_point_offset = 836; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 844; + Thread_suspend_state_return_async_not_future_entry_point_offset = 840; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 848; + Thread_suspend_state_init_async_star_entry_point_offset = 844; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 852; + Thread_suspend_state_yield_async_star_entry_point_offset = 848; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 856; + Thread_suspend_state_return_async_star_entry_point_offset = 852; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 860; + Thread_suspend_state_init_sync_star_entry_point_offset = 856; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 864; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 860; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 868; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 872; + Thread_suspend_state_handle_exception_entry_point_offset = 864; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 72; static constexpr dart::compiler::target::word Thread_top_offset = 48; @@ -4494,17 +4452,17 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 104; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 88; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 292; + Thread_write_barrier_entry_point_offset = 288; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 32; static constexpr dart::compiler::target::word Thread_heap_base_offset = 36; -static constexpr dart::compiler::target::word Thread_callback_code_offset = 904; +static constexpr dart::compiler::target::word Thread_callback_code_offset = 896; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 908; -static constexpr dart::compiler::target::word Thread_random_offset = 928; + Thread_callback_stack_return_offset = 900; +static constexpr dart::compiler::target::word Thread_random_offset = 920; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 352; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 936; + Thread_jump_to_frame_entry_point_offset = 348; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 928; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -4597,9 +4555,9 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 4, 12, 8, 16}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - -1, -1, -1, -1, -1, 760, 764, 768, -1, -1, 772, - 776, 780, -1, -1, -1, 784, 788, 792, 796, 800, 804, - 808, 812, -1, -1, -1, -1, 816, 820, 824, 828}; + -1, -1, -1, -1, -1, 756, 760, 764, -1, -1, 768, + 772, 776, -1, -1, -1, 780, 784, 788, 792, 796, 800, + 804, 808, -1, -1, -1, -1, 812, 816, 820, 824}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 12; static constexpr dart::compiler::target::word ApiError_InstanceSize = 8; static constexpr dart::compiler::target::word Array_header_size = 12; @@ -4915,7 +4873,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 1056; + ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -4929,11 +4887,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 1048; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word OneByteString_data_offset = 16; static constexpr dart::compiler::target::word PointerBase_data_offset = 8; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = @@ -4966,117 +4922,117 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 24; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 40; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 784; + Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 1728; + 1712; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 1736; + 1720; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 568; + Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 600; + Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 608; + Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 616; + Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word Thread_api_top_scope_offset = - 1808; + 1792; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 712; + Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 696; + Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 576; + Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 256; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1848; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1832; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 1816; + Thread_double_truncate_round_supported_offset = 1800; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 1856; + Thread_service_extension_stream_offset = 1840; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 656; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 480; + 648; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 472; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 664; + 656; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 488; + 480; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 744; + 736; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 736; + Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word Thread_end_offset = 104; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 528; + Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 1768; + 1752; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 536; + Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 552; + Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 672; + Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 768; + Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 760; + Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 752; + 744; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 776; + Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 1744; + 1728; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 1800; + 1784; static constexpr dart::compiler::target::word Thread_isolate_offset = 80; static constexpr dart::compiler::target::word Thread_isolate_group_offset = - 1864; + 1848; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 496; + Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 504; + Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 520; + Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 640; + Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 648; + Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 448; + Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 704; + Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -5104,57 +5060,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 720; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1752; + Thread_predefined_symbols_address_offset = 712; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1736; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 1760; + Thread_saved_shadow_call_stack_offset = 1744; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 1776; + 1760; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 512; + Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 688; + Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 112; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 1648; + Thread_suspend_state_await_entry_point_offset = 1640; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 1640; + Thread_suspend_state_init_async_entry_point_offset = 1632; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 1656; + Thread_suspend_state_return_async_entry_point_offset = 1648; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; + Thread_suspend_state_return_async_not_future_entry_point_offset = 1656; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 1672; + Thread_suspend_state_init_async_star_entry_point_offset = 1664; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 1680; + Thread_suspend_state_yield_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 1688; + Thread_suspend_state_return_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 1696; + Thread_suspend_state_init_sync_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 1704; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 1696; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 1712; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 1720; + Thread_suspend_state_handle_exception_entry_point_offset = 1704; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word Thread_top_offset = 96; @@ -5165,18 +5117,18 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 560; + Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word Thread_callback_code_offset = - 1784; + 1768; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 1792; -static constexpr dart::compiler::target::word Thread_random_offset = 1824; + Thread_callback_stack_return_offset = 1776; +static constexpr dart::compiler::target::word Thread_random_offset = 1808; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 680; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1832; + Thread_jump_to_frame_entry_point_offset = 672; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1816; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -5271,9 +5223,9 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - -1, -1, -1, -1, -1, 1496, 1504, 1512, -1, -1, 1520, - 1528, 1536, -1, -1, -1, 1544, 1552, 1560, 1568, 1576, 1584, - 1592, 1600, -1, -1, -1, -1, 1608, 1616, 1624, 1632}; + -1, -1, -1, -1, -1, 1488, 1496, 1504, -1, -1, 1512, + 1520, 1528, -1, -1, -1, 1536, 1544, 1552, 1560, 1568, 1576, + 1584, 1592, -1, -1, -1, -1, 1600, 1608, 1616, 1624}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word ApiError_InstanceSize = 16; static constexpr dart::compiler::target::word Array_header_size = 24; @@ -5581,7 +5533,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 492; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 528; + ObjectStore_suspend_state_handle_exception_offset = 524; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 488; static constexpr dart::compiler::target::word @@ -5595,11 +5547,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 512; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 524; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 520; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 508; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 520; static constexpr dart::compiler::target::word OneByteString_data_offset = 12; static constexpr dart::compiler::target::word PointerBase_data_offset = 4; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = 8; @@ -5631,115 +5581,115 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 12; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 20; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 404; + Thread_AllocateArray_entry_point_offset = 400; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 836; + 828; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 840; + 832; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 296; + Thread_array_write_barrier_entry_point_offset = 292; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 304; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 300; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 184; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 308; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 304; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 188; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 312; + Thread_allocate_object_entry_point_offset = 308; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 192; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 316; + Thread_allocate_object_parameterized_entry_point_offset = 312; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 196; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 320; + Thread_allocate_object_slow_entry_point_offset = 316; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 200; -static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 876; +static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 868; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 204; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 368; + Thread_auto_scope_native_wrapper_entry_point_offset = 364; static constexpr dart::compiler::target::word Thread_bool_false_offset = 120; static constexpr dart::compiler::target::word Thread_bool_true_offset = 116; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 360; + Thread_bootstrap_native_wrapper_entry_point_offset = 356; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 300; + Thread_call_to_runtime_entry_point_offset = 296; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 140; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 904; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 896; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 44; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 880; + Thread_double_truncate_round_supported_offset = 872; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 908; + Thread_service_extension_stream_offset = 900; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 340; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 252; + 336; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 248; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 344; + 340; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 256; + 252; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 384; + 380; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 380; + Thread_double_negate_address_offset = 376; static constexpr dart::compiler::target::word Thread_end_offset = 52; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 276; + Thread_enter_safepoint_stub_offset = 272; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 856; + 848; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 280; + Thread_exit_safepoint_stub_offset = 276; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 284; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 280; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 288; + Thread_call_native_through_safepoint_stub_offset = 284; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 348; + Thread_call_native_through_safepoint_entry_point_offset = 344; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 132; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 128; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 396; + Thread_float_absolute_address_offset = 392; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 392; + Thread_float_negate_address_offset = 388; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 388; + 384; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 400; + Thread_float_zerow_address_offset = 396; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 844; + 836; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 136; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 872; + 864; static constexpr dart::compiler::target::word Thread_isolate_offset = 40; -static constexpr dart::compiler::target::word Thread_isolate_group_offset = 912; +static constexpr dart::compiler::target::word Thread_isolate_group_offset = 904; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 64; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 260; + Thread_lazy_deopt_from_return_stub_offset = 256; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 264; + Thread_lazy_deopt_from_throw_stub_offset = 260; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 272; + Thread_lazy_specialize_type_test_stub_offset = 268; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 80; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 332; + Thread_megamorphic_call_checked_entry_offset = 328; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 336; + Thread_switchable_call_miss_entry_offset = 332; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 236; + Thread_switchable_call_miss_stub_offset = 232; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 364; + Thread_no_scope_native_wrapper_entry_point_offset = 360; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 148; static constexpr dart::compiler::target::word @@ -5767,57 +5717,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 220; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 212; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 224; static constexpr dart::compiler::target::word Thread_object_null_offset = 112; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 372; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 848; + Thread_predefined_symbols_address_offset = 368; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 840; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 852; + Thread_saved_shadow_call_stack_offset = 844; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 860; + 852; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 268; + Thread_slow_type_test_stub_offset = 264; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 356; + Thread_slow_type_test_entry_point_offset = 352; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 28; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 60; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 328; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 324; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 232; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 228; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 324; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 320; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 228; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 224; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 76; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 796; + Thread_suspend_state_await_entry_point_offset = 792; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 792; + Thread_suspend_state_init_async_entry_point_offset = 788; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 800; + Thread_suspend_state_return_async_entry_point_offset = 796; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 804; + Thread_suspend_state_return_async_not_future_entry_point_offset = 800; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 808; + Thread_suspend_state_init_async_star_entry_point_offset = 804; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 812; + Thread_suspend_state_yield_async_star_entry_point_offset = 808; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 816; + Thread_suspend_state_return_async_star_entry_point_offset = 812; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 820; + Thread_suspend_state_init_sync_star_entry_point_offset = 816; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 824; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 820; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 828; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 832; + Thread_suspend_state_handle_exception_entry_point_offset = 824; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 72; static constexpr dart::compiler::target::word Thread_top_offset = 48; @@ -5828,17 +5774,17 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 104; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 88; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 292; + Thread_write_barrier_entry_point_offset = 288; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 32; static constexpr dart::compiler::target::word Thread_heap_base_offset = 36; -static constexpr dart::compiler::target::word Thread_callback_code_offset = 864; +static constexpr dart::compiler::target::word Thread_callback_code_offset = 856; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 868; -static constexpr dart::compiler::target::word Thread_random_offset = 888; + Thread_callback_stack_return_offset = 860; +static constexpr dart::compiler::target::word Thread_random_offset = 880; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 352; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 896; + Thread_jump_to_frame_entry_point_offset = 348; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 888; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -5931,7 +5877,7 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 4, 12, 8, 16}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - 760, 764, 768, 772, 776, -1, 780, -1, 784, 788, -1, -1, -1, -1, -1, -1}; + 756, 760, 764, 768, 772, -1, 776, -1, 780, 784, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 12; static constexpr dart::compiler::target::word ApiError_InstanceSize = 8; static constexpr dart::compiler::target::word Array_header_size = 12; @@ -6239,7 +6185,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 1056; + ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -6253,11 +6199,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 1048; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word OneByteString_data_offset = 16; static constexpr dart::compiler::target::word PointerBase_data_offset = 8; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = @@ -6290,117 +6234,117 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 24; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 40; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 784; + Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 1672; + 1656; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 1680; + 1664; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 568; + Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 600; + Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 608; + Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 616; + Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word Thread_api_top_scope_offset = - 1752; + 1736; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 712; + Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 696; + Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 576; + Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 256; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1792; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1776; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 1760; + Thread_double_truncate_round_supported_offset = 1744; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 1800; + Thread_service_extension_stream_offset = 1784; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 656; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 480; + 648; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 472; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 664; + 656; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 488; + 480; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 744; + 736; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 736; + Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word Thread_end_offset = 104; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 528; + Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 1712; + 1696; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 536; + Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 552; + Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 672; + Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 768; + Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 760; + Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 752; + 744; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 776; + Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 1688; + 1672; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 1744; + 1728; static constexpr dart::compiler::target::word Thread_isolate_offset = 80; static constexpr dart::compiler::target::word Thread_isolate_group_offset = - 1808; + 1792; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 496; + Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 504; + Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 520; + Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 640; + Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 648; + Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 448; + Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 704; + Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -6428,57 +6372,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 720; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1696; + Thread_predefined_symbols_address_offset = 712; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1680; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 1704; + Thread_saved_shadow_call_stack_offset = 1688; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 1720; + 1704; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 512; + Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 688; + Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 112; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 1592; + Thread_suspend_state_await_entry_point_offset = 1584; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 1584; + Thread_suspend_state_init_async_entry_point_offset = 1576; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 1600; + Thread_suspend_state_return_async_entry_point_offset = 1592; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 1608; + Thread_suspend_state_return_async_not_future_entry_point_offset = 1600; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 1616; + Thread_suspend_state_init_async_star_entry_point_offset = 1608; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 1624; + Thread_suspend_state_yield_async_star_entry_point_offset = 1616; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 1632; + Thread_suspend_state_return_async_star_entry_point_offset = 1624; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 1640; + Thread_suspend_state_init_sync_star_entry_point_offset = 1632; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 1648; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 1640; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 1656; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 1664; + Thread_suspend_state_handle_exception_entry_point_offset = 1648; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word Thread_top_offset = 96; @@ -6489,18 +6429,18 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 560; + Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word Thread_callback_code_offset = - 1728; + 1712; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 1736; -static constexpr dart::compiler::target::word Thread_random_offset = 1768; + Thread_callback_stack_return_offset = 1720; +static constexpr dart::compiler::target::word Thread_random_offset = 1752; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 680; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1776; + Thread_jump_to_frame_entry_point_offset = 672; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1760; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -6595,8 +6535,8 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, -1, -1, 1528, 1536, - 1544, 1552, 1560, -1, 1568, 1576, -1, -1}; + 1488, 1496, 1504, 1512, -1, -1, 1520, 1528, + 1536, 1544, 1552, -1, 1560, 1568, -1, -1}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word ApiError_InstanceSize = 16; static constexpr dart::compiler::target::word Array_header_size = 24; @@ -6902,7 +6842,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 492; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 528; + ObjectStore_suspend_state_handle_exception_offset = 524; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 488; static constexpr dart::compiler::target::word @@ -6916,11 +6856,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 512; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 524; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 520; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 508; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 520; static constexpr dart::compiler::target::word OneByteString_data_offset = 12; static constexpr dart::compiler::target::word PointerBase_data_offset = 4; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = 8; @@ -6952,115 +6890,115 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 12; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 20; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 404; + Thread_AllocateArray_entry_point_offset = 400; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 804; + 796; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 808; + 800; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 296; + Thread_array_write_barrier_entry_point_offset = 292; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 304; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 300; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 184; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 308; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 304; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 188; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 312; + Thread_allocate_object_entry_point_offset = 308; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 192; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 316; + Thread_allocate_object_parameterized_entry_point_offset = 312; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 196; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 320; + Thread_allocate_object_slow_entry_point_offset = 316; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 200; -static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 844; +static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 836; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 204; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 368; + Thread_auto_scope_native_wrapper_entry_point_offset = 364; static constexpr dart::compiler::target::word Thread_bool_false_offset = 120; static constexpr dart::compiler::target::word Thread_bool_true_offset = 116; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 360; + Thread_bootstrap_native_wrapper_entry_point_offset = 356; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 300; + Thread_call_to_runtime_entry_point_offset = 296; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 140; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 872; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 864; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 44; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 848; + Thread_double_truncate_round_supported_offset = 840; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 876; + Thread_service_extension_stream_offset = 868; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 340; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 252; + 336; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 248; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 344; + 340; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 256; + 252; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 384; + 380; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 380; + Thread_double_negate_address_offset = 376; static constexpr dart::compiler::target::word Thread_end_offset = 52; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 276; + Thread_enter_safepoint_stub_offset = 272; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 824; + 816; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 280; + Thread_exit_safepoint_stub_offset = 276; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 284; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 280; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 288; + Thread_call_native_through_safepoint_stub_offset = 284; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 348; + Thread_call_native_through_safepoint_entry_point_offset = 344; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 132; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 128; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 396; + Thread_float_absolute_address_offset = 392; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 392; + Thread_float_negate_address_offset = 388; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 388; + 384; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 400; + Thread_float_zerow_address_offset = 396; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 812; + 804; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 136; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 840; + 832; static constexpr dart::compiler::target::word Thread_isolate_offset = 40; -static constexpr dart::compiler::target::word Thread_isolate_group_offset = 880; +static constexpr dart::compiler::target::word Thread_isolate_group_offset = 872; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 64; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 260; + Thread_lazy_deopt_from_return_stub_offset = 256; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 264; + Thread_lazy_deopt_from_throw_stub_offset = 260; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 272; + Thread_lazy_specialize_type_test_stub_offset = 268; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 80; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 332; + Thread_megamorphic_call_checked_entry_offset = 328; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 336; + Thread_switchable_call_miss_entry_offset = 332; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 236; + Thread_switchable_call_miss_stub_offset = 232; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 364; + Thread_no_scope_native_wrapper_entry_point_offset = 360; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 148; static constexpr dart::compiler::target::word @@ -7088,57 +7026,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 220; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 212; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 224; static constexpr dart::compiler::target::word Thread_object_null_offset = 112; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 372; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 816; + Thread_predefined_symbols_address_offset = 368; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 808; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 820; + Thread_saved_shadow_call_stack_offset = 812; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 828; + 820; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 268; + Thread_slow_type_test_stub_offset = 264; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 356; + Thread_slow_type_test_entry_point_offset = 352; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 28; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 60; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 328; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 324; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 232; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 228; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 324; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 320; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 228; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 224; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 76; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 764; + Thread_suspend_state_await_entry_point_offset = 760; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 760; + Thread_suspend_state_init_async_entry_point_offset = 756; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 768; + Thread_suspend_state_return_async_entry_point_offset = 764; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 772; + Thread_suspend_state_return_async_not_future_entry_point_offset = 768; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 776; + Thread_suspend_state_init_async_star_entry_point_offset = 772; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 780; + Thread_suspend_state_yield_async_star_entry_point_offset = 776; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 784; + Thread_suspend_state_return_async_star_entry_point_offset = 780; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 788; + Thread_suspend_state_init_sync_star_entry_point_offset = 784; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 792; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 788; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 796; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 800; + Thread_suspend_state_handle_exception_entry_point_offset = 792; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 72; static constexpr dart::compiler::target::word Thread_top_offset = 48; @@ -7149,17 +7083,17 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 104; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 88; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 292; + Thread_write_barrier_entry_point_offset = 288; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 32; static constexpr dart::compiler::target::word Thread_heap_base_offset = 36; -static constexpr dart::compiler::target::word Thread_callback_code_offset = 832; +static constexpr dart::compiler::target::word Thread_callback_code_offset = 824; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 836; -static constexpr dart::compiler::target::word Thread_random_offset = 856; + Thread_callback_stack_return_offset = 828; +static constexpr dart::compiler::target::word Thread_random_offset = 848; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 352; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 864; + Thread_jump_to_frame_entry_point_offset = 348; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 856; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -7557,7 +7491,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 1056; + ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -7571,11 +7505,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 1048; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word OneByteString_data_offset = 16; static constexpr dart::compiler::target::word PointerBase_data_offset = 8; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = @@ -7608,117 +7540,117 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 24; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 40; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 784; + Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 1736; + 1720; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 1744; + 1728; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 568; + Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 600; + Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 608; + Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 616; + Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word Thread_api_top_scope_offset = - 1816; + 1800; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 712; + Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 696; + Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 576; + Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 256; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1856; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1840; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 1824; + Thread_double_truncate_round_supported_offset = 1808; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 1864; + Thread_service_extension_stream_offset = 1848; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 656; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 480; + 648; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 472; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 664; + 656; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 488; + 480; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 744; + 736; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 736; + Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word Thread_end_offset = 104; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 528; + Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 1776; + 1760; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 536; + Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 552; + Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 672; + Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 768; + Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 760; + Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 752; + 744; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 776; + Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 1752; + 1736; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 1808; + 1792; static constexpr dart::compiler::target::word Thread_isolate_offset = 80; static constexpr dart::compiler::target::word Thread_isolate_group_offset = - 1872; + 1856; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 496; + Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 504; + Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 520; + Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 640; + Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 648; + Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 448; + Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 704; + Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -7746,57 +7678,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 720; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1760; + Thread_predefined_symbols_address_offset = 712; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1744; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 1768; + Thread_saved_shadow_call_stack_offset = 1752; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 1784; + 1768; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 512; + Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 688; + Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 112; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 1656; + Thread_suspend_state_await_entry_point_offset = 1648; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 1648; + Thread_suspend_state_init_async_entry_point_offset = 1640; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 1664; + Thread_suspend_state_return_async_entry_point_offset = 1656; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 1672; + Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 1680; + Thread_suspend_state_init_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 1688; + Thread_suspend_state_yield_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 1696; + Thread_suspend_state_return_async_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 1704; + Thread_suspend_state_init_sync_star_entry_point_offset = 1696; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 1712; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 1704; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 1720; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 1728; + Thread_suspend_state_handle_exception_entry_point_offset = 1712; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word Thread_top_offset = 96; @@ -7807,18 +7735,18 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 560; + Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word Thread_callback_code_offset = - 1792; + 1776; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 1800; -static constexpr dart::compiler::target::word Thread_random_offset = 1832; + Thread_callback_stack_return_offset = 1784; +static constexpr dart::compiler::target::word Thread_random_offset = 1816; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 680; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1840; + Thread_jump_to_frame_entry_point_offset = 672; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1824; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -7913,9 +7841,9 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, 1576, - 1584, 1592, 1600, 1608, -1, -1, -1, -1, 1616, 1624, -1, - -1, 1632, 1640, 1648, -1, -1, -1, -1, -1, -1}; + 1488, 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, + 1576, 1584, 1592, 1600, -1, -1, -1, -1, 1608, 1616, -1, + -1, 1624, 1632, 1640, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word ApiError_InstanceSize = 16; static constexpr dart::compiler::target::word Array_header_size = 24; @@ -8221,7 +8149,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 1056; + ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -8235,11 +8163,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 1048; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word OneByteString_data_offset = 16; static constexpr dart::compiler::target::word PointerBase_data_offset = 8; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = @@ -8272,117 +8198,117 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 24; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 36; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 784; + Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 1672; + 1656; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 1680; + 1664; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 568; + Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 600; + Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 608; + Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 616; + Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word Thread_api_top_scope_offset = - 1752; + 1736; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 712; + Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 696; + Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 576; + Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 256; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1792; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1776; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 1760; + Thread_double_truncate_round_supported_offset = 1744; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 1800; + Thread_service_extension_stream_offset = 1784; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 656; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 480; + 648; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 472; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 664; + 656; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 488; + 480; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 744; + 736; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 736; + Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word Thread_end_offset = 104; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 528; + Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 1712; + 1696; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 536; + Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 552; + Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 672; + Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 768; + Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 760; + Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 752; + 744; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 776; + Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 1688; + 1672; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 1744; + 1728; static constexpr dart::compiler::target::word Thread_isolate_offset = 80; static constexpr dart::compiler::target::word Thread_isolate_group_offset = - 1808; + 1792; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 496; + Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 504; + Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 520; + Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 640; + Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 648; + Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 448; + Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 704; + Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -8410,57 +8336,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 720; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1696; + Thread_predefined_symbols_address_offset = 712; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1680; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 1704; + Thread_saved_shadow_call_stack_offset = 1688; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 1720; + 1704; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 512; + Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 688; + Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 112; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 1592; + Thread_suspend_state_await_entry_point_offset = 1584; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 1584; + Thread_suspend_state_init_async_entry_point_offset = 1576; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 1600; + Thread_suspend_state_return_async_entry_point_offset = 1592; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 1608; + Thread_suspend_state_return_async_not_future_entry_point_offset = 1600; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 1616; + Thread_suspend_state_init_async_star_entry_point_offset = 1608; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 1624; + Thread_suspend_state_yield_async_star_entry_point_offset = 1616; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 1632; + Thread_suspend_state_return_async_star_entry_point_offset = 1624; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 1640; + Thread_suspend_state_init_sync_star_entry_point_offset = 1632; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 1648; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 1640; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 1656; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 1664; + Thread_suspend_state_handle_exception_entry_point_offset = 1648; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word Thread_top_offset = 96; @@ -8471,18 +8393,18 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 560; + Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word Thread_callback_code_offset = - 1728; + 1712; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 1736; -static constexpr dart::compiler::target::word Thread_random_offset = 1768; + Thread_callback_stack_return_offset = 1720; +static constexpr dart::compiler::target::word Thread_random_offset = 1752; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 680; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1776; + Thread_jump_to_frame_entry_point_offset = 672; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1760; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -8577,8 +8499,8 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, -1, -1, 1528, 1536, - 1544, 1552, 1560, -1, 1568, 1576, -1, -1}; + 1488, 1496, 1504, 1512, -1, -1, 1520, 1528, + 1536, 1544, 1552, -1, 1560, 1568, -1, -1}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word ApiError_InstanceSize = 16; static constexpr dart::compiler::target::word Array_header_size = 16; @@ -8884,7 +8806,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 1056; + ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -8898,11 +8820,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 1048; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word OneByteString_data_offset = 16; static constexpr dart::compiler::target::word PointerBase_data_offset = 8; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = @@ -8935,117 +8855,117 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 24; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 36; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 784; + Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 1736; + 1720; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 1744; + 1728; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 568; + Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 600; + Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 608; + Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 616; + Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word Thread_api_top_scope_offset = - 1816; + 1800; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 712; + Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 696; + Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 576; + Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 256; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1856; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1840; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 1824; + Thread_double_truncate_round_supported_offset = 1808; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 1864; + Thread_service_extension_stream_offset = 1848; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 656; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 480; + 648; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 472; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 664; + 656; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 488; + 480; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 744; + 736; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 736; + Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word Thread_end_offset = 104; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 528; + Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 1776; + 1760; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 536; + Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 552; + Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 672; + Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 768; + Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 760; + Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 752; + 744; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 776; + Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 1752; + 1736; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 1808; + 1792; static constexpr dart::compiler::target::word Thread_isolate_offset = 80; static constexpr dart::compiler::target::word Thread_isolate_group_offset = - 1872; + 1856; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 496; + Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 504; + Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 520; + Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 640; + Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 648; + Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 448; + Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 704; + Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -9073,57 +8993,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 720; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1760; + Thread_predefined_symbols_address_offset = 712; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1744; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 1768; + Thread_saved_shadow_call_stack_offset = 1752; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 1784; + 1768; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 512; + Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 688; + Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 112; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 1656; + Thread_suspend_state_await_entry_point_offset = 1648; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 1648; + Thread_suspend_state_init_async_entry_point_offset = 1640; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 1664; + Thread_suspend_state_return_async_entry_point_offset = 1656; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 1672; + Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 1680; + Thread_suspend_state_init_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 1688; + Thread_suspend_state_yield_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 1696; + Thread_suspend_state_return_async_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 1704; + Thread_suspend_state_init_sync_star_entry_point_offset = 1696; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 1712; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 1704; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 1720; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 1728; + Thread_suspend_state_handle_exception_entry_point_offset = 1712; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word Thread_top_offset = 96; @@ -9134,18 +9050,18 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 560; + Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word Thread_callback_code_offset = - 1792; + 1776; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 1800; -static constexpr dart::compiler::target::word Thread_random_offset = 1832; + Thread_callback_stack_return_offset = 1784; +static constexpr dart::compiler::target::word Thread_random_offset = 1816; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 680; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1840; + Thread_jump_to_frame_entry_point_offset = 672; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1824; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -9240,9 +9156,9 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, 1576, - 1584, 1592, 1600, 1608, -1, -1, -1, -1, 1616, 1624, -1, - -1, 1632, 1640, 1648, -1, -1, -1, -1, -1, -1}; + 1488, 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, + 1576, 1584, 1592, 1600, -1, -1, -1, -1, 1608, 1616, -1, + -1, 1624, 1632, 1640, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word ApiError_InstanceSize = 16; static constexpr dart::compiler::target::word Array_header_size = 16; @@ -9548,7 +9464,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 492; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 528; + ObjectStore_suspend_state_handle_exception_offset = 524; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 488; static constexpr dart::compiler::target::word @@ -9562,11 +9478,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 512; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 524; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 520; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 508; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 520; static constexpr dart::compiler::target::word OneByteString_data_offset = 12; static constexpr dart::compiler::target::word PointerBase_data_offset = 4; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = 8; @@ -9598,115 +9512,115 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 12; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 20; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 404; + Thread_AllocateArray_entry_point_offset = 400; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 876; + 868; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 880; + 872; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 296; + Thread_array_write_barrier_entry_point_offset = 292; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 304; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 300; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 184; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 308; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 304; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 188; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 312; + Thread_allocate_object_entry_point_offset = 308; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 192; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 316; + Thread_allocate_object_parameterized_entry_point_offset = 312; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 196; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 320; + Thread_allocate_object_slow_entry_point_offset = 316; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 200; -static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 916; +static constexpr dart::compiler::target::word Thread_api_top_scope_offset = 908; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 204; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 368; + Thread_auto_scope_native_wrapper_entry_point_offset = 364; static constexpr dart::compiler::target::word Thread_bool_false_offset = 120; static constexpr dart::compiler::target::word Thread_bool_true_offset = 116; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 360; + Thread_bootstrap_native_wrapper_entry_point_offset = 356; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 300; + Thread_call_to_runtime_entry_point_offset = 296; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 140; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 944; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 936; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 44; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 920; + Thread_double_truncate_round_supported_offset = 912; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 948; + Thread_service_extension_stream_offset = 940; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 340; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 252; + 336; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 248; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 344; + 340; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 256; + 252; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 384; + 380; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 380; + Thread_double_negate_address_offset = 376; static constexpr dart::compiler::target::word Thread_end_offset = 52; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 276; + Thread_enter_safepoint_stub_offset = 272; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 896; + 888; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 280; + Thread_exit_safepoint_stub_offset = 276; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 284; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 280; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 288; + Thread_call_native_through_safepoint_stub_offset = 284; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 348; + Thread_call_native_through_safepoint_entry_point_offset = 344; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 132; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 128; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 396; + Thread_float_absolute_address_offset = 392; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 392; + Thread_float_negate_address_offset = 388; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 388; + 384; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 400; + Thread_float_zerow_address_offset = 396; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 884; + 876; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 136; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 912; + 904; static constexpr dart::compiler::target::word Thread_isolate_offset = 40; -static constexpr dart::compiler::target::word Thread_isolate_group_offset = 952; +static constexpr dart::compiler::target::word Thread_isolate_group_offset = 944; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 64; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 260; + Thread_lazy_deopt_from_return_stub_offset = 256; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 264; + Thread_lazy_deopt_from_throw_stub_offset = 260; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 272; + Thread_lazy_specialize_type_test_stub_offset = 268; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 80; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 332; + Thread_megamorphic_call_checked_entry_offset = 328; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 336; + Thread_switchable_call_miss_entry_offset = 332; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 236; + Thread_switchable_call_miss_stub_offset = 232; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 364; + Thread_no_scope_native_wrapper_entry_point_offset = 360; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 148; static constexpr dart::compiler::target::word @@ -9734,57 +9648,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 220; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 212; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 224; static constexpr dart::compiler::target::word Thread_object_null_offset = 112; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 372; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 888; + Thread_predefined_symbols_address_offset = 368; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 880; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 892; + Thread_saved_shadow_call_stack_offset = 884; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 900; + 892; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 268; + Thread_slow_type_test_stub_offset = 264; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 356; + Thread_slow_type_test_entry_point_offset = 352; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 28; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 60; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 328; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 324; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 232; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 228; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 324; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 320; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 228; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 224; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 76; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 836; + Thread_suspend_state_await_entry_point_offset = 832; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 832; + Thread_suspend_state_init_async_entry_point_offset = 828; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 840; + Thread_suspend_state_return_async_entry_point_offset = 836; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 844; + Thread_suspend_state_return_async_not_future_entry_point_offset = 840; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 848; + Thread_suspend_state_init_async_star_entry_point_offset = 844; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 852; + Thread_suspend_state_yield_async_star_entry_point_offset = 848; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 856; + Thread_suspend_state_return_async_star_entry_point_offset = 852; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 860; + Thread_suspend_state_init_sync_star_entry_point_offset = 856; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 864; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 860; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 868; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 872; + Thread_suspend_state_handle_exception_entry_point_offset = 864; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 72; static constexpr dart::compiler::target::word Thread_top_offset = 48; @@ -9795,17 +9705,17 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 104; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 88; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 292; + Thread_write_barrier_entry_point_offset = 288; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 32; static constexpr dart::compiler::target::word Thread_heap_base_offset = 36; -static constexpr dart::compiler::target::word Thread_callback_code_offset = 904; +static constexpr dart::compiler::target::word Thread_callback_code_offset = 896; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 908; -static constexpr dart::compiler::target::word Thread_random_offset = 928; + Thread_callback_stack_return_offset = 900; +static constexpr dart::compiler::target::word Thread_random_offset = 920; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 352; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 936; + Thread_jump_to_frame_entry_point_offset = 348; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 928; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -9898,9 +9808,9 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 4, 12, 8, 16}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - -1, -1, -1, -1, -1, 760, 764, 768, -1, -1, 772, - 776, 780, -1, -1, -1, 784, 788, 792, 796, 800, 804, - 808, 812, -1, -1, -1, -1, 816, 820, 824, 828}; + -1, -1, -1, -1, -1, 756, 760, 764, -1, -1, 768, + 772, 776, -1, -1, -1, 780, 784, 788, 792, 796, 800, + 804, 808, -1, -1, -1, -1, 812, 816, 820, 824}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 12; static constexpr dart::compiler::target::word ApiError_InstanceSize = 8; static constexpr dart::compiler::target::word Array_header_size = 12; @@ -10208,7 +10118,7 @@ static constexpr dart::compiler::target::word ObjectStore_type_type_offset = static constexpr dart::compiler::target::word ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_handle_exception_offset = 1056; + ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -10222,11 +10132,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - ObjectStore_suspend_state_return_sync_star_offset = 1048; + ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word OneByteString_data_offset = 16; static constexpr dart::compiler::target::word PointerBase_data_offset = 8; static constexpr dart::compiler::target::word Pointer_type_arguments_offset = @@ -10259,117 +10167,117 @@ static constexpr dart::compiler::target::word SuspendState_pc_offset = 24; static constexpr dart::compiler::target::word SuspendState_then_callback_offset = 40; static constexpr dart::compiler::target::word - Thread_AllocateArray_entry_point_offset = 784; + Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word Thread_active_exception_offset = - 1728; + 1712; static constexpr dart::compiler::target::word Thread_active_stacktrace_offset = - 1736; + 1720; static constexpr dart::compiler::target::word - Thread_array_write_barrier_entry_point_offset = 568; + Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - Thread_allocate_object_entry_point_offset = 600; + Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - Thread_allocate_object_parameterized_entry_point_offset = 608; + Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - Thread_allocate_object_slow_entry_point_offset = 616; + Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word Thread_api_top_scope_offset = - 1808; + 1792; static constexpr dart::compiler::target::word Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - Thread_auto_scope_native_wrapper_entry_point_offset = 712; + Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - Thread_bootstrap_native_wrapper_entry_point_offset = 696; + Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - Thread_call_to_runtime_entry_point_offset = 576; + Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word Thread_call_to_runtime_stub_offset = 256; -static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1848; +static constexpr dart::compiler::target::word Thread_dart_stream_offset = 1832; static constexpr dart::compiler::target::word Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - Thread_double_truncate_round_supported_offset = 1816; + Thread_double_truncate_round_supported_offset = 1800; static constexpr dart::compiler::target::word - Thread_service_extension_stream_offset = 1856; + Thread_service_extension_stream_offset = 1840; static constexpr dart::compiler::target::word Thread_optimize_entry_offset = - 656; -static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 480; + 648; +static constexpr dart::compiler::target::word Thread_optimize_stub_offset = 472; static constexpr dart::compiler::target::word Thread_deoptimize_entry_offset = - 664; + 656; static constexpr dart::compiler::target::word Thread_deoptimize_stub_offset = - 488; + 480; static constexpr dart::compiler::target::word Thread_double_abs_address_offset = - 744; + 736; static constexpr dart::compiler::target::word - Thread_double_negate_address_offset = 736; + Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word Thread_end_offset = 104; static constexpr dart::compiler::target::word - Thread_enter_safepoint_stub_offset = 528; + Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word Thread_execution_state_offset = - 1768; + 1752; static constexpr dart::compiler::target::word - Thread_exit_safepoint_stub_offset = 536; + Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_stub_offset = 552; + Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - Thread_call_native_through_safepoint_entry_point_offset = 672; + Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - Thread_float_absolute_address_offset = 768; + Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - Thread_float_negate_address_offset = 760; + Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word Thread_float_not_address_offset = - 752; + 744; static constexpr dart::compiler::target::word - Thread_float_zerow_address_offset = 776; + Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word Thread_global_object_pool_offset = - 1744; + 1728; static constexpr dart::compiler::target::word Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word Thread_exit_through_ffi_offset = - 1800; + 1784; static constexpr dart::compiler::target::word Thread_isolate_offset = 80; static constexpr dart::compiler::target::word Thread_isolate_group_offset = - 1864; + 1848; static constexpr dart::compiler::target::word Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_return_stub_offset = 496; + Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - Thread_lazy_deopt_from_throw_stub_offset = 504; + Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - Thread_lazy_specialize_type_test_stub_offset = 520; + Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - Thread_megamorphic_call_checked_entry_offset = 640; + Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_entry_offset = 648; + Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - Thread_switchable_call_miss_stub_offset = 448; + Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - Thread_no_scope_native_wrapper_entry_point_offset = 704; + Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -10397,57 +10305,53 @@ static constexpr dart::compiler::target::word Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - Thread_predefined_symbols_address_offset = 720; -static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1752; + Thread_predefined_symbols_address_offset = 712; +static constexpr dart::compiler::target::word Thread_resume_pc_offset = 1736; static constexpr dart::compiler::target::word - Thread_saved_shadow_call_stack_offset = 1760; + Thread_saved_shadow_call_stack_offset = 1744; static constexpr dart::compiler::target::word Thread_safepoint_state_offset = - 1776; + 1760; static constexpr dart::compiler::target::word - Thread_slow_type_test_stub_offset = 512; + Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - Thread_slow_type_test_entry_point_offset = 688; + Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word Thread_saved_stack_limit_offset = 112; static constexpr dart::compiler::target::word Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - Thread_suspend_state_await_entry_point_offset = 1648; + Thread_suspend_state_await_entry_point_offset = 1640; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_entry_point_offset = 1640; + Thread_suspend_state_init_async_entry_point_offset = 1632; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_entry_point_offset = 1656; + Thread_suspend_state_return_async_entry_point_offset = 1648; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; + Thread_suspend_state_return_async_not_future_entry_point_offset = 1656; static constexpr dart::compiler::target::word - Thread_suspend_state_init_async_star_entry_point_offset = 1672; + Thread_suspend_state_init_async_star_entry_point_offset = 1664; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_async_star_entry_point_offset = 1680; + Thread_suspend_state_yield_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - Thread_suspend_state_return_async_star_entry_point_offset = 1688; + Thread_suspend_state_return_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - Thread_suspend_state_init_sync_star_entry_point_offset = 1696; + Thread_suspend_state_init_sync_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - Thread_suspend_state_yield_sync_star_entry_point_offset = 1704; + Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = 1696; static constexpr dart::compiler::target::word - Thread_suspend_state_return_sync_star_entry_point_offset = 1712; -static constexpr dart::compiler::target::word - Thread_suspend_state_handle_exception_entry_point_offset = 1720; + Thread_suspend_state_handle_exception_entry_point_offset = 1704; static constexpr dart::compiler::target::word Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word Thread_top_offset = 96; @@ -10458,18 +10362,18 @@ static constexpr dart::compiler::target::word Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - Thread_write_barrier_entry_point_offset = 560; + Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word Thread_callback_code_offset = - 1784; + 1768; static constexpr dart::compiler::target::word - Thread_callback_stack_return_offset = 1792; -static constexpr dart::compiler::target::word Thread_random_offset = 1824; + Thread_callback_stack_return_offset = 1776; +static constexpr dart::compiler::target::word Thread_random_offset = 1808; static constexpr dart::compiler::target::word - Thread_jump_to_frame_entry_point_offset = 680; -static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1832; + Thread_jump_to_frame_entry_point_offset = 672; +static constexpr dart::compiler::target::word Thread_tsan_utils_offset = 1816; static constexpr dart::compiler::target::word TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word TsanUtils_setjmp_buffer_offset = @@ -10564,9 +10468,9 @@ static constexpr dart::compiler::target::word Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word Thread_write_barrier_wrappers_thread_offset[] = { - -1, -1, -1, -1, -1, 1496, 1504, 1512, -1, -1, 1520, - 1528, 1536, -1, -1, -1, 1544, 1552, 1560, 1568, 1576, 1584, - 1592, 1600, -1, -1, -1, -1, 1608, 1616, 1624, 1632}; + -1, -1, -1, -1, -1, 1488, 1496, 1504, -1, -1, 1512, + 1520, 1528, -1, -1, -1, 1536, 1544, 1552, 1560, 1568, 1576, + 1584, 1592, -1, -1, -1, -1, 1600, 1608, 1616, 1624}; static constexpr dart::compiler::target::word AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word ApiError_InstanceSize = 16; static constexpr dart::compiler::target::word Array_header_size = 24; @@ -10904,7 +10808,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 492; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 528; + AOT_ObjectStore_suspend_state_handle_exception_offset = 524; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 488; static constexpr dart::compiler::target::word @@ -10918,11 +10822,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 512; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 524; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 520; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 508; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 520; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 12; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 4; @@ -10959,120 +10861,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 8; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 16; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 404; + AOT_Thread_AllocateArray_entry_point_offset = 400; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 836; + AOT_Thread_active_exception_offset = 828; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 840; + AOT_Thread_active_stacktrace_offset = 832; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 296; + AOT_Thread_array_write_barrier_entry_point_offset = 292; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 304; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 300; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 184; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 308; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 304; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 188; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 312; + AOT_Thread_allocate_object_entry_point_offset = 308; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 192; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 316; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 312; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 196; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 320; + AOT_Thread_allocate_object_slow_entry_point_offset = 316; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 200; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 876; + 868; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 204; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 368; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 364; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 120; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 116; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 360; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 356; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 300; + AOT_Thread_call_to_runtime_entry_point_offset = 296; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 140; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 904; + 896; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 44; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 880; + AOT_Thread_double_truncate_round_supported_offset = 872; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 908; + AOT_Thread_service_extension_stream_offset = 900; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 340; + 336; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 252; + 248; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 344; + AOT_Thread_deoptimize_entry_offset = 340; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 256; + AOT_Thread_deoptimize_stub_offset = 252; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 384; + AOT_Thread_double_abs_address_offset = 380; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 380; + AOT_Thread_double_negate_address_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 52; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 276; + AOT_Thread_enter_safepoint_stub_offset = 272; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 856; + AOT_Thread_execution_state_offset = 848; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 280; + AOT_Thread_exit_safepoint_stub_offset = 276; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 284; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 280; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 288; + AOT_Thread_call_native_through_safepoint_stub_offset = 284; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 348; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 344; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 132; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 396; + AOT_Thread_float_absolute_address_offset = 392; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 392; + AOT_Thread_float_negate_address_offset = 388; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 388; + AOT_Thread_float_not_address_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 400; + AOT_Thread_float_zerow_address_offset = 396; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 844; + AOT_Thread_global_object_pool_offset = 836; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 136; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 872; + AOT_Thread_exit_through_ffi_offset = 864; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 40; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 912; + 904; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 64; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 260; + AOT_Thread_lazy_deopt_from_return_stub_offset = 256; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 264; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 260; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 272; + AOT_Thread_lazy_specialize_type_test_stub_offset = 268; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 80; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 332; + AOT_Thread_megamorphic_call_checked_entry_offset = 328; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 336; + AOT_Thread_switchable_call_miss_entry_offset = 332; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 236; + AOT_Thread_switchable_call_miss_stub_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 364; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 360; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 148; static constexpr dart::compiler::target::word @@ -11102,21 +11004,19 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 220; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 212; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 224; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 112; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 372; -static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = 848; + AOT_Thread_predefined_symbols_address_offset = 368; +static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = 840; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 852; + AOT_Thread_saved_shadow_call_stack_offset = 844; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 860; + AOT_Thread_safepoint_state_offset = 852; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 268; + AOT_Thread_slow_type_test_stub_offset = 264; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 356; + AOT_Thread_slow_type_test_entry_point_offset = 352; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 28; static constexpr dart::compiler::target::word @@ -11124,37 +11024,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 60; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 328; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 324; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 232; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 228; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 324; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 320; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 228; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 224; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 76; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 796; + AOT_Thread_suspend_state_await_entry_point_offset = 792; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 792; + AOT_Thread_suspend_state_init_async_entry_point_offset = 788; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 800; + AOT_Thread_suspend_state_return_async_entry_point_offset = 796; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 804; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 800; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 808; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 804; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 812; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 808; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 816; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 812; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 820; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 816; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 824; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 820; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 828; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 832; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 824; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 48; @@ -11166,19 +11065,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 104; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 292; + AOT_Thread_write_barrier_entry_point_offset = 288; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 32; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 36; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 864; + 856; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 868; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 888; + AOT_Thread_callback_stack_return_offset = 860; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 880; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 352; + AOT_Thread_jump_to_frame_entry_point_offset = 348; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 896; + 888; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -11291,7 +11190,7 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 4, 12, 8, 16}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - 760, 764, 768, 772, 776, -1, 780, -1, 784, 788, -1, -1, -1, -1, -1, -1}; + 756, 760, 764, 768, 772, -1, 776, -1, 780, 784, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 12; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 8; @@ -11643,7 +11542,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 1056; + AOT_ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -11657,11 +11556,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 1048; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 16; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 8; @@ -11698,120 +11595,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 16; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 32; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 784; + AOT_Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 1672; + AOT_Thread_active_exception_offset = 1656; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 1680; + AOT_Thread_active_stacktrace_offset = 1664; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 568; + AOT_Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 600; + AOT_Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 608; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 616; + AOT_Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 1752; + 1736; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 712; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 696; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 576; + AOT_Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 256; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 1792; + 1776; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 1760; + AOT_Thread_double_truncate_round_supported_offset = 1744; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 1800; + AOT_Thread_service_extension_stream_offset = 1784; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 656; + 648; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 480; + 472; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 664; + AOT_Thread_deoptimize_entry_offset = 656; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 488; + AOT_Thread_deoptimize_stub_offset = 480; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 744; + AOT_Thread_double_abs_address_offset = 736; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 736; + AOT_Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 104; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 528; + AOT_Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 1712; + AOT_Thread_execution_state_offset = 1696; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 536; + AOT_Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 552; + AOT_Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 672; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 768; + AOT_Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 760; + AOT_Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 752; + AOT_Thread_float_not_address_offset = 744; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 776; + AOT_Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 1688; + AOT_Thread_global_object_pool_offset = 1672; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 1744; + AOT_Thread_exit_through_ffi_offset = 1728; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 80; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 1808; + 1792; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 496; + AOT_Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 504; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 520; + AOT_Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 640; + AOT_Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 648; + AOT_Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 448; + AOT_Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 704; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -11841,22 +11738,20 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 720; + AOT_Thread_predefined_symbols_address_offset = 712; static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = - 1696; + 1680; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 1704; + AOT_Thread_saved_shadow_call_stack_offset = 1688; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 1720; + AOT_Thread_safepoint_state_offset = 1704; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 512; + AOT_Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 688; + AOT_Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word @@ -11864,37 +11759,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 1592; + AOT_Thread_suspend_state_await_entry_point_offset = 1584; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 1584; + AOT_Thread_suspend_state_init_async_entry_point_offset = 1576; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 1600; + AOT_Thread_suspend_state_return_async_entry_point_offset = 1592; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1608; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1600; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1616; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1608; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1624; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1616; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1632; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1624; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1640; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1632; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 1648; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 1640; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 1656; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1664; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1648; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 96; @@ -11906,19 +11800,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 560; + AOT_Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 1728; + 1712; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 1736; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1768; + AOT_Thread_callback_stack_return_offset = 1720; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1752; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 680; + AOT_Thread_jump_to_frame_entry_point_offset = 672; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 1776; + 1760; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -12032,8 +11926,8 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, -1, -1, 1528, 1536, - 1544, 1552, 1560, -1, 1568, 1576, -1, -1}; + 1488, 1496, 1504, 1512, -1, -1, 1520, 1528, + 1536, 1544, 1552, -1, 1560, 1568, -1, -1}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 16; @@ -12388,7 +12282,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 1056; + AOT_ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -12402,11 +12296,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 1048; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 16; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 8; @@ -12443,120 +12335,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 16; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 32; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 784; + AOT_Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 1736; + AOT_Thread_active_exception_offset = 1720; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 1744; + AOT_Thread_active_stacktrace_offset = 1728; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 568; + AOT_Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 600; + AOT_Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 608; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 616; + AOT_Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 1816; + 1800; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 712; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 696; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 576; + AOT_Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 256; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 1856; + 1840; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 1824; + AOT_Thread_double_truncate_round_supported_offset = 1808; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 1864; + AOT_Thread_service_extension_stream_offset = 1848; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 656; + 648; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 480; + 472; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 664; + AOT_Thread_deoptimize_entry_offset = 656; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 488; + AOT_Thread_deoptimize_stub_offset = 480; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 744; + AOT_Thread_double_abs_address_offset = 736; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 736; + AOT_Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 104; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 528; + AOT_Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 1776; + AOT_Thread_execution_state_offset = 1760; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 536; + AOT_Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 552; + AOT_Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 672; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 768; + AOT_Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 760; + AOT_Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 752; + AOT_Thread_float_not_address_offset = 744; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 776; + AOT_Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 1752; + AOT_Thread_global_object_pool_offset = 1736; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 1808; + AOT_Thread_exit_through_ffi_offset = 1792; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 80; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 1872; + 1856; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 496; + AOT_Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 504; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 520; + AOT_Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 640; + AOT_Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 648; + AOT_Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 448; + AOT_Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 704; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -12586,22 +12478,20 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 720; + AOT_Thread_predefined_symbols_address_offset = 712; static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = - 1760; + 1744; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 1768; + AOT_Thread_saved_shadow_call_stack_offset = 1752; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 1784; + AOT_Thread_safepoint_state_offset = 1768; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 512; + AOT_Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 688; + AOT_Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word @@ -12609,37 +12499,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 1656; + AOT_Thread_suspend_state_await_entry_point_offset = 1648; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 1648; + AOT_Thread_suspend_state_init_async_entry_point_offset = 1640; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 1664; + AOT_Thread_suspend_state_return_async_entry_point_offset = 1656; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1672; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1680; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1688; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1696; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1704; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1696; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 1712; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 1704; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 1720; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1728; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1712; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 96; @@ -12651,19 +12540,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 560; + AOT_Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 1792; + 1776; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 1800; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1832; + AOT_Thread_callback_stack_return_offset = 1784; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1816; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 680; + AOT_Thread_jump_to_frame_entry_point_offset = 672; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 1840; + 1824; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -12777,9 +12666,9 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, 1576, - 1584, 1592, 1600, 1608, -1, -1, -1, -1, 1616, 1624, -1, - -1, 1632, 1640, 1648, -1, -1, -1, -1, -1, -1}; + 1488, 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, + 1576, 1584, 1592, 1600, -1, -1, -1, -1, 1608, 1616, -1, + -1, 1624, 1632, 1640, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 16; @@ -13130,7 +13019,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 1056; + AOT_ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -13144,11 +13033,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 1048; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 16; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 8; @@ -13185,120 +13072,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 16; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 28; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 784; + AOT_Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 1672; + AOT_Thread_active_exception_offset = 1656; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 1680; + AOT_Thread_active_stacktrace_offset = 1664; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 568; + AOT_Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 600; + AOT_Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 608; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 616; + AOT_Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 1752; + 1736; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 712; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 696; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 576; + AOT_Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 256; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 1792; + 1776; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 1760; + AOT_Thread_double_truncate_round_supported_offset = 1744; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 1800; + AOT_Thread_service_extension_stream_offset = 1784; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 656; + 648; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 480; + 472; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 664; + AOT_Thread_deoptimize_entry_offset = 656; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 488; + AOT_Thread_deoptimize_stub_offset = 480; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 744; + AOT_Thread_double_abs_address_offset = 736; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 736; + AOT_Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 104; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 528; + AOT_Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 1712; + AOT_Thread_execution_state_offset = 1696; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 536; + AOT_Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 552; + AOT_Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 672; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 768; + AOT_Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 760; + AOT_Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 752; + AOT_Thread_float_not_address_offset = 744; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 776; + AOT_Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 1688; + AOT_Thread_global_object_pool_offset = 1672; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 1744; + AOT_Thread_exit_through_ffi_offset = 1728; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 80; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 1808; + 1792; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 496; + AOT_Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 504; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 520; + AOT_Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 640; + AOT_Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 648; + AOT_Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 448; + AOT_Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 704; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -13328,22 +13215,20 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 720; + AOT_Thread_predefined_symbols_address_offset = 712; static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = - 1696; + 1680; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 1704; + AOT_Thread_saved_shadow_call_stack_offset = 1688; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 1720; + AOT_Thread_safepoint_state_offset = 1704; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 512; + AOT_Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 688; + AOT_Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word @@ -13351,37 +13236,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 1592; + AOT_Thread_suspend_state_await_entry_point_offset = 1584; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 1584; + AOT_Thread_suspend_state_init_async_entry_point_offset = 1576; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 1600; + AOT_Thread_suspend_state_return_async_entry_point_offset = 1592; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1608; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1600; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1616; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1608; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1624; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1616; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1632; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1624; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1640; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1632; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 1648; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 1640; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 1656; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1664; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1648; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 96; @@ -13393,19 +13277,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 560; + AOT_Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 1728; + 1712; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 1736; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1768; + AOT_Thread_callback_stack_return_offset = 1720; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1752; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 680; + AOT_Thread_jump_to_frame_entry_point_offset = 672; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 1776; + 1760; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -13519,8 +13403,8 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, -1, -1, 1528, 1536, - 1544, 1552, 1560, -1, 1568, 1576, -1, -1}; + 1488, 1496, 1504, 1512, -1, -1, 1520, 1528, + 1536, 1544, 1552, -1, 1560, 1568, -1, -1}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 16; @@ -13871,7 +13755,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 1056; + AOT_ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -13885,11 +13769,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 1048; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 16; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 8; @@ -13926,120 +13808,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 16; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 28; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 784; + AOT_Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 1736; + AOT_Thread_active_exception_offset = 1720; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 1744; + AOT_Thread_active_stacktrace_offset = 1728; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 568; + AOT_Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 600; + AOT_Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 608; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 616; + AOT_Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 1816; + 1800; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 712; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 696; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 576; + AOT_Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 256; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 1856; + 1840; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 1824; + AOT_Thread_double_truncate_round_supported_offset = 1808; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 1864; + AOT_Thread_service_extension_stream_offset = 1848; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 656; + 648; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 480; + 472; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 664; + AOT_Thread_deoptimize_entry_offset = 656; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 488; + AOT_Thread_deoptimize_stub_offset = 480; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 744; + AOT_Thread_double_abs_address_offset = 736; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 736; + AOT_Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 104; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 528; + AOT_Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 1776; + AOT_Thread_execution_state_offset = 1760; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 536; + AOT_Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 552; + AOT_Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 672; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 768; + AOT_Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 760; + AOT_Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 752; + AOT_Thread_float_not_address_offset = 744; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 776; + AOT_Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 1752; + AOT_Thread_global_object_pool_offset = 1736; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 1808; + AOT_Thread_exit_through_ffi_offset = 1792; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 80; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 1872; + 1856; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 496; + AOT_Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 504; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 520; + AOT_Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 640; + AOT_Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 648; + AOT_Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 448; + AOT_Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 704; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -14069,22 +13951,20 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 720; + AOT_Thread_predefined_symbols_address_offset = 712; static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = - 1760; + 1744; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 1768; + AOT_Thread_saved_shadow_call_stack_offset = 1752; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 1784; + AOT_Thread_safepoint_state_offset = 1768; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 512; + AOT_Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 688; + AOT_Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word @@ -14092,37 +13972,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 1656; + AOT_Thread_suspend_state_await_entry_point_offset = 1648; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 1648; + AOT_Thread_suspend_state_init_async_entry_point_offset = 1640; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 1664; + AOT_Thread_suspend_state_return_async_entry_point_offset = 1656; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1672; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1680; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1688; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1696; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1704; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1696; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 1712; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 1704; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 1720; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1728; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1712; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 96; @@ -14134,19 +14013,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 560; + AOT_Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 1792; + 1776; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 1800; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1832; + AOT_Thread_callback_stack_return_offset = 1784; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1816; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 680; + AOT_Thread_jump_to_frame_entry_point_offset = 672; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 1840; + 1824; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -14260,9 +14139,9 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, 1576, - 1584, 1592, 1600, 1608, -1, -1, -1, -1, 1616, 1624, -1, - -1, 1632, 1640, 1648, -1, -1, -1, -1, -1, -1}; + 1488, 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, + 1576, 1584, 1592, 1600, -1, -1, -1, -1, 1608, 1616, -1, + -1, 1624, 1632, 1640, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 16; @@ -14613,7 +14492,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 492; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 528; + AOT_ObjectStore_suspend_state_handle_exception_offset = 524; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 488; static constexpr dart::compiler::target::word @@ -14627,11 +14506,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 512; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 524; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 520; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 508; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 520; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 12; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 4; @@ -14668,120 +14545,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 8; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 16; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 404; + AOT_Thread_AllocateArray_entry_point_offset = 400; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 876; + AOT_Thread_active_exception_offset = 868; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 880; + AOT_Thread_active_stacktrace_offset = 872; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 296; + AOT_Thread_array_write_barrier_entry_point_offset = 292; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 304; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 300; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 184; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 308; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 304; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 188; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 312; + AOT_Thread_allocate_object_entry_point_offset = 308; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 192; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 316; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 312; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 196; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 320; + AOT_Thread_allocate_object_slow_entry_point_offset = 316; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 200; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 916; + 908; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 204; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 368; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 364; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 120; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 116; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 360; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 356; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 300; + AOT_Thread_call_to_runtime_entry_point_offset = 296; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 140; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 944; + 936; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 44; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 920; + AOT_Thread_double_truncate_round_supported_offset = 912; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 948; + AOT_Thread_service_extension_stream_offset = 940; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 340; + 336; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 252; + 248; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 344; + AOT_Thread_deoptimize_entry_offset = 340; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 256; + AOT_Thread_deoptimize_stub_offset = 252; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 384; + AOT_Thread_double_abs_address_offset = 380; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 380; + AOT_Thread_double_negate_address_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 52; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 276; + AOT_Thread_enter_safepoint_stub_offset = 272; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 896; + AOT_Thread_execution_state_offset = 888; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 280; + AOT_Thread_exit_safepoint_stub_offset = 276; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 284; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 280; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 288; + AOT_Thread_call_native_through_safepoint_stub_offset = 284; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 348; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 344; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 132; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 396; + AOT_Thread_float_absolute_address_offset = 392; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 392; + AOT_Thread_float_negate_address_offset = 388; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 388; + AOT_Thread_float_not_address_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 400; + AOT_Thread_float_zerow_address_offset = 396; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 884; + AOT_Thread_global_object_pool_offset = 876; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 136; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 912; + AOT_Thread_exit_through_ffi_offset = 904; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 40; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 952; + 944; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 64; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 260; + AOT_Thread_lazy_deopt_from_return_stub_offset = 256; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 264; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 260; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 272; + AOT_Thread_lazy_specialize_type_test_stub_offset = 268; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 80; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 332; + AOT_Thread_megamorphic_call_checked_entry_offset = 328; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 336; + AOT_Thread_switchable_call_miss_entry_offset = 332; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 236; + AOT_Thread_switchable_call_miss_stub_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 364; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 360; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 148; static constexpr dart::compiler::target::word @@ -14811,21 +14688,19 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 220; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 212; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 224; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 112; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 372; -static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = 888; + AOT_Thread_predefined_symbols_address_offset = 368; +static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = 880; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 892; + AOT_Thread_saved_shadow_call_stack_offset = 884; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 900; + AOT_Thread_safepoint_state_offset = 892; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 268; + AOT_Thread_slow_type_test_stub_offset = 264; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 356; + AOT_Thread_slow_type_test_entry_point_offset = 352; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 28; static constexpr dart::compiler::target::word @@ -14833,37 +14708,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 60; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 328; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 324; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 232; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 228; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 324; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 320; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 228; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 224; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 76; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 836; + AOT_Thread_suspend_state_await_entry_point_offset = 832; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 832; + AOT_Thread_suspend_state_init_async_entry_point_offset = 828; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 840; + AOT_Thread_suspend_state_return_async_entry_point_offset = 836; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 844; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 840; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 848; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 844; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 852; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 848; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 856; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 852; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 860; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 856; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 864; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 860; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 868; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 872; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 864; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 48; @@ -14875,19 +14749,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 104; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 292; + AOT_Thread_write_barrier_entry_point_offset = 288; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 32; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 36; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 904; + 896; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 908; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 928; + AOT_Thread_callback_stack_return_offset = 900; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 920; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 352; + AOT_Thread_jump_to_frame_entry_point_offset = 348; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 936; + 928; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -15000,9 +14874,9 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 4, 12, 8, 16}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - -1, -1, -1, -1, -1, 760, 764, 768, -1, -1, 772, - 776, 780, -1, -1, -1, 784, 788, 792, 796, 800, 804, - 808, 812, -1, -1, -1, -1, 816, 820, 824, 828}; + -1, -1, -1, -1, -1, 756, 760, 764, -1, -1, 768, + 772, 776, -1, -1, -1, 780, 784, 788, 792, 796, 800, + 804, 808, -1, -1, -1, -1, 812, 816, 820, 824}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 12; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 8; @@ -15354,7 +15228,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 1056; + AOT_ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -15368,11 +15242,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 1048; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 16; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 8; @@ -15409,120 +15281,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 16; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 32; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 784; + AOT_Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 1728; + AOT_Thread_active_exception_offset = 1712; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 1736; + AOT_Thread_active_stacktrace_offset = 1720; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 568; + AOT_Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 600; + AOT_Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 608; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 616; + AOT_Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 1808; + 1792; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 712; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 696; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 576; + AOT_Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 256; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 1848; + 1832; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 1816; + AOT_Thread_double_truncate_round_supported_offset = 1800; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 1856; + AOT_Thread_service_extension_stream_offset = 1840; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 656; + 648; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 480; + 472; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 664; + AOT_Thread_deoptimize_entry_offset = 656; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 488; + AOT_Thread_deoptimize_stub_offset = 480; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 744; + AOT_Thread_double_abs_address_offset = 736; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 736; + AOT_Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 104; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 528; + AOT_Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 1768; + AOT_Thread_execution_state_offset = 1752; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 536; + AOT_Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 552; + AOT_Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 672; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 768; + AOT_Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 760; + AOT_Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 752; + AOT_Thread_float_not_address_offset = 744; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 776; + AOT_Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 1744; + AOT_Thread_global_object_pool_offset = 1728; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 1800; + AOT_Thread_exit_through_ffi_offset = 1784; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 80; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 1864; + 1848; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 496; + AOT_Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 504; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 520; + AOT_Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 640; + AOT_Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 648; + AOT_Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 448; + AOT_Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 704; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -15552,22 +15424,20 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 720; + AOT_Thread_predefined_symbols_address_offset = 712; static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = - 1752; + 1736; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 1760; + AOT_Thread_saved_shadow_call_stack_offset = 1744; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 1776; + AOT_Thread_safepoint_state_offset = 1760; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 512; + AOT_Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 688; + AOT_Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word @@ -15575,37 +15445,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 1648; + AOT_Thread_suspend_state_await_entry_point_offset = 1640; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 1640; + AOT_Thread_suspend_state_init_async_entry_point_offset = 1632; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 1656; + AOT_Thread_suspend_state_return_async_entry_point_offset = 1648; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1656; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1672; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1664; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1680; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1688; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1696; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 1704; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 1696; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 1712; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1720; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1704; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 96; @@ -15617,19 +15486,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 560; + AOT_Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 1784; + 1768; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 1792; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1824; + AOT_Thread_callback_stack_return_offset = 1776; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1808; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 680; + AOT_Thread_jump_to_frame_entry_point_offset = 672; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 1832; + 1816; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -15743,9 +15612,9 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - -1, -1, -1, -1, -1, 1496, 1504, 1512, -1, -1, 1520, - 1528, 1536, -1, -1, -1, 1544, 1552, 1560, 1568, 1576, 1584, - 1592, 1600, -1, -1, -1, -1, 1608, 1616, 1624, 1632}; + -1, -1, -1, -1, -1, 1488, 1496, 1504, -1, -1, 1512, + 1520, 1528, -1, -1, -1, 1536, 1544, 1552, 1560, 1568, 1576, + 1584, 1592, -1, -1, -1, -1, 1600, 1608, 1616, 1624}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 16; @@ -16089,7 +15958,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 492; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 528; + AOT_ObjectStore_suspend_state_handle_exception_offset = 524; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 488; static constexpr dart::compiler::target::word @@ -16103,11 +15972,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 512; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 524; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 520; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 508; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 520; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 12; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 4; @@ -16144,120 +16011,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 8; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 16; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 404; + AOT_Thread_AllocateArray_entry_point_offset = 400; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 836; + AOT_Thread_active_exception_offset = 828; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 840; + AOT_Thread_active_stacktrace_offset = 832; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 296; + AOT_Thread_array_write_barrier_entry_point_offset = 292; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 304; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 300; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 184; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 308; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 304; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 188; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 312; + AOT_Thread_allocate_object_entry_point_offset = 308; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 192; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 316; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 312; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 196; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 320; + AOT_Thread_allocate_object_slow_entry_point_offset = 316; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 200; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 876; + 868; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 204; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 368; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 364; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 120; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 116; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 360; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 356; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 300; + AOT_Thread_call_to_runtime_entry_point_offset = 296; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 140; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 904; + 896; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 44; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 880; + AOT_Thread_double_truncate_round_supported_offset = 872; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 908; + AOT_Thread_service_extension_stream_offset = 900; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 340; + 336; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 252; + 248; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 344; + AOT_Thread_deoptimize_entry_offset = 340; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 256; + AOT_Thread_deoptimize_stub_offset = 252; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 384; + AOT_Thread_double_abs_address_offset = 380; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 380; + AOT_Thread_double_negate_address_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 52; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 276; + AOT_Thread_enter_safepoint_stub_offset = 272; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 856; + AOT_Thread_execution_state_offset = 848; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 280; + AOT_Thread_exit_safepoint_stub_offset = 276; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 284; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 280; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 288; + AOT_Thread_call_native_through_safepoint_stub_offset = 284; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 348; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 344; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 132; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 396; + AOT_Thread_float_absolute_address_offset = 392; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 392; + AOT_Thread_float_negate_address_offset = 388; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 388; + AOT_Thread_float_not_address_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 400; + AOT_Thread_float_zerow_address_offset = 396; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 844; + AOT_Thread_global_object_pool_offset = 836; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 136; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 872; + AOT_Thread_exit_through_ffi_offset = 864; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 40; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 912; + 904; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 64; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 260; + AOT_Thread_lazy_deopt_from_return_stub_offset = 256; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 264; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 260; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 272; + AOT_Thread_lazy_specialize_type_test_stub_offset = 268; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 80; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 332; + AOT_Thread_megamorphic_call_checked_entry_offset = 328; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 336; + AOT_Thread_switchable_call_miss_entry_offset = 332; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 236; + AOT_Thread_switchable_call_miss_stub_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 364; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 360; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 148; static constexpr dart::compiler::target::word @@ -16287,21 +16154,19 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 220; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 212; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 224; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 112; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 372; -static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = 848; + AOT_Thread_predefined_symbols_address_offset = 368; +static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = 840; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 852; + AOT_Thread_saved_shadow_call_stack_offset = 844; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 860; + AOT_Thread_safepoint_state_offset = 852; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 268; + AOT_Thread_slow_type_test_stub_offset = 264; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 356; + AOT_Thread_slow_type_test_entry_point_offset = 352; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 28; static constexpr dart::compiler::target::word @@ -16309,37 +16174,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 60; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 328; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 324; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 232; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 228; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 324; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 320; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 228; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 224; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 76; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 796; + AOT_Thread_suspend_state_await_entry_point_offset = 792; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 792; + AOT_Thread_suspend_state_init_async_entry_point_offset = 788; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 800; + AOT_Thread_suspend_state_return_async_entry_point_offset = 796; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 804; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 800; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 808; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 804; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 812; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 808; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 816; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 812; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 820; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 816; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 824; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 820; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 828; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 832; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 824; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 48; @@ -16351,19 +16215,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 104; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 292; + AOT_Thread_write_barrier_entry_point_offset = 288; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 32; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 36; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 864; + 856; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 868; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 888; + AOT_Thread_callback_stack_return_offset = 860; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 880; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 352; + AOT_Thread_jump_to_frame_entry_point_offset = 348; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 896; + 888; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -16476,7 +16340,7 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 4, 12, 8, 16}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - 760, 764, 768, 772, 776, -1, 780, -1, 784, 788, -1, -1, -1, -1, -1, -1}; + 756, 760, 764, 768, 772, -1, 776, -1, 780, 784, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 12; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 8; @@ -16819,7 +16683,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 1056; + AOT_ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -16833,11 +16697,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 1048; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 16; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 8; @@ -16874,120 +16736,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 16; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 32; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 784; + AOT_Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 1672; + AOT_Thread_active_exception_offset = 1656; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 1680; + AOT_Thread_active_stacktrace_offset = 1664; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 568; + AOT_Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 600; + AOT_Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 608; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 616; + AOT_Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 1752; + 1736; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 712; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 696; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 576; + AOT_Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 256; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 1792; + 1776; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 1760; + AOT_Thread_double_truncate_round_supported_offset = 1744; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 1800; + AOT_Thread_service_extension_stream_offset = 1784; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 656; + 648; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 480; + 472; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 664; + AOT_Thread_deoptimize_entry_offset = 656; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 488; + AOT_Thread_deoptimize_stub_offset = 480; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 744; + AOT_Thread_double_abs_address_offset = 736; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 736; + AOT_Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 104; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 528; + AOT_Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 1712; + AOT_Thread_execution_state_offset = 1696; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 536; + AOT_Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 552; + AOT_Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 672; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 768; + AOT_Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 760; + AOT_Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 752; + AOT_Thread_float_not_address_offset = 744; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 776; + AOT_Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 1688; + AOT_Thread_global_object_pool_offset = 1672; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 1744; + AOT_Thread_exit_through_ffi_offset = 1728; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 80; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 1808; + 1792; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 496; + AOT_Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 504; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 520; + AOT_Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 640; + AOT_Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 648; + AOT_Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 448; + AOT_Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 704; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -17017,22 +16879,20 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 720; + AOT_Thread_predefined_symbols_address_offset = 712; static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = - 1696; + 1680; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 1704; + AOT_Thread_saved_shadow_call_stack_offset = 1688; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 1720; + AOT_Thread_safepoint_state_offset = 1704; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 512; + AOT_Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 688; + AOT_Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word @@ -17040,37 +16900,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 1592; + AOT_Thread_suspend_state_await_entry_point_offset = 1584; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 1584; + AOT_Thread_suspend_state_init_async_entry_point_offset = 1576; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 1600; + AOT_Thread_suspend_state_return_async_entry_point_offset = 1592; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1608; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1600; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1616; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1608; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1624; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1616; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1632; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1624; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1640; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1632; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 1648; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 1640; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 1656; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1664; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1648; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 96; @@ -17082,19 +16941,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 560; + AOT_Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 1728; + 1712; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 1736; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1768; + AOT_Thread_callback_stack_return_offset = 1720; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1752; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 680; + AOT_Thread_jump_to_frame_entry_point_offset = 672; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 1776; + 1760; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -17208,8 +17067,8 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, -1, -1, 1528, 1536, - 1544, 1552, 1560, -1, 1568, 1576, -1, -1}; + 1488, 1496, 1504, 1512, -1, -1, 1520, 1528, + 1536, 1544, 1552, -1, 1560, 1568, -1, -1}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 16; @@ -17555,7 +17414,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 1056; + AOT_ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -17569,11 +17428,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 1048; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 16; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 8; @@ -17610,120 +17467,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 16; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 32; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 784; + AOT_Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 1736; + AOT_Thread_active_exception_offset = 1720; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 1744; + AOT_Thread_active_stacktrace_offset = 1728; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 568; + AOT_Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 600; + AOT_Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 608; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 616; + AOT_Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 1816; + 1800; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 712; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 696; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 576; + AOT_Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 256; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 1856; + 1840; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 1824; + AOT_Thread_double_truncate_round_supported_offset = 1808; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 1864; + AOT_Thread_service_extension_stream_offset = 1848; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 656; + 648; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 480; + 472; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 664; + AOT_Thread_deoptimize_entry_offset = 656; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 488; + AOT_Thread_deoptimize_stub_offset = 480; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 744; + AOT_Thread_double_abs_address_offset = 736; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 736; + AOT_Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 104; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 528; + AOT_Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 1776; + AOT_Thread_execution_state_offset = 1760; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 536; + AOT_Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 552; + AOT_Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 672; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 768; + AOT_Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 760; + AOT_Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 752; + AOT_Thread_float_not_address_offset = 744; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 776; + AOT_Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 1752; + AOT_Thread_global_object_pool_offset = 1736; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 1808; + AOT_Thread_exit_through_ffi_offset = 1792; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 80; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 1872; + 1856; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 496; + AOT_Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 504; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 520; + AOT_Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 640; + AOT_Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 648; + AOT_Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 448; + AOT_Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 704; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -17753,22 +17610,20 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 720; + AOT_Thread_predefined_symbols_address_offset = 712; static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = - 1760; + 1744; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 1768; + AOT_Thread_saved_shadow_call_stack_offset = 1752; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 1784; + AOT_Thread_safepoint_state_offset = 1768; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 512; + AOT_Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 688; + AOT_Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word @@ -17776,37 +17631,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 1656; + AOT_Thread_suspend_state_await_entry_point_offset = 1648; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 1648; + AOT_Thread_suspend_state_init_async_entry_point_offset = 1640; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 1664; + AOT_Thread_suspend_state_return_async_entry_point_offset = 1656; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1672; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1680; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1688; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1696; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1704; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1696; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 1712; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 1704; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 1720; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1728; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1712; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 96; @@ -17818,19 +17672,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 560; + AOT_Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 1792; + 1776; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 1800; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1832; + AOT_Thread_callback_stack_return_offset = 1784; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1816; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 680; + AOT_Thread_jump_to_frame_entry_point_offset = 672; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 1840; + 1824; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -17944,9 +17798,9 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, 1576, - 1584, 1592, 1600, 1608, -1, -1, -1, -1, 1616, 1624, -1, - -1, 1632, 1640, 1648, -1, -1, -1, -1, -1, -1}; + 1488, 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, + 1576, 1584, 1592, 1600, -1, -1, -1, -1, 1608, 1616, -1, + -1, 1624, 1632, 1640, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 16; @@ -18288,7 +18142,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 1056; + AOT_ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -18302,11 +18156,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 1048; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 16; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 8; @@ -18343,120 +18195,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 16; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 28; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 784; + AOT_Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 1672; + AOT_Thread_active_exception_offset = 1656; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 1680; + AOT_Thread_active_stacktrace_offset = 1664; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 568; + AOT_Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 600; + AOT_Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 608; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 616; + AOT_Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 1752; + 1736; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 712; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 696; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 576; + AOT_Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 256; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 1792; + 1776; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 1760; + AOT_Thread_double_truncate_round_supported_offset = 1744; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 1800; + AOT_Thread_service_extension_stream_offset = 1784; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 656; + 648; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 480; + 472; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 664; + AOT_Thread_deoptimize_entry_offset = 656; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 488; + AOT_Thread_deoptimize_stub_offset = 480; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 744; + AOT_Thread_double_abs_address_offset = 736; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 736; + AOT_Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 104; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 528; + AOT_Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 1712; + AOT_Thread_execution_state_offset = 1696; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 536; + AOT_Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 552; + AOT_Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 672; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 768; + AOT_Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 760; + AOT_Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 752; + AOT_Thread_float_not_address_offset = 744; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 776; + AOT_Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 1688; + AOT_Thread_global_object_pool_offset = 1672; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 1744; + AOT_Thread_exit_through_ffi_offset = 1728; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 80; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 1808; + 1792; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 496; + AOT_Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 504; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 520; + AOT_Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 640; + AOT_Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 648; + AOT_Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 448; + AOT_Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 704; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -18486,22 +18338,20 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 720; + AOT_Thread_predefined_symbols_address_offset = 712; static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = - 1696; + 1680; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 1704; + AOT_Thread_saved_shadow_call_stack_offset = 1688; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 1720; + AOT_Thread_safepoint_state_offset = 1704; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 512; + AOT_Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 688; + AOT_Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word @@ -18509,37 +18359,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 1592; + AOT_Thread_suspend_state_await_entry_point_offset = 1584; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 1584; + AOT_Thread_suspend_state_init_async_entry_point_offset = 1576; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 1600; + AOT_Thread_suspend_state_return_async_entry_point_offset = 1592; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1608; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1600; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1616; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1608; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1624; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1616; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1632; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1624; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1640; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1632; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 1648; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 1640; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 1656; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1664; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1648; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 96; @@ -18551,19 +18400,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 560; + AOT_Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 1728; + 1712; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 1736; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1768; + AOT_Thread_callback_stack_return_offset = 1720; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1752; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 680; + AOT_Thread_jump_to_frame_entry_point_offset = 672; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 1776; + 1760; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -18677,8 +18526,8 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, -1, -1, 1528, 1536, - 1544, 1552, 1560, -1, 1568, 1576, -1, -1}; + 1488, 1496, 1504, 1512, -1, -1, 1520, 1528, + 1536, 1544, 1552, -1, 1560, 1568, -1, -1}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 16; @@ -19020,7 +18869,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 1056; + AOT_ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -19034,11 +18883,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 1048; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 16; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 8; @@ -19075,120 +18922,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 16; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 28; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 784; + AOT_Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 1736; + AOT_Thread_active_exception_offset = 1720; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 1744; + AOT_Thread_active_stacktrace_offset = 1728; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 568; + AOT_Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 600; + AOT_Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 608; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 616; + AOT_Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 1816; + 1800; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 712; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 696; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 576; + AOT_Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 256; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 1856; + 1840; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 1824; + AOT_Thread_double_truncate_round_supported_offset = 1808; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 1864; + AOT_Thread_service_extension_stream_offset = 1848; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 656; + 648; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 480; + 472; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 664; + AOT_Thread_deoptimize_entry_offset = 656; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 488; + AOT_Thread_deoptimize_stub_offset = 480; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 744; + AOT_Thread_double_abs_address_offset = 736; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 736; + AOT_Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 104; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 528; + AOT_Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 1776; + AOT_Thread_execution_state_offset = 1760; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 536; + AOT_Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 552; + AOT_Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 672; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 768; + AOT_Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 760; + AOT_Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 752; + AOT_Thread_float_not_address_offset = 744; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 776; + AOT_Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 1752; + AOT_Thread_global_object_pool_offset = 1736; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 1808; + AOT_Thread_exit_through_ffi_offset = 1792; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 80; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 1872; + 1856; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 496; + AOT_Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 504; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 520; + AOT_Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 640; + AOT_Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 648; + AOT_Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 448; + AOT_Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 704; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -19218,22 +19065,20 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 720; + AOT_Thread_predefined_symbols_address_offset = 712; static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = - 1760; + 1744; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 1768; + AOT_Thread_saved_shadow_call_stack_offset = 1752; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 1784; + AOT_Thread_safepoint_state_offset = 1768; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 512; + AOT_Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 688; + AOT_Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word @@ -19241,37 +19086,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 1656; + AOT_Thread_suspend_state_await_entry_point_offset = 1648; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 1648; + AOT_Thread_suspend_state_init_async_entry_point_offset = 1640; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 1664; + AOT_Thread_suspend_state_return_async_entry_point_offset = 1656; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1672; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1680; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1688; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1696; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1704; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1696; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 1712; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 1704; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 1720; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1728; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1712; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 96; @@ -19283,19 +19127,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 560; + AOT_Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 1792; + 1776; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 1800; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1832; + AOT_Thread_callback_stack_return_offset = 1784; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1816; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 680; + AOT_Thread_jump_to_frame_entry_point_offset = 672; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 1840; + 1824; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -19409,9 +19253,9 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, 1576, - 1584, 1592, 1600, 1608, -1, -1, -1, -1, 1616, 1624, -1, - -1, 1632, 1640, 1648, -1, -1, -1, -1, -1, -1}; + 1488, 1496, 1504, 1512, 1520, 1528, 1536, 1544, 1552, 1560, 1568, + 1576, 1584, 1592, 1600, -1, -1, -1, -1, 1608, 1616, -1, + -1, 1624, 1632, 1640, -1, -1, -1, -1, -1, -1}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 16; @@ -19753,7 +19597,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 492; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 528; + AOT_ObjectStore_suspend_state_handle_exception_offset = 524; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 488; static constexpr dart::compiler::target::word @@ -19767,11 +19611,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 512; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 524; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 520; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 508; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 520; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 12; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 4; @@ -19808,120 +19650,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 8; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 16; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 404; + AOT_Thread_AllocateArray_entry_point_offset = 400; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 876; + AOT_Thread_active_exception_offset = 868; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 880; + AOT_Thread_active_stacktrace_offset = 872; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 296; + AOT_Thread_array_write_barrier_entry_point_offset = 292; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 304; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 300; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 184; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 308; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 304; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 188; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 312; + AOT_Thread_allocate_object_entry_point_offset = 308; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 192; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 316; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 312; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 196; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 320; + AOT_Thread_allocate_object_slow_entry_point_offset = 316; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 200; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 916; + 908; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 204; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 368; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 364; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 120; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 116; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 360; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 356; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 300; + AOT_Thread_call_to_runtime_entry_point_offset = 296; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 140; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 944; + 936; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 44; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 920; + AOT_Thread_double_truncate_round_supported_offset = 912; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 948; + AOT_Thread_service_extension_stream_offset = 940; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 340; + 336; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 252; + 248; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 344; + AOT_Thread_deoptimize_entry_offset = 340; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 256; + AOT_Thread_deoptimize_stub_offset = 252; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 384; + AOT_Thread_double_abs_address_offset = 380; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 380; + AOT_Thread_double_negate_address_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 52; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 276; + AOT_Thread_enter_safepoint_stub_offset = 272; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 896; + AOT_Thread_execution_state_offset = 888; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 280; + AOT_Thread_exit_safepoint_stub_offset = 276; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 284; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 280; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 288; + AOT_Thread_call_native_through_safepoint_stub_offset = 284; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 348; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 344; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 132; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 396; + AOT_Thread_float_absolute_address_offset = 392; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 392; + AOT_Thread_float_negate_address_offset = 388; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 388; + AOT_Thread_float_not_address_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 400; + AOT_Thread_float_zerow_address_offset = 396; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 884; + AOT_Thread_global_object_pool_offset = 876; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 136; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 912; + AOT_Thread_exit_through_ffi_offset = 904; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 40; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 952; + 944; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 64; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 260; + AOT_Thread_lazy_deopt_from_return_stub_offset = 256; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 264; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 260; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 272; + AOT_Thread_lazy_specialize_type_test_stub_offset = 268; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 80; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 332; + AOT_Thread_megamorphic_call_checked_entry_offset = 328; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 336; + AOT_Thread_switchable_call_miss_entry_offset = 332; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 236; + AOT_Thread_switchable_call_miss_stub_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 364; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 360; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 148; static constexpr dart::compiler::target::word @@ -19951,21 +19793,19 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 220; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 212; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 224; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 112; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 372; -static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = 888; + AOT_Thread_predefined_symbols_address_offset = 368; +static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = 880; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 892; + AOT_Thread_saved_shadow_call_stack_offset = 884; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 900; + AOT_Thread_safepoint_state_offset = 892; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 268; + AOT_Thread_slow_type_test_stub_offset = 264; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 356; + AOT_Thread_slow_type_test_entry_point_offset = 352; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 28; static constexpr dart::compiler::target::word @@ -19973,37 +19813,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 60; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 328; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 324; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 232; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 228; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 324; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 320; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 228; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 224; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 76; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 836; + AOT_Thread_suspend_state_await_entry_point_offset = 832; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 832; + AOT_Thread_suspend_state_init_async_entry_point_offset = 828; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 840; + AOT_Thread_suspend_state_return_async_entry_point_offset = 836; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 844; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 840; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 848; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 844; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 852; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 848; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 856; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 852; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 860; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 856; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 864; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 860; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 868; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 872; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 864; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 48; @@ -20015,19 +19854,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 104; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 292; + AOT_Thread_write_barrier_entry_point_offset = 288; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 32; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 36; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 904; + 896; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 908; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 928; + AOT_Thread_callback_stack_return_offset = 900; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 920; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 352; + AOT_Thread_jump_to_frame_entry_point_offset = 348; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 936; + 928; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -20140,9 +19979,9 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 4, 12, 8, 16}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - -1, -1, -1, -1, -1, 760, 764, 768, -1, -1, 772, - 776, 780, -1, -1, -1, 784, 788, 792, 796, 800, 804, - 808, 812, -1, -1, -1, -1, 816, 820, 824, 828}; + -1, -1, -1, -1, -1, 756, 760, 764, -1, -1, 768, + 772, 776, -1, -1, -1, 780, 784, 788, 792, 796, 800, + 804, 808, -1, -1, -1, -1, 812, 816, 820, 824}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 12; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 8; @@ -20485,7 +20324,7 @@ static constexpr dart::compiler::target::word AOT_ObjectStore_type_type_offset = static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_await_offset = 984; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_handle_exception_offset = 1056; + AOT_ObjectStore_suspend_state_handle_exception_offset = 1048; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_init_async_offset = 976; static constexpr dart::compiler::target::word @@ -20499,11 +20338,9 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_return_async_star_offset = 1024; static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_return_sync_star_offset = 1048; + AOT_ObjectStore_suspend_state_suspend_sync_star_at_start_offset = 1040; static constexpr dart::compiler::target::word AOT_ObjectStore_suspend_state_yield_async_star_offset = 1016; -static constexpr dart::compiler::target::word - AOT_ObjectStore_suspend_state_yield_sync_star_offset = 1040; static constexpr dart::compiler::target::word AOT_OneByteString_data_offset = 16; static constexpr dart::compiler::target::word AOT_PointerBase_data_offset = 8; @@ -20540,120 +20377,120 @@ static constexpr dart::compiler::target::word AOT_SuspendState_pc_offset = 16; static constexpr dart::compiler::target::word AOT_SuspendState_then_callback_offset = 32; static constexpr dart::compiler::target::word - AOT_Thread_AllocateArray_entry_point_offset = 784; + AOT_Thread_AllocateArray_entry_point_offset = 776; static constexpr dart::compiler::target::word - AOT_Thread_active_exception_offset = 1728; + AOT_Thread_active_exception_offset = 1712; static constexpr dart::compiler::target::word - AOT_Thread_active_stacktrace_offset = 1736; + AOT_Thread_active_stacktrace_offset = 1720; static constexpr dart::compiler::target::word - AOT_Thread_array_write_barrier_entry_point_offset = 568; + AOT_Thread_array_write_barrier_entry_point_offset = 560; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 584; + AOT_Thread_allocate_mint_with_fpu_regs_entry_point_offset = 576; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_with_fpu_regs_stub_offset = 344; static constexpr dart::compiler::target::word - AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 592; + AOT_Thread_allocate_mint_without_fpu_regs_entry_point_offset = 584; static constexpr dart::compiler::target::word AOT_Thread_allocate_mint_without_fpu_regs_stub_offset = 352; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_entry_point_offset = 600; + AOT_Thread_allocate_object_entry_point_offset = 592; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_stub_offset = 360; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_parameterized_entry_point_offset = 608; + AOT_Thread_allocate_object_parameterized_entry_point_offset = 600; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_parameterized_stub_offset = 368; static constexpr dart::compiler::target::word - AOT_Thread_allocate_object_slow_entry_point_offset = 616; + AOT_Thread_allocate_object_slow_entry_point_offset = 608; static constexpr dart::compiler::target::word AOT_Thread_allocate_object_slow_stub_offset = 376; static constexpr dart::compiler::target::word AOT_Thread_api_top_scope_offset = - 1808; + 1792; static constexpr dart::compiler::target::word AOT_Thread_async_exception_handler_stub_offset = 384; static constexpr dart::compiler::target::word - AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 712; + AOT_Thread_auto_scope_native_wrapper_entry_point_offset = 704; static constexpr dart::compiler::target::word AOT_Thread_bool_false_offset = 216; static constexpr dart::compiler::target::word AOT_Thread_bool_true_offset = 208; static constexpr dart::compiler::target::word - AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 696; + AOT_Thread_bootstrap_native_wrapper_entry_point_offset = 688; static constexpr dart::compiler::target::word - AOT_Thread_call_to_runtime_entry_point_offset = 576; + AOT_Thread_call_to_runtime_entry_point_offset = 568; static constexpr dart::compiler::target::word AOT_Thread_call_to_runtime_stub_offset = 256; static constexpr dart::compiler::target::word AOT_Thread_dart_stream_offset = - 1848; + 1832; static constexpr dart::compiler::target::word AOT_Thread_dispatch_table_array_offset = 88; static constexpr dart::compiler::target::word - AOT_Thread_double_truncate_round_supported_offset = 1816; + AOT_Thread_double_truncate_round_supported_offset = 1800; static constexpr dart::compiler::target::word - AOT_Thread_service_extension_stream_offset = 1856; + AOT_Thread_service_extension_stream_offset = 1840; static constexpr dart::compiler::target::word AOT_Thread_optimize_entry_offset = - 656; + 648; static constexpr dart::compiler::target::word AOT_Thread_optimize_stub_offset = - 480; + 472; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_entry_offset = 664; + AOT_Thread_deoptimize_entry_offset = 656; static constexpr dart::compiler::target::word - AOT_Thread_deoptimize_stub_offset = 488; + AOT_Thread_deoptimize_stub_offset = 480; static constexpr dart::compiler::target::word - AOT_Thread_double_abs_address_offset = 744; + AOT_Thread_double_abs_address_offset = 736; static constexpr dart::compiler::target::word - AOT_Thread_double_negate_address_offset = 736; + AOT_Thread_double_negate_address_offset = 728; static constexpr dart::compiler::target::word AOT_Thread_end_offset = 104; static constexpr dart::compiler::target::word - AOT_Thread_enter_safepoint_stub_offset = 528; + AOT_Thread_enter_safepoint_stub_offset = 520; static constexpr dart::compiler::target::word - AOT_Thread_execution_state_offset = 1768; + AOT_Thread_execution_state_offset = 1752; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_stub_offset = 536; + AOT_Thread_exit_safepoint_stub_offset = 528; static constexpr dart::compiler::target::word - AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 544; + AOT_Thread_exit_safepoint_ignore_unwind_in_progress_stub_offset = 536; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_stub_offset = 552; + AOT_Thread_call_native_through_safepoint_stub_offset = 544; static constexpr dart::compiler::target::word - AOT_Thread_call_native_through_safepoint_entry_point_offset = 672; + AOT_Thread_call_native_through_safepoint_entry_point_offset = 664; static constexpr dart::compiler::target::word AOT_Thread_fix_allocation_stub_code_offset = 240; static constexpr dart::compiler::target::word AOT_Thread_fix_callers_target_code_offset = 232; static constexpr dart::compiler::target::word - AOT_Thread_float_absolute_address_offset = 768; + AOT_Thread_float_absolute_address_offset = 760; static constexpr dart::compiler::target::word - AOT_Thread_float_negate_address_offset = 760; + AOT_Thread_float_negate_address_offset = 752; static constexpr dart::compiler::target::word - AOT_Thread_float_not_address_offset = 752; + AOT_Thread_float_not_address_offset = 744; static constexpr dart::compiler::target::word - AOT_Thread_float_zerow_address_offset = 776; + AOT_Thread_float_zerow_address_offset = 768; static constexpr dart::compiler::target::word - AOT_Thread_global_object_pool_offset = 1744; + AOT_Thread_global_object_pool_offset = 1728; static constexpr dart::compiler::target::word AOT_Thread_invoke_dart_code_stub_offset = 248; static constexpr dart::compiler::target::word - AOT_Thread_exit_through_ffi_offset = 1800; + AOT_Thread_exit_through_ffi_offset = 1784; static constexpr dart::compiler::target::word AOT_Thread_isolate_offset = 80; static constexpr dart::compiler::target::word AOT_Thread_isolate_group_offset = - 1864; + 1848; static constexpr dart::compiler::target::word AOT_Thread_field_table_values_offset = 128; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_return_stub_offset = 496; + AOT_Thread_lazy_deopt_from_return_stub_offset = 488; static constexpr dart::compiler::target::word - AOT_Thread_lazy_deopt_from_throw_stub_offset = 504; + AOT_Thread_lazy_deopt_from_throw_stub_offset = 496; static constexpr dart::compiler::target::word - AOT_Thread_lazy_specialize_type_test_stub_offset = 520; + AOT_Thread_lazy_specialize_type_test_stub_offset = 512; static constexpr dart::compiler::target::word AOT_Thread_marking_stack_block_offset = 160; static constexpr dart::compiler::target::word - AOT_Thread_megamorphic_call_checked_entry_offset = 640; + AOT_Thread_megamorphic_call_checked_entry_offset = 632; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_entry_offset = 648; + AOT_Thread_switchable_call_miss_entry_offset = 640; static constexpr dart::compiler::target::word - AOT_Thread_switchable_call_miss_stub_offset = 448; + AOT_Thread_switchable_call_miss_stub_offset = 440; static constexpr dart::compiler::target::word - AOT_Thread_no_scope_native_wrapper_entry_point_offset = 704; + AOT_Thread_no_scope_native_wrapper_entry_point_offset = 696; static constexpr dart::compiler::target::word AOT_Thread_late_initialization_error_shared_with_fpu_regs_stub_offset = 272; static constexpr dart::compiler::target::word @@ -20683,22 +20520,20 @@ static constexpr dart::compiler::target::word AOT_Thread_return_async_star_stub_offset = 416; static constexpr dart::compiler::target::word AOT_Thread_return_async_stub_offset = 400; -static constexpr dart::compiler::target::word - AOT_Thread_return_sync_star_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_object_null_offset = 200; static constexpr dart::compiler::target::word - AOT_Thread_predefined_symbols_address_offset = 720; + AOT_Thread_predefined_symbols_address_offset = 712; static constexpr dart::compiler::target::word AOT_Thread_resume_pc_offset = - 1752; + 1736; static constexpr dart::compiler::target::word - AOT_Thread_saved_shadow_call_stack_offset = 1760; + AOT_Thread_saved_shadow_call_stack_offset = 1744; static constexpr dart::compiler::target::word - AOT_Thread_safepoint_state_offset = 1776; + AOT_Thread_safepoint_state_offset = 1760; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_stub_offset = 512; + AOT_Thread_slow_type_test_stub_offset = 504; static constexpr dart::compiler::target::word - AOT_Thread_slow_type_test_entry_point_offset = 688; + AOT_Thread_slow_type_test_entry_point_offset = 680; static constexpr dart::compiler::target::word AOT_Thread_stack_limit_offset = 56; static constexpr dart::compiler::target::word @@ -20706,37 +20541,36 @@ static constexpr dart::compiler::target::word static constexpr dart::compiler::target::word AOT_Thread_stack_overflow_flags_offset = 120; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 632; + AOT_Thread_stack_overflow_shared_with_fpu_regs_entry_point_offset = 624; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 440; + AOT_Thread_stack_overflow_shared_with_fpu_regs_stub_offset = 432; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 624; + AOT_Thread_stack_overflow_shared_without_fpu_regs_entry_point_offset = 616; static constexpr dart::compiler::target::word - AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 432; + AOT_Thread_stack_overflow_shared_without_fpu_regs_stub_offset = 424; static constexpr dart::compiler::target::word AOT_Thread_store_buffer_block_offset = 152; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_await_entry_point_offset = 1648; + AOT_Thread_suspend_state_await_entry_point_offset = 1640; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_entry_point_offset = 1640; + AOT_Thread_suspend_state_init_async_entry_point_offset = 1632; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_entry_point_offset = 1656; + AOT_Thread_suspend_state_return_async_entry_point_offset = 1648; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1664; + AOT_Thread_suspend_state_return_async_not_future_entry_point_offset = 1656; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1672; + AOT_Thread_suspend_state_init_async_star_entry_point_offset = 1664; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1680; + AOT_Thread_suspend_state_yield_async_star_entry_point_offset = 1672; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1688; + AOT_Thread_suspend_state_return_async_star_entry_point_offset = 1680; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1696; + AOT_Thread_suspend_state_init_sync_star_entry_point_offset = 1688; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_yield_sync_star_entry_point_offset = 1704; + AOT_Thread_suspend_state_suspend_sync_star_at_start_entry_point_offset = + 1696; static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_return_sync_star_entry_point_offset = 1712; -static constexpr dart::compiler::target::word - AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1720; + AOT_Thread_suspend_state_handle_exception_entry_point_offset = 1704; static constexpr dart::compiler::target::word AOT_Thread_top_exit_frame_info_offset = 144; static constexpr dart::compiler::target::word AOT_Thread_top_offset = 96; @@ -20748,19 +20582,19 @@ static constexpr dart::compiler::target::word AOT_Thread_unboxed_double_runtime_arg_offset = 192; static constexpr dart::compiler::target::word AOT_Thread_vm_tag_offset = 176; static constexpr dart::compiler::target::word - AOT_Thread_write_barrier_entry_point_offset = 560; + AOT_Thread_write_barrier_entry_point_offset = 552; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_mask_offset = 64; static constexpr dart::compiler::target::word AOT_Thread_heap_base_offset = 72; static constexpr dart::compiler::target::word AOT_Thread_callback_code_offset = - 1784; + 1768; static constexpr dart::compiler::target::word - AOT_Thread_callback_stack_return_offset = 1792; -static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1824; + AOT_Thread_callback_stack_return_offset = 1776; +static constexpr dart::compiler::target::word AOT_Thread_random_offset = 1808; static constexpr dart::compiler::target::word - AOT_Thread_jump_to_frame_entry_point_offset = 680; + AOT_Thread_jump_to_frame_entry_point_offset = 672; static constexpr dart::compiler::target::word AOT_Thread_tsan_utils_offset = - 1832; + 1816; static constexpr dart::compiler::target::word AOT_TsanUtils_setjmp_function_offset = 0; static constexpr dart::compiler::target::word @@ -20874,9 +20708,9 @@ static constexpr dart::compiler::target::word AOT_Code_entry_point_offset[] = { 8, 24, 16, 32}; static constexpr dart::compiler::target::word AOT_Thread_write_barrier_wrappers_thread_offset[] = { - -1, -1, -1, -1, -1, 1496, 1504, 1512, -1, -1, 1520, - 1528, 1536, -1, -1, -1, 1544, 1552, 1560, 1568, 1576, 1584, - 1592, 1600, -1, -1, -1, -1, 1608, 1616, 1624, 1632}; + -1, -1, -1, -1, -1, 1488, 1496, 1504, -1, -1, 1512, + 1520, 1528, -1, -1, -1, 1536, 1544, 1552, 1560, 1568, 1576, + 1584, 1592, -1, -1, -1, -1, 1600, 1608, 1616, 1624}; static constexpr dart::compiler::target::word AOT_AbstractType_InstanceSize = 24; static constexpr dart::compiler::target::word AOT_ApiError_InstanceSize = 16; diff --git a/runtime/vm/compiler/runtime_offsets_list.h b/runtime/vm/compiler/runtime_offsets_list.h index 4b3ba6c2fa9..e1cd3189b07 100644 --- a/runtime/vm/compiler/runtime_offsets_list.h +++ b/runtime/vm/compiler/runtime_offsets_list.h @@ -185,9 +185,8 @@ FIELD(ObjectStore, suspend_state_return_async_offset) \ FIELD(ObjectStore, suspend_state_return_async_not_future_offset) \ FIELD(ObjectStore, suspend_state_return_async_star_offset) \ - FIELD(ObjectStore, suspend_state_return_sync_star_offset) \ + FIELD(ObjectStore, suspend_state_suspend_sync_star_at_start_offset) \ FIELD(ObjectStore, suspend_state_yield_async_star_offset) \ - FIELD(ObjectStore, suspend_state_yield_sync_star_offset) \ FIELD(OneByteString, data_offset) \ FIELD(PointerBase, data_offset) \ FIELD(Pointer, type_arguments_offset) \ @@ -281,7 +280,6 @@ FIELD(Thread, return_async_not_future_stub_offset) \ FIELD(Thread, return_async_star_stub_offset) \ FIELD(Thread, return_async_stub_offset) \ - FIELD(Thread, return_sync_star_stub_offset) \ \ FIELD(Thread, object_null_offset) \ FIELD(Thread, predefined_symbols_address_offset) \ @@ -307,8 +305,7 @@ FIELD(Thread, suspend_state_yield_async_star_entry_point_offset) \ FIELD(Thread, suspend_state_return_async_star_entry_point_offset) \ FIELD(Thread, suspend_state_init_sync_star_entry_point_offset) \ - FIELD(Thread, suspend_state_yield_sync_star_entry_point_offset) \ - FIELD(Thread, suspend_state_return_sync_star_entry_point_offset) \ + FIELD(Thread, suspend_state_suspend_sync_star_at_start_entry_point_offset) \ FIELD(Thread, suspend_state_handle_exception_entry_point_offset) \ FIELD(Thread, top_exit_frame_info_offset) \ FIELD(Thread, top_offset) \ diff --git a/runtime/vm/compiler/stub_code_compiler.cc b/runtime/vm/compiler/stub_code_compiler.cc index 7dbc578eb9d..86f41d09453 100644 --- a/runtime/vm/compiler/stub_code_compiler.cc +++ b/runtime/vm/compiler/stub_code_compiler.cc @@ -1379,6 +1379,7 @@ static void GenerateAllocateSuspendState(Assembler* assembler, void StubCodeCompiler::GenerateSuspendStub( Assembler* assembler, + bool call_suspend_function, intptr_t suspend_entry_point_offset_in_thread, intptr_t suspend_function_offset_in_object_store) { const Register kArgument = SuspendStubABI::kArgumentReg; @@ -1516,17 +1517,28 @@ void StubCodeCompiler::GenerateSuspendStub( } #endif - // Push arguments for suspend Dart function. - __ PushRegistersInOrder({kSuspendState, kArgument}); + if (call_suspend_function) { + // Push arguments for suspend Dart function early to preserve them + // across write barrier. + __ PushRegistersInOrder({kSuspendState, kArgument}); + } // Write barrier. __ BranchIfBit(kSuspendState, target::ObjectAlignment::kNewObjectBitPosition, ZERO, &old_gen_object); __ Bind(&call_dart); - __ Comment("Call suspend Dart function"); - CallDartCoreLibraryFunction(assembler, suspend_entry_point_offset_in_thread, - suspend_function_offset_in_object_store); + if (call_suspend_function) { + __ Comment("Call suspend Dart function"); + CallDartCoreLibraryFunction(assembler, suspend_entry_point_offset_in_thread, + suspend_function_offset_in_object_store); + } else { + // SuspendStub returns either the result of Dart callback, + // or SuspendStub argument (if Dart callback is not used). + // The latter is used by yield/yield* in sync* functions + // to indicate that iteration should be continued. + __ MoveRegister(CallingConventions::kReturnReg, kArgument); + } __ LeaveStubFrame(); @@ -1585,6 +1597,11 @@ void StubCodeCompiler::GenerateSuspendStub( __ Bind(&old_gen_object); __ Comment("Old gen SuspendState slow case"); + if (!call_suspend_function) { + // Save kArgument which contains the return value + // if suspend function is not called. + __ PushRegister(kArgument); + } { #if defined(TARGET_ARCH_IA32) LeafRuntimeScope rt(assembler, /*frame_size=*/2 * target::kWordSize, @@ -1599,11 +1616,15 @@ void StubCodeCompiler::GenerateSuspendStub( #endif rt.Call(kEnsureRememberedAndMarkingDeferredRuntimeEntry, 2); } + if (!call_suspend_function) { + __ PopRegister(kArgument); + } __ Jump(&call_dart); } void StubCodeCompiler::GenerateAwaitStub(Assembler* assembler) { GenerateSuspendStub(assembler, + /*call_suspend_function=*/true, target::Thread::suspend_state_await_entry_point_offset(), target::ObjectStore::suspend_state_await_offset()); } @@ -1611,15 +1632,25 @@ void StubCodeCompiler::GenerateAwaitStub(Assembler* assembler) { void StubCodeCompiler::GenerateYieldAsyncStarStub(Assembler* assembler) { GenerateSuspendStub( assembler, + /*call_suspend_function=*/true, target::Thread::suspend_state_yield_async_star_entry_point_offset(), target::ObjectStore::suspend_state_yield_async_star_offset()); } -void StubCodeCompiler::GenerateYieldSyncStarStub(Assembler* assembler) { +void StubCodeCompiler::GenerateSuspendSyncStarAtStartStub( + Assembler* assembler) { GenerateSuspendStub( assembler, - target::Thread::suspend_state_yield_sync_star_entry_point_offset(), - target::ObjectStore::suspend_state_yield_sync_star_offset()); + /*call_suspend_function=*/true, + target::Thread:: + suspend_state_suspend_sync_star_at_start_entry_point_offset(), + target::ObjectStore::suspend_state_suspend_sync_star_at_start_offset()); +} + +void StubCodeCompiler::GenerateSuspendSyncStarAtYieldStub( + Assembler* assembler) { + GenerateSuspendStub(assembler, + /*call_suspend_function=*/false, -1, -1); } void StubCodeCompiler::GenerateInitSuspendableFunctionStub( @@ -1901,14 +1932,6 @@ void StubCodeCompiler::GenerateReturnAsyncStarStub(Assembler* assembler) { target::Thread::return_async_star_stub_offset()); } -void StubCodeCompiler::GenerateReturnSyncStarStub(Assembler* assembler) { - GenerateReturnStub( - assembler, - target::Thread::suspend_state_return_sync_star_entry_point_offset(), - target::ObjectStore::suspend_state_return_sync_star_offset(), - target::Thread::return_sync_star_stub_offset()); -} - void StubCodeCompiler::GenerateAsyncExceptionHandlerStub(Assembler* assembler) { const Register kSuspendState = AsyncExceptionHandlerStubABI::kSuspendStateReg; ASSERT(kSuspendState != kExceptionObjectReg); diff --git a/runtime/vm/compiler/stub_code_compiler.h b/runtime/vm/compiler/stub_code_compiler.h index 1ea42cbbead..7584cfba432 100644 --- a/runtime/vm/compiler/stub_code_compiler.h +++ b/runtime/vm/compiler/stub_code_compiler.h @@ -201,6 +201,7 @@ class StubCodeCompiler : public AllStatic { static void GenerateSuspendStub( Assembler* assembler, + bool call_suspend_function, intptr_t suspend_entry_point_offset_in_thread, intptr_t suspend_function_offset_in_object_store); static void GenerateInitSuspendableFunctionStub( diff --git a/runtime/vm/constants_arm.h b/runtime/vm/constants_arm.h index daba5cf33e8..e95351c3ec8 100644 --- a/runtime/vm/constants_arm.h +++ b/runtime/vm/constants_arm.h @@ -533,7 +533,8 @@ struct DoubleToIntegerStubABI { static const Register kResultReg = R0; }; -// ABI for SuspendStub (AwaitStub, YieldAsyncStarStub, YieldSyncStarStub). +// ABI for SuspendStub (AwaitStub, YieldAsyncStarStub, +// SuspendSyncStarAtStartStub, SuspendSyncStarAtYieldStub). struct SuspendStubABI { static const Register kArgumentReg = R0; static const Register kTempReg = R1; @@ -567,7 +568,7 @@ struct ResumeStubABI { }; // ABI for ReturnStub (ReturnAsyncStub, ReturnAsyncNotFutureStub, -// ReturnAsyncStarStub, ReturnSyncStarStub). +// ReturnAsyncStarStub). struct ReturnStubABI { static const Register kSuspendStateReg = R2; }; diff --git a/runtime/vm/constants_arm64.h b/runtime/vm/constants_arm64.h index 92ca4a1972a..e183c930903 100644 --- a/runtime/vm/constants_arm64.h +++ b/runtime/vm/constants_arm64.h @@ -367,7 +367,8 @@ struct DoubleToIntegerStubABI { static const Register kResultReg = R0; }; -// ABI for SuspendStub (AwaitStub, YieldAsyncStarStub, YieldSyncStarStub). +// ABI for SuspendStub (AwaitStub, YieldAsyncStarStub, +// SuspendSyncStarAtStartStub, SuspendSyncStarAtYieldStub). struct SuspendStubABI { static const Register kArgumentReg = R0; static const Register kTempReg = R1; @@ -401,7 +402,7 @@ struct ResumeStubABI { }; // ABI for ReturnStub (ReturnAsyncStub, ReturnAsyncNotFutureStub, -// ReturnAsyncStarStub, ReturnSyncStarStub). +// ReturnAsyncStarStub). struct ReturnStubABI { static const Register kSuspendStateReg = R2; }; diff --git a/runtime/vm/constants_ia32.h b/runtime/vm/constants_ia32.h index dbd03752f21..b3a0259a994 100644 --- a/runtime/vm/constants_ia32.h +++ b/runtime/vm/constants_ia32.h @@ -263,7 +263,8 @@ struct DoubleToIntegerStubABI { static const Register kResultReg = EAX; }; -// ABI for SuspendStub (AwaitStub, YieldAsyncStarStub, YieldSyncStarStub). +// ABI for SuspendStub (AwaitStub, YieldAsyncStarStub, +// SuspendSyncStarAtStartStub, SuspendSyncStarAtYieldStub). struct SuspendStubABI { static const Register kArgumentReg = EAX; static const Register kTempReg = EDX; @@ -306,7 +307,7 @@ struct ResumeStubABI { }; // ABI for ReturnStub (ReturnAsyncStub, ReturnAsyncNotFutureStub, -// ReturnAsyncStarStub, ReturnSyncStarStub). +// ReturnAsyncStarStub). struct ReturnStubABI { static const Register kSuspendStateReg = EBX; }; diff --git a/runtime/vm/constants_riscv.h b/runtime/vm/constants_riscv.h index 3fcfa47159d..ba130b998b7 100644 --- a/runtime/vm/constants_riscv.h +++ b/runtime/vm/constants_riscv.h @@ -377,7 +377,8 @@ struct DoubleToIntegerStubABI { static constexpr Register kResultReg = A0; }; -// ABI for SuspendStub (AwaitStub, YieldAsyncStarStub, YieldSyncStarStub). +// ABI for SuspendStub (AwaitStub, YieldAsyncStarStub, +// SuspendSyncStarAtStartStub, SuspendSyncStarAtYieldStub). struct SuspendStubABI { static const Register kArgumentReg = A0; static const Register kTempReg = T0; @@ -411,7 +412,7 @@ struct ResumeStubABI { }; // ABI for ReturnStub (ReturnAsyncStub, ReturnAsyncNotFutureStub, -// ReturnAsyncStarStub, ReturnSyncStarStub). +// ReturnAsyncStarStub). struct ReturnStubABI { static const Register kSuspendStateReg = T1; }; diff --git a/runtime/vm/constants_x64.h b/runtime/vm/constants_x64.h index 9354ac7341d..e011795bb67 100644 --- a/runtime/vm/constants_x64.h +++ b/runtime/vm/constants_x64.h @@ -338,7 +338,8 @@ struct DoubleToIntegerStubABI { static const Register kResultReg = RAX; }; -// ABI for SuspendStub (AwaitStub, YieldAsyncStarStub, YieldSyncStarStub). +// ABI for SuspendStub (AwaitStub, YieldAsyncStarStub, +// SuspendSyncStarAtStartStub, SuspendSyncStarAtYieldStub). struct SuspendStubABI { static const Register kArgumentReg = RAX; static const Register kTempReg = RDX; @@ -377,7 +378,7 @@ struct ResumeStubABI { }; // ABI for ReturnStub (ReturnAsyncStub, ReturnAsyncNotFutureStub, -// ReturnAsyncStarStub, ReturnSyncStarStub). +// ReturnAsyncStarStub). struct ReturnStubABI { static const Register kSuspendStateReg = RBX; }; diff --git a/runtime/vm/object_store.cc b/runtime/vm/object_store.cc index 9dad446f1fe..e45fd0c91e2 100644 --- a/runtime/vm/object_store.cc +++ b/runtime/vm/object_store.cc @@ -324,13 +324,9 @@ void ObjectStore::InitKnownObjects() { ASSERT(!function.IsNull()); set_suspend_state_init_sync_star(function); - function = cls.LookupFunctionAllowPrivate(Symbols::_yieldSyncStar()); + function = cls.LookupFunctionAllowPrivate(Symbols::_suspendSyncStarAtStart()); ASSERT(!function.IsNull()); - set_suspend_state_yield_sync_star(function); - - function = cls.LookupFunctionAllowPrivate(Symbols::_returnSyncStar()); - ASSERT(!function.IsNull()); - set_suspend_state_return_sync_star(function); + set_suspend_state_suspend_sync_star_at_start(function); function = cls.LookupFunctionAllowPrivate(Symbols::_handleException()); ASSERT(!function.IsNull()); @@ -339,11 +335,16 @@ void ObjectStore::InitKnownObjects() { cls = async_lib.LookupClassAllowPrivate(Symbols::_SyncStarIterator()); ASSERT(!cls.IsNull()); RELEASE_ASSERT(cls.EnsureIsFinalized(thread) == Error::null()); + set_sync_star_iterator_class(cls); field = cls.LookupFieldAllowPrivate(Symbols::_current()); ASSERT(!field.IsNull()); set_sync_star_iterator_current(field); + field = cls.LookupFieldAllowPrivate(Symbols::_state()); + ASSERT(!field.IsNull()); + set_sync_star_iterator_state(field); + field = cls.LookupFieldAllowPrivate(Symbols::_yieldStarIterable()); ASSERT(!field.IsNull()); set_sync_star_iterator_yield_star_iterable(field); diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h index 22702c751f1..2d6373a2b20 100644 --- a/runtime/vm/object_store.h +++ b/runtime/vm/object_store.h @@ -175,13 +175,14 @@ class ObjectPointerVisitor; RW(Function, suspend_state_yield_async_star) \ RW(Function, suspend_state_return_async_star) \ RW(Function, suspend_state_init_sync_star) \ - RW(Function, suspend_state_yield_sync_star) \ - RW(Function, suspend_state_return_sync_star) \ + RW(Function, suspend_state_suspend_sync_star_at_start) \ RW(Function, suspend_state_handle_exception) \ RW(Class, async_star_stream_controller) \ RW(Class, stream_class) \ + RW(Class, sync_star_iterator_class) \ RW(Field, async_star_stream_controller_async_star_body) \ RW(Field, sync_star_iterator_current) \ + RW(Field, sync_star_iterator_state) \ RW(Field, sync_star_iterator_yield_star_iterable) \ ARW_RELAXED(Smi, future_timeout_future_index) \ ARW_RELAXED(Smi, future_wait_future_index) \ @@ -263,8 +264,8 @@ class ObjectPointerVisitor; RW(Code, yield_async_star_stub) \ RW(Code, return_async_star_stub) \ RW(Code, init_sync_star_stub) \ - RW(Code, yield_sync_star_stub) \ - RW(Code, return_sync_star_stub) \ + RW(Code, suspend_sync_star_at_start_stub) \ + RW(Code, suspend_sync_star_at_yield_stub) \ RW(Array, dispatch_table_code_entries) \ RW(GrowableObjectArray, instructions_tables) \ RW(Array, obfuscation_map) \ @@ -351,8 +352,8 @@ class ObjectPointerVisitor; DO(yield_async_star_stub, YieldAsyncStar) \ DO(return_async_star_stub, ReturnAsyncStar) \ DO(init_sync_star_stub, InitSyncStar) \ - DO(yield_sync_star_stub, YieldSyncStar) \ - DO(return_sync_star_stub, ReturnSyncStar) \ + DO(suspend_sync_star_at_start_stub, SuspendSyncStarAtStart) \ + DO(suspend_sync_star_at_yield_stub, SuspendSyncStarAtYield) \ DO(instance_of_stub, InstanceOf) #define ISOLATE_OBJECT_STORE_FIELD_LIST(R_, RW) \ diff --git a/runtime/vm/runtime_entry.cc b/runtime/vm/runtime_entry.cc index 46011743bb7..b75329ad7ae 100644 --- a/runtime/vm/runtime_entry.cc +++ b/runtime/vm/runtime_entry.cc @@ -737,6 +737,13 @@ DEFINE_RUNTIME_ENTRY(AllocateSuspendState, 2) { } result = SuspendState::New(frame_size, function_data, SpaceForRuntimeAllocation()); + if (function_data.GetClassId() == + Class::Handle(zone, object_store->sync_star_iterator_class()).id()) { + // Refresh _SyncStarIterator._state with the new SuspendState object. + function_data.SetField( + Field::Handle(zone, object_store->sync_star_iterator_state()), + result); + } } else { result = SuspendState::New(frame_size, Instance::Cast(previous_state), SpaceForRuntimeAllocation()); diff --git a/runtime/vm/stub_code_list.h b/runtime/vm/stub_code_list.h index 5c496f0d539..f233db07030 100644 --- a/runtime/vm/stub_code_list.h +++ b/runtime/vm/stub_code_list.h @@ -159,8 +159,8 @@ namespace dart { V(YieldAsyncStar) \ V(ReturnAsyncStar) \ V(InitSyncStar) \ - V(YieldSyncStar) \ - V(ReturnSyncStar) \ + V(SuspendSyncStarAtStart) \ + V(SuspendSyncStarAtYield) \ V(AsyncExceptionHandler) \ V(CloneSuspendState) \ V(UnknownDartCode) diff --git a/runtime/vm/symbols.h b/runtime/vm/symbols.h index ef48ca1d21e..7b5bd6a1f9e 100644 --- a/runtime/vm/symbols.h +++ b/runtime/vm/symbols.h @@ -446,6 +446,7 @@ class ObjectPointerVisitor; V(_stackTrace, "_stackTrace") \ V(_state, "_state") \ V(_stateData, "_stateData") \ + V(_suspendSyncStarAtStart, "_suspendSyncStarAtStart") \ V(_toString, "_toString") \ V(_varData, "_varData") \ V(_wordCharacterMap, "_wordCharacterMap") \ diff --git a/runtime/vm/thread.h b/runtime/vm/thread.h index e0bc2a0dd21..df80a8655c2 100644 --- a/runtime/vm/thread.h +++ b/runtime/vm/thread.h @@ -138,8 +138,6 @@ class Thread; StubCode::ReturnAsyncNotFuture().ptr(), nullptr) \ V(CodePtr, return_async_star_stub_, StubCode::ReturnAsyncStar().ptr(), \ nullptr) \ - V(CodePtr, return_sync_star_stub_, StubCode::ReturnSyncStar().ptr(), \ - nullptr) \ V(CodePtr, stack_overflow_shared_without_fpu_regs_stub_, \ StubCode::StackOverflowSharedWithoutFPURegs().ptr(), nullptr) \ V(CodePtr, stack_overflow_shared_with_fpu_regs_stub_, \ @@ -186,8 +184,7 @@ class Thread; V(suspend_state_yield_async_star) \ V(suspend_state_return_async_star) \ V(suspend_state_init_sync_star) \ - V(suspend_state_yield_sync_star) \ - V(suspend_state_return_sync_star) \ + V(suspend_state_suspend_sync_star_at_start) \ V(suspend_state_handle_exception) // This assertion marks places which assume that boolean false immediate diff --git a/sdk/lib/_internal/vm/lib/async_patch.dart b/sdk/lib/_internal/vm/lib/async_patch.dart index 0b532b0133e..29ff029ffc4 100644 --- a/sdk/lib/_internal/vm/lib/async_patch.dart +++ b/sdk/lib/_internal/vm/lib/async_patch.dart @@ -475,24 +475,11 @@ class _SuspendState { @pragma("vm:entry-point", "call") @pragma("vm:invisible") - Object? _yieldSyncStar(Object? object) { - if (_trace) print('_yieldSyncStar($object)'); + Object? _suspendSyncStarAtStart(Object? object) { + if (_trace) print('_suspendSyncStarAtStart($object)'); final data = _functionData; - if (data is _SyncStarIterable) { - data._stateAtStart = this; - return data; - } else { - // Update state in the iterator in case SuspendState was reallocated. - unsafeCast<_SyncStarIterator>(data)._state = this; - } - return true; - } - - @pragma("vm:entry-point", "call") - @pragma("vm:invisible") - static bool _returnSyncStar(Object suspendState, Object? returnValue) { - if (_trace) print('_returnSyncStar'); - return false; + unsafeCast<_SyncStarIterable>(data)._stateAtStart = this; + return data; } @pragma("vm:recognized", "other") @@ -603,8 +590,8 @@ class _SyncStarIterator implements Iterator { try { // Resume current sync* method in order to move to the next value. - final bool hasMore = - _state!._resume(null, pendingException, pendingStackTrace) as bool; + final bool hasMore = unsafeCast(unsafeCast<_SuspendState>(_state) + ._resume(null, pendingException, pendingStackTrace)); pendingException = null; pendingStackTrace = null; if (!hasMore) {