Within a function, incoming arguments are named as arg_1, arg_2...; however, in the caller, the argument variables to the callee are not documented. It would be nice if, beside a call instruction, something like this showed up: call sub_0xf00 {var_x, var_y, var_z} meaning that the local variable var_x in the current function is passed as the first argument to sub_0xf00.
Within a function, incoming arguments are named as
arg_1
,arg_2
...; however, in the caller, the argument variables to the callee are not documented. It would be nice if, beside acall
instruction, something like this showed up:call sub_0xf00 {var_x, var_y, var_z}
meaning that the local variablevar_x
in the current function is passed as the first argument tosub_0xf00
.