[vm] FlowGraphCompiler::EmitMove
does not support kUnboxedFloat from const source to stack
#53900
Labels
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
vm-technical-debt
This label tries to capture all the technical debt that we have accumulated in the Dart VM
For const moves, it uses the constant instruction:
sdk/runtime/vm/compiler/backend/flow_graph_compiler_arm.cc
Lines 906 to 916 in 5403dc4
And this instruction doesn't support kUnboxedFloat, and silently does the wrong thing on some archs:
Silent failure on arm32, assuming kTagged:
sdk/runtime/vm/compiler/backend/il_arm.cc
Lines 903 to 917 in 5403dc4
Discovered on https://dart-review.googlesource.com/c/sdk/+/284300/59
The text was updated successfully, but these errors were encountered: