Commit 13640f6a authored by Thibaud Michaud's avatar Thibaud Michaud Committed by V8 LUCI CQ

[wasm][liftoff] Add missing call desc lowering

R=clemensb@chromium.org

Bug: chromium:1307603
Change-Id: I1924aeb43dcca3eaee5b54b1e105c78b28f66c07
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3560438Reviewed-by: 's avatarClemens Backes <clemensb@chromium.org>
Commit-Queue: Thibaud Michaud <thibaudm@chromium.org>
Cr-Commit-Position: refs/heads/main@{#79677}
parent 185d6116
......@@ -6602,7 +6602,8 @@ WasmCompilationResult ExecuteLiftoffCompilation(
result.source_positions = compiler->GetSourcePositionTable();
result.protected_instructions_data = compiler->GetProtectedInstructionsData();
result.frame_slot_count = compiler->GetTotalFrameSlotCountForGC();
result.tagged_parameter_slots = call_descriptor->GetTaggedParameterSlots();
auto* lowered_call_desc = GetLoweredCallDescriptor(&zone, call_descriptor);
result.tagged_parameter_slots = lowered_call_desc->GetTaggedParameterSlots();
result.func_index = func_index;
result.result_tier = ExecutionTier::kLiftoff;
result.for_debugging = for_debugging;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment