mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 13:19:54 +00:00
53 lines
1.1 KiB
C
53 lines
1.1 KiB
C
/* radare - LGPL - Copyright 2014-2018 - pancake, dso */
|
|
|
|
#include <r_anal.h>
|
|
|
|
RAnalSwitchOp *switch_op_new() {
|
|
RAnalSwitchOp * swop = R_NEW0 (RAnalSwitchOp);
|
|
if (swop) {
|
|
swop->cases = r_list_new ();
|
|
if (!swop->cases) {
|
|
free (swop);
|
|
return NULL;
|
|
}
|
|
swop->cases->free = (void *)free;
|
|
swop->min_val = swop->def_val = swop->max_val = 0;
|
|
}
|
|
return swop;
|
|
}
|
|
|
|
R_API RAnalSwitchOp * r_anal_switch_op_new(ut64 addr, ut64 min_val, ut64 def_val) {
|
|
RAnalSwitchOp *swop = switch_op_new ();
|
|
if (swop) {
|
|
swop->addr = addr;
|
|
swop->min_val = min_val;
|
|
swop->def_val = min_val;
|
|
swop->max_val = min_val;
|
|
}
|
|
return swop;
|
|
}
|
|
|
|
R_API void r_anal_switch_op_free(RAnalSwitchOp * swop) {
|
|
if (swop) {
|
|
r_list_free (swop->cases);
|
|
free (swop);
|
|
}
|
|
}
|
|
|
|
R_API RAnalCaseOp* r_anal_switch_op_add_case(RAnalSwitchOp * swop, ut64 addr, ut64 value, ut64 jump) {
|
|
if (!swop) {
|
|
return NULL;
|
|
}
|
|
RAnalCaseOp * caseop = R_NEW0 (RAnalCaseOp);
|
|
if (!caseop) {
|
|
return NULL;
|
|
}
|
|
caseop->addr = addr;
|
|
caseop->value = value;
|
|
caseop->jump = jump;
|
|
r_list_append (swop->cases, caseop);
|
|
return caseop;
|
|
}
|
|
|
|
|