Disassembler uses the same format for variables and registers #48692
Labels
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
type-enhancement
A request for a change that isn't a bug
vm-technical-debt
This label tries to capture all the technical debt that we have accumulated in the Dart VM
Consider:
The disassembler uses
v[0-9]+
both for the temporary variables and for the FPU registers on Arm64.This leads to some confusion as e.g.
v18
might refer to both a variable and a register, holding different values.We should probably come up with some separate naming scheme for the variables to distinguish them from the registers
The text was updated successfully, but these errors were encountered: