Variables on the stack are not identified by bp/sp+<offset> anymore, but by their address from the bottom of the stack frame (RzStackAddr), independent of how they are accessed. So now there are only two kinds of variables: stack and register. This required some major refactoring and other changes: * RzAnalysisVar.isarg was removed. Whether a variable is an argument is now specified implicitly by its storage location. * Varsub of struct fields had to be rewritten so fields can be queried by arbitrary stack addresses using the recently introduced sp tracking, as the old approach to fill a list with all fields would not work anymore. * analysis.vars.stackname was removed, new behavior is more similar to this being true before. * Variables will not be created at stack+0 now, because the return address is there. Before, vars were only created sometimes in such cases. * Variables created from bp offsets in x86 are not deleted anymore if the function's bp_frame is false (see removed rz_analysis_function_delete_vars_by_kind(fcn, RZ_ANALYSIS_VAR_KIND_BPV); calls). This may lead to some false-positive detected variables. Whether this really is a practical issue is yet to be seen. At least there are no meaningful tests that are broken by this. * Applying variables from dwarf needed some fixes for determining the correct stack locations of variables in order to write meaningful tests. The handling is still not entirely correct for all possibilities of dwarf info, but at least the changed/added test cases are right and serve as a reference for future changes. * Projects version 11 is introduced. * afvb commands have been removed, afvs now handles all stack vars.
27 lines
659 B
Text
27 lines
659 B
Text
NAME=afvd
|
|
FILE==
|
|
CMDS=<<EOF
|
|
e asm.arch=x86
|
|
e asm.bits=64
|
|
wx 554889e54883ec2848897c24204889742418488995e0ffffff48898dd8ffffff4883c4285dc3
|
|
af
|
|
aei
|
|
aeim
|
|
ar rdi=0x1111111111111111
|
|
ar rsi=0x2222222222222222
|
|
ar rdx=0x3333333333333333
|
|
ar rcx=0x4444444444444444
|
|
7ds
|
|
afvd
|
|
EOF
|
|
EXPECT=<<EOF
|
|
var var_10h = 0x00177ff0 = (qword)0x1111111111111111
|
|
var var_18h = 0x00177fe8 = (qword)0x2222222222222222
|
|
var var_28h = 0x00177fd8 = (qword)0x3333333333333333
|
|
var var_30h = 0x00177fd0 = (qword)0x4444444444444444
|
|
arg arg1 = : rdi : 0x1111111111111111
|
|
arg arg2 = : rsi : 0x2222222222222222
|
|
arg arg3 = : rdx : 0x3333333333333333
|
|
arg arg4 = : rcx : 0x4444444444444444
|
|
EOF
|
|
RUN
|