file_name stringlengths 143 146 | original_function_name stringlengths 1 245 | stripped_function_name stringlengths 1 45 | decompiled_code_original stringlengths 34 500k ⌀ | decompiled_code_stripped stringlengths 37 500k ⌀ | assembly_code stringlengths 3 344k ⌀ | dataflowgraph_original stringlengths 26 18.7M | dataflowgraph_stripped stringlengths 26 30.3M | controlflowgraph_original stringlengths 26 364k | controlflowgraph_stripped stringlengths 26 364k | graphImage_original float64 | graphImage_stripped float64 | pcode_edges_original stringlengths 2 9.94M | pcode_edges_stripped stringlengths 2 16.2M | pcode_graph_original stringlengths 26 19.1M | pcode_graph_stripped stringlengths 26 31M | address stringlengths 8 8 | arch stringclasses 1
value | opt_level stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
48_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | tok_unget | FUN_00402edb |
/* WARNING: Unknown calling convention */
void tok_unget(token *t)
{
token *ptVar1;
token *next;
token *in_RDI;
do {
ptVar1 = in_RDI;
in_RDI = ptVar1->next;
ptVar1->next = tok_buf;
tok_buf = ptVar1;
} while (in_RDI != (token *)0x0);
return;
}
|
void FUN_00402edb(long param_1)
{
long lVar1;
do {
lVar1 = param_1;
param_1 = *(long *)(lVar1 + 0x20);
*(long *)(lVar1 + 0x20) = DAT_004074a0;
DAT_004074a0 = lVar1;
} while (param_1 != 0);
return;
}
| PUSH RBP
MOV RBP,RSP
PUSH RBX
MOV RAX,RDI
MOV RBX,qword ptr [RAX + 0x20]
MOV RDX,qword ptr [0x004074a0]
MOV qword ptr [RAX + 0x20],RDX
MOV qword ptr [0x004074a0],RAX
MOV RAX,RBX
TEST RAX,RAX
JNZ 0x00402ee3
NOP
NOP
MOV RBX,qword ptr [RBP + -0x8]
LEAVE
RET | {"edges": [{"source": "const_32", "type": "use", "target": "PTRSUB_00402ee3_59"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_00402eff_27"}, {"source": "unique_268435504", "type": "use", "target": "COPY_00402ee3_63"}, {"source": "unique_57088", "type": "use", "target": "INT_NOTEQUAL_00402efc_2... | {"edges": [{"source": "INT_ADD_00402eee_12", "type": "def", "target": "unique_268435520"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_00402eff_27"}, {"source": "unique_57088", "type": "use", "target": "COPY_00402eff_60"}, {"source": "INT_ADD_00402ee3_8", "type": "def", "target": "unique_26843... | {"edges": [{"source": "00402edb", "type": "control_flow", "target": "00402ee3"}, {"source": "00402ee3", "type": "control_flow", "target": "00402ee3"}, {"source": "00402ee3", "type": "control_flow", "target": "00402f01"}], "nodes": [{"label": "00402edb", "type": "basic_block", "id": "00402edb"}, {"label": "00402ee3", "t... | {"edges": [{"source": "00402edb", "type": "control_flow", "target": "00402ee3"}, {"source": "00402ee3", "type": "control_flow", "target": "00402ee3"}, {"source": "00402ee3", "type": "control_flow", "target": "00402f01"}], "nodes": [{"label": "00402edb", "type": "basic_block", "id": "00402edb"}, {"label": "00402ee3", "t... | null | null | [["unique_268435504", "COPY_00402ee3_63", "input"], ["unique_57088", "COPY_00402eff_62", "input"], ["COPY_00402f08_56", "addrtied_004074a0", "output"], ["addrtied_004074a0", "COPY_00402f08_56", "input"], ["INT_NOTEQUAL_00402efc_21", "reg_register:00000206", "output"], ["const_433", "LOAD_00402ee3_9", "input"], ["unique... | [["unique_268435504", "MULTIEQUAL_00402ee3_58", "input"], ["COPY_00402ee3_61", "reg_register:00000000", "output"], ["reg_register:00000038", "COPY_00402ee0_59", "input"], ["CAST_00402eee_65", "unique_18176", "output"], ["const_32", "INT_ADD_00402eee_12", "input"], ["COPY_00402f08_56", "addrtied_004074a0", "output"], ["... | {"edges": [{"source": "unique_268435504", "type": "input", "target": "COPY_00402ee3_63"}, {"source": "unique_57088", "type": "input", "target": "COPY_00402eff_62"}, {"source": "COPY_00402f08_56", "type": "output", "target": "addrtied_004074a0"}, {"source": "addrtied_004074a0", "type": "input", "target": "COPY_00402f08_... | {"edges": [{"source": "unique_268435504", "type": "input", "target": "MULTIEQUAL_00402ee3_58"}, {"source": "COPY_00402ee3_61", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "input", "target": "COPY_00402ee0_59"}, {"source": "CAST_00402eee_65", "type": "output", "targe... | 00402edb | .. | .. |
49_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | tok_list_append | FUN_00402f09 |
void tok_list_append(token *h,token *t)
{
token *t_local;
token *h_local;
if (h->head == (token *)0x0) {
h->tail = t;
h->head = h->tail;
}
else {
h->tail->next = t;
h->tail = t;
}
return;
}
|
void FUN_00402f09(long param_1,undefined8 param_2)
{
if (*(long *)(param_1 + 0x28) == 0) {
*(undefined8 *)(param_1 + 0x30) = param_2;
*(undefined8 *)(param_1 + 0x28) = *(undefined8 *)(param_1 + 0x30);
}
else {
*(undefined8 *)(*(long *)(param_1 + 0x30) + 0x20) = param_2;
*(undefined8 *)(param_1 +... | PUSH RBP
MOV RBP,RSP
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV RAX,qword ptr [RBP + -0x8]
MOV RAX,qword ptr [RAX + 0x28]
TEST RAX,RAX
JNZ 0x00402f40
MOV RAX,qword ptr [RBP + -0x8]
MOV RDX,qword ptr [RBP + -0x10]
MOV qword ptr [RAX + 0x30],RDX
MOV RAX,qword ptr [RBP + -0x8]
MOV RDX,qword ptr [RA... | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "PTRSUB_00402f32_86"}, {"source": "unique_18176", "type": "use", "target": "STORE_00402f4c_67"}, {"source": "unique_18176", "type": "use", "target": "STORE_00402f3a_47"}, {"source": "reg_register:00000038", "type": "use", "target": "PTRSUB_00402f3a... | {"edges": [{"source": "unique_18176", "type": "use", "target": "STORE_00402f4c_67"}, {"source": "unique_18176", "type": "use", "target": "STORE_00402f3a_47"}, {"source": "CAST_00402f58_87", "type": "def", "target": "unique_18176"}, {"source": "const_48", "type": "use", "target": "INT_ADD_00402f44_59"}, {"source": "reg_... | {"edges": [{"source": "00402f09", "type": "control_flow", "target": "00402f40"}, {"source": "00402f09", "type": "control_flow", "target": "00402f22"}, {"source": "00402f22", "type": "control_flow", "target": "00402f5c"}, {"source": "00402f40", "type": "control_flow", "target": "00402f5c"}], "nodes": [{"label": "00402f0... | {"edges": [{"source": "00402f09", "type": "control_flow", "target": "00402f40"}, {"source": "00402f09", "type": "control_flow", "target": "00402f22"}, {"source": "00402f22", "type": "control_flow", "target": "00402f5c"}, {"source": "00402f40", "type": "control_flow", "target": "00402f5c"}], "nodes": [{"label": "00402f0... | null | null | [["unique_18176", "LOAD_00402f19_14", "input"], ["const_433", "STORE_00402f4c_67", "input"], ["const_0", "RETURN_00402f5e_55", "input"], ["unique_57088", "INT_EQUAL_00402f1d_20", "input"], ["const_433", "STORE_00402f3a_47", "input"], ["unique_57088", "PTRSUB_00402f4c_89", "input"], ["const_0", "INT_EQUAL_00402f1d_20", ... | [["unique_18176", "LOAD_00402f19_14", "input"], ["unique_268435464", "CAST_00402f19_84", "input"], ["unique_268435472", "CAST_00402f44_85", "input"], ["const_32", "INT_ADD_00402f4c_65", "input"], ["reg_register:00000038", "INT_ADD_00402f44_59", "input"], ["const_433", "STORE_00402f4c_67", "input"], ["const_0", "RETURN_... | {"edges": [{"source": "unique_18176", "type": "input", "target": "LOAD_00402f19_14"}, {"source": "const_433", "type": "input", "target": "STORE_00402f4c_67"}, {"source": "const_0", "type": "input", "target": "RETURN_00402f5e_55"}, {"source": "unique_57088", "type": "input", "target": "INT_EQUAL_00402f1d_20"}, {"source"... | {"edges": [{"source": "unique_18176", "type": "input", "target": "LOAD_00402f19_14"}, {"source": "unique_268435464", "type": "input", "target": "CAST_00402f19_84"}, {"source": "unique_268435472", "type": "input", "target": "CAST_00402f44_85"}, {"source": "const_32", "type": "input", "target": "INT_ADD_00402f4c_65"}, {"... | 00402f09 | .. | .. |
50_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | tok_alloc | FUN_00402f5f |
/* WARNING: Unknown calling convention */
token * tok_alloc(void)
{
token *ptVar1;
vstring *pvVar2;
token *t;
if (tok_pool == (token *)0x0) {
ptVar1 = (token *)malloc(0x38);
if (ptVar1 != (token *)0x0) {
pvVar2 = vs_alloc(5);
ptVar1->vstr = pvVar2;
if (ptVar1->vstr != (vstring *)... |
void * FUN_00402f5f(void)
{
void *pvVar1;
undefined8 uVar2;
if (DAT_004074a8 == (void *)0x0) {
pvVar1 = malloc(0x38);
if (pvVar1 != (void *)0x0) {
uVar2 = FUN_004042b6(5);
*(undefined8 *)((long)pvVar1 + 0x18) = uVar2;
if (*(long *)((long)pvVar1 + 0x18) != 0) goto LAB_00402fca;
}... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
MOV RAX,qword ptr [0x004074a8]
TEST RAX,RAX
JZ 0x00402f88
MOV RBX,qword ptr [0x004074a8]
MOV RAX,qword ptr [RBX + 0x20]
MOV qword ptr [0x004074a8],RAX
JMP 0x00402fca
MOV EDI,0x38
MOV EAX,0x0
CALL 0x004010f0
MOV RBX,RAX
TEST RBX,RBX
JZ 0x00402fbb
MOV EDI,0x5
MOV EAX,0x0
CALL 0x0... | {"edges": [{"source": "const_35", "type": "use", "target": "INDIRECT_00402fca_184"}, {"source": "INDIRECT_00402fd6_185", "type": "def", "target": "addrtied_004074a8"}, {"source": "INDIRECT_00402f92_180", "type": "def", "target": "addrtied_004074a8"}, {"source": "reg_register:00000018", "type": "use", "target": "PTRSUB_... | {"edges": [{"source": "const_35", "type": "use", "target": "INDIRECT_00402fca_184"}, {"source": "CAST_00402fd2_217", "type": "def", "target": "unique_268435620"}, {"source": "INDIRECT_00402fd6_185", "type": "def", "target": "addrtied_004074a8"}, {"source": "addrtied_004074a8", "type": "use", "target": "COPY_00402f86_20... | {"edges": [{"source": "00402f5f", "type": "control_flow", "target": "00402f88"}, {"source": "00402f5f", "type": "control_flow", "target": "00402f74"}, {"source": "00402f74", "type": "control_flow", "target": "00402fca"}, {"source": "00402f88", "type": "control_flow", "target": "004010f0"}, {"source": "00402f88", "type"... | {"edges": [{"source": "00402f5f", "type": "control_flow", "target": "00402f88"}, {"source": "00402f5f", "type": "control_flow", "target": "00402f74"}, {"source": "00402f74", "type": "control_flow", "target": "00402fca"}, {"source": "00402f88", "type": "control_flow", "target": "004010f0"}, {"source": "00402f88", "type"... | null | null | [["COPY_00402f86_215", "unique_268435604", "output"], ["const_4215001", "COPY_00402fc5_206", "input"], ["var_004010f0", "CALL_00402f92_62", "input"], ["const_24", "PTRSUB_00402fae_208", "input"], ["var_00402fca", "BRANCH_00402f86_32", "input"], ["PTRSUB_00402fde_214", "unique_18176", "output"], ["const_433", "LOAD_0040... | [["const_4215001", "COPY_00402fc5_206", "input"], ["var_004010f0", "CALL_00402f92_62", "input"], ["var_00402fca", "BRANCH_00402f86_32", "input"], ["reg_register:00000000", "MULTIEQUAL_00402fca_131", "input"], ["COPY_00402f86_207", "unique_268435540", "output"], ["const_433", "LOAD_00402fd2_37", "input"], ["reg_register... | {"edges": [{"source": "COPY_00402f86_215", "type": "output", "target": "unique_268435604"}, {"source": "const_4215001", "type": "input", "target": "COPY_00402fc5_206"}, {"source": "var_004010f0", "type": "input", "target": "CALL_00402f92_62"}, {"source": "const_24", "type": "input", "target": "PTRSUB_00402fae_208"}, {"... | {"edges": [{"source": "const_4215001", "type": "input", "target": "COPY_00402fc5_206"}, {"source": "var_004010f0", "type": "input", "target": "CALL_00402f92_62"}, {"source": "var_00402fca", "type": "input", "target": "BRANCH_00402f86_32"}, {"source": "reg_register:00000000", "type": "input", "target": "MULTIEQUAL_00402... | 00402f5f | .. | .. |
51_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | tok_free | FUN_00402feb |
/* WARNING: Unknown calling convention */
void tok_free(token *t)
{
token *in_RDI;
if (in_RDI->next != (token *)0x0) {
tok_free(in_RDI);
}
if (in_RDI->head != (token *)0x0) {
tok_free(in_RDI);
}
in_RDI->next = tok_pool;
in_RDI->tail = (token *)0x0;
in_RDI->head = in_RDI->tail;
tok_pool =... |
void FUN_00402feb(long param_1)
{
if (*(long *)(param_1 + 0x20) != 0) {
FUN_00402feb(*(undefined8 *)(param_1 + 0x20));
}
if (*(long *)(param_1 + 0x28) != 0) {
FUN_00402feb(*(undefined8 *)(param_1 + 0x28));
}
*(long *)(param_1 + 0x20) = DAT_004074a8;
*(undefined8 *)(param_1 + 0x30) = 0;
*(undefin... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
MOV RBX,RDI
MOV RAX,qword ptr [RBX + 0x20]
TEST RAX,RAX
JZ 0x00403011
MOV RAX,qword ptr [RBX + 0x20]
MOV RDI,RAX
MOV EAX,0x0
CALL 0x00402feb
MOV RAX,qword ptr [RBX + 0x28]
TEST RAX,RAX
JZ 0x0040302b
MOV RAX,qword ptr [RBX + 0x28]
MOV RDI,RAX
MOV EAX,0x0
CALL 0x00402feb
MOV RAX,... | {"edges": [{"source": "unique_18176", "type": "use", "target": "LOAD_00402ff7_18"}, {"source": "reg_register:00000038", "type": "use", "target": "PTRSUB_00403032_160"}, {"source": "unique_57088", "type": "use", "target": "INT_NOTEQUAL_00403015_45"}, {"source": "LOAD_0040303e_67", "type": "def", "target": "unique_57088"... | {"edges": [{"source": "unique_18176", "type": "use", "target": "LOAD_00402ff7_18"}, {"source": "INT_ADD_00403036_63", "type": "def", "target": "unique_268435556"}, {"source": "reg_register:00000038", "type": "use", "target": "INT_ADD_00402ff7_17"}, {"source": "CAST_0040301a_161", "type": "def", "target": "unique_18176"... | {"edges": [{"source": "00402feb", "type": "control_flow", "target": "00403011"}, {"source": "00402feb", "type": "control_flow", "target": "00403000"}, {"source": "00403000", "type": "control_flow", "target": "00402feb"}, {"source": "00403000", "type": "control_flow", "target": "00403011"}, {"source": "00403011", "type"... | {"edges": [{"source": "00402feb", "type": "control_flow", "target": "00403011"}, {"source": "00402feb", "type": "control_flow", "target": "00403000"}, {"source": "00403000", "type": "control_flow", "target": "00402feb"}, {"source": "00403000", "type": "control_flow", "target": "00403011"}, {"source": "00403011", "type"... | null | null | [["const_433", "LOAD_00403011_39", "input"], ["COPY_00403053_138", "addrtied_004074a8", "output"], ["addrtied_004074a8", "MULTIEQUAL_0040302b_142", "input"], ["reg_register:00000206", "CBRANCH_00402ffe_29", "input"], ["const_40", "PTRSUB_00403011_159", "input"], ["addrtied_004074a8", "INDIRECT_0040300c_136", "input"], ... | [["const_433", "LOAD_00403011_39", "input"], ["CAST_00403032_162", "unique_18176", "output"], ["COPY_00403053_138", "addrtied_004074a8", "output"], ["addrtied_004074a8", "MULTIEQUAL_0040302b_142", "input"], ["reg_register:00000206", "CBRANCH_00402ffe_29", "input"], ["addrtied_004074a8", "INDIRECT_0040300c_136", "input"... | {"edges": [{"source": "const_433", "type": "input", "target": "LOAD_00403011_39"}, {"source": "COPY_00403053_138", "type": "output", "target": "addrtied_004074a8"}, {"source": "addrtied_004074a8", "type": "input", "target": "MULTIEQUAL_0040302b_142"}, {"source": "reg_register:00000206", "type": "input", "target": "CBRA... | {"edges": [{"source": "const_433", "type": "input", "target": "LOAD_00403011_39"}, {"source": "CAST_00403032_162", "type": "output", "target": "unique_18176"}, {"source": "COPY_00403053_138", "type": "output", "target": "addrtied_004074a8"}, {"source": "addrtied_004074a8", "type": "input", "target": "MULTIEQUAL_0040302... | 00402feb | .. | .. |
52_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | main | FUN_00403054 |
int main(int argc,char **argv)
{
FILE *pFVar1;
token *ptVar2;
token *t;
char **argv_local;
int argc_local;
if (1 < argc) {
pFVar1 = freopen(argv[1],"r",stdin);
if (pFVar1 == (FILE *)0x0) {
fprintf(stderr,"Cannot open \'%s\'\n",argv[1]);
/* WARNING: Subroutine does not ... |
bool FUN_00403054(int param_1,long param_2)
{
FILE *pFVar1;
int *piVar2;
long lVar3;
if (1 < param_1) {
pFVar1 = freopen(*(char **)(param_2 + 8),"r",stdin);
if (pFVar1 == (FILE *)0x0) {
fprintf(stderr,"Cannot open \'%s\'\n",*(undefined8 *)(param_2 + 8));
/* WARNING: Subrou... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x18
MOV dword ptr [RBP + -0x14],EDI
MOV qword ptr [RBP + -0x20],RSI
CMP dword ptr [RBP + -0x14],0x1
JLE 0x004030bc
MOV RDX,qword ptr [0x00407470]
MOV RAX,qword ptr [RBP + -0x20]
ADD RAX,0x8
MOV RAX,qword ptr [RAX]
MOV ESI,0x4050e7
MOV RDI,RAX
CALL 0x004010a0
TEST RAX,RAX
JNZ 0x004... | {"edges": [{"source": "INDIRECT_0040310f_570", "type": "def", "target": "addrtied_00407470"}, {"source": "const_254", "type": "use", "target": "INDIRECT_00403153_548"}, {"source": "INT_NOTEQUAL_0040317d_195", "type": "def", "target": "reg_register:00000206"}, {"source": "COPY_004030ad_697", "type": "def", "target": "un... | {"edges": [{"source": "unique_268435766", "type": "use", "target": "CAST_004030ea_705"}, {"source": "INDIRECT_0040310f_570", "type": "def", "target": "addrtied_00407470"}, {"source": "const_254", "type": "use", "target": "INDIRECT_00403153_548"}, {"source": "INT_NOTEQUAL_0040317d_195", "type": "def", "target": "reg_reg... | {"edges": [{"source": "00403054", "type": "control_flow", "target": "004030bc"}, {"source": "00403054", "type": "control_flow", "target": "0040306a"}, {"source": "0040306a", "type": "control_flow", "target": "004010a0"}, {"source": "0040306a", "type": "control_flow", "target": "004030bc"}, {"source": "0040306a", "type"... | {"edges": [{"source": "00403054", "type": "control_flow", "target": "004030bc"}, {"source": "00403054", "type": "control_flow", "target": "0040306a"}, {"source": "0040306a", "type": "control_flow", "target": "004010a0"}, {"source": "0040306a", "type": "control_flow", "target": "004030bc"}, {"source": "0040306a", "type"... | null | null | [["addrtied_00407460", "MULTIEQUAL_004030bc_560", "input"], ["INT_EQUAL_00403137_237", "reg_register:00000206", "output"], ["addrtied_00407560", "INDIRECT_00403084_597", "input"], ["const_433", "LOAD_004030ee_153", "input"], ["COPY_00403084_696", "unique_268435702", "output"], ["addrtied_00407480", "CALL_00403105_161",... | [["addrtied_00407460", "MULTIEQUAL_004030bc_560", "input"], ["INT_EQUAL_00403137_237", "reg_register:00000206", "output"], ["addrtied_00407560", "INDIRECT_00403084_597", "input"], ["const_4215015", "COPY_00403084_698", "input"], ["const_433", "LOAD_004030ee_153", "input"], ["addrtied_00407480", "CALL_00403105_161", "in... | {"edges": [{"source": "addrtied_00407460", "type": "input", "target": "MULTIEQUAL_004030bc_560"}, {"source": "INT_EQUAL_00403137_237", "type": "output", "target": "reg_register:00000206"}, {"source": "addrtied_00407560", "type": "input", "target": "INDIRECT_00403084_597"}, {"source": "const_433", "type": "input", "targ... | {"edges": [{"source": "addrtied_00407460", "type": "input", "target": "MULTIEQUAL_004030bc_560"}, {"source": "INT_EQUAL_00403137_237", "type": "output", "target": "reg_register:00000206"}, {"source": "addrtied_00407560", "type": "input", "target": "INDIRECT_00403084_597"}, {"source": "const_4215015", "type": "input", "... | 00403054 | .. | .. |
53_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | show_arg_names | FUN_0040318b |
/* WARNING: Unknown calling convention */
void show_arg_names(token *t)
{
int iVar1;
token *t_00;
token *in_RDI;
if ((((in_RDI->head->next != (token *)0x0) && (in_RDI->head->next->next == (token *)0x0)) &&
(in_RDI->head->head != (token *)0x0)) &&
(((in_RDI->head->head == in_RDI->head->tail && (... |
void FUN_0040318b(long param_1)
{
int iVar1;
long lVar2;
if ((((*(long *)(*(long *)(param_1 + 0x28) + 0x20) != 0) &&
(*(long *)(*(long *)(*(long *)(param_1 + 0x28) + 0x20) + 0x20) == 0)) &&
(*(long *)(*(long *)(param_1 + 0x28) + 0x28) != 0)) &&
(((*(long *)(*(long *)(param_1 + 0x28) + 0x28)... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
MOV RBX,RDI
MOV RAX,qword ptr [RBX + 0x28]
MOV RAX,qword ptr [RAX + 0x20]
TEST RAX,RAX
JZ 0x00403228
MOV RAX,qword ptr [RBX + 0x28]
MOV RAX,qword ptr [RAX + 0x20]
MOV RAX,qword ptr [RAX + 0x20]
TEST RAX,RAX
JNZ 0x00403228
MOV RAX,qword ptr [RBX + 0x28]
MOV RAX,qword ptr [RAX + ... | {"edges": [{"source": "unique_57088", "type": "use", "target": "INT_NOTEQUAL_0040319f_27"}, {"source": "unique_57088", "type": "use", "target": "PTRSUB_004031fa_608"}, {"source": "const_0", "type": "use", "target": "INT_NOTEQUAL_004031c1_63"}, {"source": "PTRSUB_004031ce_601", "type": "def", "target": "unique_18176"}, ... | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "INT_ADD_004031db_93"}, {"source": "unique_57088", "type": "use", "target": "INT_NOTEQUAL_0040319f_27"}, {"source": "const_32", "type": "use", "target": "INT_ADD_004032a7_295"}, {"source": "const_0", "type": "use", "target": "INT_NOTEQUAL_004031c1_... | {"edges": [{"source": "0040318b", "type": "control_flow", "target": "00403228"}, {"source": "0040318b", "type": "control_flow", "target": "004031a8"}, {"source": "004031a8", "type": "control_flow", "target": "00403228"}, {"source": "004031a8", "type": "control_flow", "target": "004031b9"}, {"source": "004031b9", "type"... | {"edges": [{"source": "0040318b", "type": "control_flow", "target": "00403228"}, {"source": "0040318b", "type": "control_flow", "target": "004031a8"}, {"source": "004031a8", "type": "control_flow", "target": "00403228"}, {"source": "004031a8", "type": "control_flow", "target": "004031b9"}, {"source": "004031b9", "type"... | null | null | [["const_32", "PTRSUB_004031ac_595", "input"], ["INT_EQUAL_00403248_214", "reg_register:00000206", "output"], ["LOAD_00403251_224", "unique_57088", "output"], ["const_0", "CALL_004032a2_294", "input"], ["const_433", "LOAD_00403228_163", "input"], ["const_433", "LOAD_004031ce_76", "input"], ["const_0", "INT_NOTEQUAL_004... | [["CAST_004031fa_608", "unique_18176", "output"], ["INT_EQUAL_00403248_214", "reg_register:00000206", "output"], ["LOAD_00403251_224", "unique_57088", "output"], ["CAST_0040325e_619", "unique_18176", "output"], ["unique_57088", "LOAD_00403262_244", "input"], ["const_433", "LOAD_00403228_163", "input"], ["const_433", "L... | {"edges": [{"source": "const_32", "type": "input", "target": "PTRSUB_004031ac_595"}, {"source": "INT_EQUAL_00403248_214", "type": "output", "target": "reg_register:00000206"}, {"source": "LOAD_00403251_224", "type": "output", "target": "unique_57088"}, {"source": "const_0", "type": "input", "target": "CALL_004032a2_294... | {"edges": [{"source": "CAST_004031fa_608", "type": "output", "target": "unique_18176"}, {"source": "INT_EQUAL_00403248_214", "type": "output", "target": "reg_register:00000206"}, {"source": "LOAD_00403251_224", "type": "output", "target": "unique_57088"}, {"source": "CAST_0040325e_619", "type": "output", "target": "uni... | 0040318b | .. | .. |
54_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | show_arg_types | FUN_004032bc |
/* WARNING: Unknown calling convention */
void show_arg_types(token *t)
{
int iVar1;
long lVar2;
long in_RDI;
if ((((*(long *)(*(long *)(in_RDI + 0x28) + 0x20) != 0) &&
(*(long *)(*(long *)(*(long *)(in_RDI + 0x28) + 0x20) + 0x20) == 0)) &&
(*(long *)(*(long *)(in_RDI + 0x28) + 0x28) != 0)) &... |
void FUN_004032bc(long param_1)
{
int iVar1;
long lVar2;
if ((((*(long *)(*(long *)(param_1 + 0x28) + 0x20) != 0) &&
(*(long *)(*(long *)(*(long *)(param_1 + 0x28) + 0x20) + 0x20) == 0)) &&
(*(long *)(*(long *)(param_1 + 0x28) + 0x28) != 0)) &&
(((*(long *)(*(long *)(param_1 + 0x28) + 0x28)... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
MOV RBX,RDI
MOV RAX,qword ptr [RBX + 0x28]
MOV RAX,qword ptr [RAX + 0x20]
TEST RAX,RAX
JZ 0x00403347
MOV RAX,qword ptr [RBX + 0x28]
MOV RAX,qword ptr [RAX + 0x20]
MOV RAX,qword ptr [RAX + 0x20]
TEST RAX,RAX
JNZ 0x00403347
MOV RAX,qword ptr [RBX + 0x28]
MOV RAX,qword ptr [RAX + ... | {"edges": [{"source": "const_59", "type": "use", "target": "CALL_004033db_307"}, {"source": "LOAD_00403323_121", "type": "def", "target": "unique_57088"}, {"source": "INT_NOTEQUAL_004032d0_27", "type": "def", "target": "reg_register:00000206"}, {"source": "INT_EQUAL_0040336a_207", "type": "def", "target": "reg_register... | {"edges": [{"source": "const_59", "type": "use", "target": "CALL_004033db_307"}, {"source": "LOAD_00403323_121", "type": "def", "target": "unique_57088"}, {"source": "INT_NOTEQUAL_004032d0_27", "type": "def", "target": "reg_register:00000206"}, {"source": "INT_EQUAL_0040336a_207", "type": "def", "target": "reg_register... | {"edges": [{"source": "004032bc", "type": "control_flow", "target": "00403347"}, {"source": "004032bc", "type": "control_flow", "target": "004032d5"}, {"source": "004032d5", "type": "control_flow", "target": "00403347"}, {"source": "004032d5", "type": "control_flow", "target": "004032e6"}, {"source": "004032e6", "type"... | {"edges": [{"source": "004032bc", "type": "control_flow", "target": "00403347"}, {"source": "004032bc", "type": "control_flow", "target": "004032d5"}, {"source": "004032d5", "type": "control_flow", "target": "00403347"}, {"source": "004032d5", "type": "control_flow", "target": "004032e6"}, {"source": "004032e6", "type"... | null | null | [["var_004033af", "CBRANCH_00403357_182", "input"], ["addrtied_0040748c", "INDIRECT_004033db_587", "input"], ["LOAD_0040339b_261", "unique_268435862", "output"], ["LOAD_004032f7_73", "unique_57088", "output"], ["INT_ADD_00403327_123", "unique_268435742", "output"], ["var_004033af", "CBRANCH_0040336d_212", "input"], ["C... | [["var_004033af", "CBRANCH_00403357_182", "input"], ["addrtied_0040748c", "INDIRECT_004033db_587", "input"], ["LOAD_0040339b_261", "unique_268435862", "output"], ["LOAD_004032f7_73", "unique_57088", "output"], ["INT_ADD_00403327_123", "unique_268435742", "output"], ["var_004033af", "CBRANCH_0040336d_212", "input"], ["C... | {"edges": [{"source": "var_004033af", "type": "input", "target": "CBRANCH_00403357_182"}, {"source": "addrtied_0040748c", "type": "input", "target": "INDIRECT_004033db_587"}, {"source": "LOAD_0040339b_261", "type": "output", "target": "unique_268435862"}, {"source": "LOAD_004032f7_73", "type": "output", "target": "uniq... | {"edges": [{"source": "var_004033af", "type": "input", "target": "CBRANCH_00403357_182"}, {"source": "addrtied_0040748c", "type": "input", "target": "INDIRECT_004033db_587"}, {"source": "LOAD_0040339b_261", "type": "output", "target": "unique_268435862"}, {"source": "LOAD_004032f7_73", "type": "output", "target": "uniq... | 004032bc | .. | .. |
55_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | header_flush | FUN_004033fe |
/* WARNING: Unknown calling convention */
void header_flush(token *t)
{
token *in_RDI;
show_arg_names(in_RDI);
put_nl();
show_arg_types(in_RDI);
tok_free(in_RDI);
return;
}
|
void FUN_004033fe(undefined8 param_1)
{
FUN_0040318b(param_1);
FUN_0040268e();
FUN_004032bc(param_1);
FUN_00402feb(param_1);
return;
}
| PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
MOV RBX,RDI
MOV RDI,RBX
MOV EAX,0x0
CALL 0x0040318b
MOV EAX,0x0
CALL 0x0040268e
MOV RDI,RBX
MOV EAX,0x0
CALL 0x004032bc
MOV RDI,RBX
MOV EAX,0x0
CALL 0x00402feb
NOP
MOV RBX,qword ptr [RBP + -0x8]
LEAVE
RET | {"edges": [{"source": "var_0040268e", "type": "use", "target": "CALL_0040341c_25"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00403436_35"}, {"source": "var_0040318b", "type": "use", "target": "CALL_00403412_21"}, {"source": "var_00402feb", "type": "use", "target": "CALL_00403436_35"}, {"source... | {"edges": [{"source": "var_0040268e", "type": "use", "target": "CALL_0040341c_25"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00403436_35"}, {"source": "var_0040318b", "type": "use", "target": "CALL_00403412_21"}, {"source": "var_00402feb", "type": "use", "target": "CALL_00403436_35"}, {"source... | {"edges": [{"source": "004033fe", "type": "control_flow", "target": "0040318b"}, {"source": "004033fe", "type": "control_flow", "target": "0040268e"}, {"source": "004033fe", "type": "control_flow", "target": "004032bc"}, {"source": "004033fe", "type": "control_flow", "target": "00402feb"}], "nodes": [{"label": "004033f... | {"edges": [{"source": "004033fe", "type": "control_flow", "target": "0040318b"}, {"source": "004033fe", "type": "control_flow", "target": "0040268e"}, {"source": "004033fe", "type": "control_flow", "target": "004032bc"}, {"source": "004033fe", "type": "control_flow", "target": "00402feb"}], "nodes": [{"label": "004033f... | null | null | [["var_0040318b", "CALL_00403412_21", "input"], ["reg_register:00000038", "CALL_00403412_21", "input"], ["const_0", "RETURN_00403441_44", "input"], ["reg_register:00000038", "CALL_00403429_30", "input"], ["var_00402feb", "CALL_00403436_35", "input"], ["reg_register:00000038", "CALL_00403436_35", "input"], ["var_0040268... | [["var_0040318b", "CALL_00403412_21", "input"], ["reg_register:00000038", "CALL_00403412_21", "input"], ["const_0", "RETURN_00403441_44", "input"], ["reg_register:00000038", "CALL_00403429_30", "input"], ["var_00402feb", "CALL_00403436_35", "input"], ["reg_register:00000038", "CALL_00403436_35", "input"], ["var_0040268... | {"edges": [{"source": "var_0040318b", "type": "input", "target": "CALL_00403412_21"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00403412_21"}, {"source": "const_0", "type": "input", "target": "RETURN_00403441_44"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00403429_... | {"edges": [{"source": "var_0040318b", "type": "input", "target": "CALL_00403412_21"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00403412_21"}, {"source": "const_0", "type": "input", "target": "RETURN_00403441_44"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00403429_... | 004033fe | .. | .. |
56_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | fpf_header_names | FUN_00403442 |
void fpf_header_names(token *list)
{
token *unaff_RBX;
token *p;
token *t;
token *s;
token *ptVar1;
token *list_local;
for (ptVar1 = list->head; ptVar1 != (token *)0x0; ptVar1 = ptVar1->next) {
tok_show_ch(unaff_RBX);
for (t = ptVar1->head; t != (token *)0x0; t = t->next) {
if (t->tokno... |
void FUN_00403442(long param_1)
{
int *piVar1;
long lVar2;
for (lVar2 = *(long *)(param_1 + 0x28); lVar2 != 0; lVar2 = *(long *)(lVar2 + 0x20)) {
FUN_00402744(lVar2);
for (piVar1 = *(int **)(lVar2 + 0x28); piVar1 != (int *)0x0; piVar1 = *(int **)(piVar1 + 8)) {
if (*piVar1 == 0x100) {
i... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
SUB RSP,0x10
MOV qword ptr [RBP + -0x18],RDI
MOV RAX,qword ptr [RBP + -0x18]
MOV R12,qword ptr [RAX + 0x28]
JMP 0x00403507
MOV RDI,R12
MOV EAX,0x0
CALL 0x00402744
MOV RBX,qword ptr [R12 + 0x28]
JMP 0x004034f9
MOV EAX,dword ptr [RBX]
CMP EAX,0x100
JNZ 0x004034e8
MOV EAX,dword ptr [... | {"edges": [{"source": "LOAD_00403487_116", "type": "def", "target": "unique_57088"}, {"source": "PTRSUB_0040347e_455", "type": "def", "target": "unique_268435621"}, {"source": "MULTIEQUAL_004034f5_314", "type": "def", "target": "reg_register:00000018"}, {"source": "unique_56832", "type": "use", "target": "INT_EQUAL_004... | {"edges": [{"source": "LOAD_00403487_116", "type": "def", "target": "unique_57088"}, {"source": "CAST_00403487_459", "type": "def", "target": "unique_268435653"}, {"source": "MULTIEQUAL_004034f5_314", "type": "def", "target": "reg_register:00000018"}, {"source": "unique_56832", "type": "use", "target": "INT_EQUAL_00403... | {"edges": [{"source": "00403442", "type": "control_flow", "target": "00403507"}, {"source": "0040345e", "type": "control_flow", "target": "00402744"}, {"source": "0040345e", "type": "control_flow", "target": "004034f9"}, {"source": "00403475", "type": "control_flow", "target": "004034e8"}, {"source": "00403475", "type"... | {"edges": [{"source": "00403442", "type": "control_flow", "target": "00403507"}, {"source": "0040345e", "type": "control_flow", "target": "00402744"}, {"source": "0040345e", "type": "control_flow", "target": "004034f9"}, {"source": "00403475", "type": "control_flow", "target": "004034e8"}, {"source": "00403475", "type"... | null | null | [["unique_56832", "INT_EQUAL_00403496_138", "input"], ["unique_268435685", "LOAD_004034b2_167", "input"], ["PTRSUB_00403502_466", "unique_19968", "output"], ["const_433", "LOAD_00403494_131", "input"], ["var_004034d9", "CBRANCH_004034b7_181", "input"], ["reg_register:00000018", "PTRSUB_004034c6_464", "input"], ["unique... | [["unique_56832", "INT_EQUAL_00403496_138", "input"], ["const_433", "LOAD_00403494_131", "input"], ["INT_ADD_004034ae_164", "unique_268435693", "output"], ["var_004034d9", "CBRANCH_004034b7_181", "input"], ["INT_ADD_00403455_25", "unique_268435637", "output"], ["unique_57088", "LOAD_004034b2_167", "input"], ["INT_NOTEQ... | {"edges": [{"source": "unique_56832", "type": "input", "target": "INT_EQUAL_00403496_138"}, {"source": "unique_268435685", "type": "input", "target": "LOAD_004034b2_167"}, {"source": "PTRSUB_00403502_466", "type": "output", "target": "unique_19968"}, {"source": "const_433", "type": "input", "target": "LOAD_00403494_131... | {"edges": [{"source": "unique_56832", "type": "input", "target": "INT_EQUAL_00403496_138"}, {"source": "const_433", "type": "input", "target": "LOAD_00403494_131"}, {"source": "INT_ADD_004034ae_164", "type": "output", "target": "unique_268435693"}, {"source": "var_004034d9", "type": "input", "target": "CBRANCH_004034b7... | 00403442 | .. | .. |
57_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | fpf_header_types | FUN_0040351b |
void fpf_header_types(token *list)
{
token *p;
token *t;
token *s;
token *ptVar1;
token *list_local;
for (ptVar1 = list->head; ptVar1 != (token *)0x0; ptVar1 = ptVar1->next) {
for (t = ptVar1->head; t != (token *)0x0; t = t->next) {
if (t->tokno == 0x100) {
if ((((t->tokno == 0x100) &... |
void FUN_0040351b(long param_1)
{
int *piVar1;
long lVar2;
for (lVar2 = *(long *)(param_1 + 0x28); lVar2 != 0; lVar2 = *(long *)(lVar2 + 0x20)) {
for (piVar1 = *(int **)(lVar2 + 0x28); piVar1 != (int *)0x0; piVar1 = *(int **)(piVar1 + 8)) {
if (*piVar1 == 0x100) {
if ((((*piVar1 == 0x100) &... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
SUB RSP,0x10
MOV qword ptr [RBP + -0x18],RDI
MOV RAX,qword ptr [RBP + -0x18]
MOV R12,qword ptr [RAX + 0x28]
JMP 0x004035ad
MOV RBX,qword ptr [R12 + 0x28]
JMP 0x004035a3
MOV EAX,dword ptr [RBX]
CMP EAX,0x100
JNZ 0x0040359f
MOV EAX,dword ptr [RBX]
CMP EAX,0x100
JNZ 0x00403592
MOV RA... | {"edges": [{"source": "unique_56832", "type": "use", "target": "INT_EQUAL_00403546_103"}, {"source": "var_004035ad", "type": "use", "target": "BRANCH_00403532_28"}, {"source": "PTRSUB_0040355a_388", "type": "def", "target": "unique_268435587"}, {"source": "const_32", "type": "use", "target": "PTRSUB_004035a8_396"}, {"s... | {"edges": [{"source": "unique_56832", "type": "use", "target": "INT_EQUAL_00403546_103"}, {"source": "const_4", "type": "use", "target": "PTRADD_0040358c_386"}, {"source": "INT_ADD_0040352e_25", "type": "def", "target": "unique_268435587"}, {"source": "var_004035ad", "type": "use", "target": "BRANCH_00403532_28"}, {"so... | {"edges": [{"source": "0040351b", "type": "control_flow", "target": "004035ad"}, {"source": "00403534", "type": "control_flow", "target": "004035a3"}, {"source": "0040353b", "type": "control_flow", "target": "0040359f"}, {"source": "0040353b", "type": "control_flow", "target": "00403544"}, {"source": "00403544", "type"... | {"edges": [{"source": "0040351b", "type": "control_flow", "target": "004035ad"}, {"source": "00403534", "type": "control_flow", "target": "004035a3"}, {"source": "0040353b", "type": "control_flow", "target": "0040359f"}, {"source": "0040353b", "type": "control_flow", "target": "00403544"}, {"source": "00403544", "type"... | null | null | [["reg_register:00000206", "CBRANCH_0040357d_176", "input"], ["const_32", "PTRSUB_0040359f_395", "input"], ["const_433", "LOAD_0040358c_183", "input"], ["reg_register:000000a0", "INT_NOTEQUAL_004035ad_33", "input"], ["unique_57088", "INT_NOTEQUAL_00403551_117", "input"], ["reg_register:00000018", "PTRSUB_00403556_387",... | [["reg_register:00000018", "PTRADD_0040358c_386", "input"], ["CAST_00403570_394", "unique_268435635", "output"], ["reg_register:00000206", "CBRANCH_0040357d_176", "input"], ["unique_18176", "CAST_00403563_392", "input"], ["const_433", "LOAD_0040358c_183", "input"], ["reg_register:000000a0", "INT_NOTEQUAL_004035ad_33", ... | {"edges": [{"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_0040357d_176"}, {"source": "const_32", "type": "input", "target": "PTRSUB_0040359f_395"}, {"source": "const_433", "type": "input", "target": "LOAD_0040358c_183"}, {"source": "reg_register:000000a0", "type": "input", "target": "INT_NOTEQU... | {"edges": [{"source": "reg_register:00000018", "type": "input", "target": "PTRADD_0040358c_386"}, {"source": "CAST_00403570_394", "type": "output", "target": "unique_268435635"}, {"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_0040357d_176"}, {"source": "unique_18176", "type": "input", "target":... | 0040351b | .. | .. |
58_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | fpf_header | FUN_004035bd |
void fpf_header(token *l1,token *l2)
{
token *unaff_RBX;
token *l2_local;
token *l1_local;
fpf_header_names(l1);
show_empty_list(unaff_RBX);
put_nl();
fpf_header_types(l1);
return;
}
|
void FUN_004035bd(undefined8 param_1,undefined8 param_2)
{
FUN_00403442(param_1);
FUN_00403876(param_2);
FUN_0040268e();
FUN_0040351b(param_1);
return;
}
| PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV RAX,qword ptr [RBP + -0x8]
MOV RDI,RAX
MOV EAX,0x0
CALL 0x00403442
MOV RAX,qword ptr [RBP + -0x10]
MOV RDI,RAX
MOV EAX,0x0
CALL 0x00403876
MOV EAX,0x0
CALL 0x0040268e
MOV RAX,qword ptr [RBP + -0x8]
MOV RDI,RAX
MOV EAX,0... | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_00403605_46"}, {"source": "reg_register:00000018", "type": "use", "target": "CALL_004035ea_34"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004035d9_26"}, {"source": "var_0040268e", "type": "use", "target": "CALL_00403... | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_00403605_46"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_004035ea_34"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004035d9_26"}, {"source": "var_0040268e", "type": "use", "target": "CALL_00403... | {"edges": [{"source": "004035bd", "type": "control_flow", "target": "00403442"}, {"source": "004035bd", "type": "control_flow", "target": "00403876"}, {"source": "004035bd", "type": "control_flow", "target": "0040268e"}, {"source": "004035bd", "type": "control_flow", "target": "0040351b"}], "nodes": [{"label": "004035b... | {"edges": [{"source": "004035bd", "type": "control_flow", "target": "00403442"}, {"source": "004035bd", "type": "control_flow", "target": "00403876"}, {"source": "004035bd", "type": "control_flow", "target": "0040268e"}, {"source": "004035bd", "type": "control_flow", "target": "0040351b"}], "nodes": [{"label": "004035b... | null | null | [["reg_register:00000038", "CALL_00403605_46", "input"], ["var_0040351b", "CALL_00403605_46", "input"], ["var_00403876", "CALL_004035ea_34", "input"], ["var_0040268e", "CALL_004035f4_38", "input"], ["reg_register:00000038", "CALL_004035d9_26", "input"], ["const_0", "RETURN_0040360c_52", "input"], ["reg_register:0000001... | [["reg_register:00000030", "CALL_004035ea_34", "input"], ["reg_register:00000038", "CALL_00403605_46", "input"], ["var_0040351b", "CALL_00403605_46", "input"], ["var_00403876", "CALL_004035ea_34", "input"], ["var_0040268e", "CALL_004035f4_38", "input"], ["reg_register:00000038", "CALL_004035d9_26", "input"], ["const_0"... | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_00403605_46"}, {"source": "var_0040351b", "type": "input", "target": "CALL_00403605_46"}, {"source": "var_00403876", "type": "input", "target": "CALL_004035ea_34"}, {"source": "var_0040268e", "type": "input", "target": "CALL_004035f4_38"}, ... | {"edges": [{"source": "reg_register:00000030", "type": "input", "target": "CALL_004035ea_34"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00403605_46"}, {"source": "var_0040351b", "type": "input", "target": "CALL_00403605_46"}, {"source": "var_00403876", "type": "input", "target": "CALL_004035... | 004035bd | .. | .. |
59_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | skip_enclosed | FUN_0040360d |
/* WARNING: Unknown calling convention */
token * skip_enclosed(token *p,int stop)
{
int iVar1;
int in_ESI;
token *in_RDI;
int start;
iVar1 = in_RDI->tokno;
do {
while( true ) {
if (in_RDI->next == (token *)0x0) {
return in_RDI;
}
in_RDI = in_RDI->next;
if (iVar1 !=... |
void FUN_0040360d(int *param_1,int param_2)
{
int iVar1;
iVar1 = *param_1;
do {
while( true ) {
if (*(long *)(param_1 + 8) == 0) {
return;
}
param_1 = *(int **)(param_1 + 8);
if (iVar1 != *param_1) break;
param_1 = (int *)FUN_0040360d(param_1,param_2);
}
} whil... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
MOV RAX,RDI
MOV EBX,ESI
MOV R12D,dword ptr [RAX]
JMP 0x00403640
MOV RAX,qword ptr [RAX + 0x20]
MOV EDX,dword ptr [RAX]
CMP R12D,EDX
JNZ 0x0040363a
MOV ESI,EBX
MOV RDI,RAX
MOV EAX,0x0
CALL 0x0040360d
JMP 0x00403640
MOV EDX,dword ptr [RAX]
CMP EBX,EDX
JZ 0x0040364b
MOV RDX,qword ptr... | {"edges": [{"source": "var_00403640", "type": "use", "target": "BRANCH_0040361c_16"}, {"source": "reg_register:00000000", "type": "use", "target": "PTRSUB_0040361e_197"}, {"source": "unique_56832", "type": "use", "target": "INT_NOTEQUAL_0040363c_81"}, {"source": "const_0", "type": "use", "target": "RETURN_00403650_202"... | {"edges": [{"source": "var_00403640", "type": "use", "target": "BRANCH_0040361c_16"}, {"source": "unique_57088", "type": "use", "target": "LOAD_00403622_50"}, {"source": "unique_56832", "type": "use", "target": "INT_NOTEQUAL_0040363c_81"}, {"source": "CAST_00403640_197", "type": "def", "target": "unique_268435531"}, {"... | {"edges": [{"source": "0040360d", "type": "control_flow", "target": "00403640"}, {"source": "0040361e", "type": "control_flow", "target": "0040363a"}, {"source": "0040361e", "type": "control_flow", "target": "00403629"}, {"source": "00403629", "type": "control_flow", "target": "0040360d"}, {"source": "00403629", "type"... | {"edges": [{"source": "0040360d", "type": "control_flow", "target": "00403640"}, {"source": "0040361e", "type": "control_flow", "target": "0040363a"}, {"source": "0040361e", "type": "control_flow", "target": "00403629"}, {"source": "00403629", "type": "control_flow", "target": "0040360d"}, {"source": "00403629", "type"... | null | null | [["PTRSUB_00403619_196", "unique_268435515", "output"], ["var_0040361e", "CBRANCH_00403647_30", "input"], ["LOAD_00403619_13", "unique_56832", "output"], ["const_0", "PTRSUB_00403619_196", "input"], ["const_0", "PTRSUB_0040363a_199", "input"], ["const_0", "INT_EQUAL_00403644_24", "input"], ["unique_56832", "INT_NOTEQUA... | [["unique_18176", "CAST_0040361e_198", "input"], ["unique_57088", "LOAD_00403622_50", "input"], ["var_0040361e", "CBRANCH_00403647_30", "input"], ["LOAD_00403619_13", "unique_56832", "output"], ["const_4", "PTRADD_0040361e_194", "input"], ["const_0", "INT_EQUAL_00403644_24", "input"], ["unique_56832", "INT_NOTEQUAL_004... | {"edges": [{"source": "PTRSUB_00403619_196", "type": "output", "target": "unique_268435515"}, {"source": "var_0040361e", "type": "input", "target": "CBRANCH_00403647_30"}, {"source": "LOAD_00403619_13", "type": "output", "target": "unique_56832"}, {"source": "const_0", "type": "input", "target": "PTRSUB_00403619_196"},... | {"edges": [{"source": "unique_18176", "type": "input", "target": "CAST_0040361e_198"}, {"source": "unique_57088", "type": "input", "target": "LOAD_00403622_50"}, {"source": "var_0040361e", "type": "input", "target": "CBRANCH_00403647_30"}, {"source": "LOAD_00403619_13", "type": "output", "target": "unique_56832"}, {"so... | 0040360d | .. | .. |
60_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | show_arg_name | FUN_00403651 |
/* WARNING: Unknown calling convention */
void show_arg_name(token *s)
{
token *ptVar1;
token *p;
token *t_00;
long in_RDI;
token *t;
token *ptVar2;
token *ptVar3;
if (*(long *)(in_RDI + 0x28) != 0) {
t_00 = *(token **)(in_RDI + 0x28);
ptVar3 = (token *)0x0;
while (t_00 != (token *)0x0... |
void FUN_00403651(long param_1)
{
int *piVar1;
int *piVar2;
int *piVar3;
int *piVar4;
if (*(long *)(param_1 + 0x28) != 0) {
piVar2 = *(int **)(param_1 + 0x28);
piVar4 = (int *)0x0;
while (piVar2 != (int *)0x0) {
piVar1 = piVar2;
piVar3 = piVar2;
if (*piVar2 != 0x101) {
... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
MOV RAX,RDI
MOV RDX,qword ptr [RAX + 0x28]
TEST RDX,RDX
JZ 0x00403726
MOV R12D,0x0
MOV RBX,qword ptr [RAX + 0x28]
JMP 0x004036ed
MOV EAX,dword ptr [RBX]
CMP EAX,0x101
JNZ 0x00403682
MOV R12,RBX
JMP 0x004036e9
MOV EAX,dword ptr [RBX]
CMP EAX,0x7b
JNZ 0x004036a0
MOV ESI,0x7d
MOV RDI... | {"edges": [{"source": "const_40", "type": "use", "target": "PTRSUB_004036c6_490"}, {"source": "unique_18176", "type": "use", "target": "LOAD_004036ca_198"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_004036f8_50"}, {"source": "unique_57088", "type": "use", "target": "PTRSUB_004036db_494"}, {"... | {"edges": [{"source": "reg_register:00000018", "type": "use", "target": "PTRADD_004036c6_485"}, {"source": "unique_18176", "type": "use", "target": "LOAD_004036ca_198"}, {"source": "PTRADD_004036e9_488", "type": "def", "target": "unique_18176"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_0040... | {"edges": [{"source": "00403651", "type": "control_flow", "target": "00403726"}, {"source": "00403651", "type": "control_flow", "target": "00403668"}, {"source": "00403668", "type": "control_flow", "target": "004036ed"}, {"source": "00403674", "type": "control_flow", "target": "00403682"}, {"source": "00403674", "type"... | {"edges": [{"source": "00403651", "type": "control_flow", "target": "00403726"}, {"source": "00403651", "type": "control_flow", "target": "00403668"}, {"source": "00403668", "type": "control_flow", "target": "004036ed"}, {"source": "00403674", "type": "control_flow", "target": "00403682"}, {"source": "00403674", "type"... | null | null | [["reg_register:00000018", "PTRSUB_004036d3_492", "input"], ["COPY_0040367b_505", "unique_268435742", "output"], ["reg_register:00000018", "CALL_00403696_133", "input"], ["var_0040360d", "CALL_00403696_133", "input"], ["INT_NOTEQUAL_004036ed_33", "reg_register:00000206", "output"], ["reg_register:00000206", "CBRANCH_00... | [["COPY_0040367b_505", "unique_268435742", "output"], ["CAST_00403705_520", "unique_268435862", "output"], ["reg_register:00000018", "CALL_00403696_133", "input"], ["CALL_00403696_133", "unique_268435846", "output"], ["var_0040360d", "CALL_00403696_133", "input"], ["INT_NOTEQUAL_004036ed_33", "reg_register:00000206", "... | {"edges": [{"source": "reg_register:00000018", "type": "input", "target": "PTRSUB_004036d3_492"}, {"source": "COPY_0040367b_505", "type": "output", "target": "unique_268435742"}, {"source": "reg_register:00000018", "type": "input", "target": "CALL_00403696_133"}, {"source": "var_0040360d", "type": "input", "target": "C... | {"edges": [{"source": "COPY_0040367b_505", "type": "output", "target": "unique_268435742"}, {"source": "CAST_00403705_520", "type": "output", "target": "unique_268435862"}, {"source": "reg_register:00000018", "type": "input", "target": "CALL_00403696_133"}, {"source": "CALL_00403696_133", "type": "output", "target": "u... | 00403651 | .. | .. |
61_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | show_type | FUN_0040372c |
/* WARNING: Unknown calling convention */
void show_type(token *s)
{
token *ptVar1;
token *t;
token *p;
long in_RDI;
token *q;
token *r;
for (t = *(token **)(in_RDI + 0x28); t != (token *)0x0; t = t->next) {
if ((((t->tokno == 0x100) && (t->next != (token *)0x0)) && (t->next->tokno == 0x100)) &&... |
void FUN_0040372c(long param_1)
{
int *piVar1;
int *piVar2;
int *piVar3;
for (piVar3 = *(int **)(param_1 + 0x28); piVar3 != (int *)0x0; piVar3 = *(int **)(piVar3 + 8)) {
if ((((*piVar3 == 0x100) && (*(long *)(piVar3 + 8) != 0)) && (**(int **)(piVar3 + 8) == 0x100))
&& ((*(long *)(*(long *)(piVar... | PUSH RBP
MOV RBP,RSP
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x8
MOV RAX,RDI
MOV RBX,qword ptr [RAX + 0x28]
JMP 0x00403807
MOV EAX,dword ptr [RBX]
CMP EAX,0x100
JNZ 0x00403799
MOV RAX,qword ptr [RBX + 0x20]
TEST RAX,RAX
JZ 0x00403799
MOV RAX,qword ptr [RBX + 0x20]
MOV EAX,dword ptr [RAX]
CMP EAX,0x100
JNZ 0x00403799
MOV RAX... | {"edges": [{"source": "var_00403876", "type": "use", "target": "CALL_004037fe_272"}, {"source": "unique_57088", "type": "use", "target": "INT_NOTEQUAL_004037c1_215"}, {"source": "const_42", "type": "use", "target": "INT_EQUAL_004037b1_187"}, {"source": "LOAD_00403745_66", "type": "def", "target": "unique_56832"}, {"sou... | {"edges": [{"source": "reg_register:00000018", "type": "use", "target": "LOAD_004037af_179"}, {"source": "reg_register:00000018", "type": "use", "target": "LOAD_004037b6_193"}, {"source": "var_00403876", "type": "use", "target": "CALL_004037fe_272"}, {"source": "unique_268435737", "type": "use", "target": "LOAD_0040375... | {"edges": [{"source": "0040372c", "type": "control_flow", "target": "00403807"}, {"source": "00403745", "type": "control_flow", "target": "00403799"}, {"source": "00403745", "type": "control_flow", "target": "0040374e"}, {"source": "0040374e", "type": "control_flow", "target": "00403799"}, {"source": "0040374e", "type"... | {"edges": [{"source": "0040372c", "type": "control_flow", "target": "00403807"}, {"source": "00403745", "type": "control_flow", "target": "00403799"}, {"source": "00403745", "type": "control_flow", "target": "0040374e"}, {"source": "0040374e", "type": "control_flow", "target": "00403799"}, {"source": "0040374e", "type"... | null | null | [["const_0", "PTRSUB_004037c6_555", "input"], ["reg_register:00000018", "PTRSUB_00403780_550", "input"], ["LOAD_004037db_248", "unique_56832", "output"], ["const_32", "PTRSUB_00403780_550", "input"], ["unique_268435745", "MULTIEQUAL_00403803_401", "input"], ["unique_268435769", "MULTIEQUAL_00403803_401", "input"], ["va... | [["reg_register:00000018", "LOAD_004037b6_193", "input"], ["CAST_00403771_562", "unique_268435761", "output"], ["LOAD_004037db_248", "unique_56832", "output"], ["const_40", "INT_ADD_00403775_129", "input"], ["var_00403799", "CBRANCH_0040374c_79", "input"], ["unique_18176", "CAST_00403780_566", "input"], ["const_0", "IN... | {"edges": [{"source": "const_0", "type": "input", "target": "PTRSUB_004037c6_555"}, {"source": "reg_register:00000018", "type": "input", "target": "PTRSUB_00403780_550"}, {"source": "LOAD_004037db_248", "type": "output", "target": "unique_56832"}, {"source": "const_32", "type": "input", "target": "PTRSUB_00403780_550"}... | {"edges": [{"source": "reg_register:00000018", "type": "input", "target": "LOAD_004037b6_193"}, {"source": "CAST_00403771_562", "type": "output", "target": "unique_268435761"}, {"source": "LOAD_004037db_248", "type": "output", "target": "unique_56832"}, {"source": "const_40", "type": "input", "target": "INT_ADD_0040377... | 0040372c | .. | .. |
62_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | show_func_ptr_type | FUN_0040381d |
token * show_func_ptr_type(token *t1,token *t2)
{
token *s;
token *t;
token *t2_local;
token *t1_local;
for (t = t1->head; t != (token *)0x0; t = t->next) {
tok_show_ch(t);
show_type((token *)0x0);
}
show_empty_list((token *)0x0);
return t2;
}
|
undefined8 FUN_0040381d(long param_1,undefined8 param_2)
{
long lVar1;
for (lVar1 = *(long *)(param_1 + 0x28); lVar1 != 0; lVar1 = *(long *)(lVar1 + 0x20)) {
FUN_00402744(lVar1);
FUN_0040372c(lVar1);
}
FUN_00403876(param_2);
return param_2;
}
| PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x18
MOV qword ptr [RBP + -0x18],RDI
MOV qword ptr [RBP + -0x20],RSI
MOV RAX,qword ptr [RBP + -0x18]
MOV RBX,qword ptr [RAX + 0x28]
JMP 0x00403856
MOV RDI,RBX
MOV EAX,0x0
CALL 0x00402744
MOV RDI,RBX
MOV EAX,0x0
CALL 0x0040372c
MOV RBX,qword ptr [RBX + 0x20]
TEST RBX,RBX
JNZ 0x00403... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_00403875_59"}, {"source": "INT_NOTEQUAL_00403856_33", "type": "def", "target": "reg_register:00000206"}, {"source": "PTRSUB_00403832_158", "type": "def", "target": "unique_18176"}, {"source": "PTRSUB_00403852_159", "type": "def", "target": ... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_00403875_59"}, {"source": "INT_NOTEQUAL_00403856_33", "type": "def", "target": "reg_register:00000206"}, {"source": "const_32", "type": "use", "target": "INT_ADD_00403852_70"}, {"source": "unique_57088", "type": "use", "target": "MULTIEQUAL... | {"edges": [{"source": "0040381d", "type": "control_flow", "target": "00403856"}, {"source": "00403838", "type": "control_flow", "target": "00402744"}, {"source": "00403838", "type": "control_flow", "target": "0040372c"}, {"source": "00403838", "type": "control_flow", "target": "00403856"}, {"source": "00403856", "type"... | {"edges": [{"source": "0040381d", "type": "control_flow", "target": "00403856"}, {"source": "00403838", "type": "control_flow", "target": "00402744"}, {"source": "00403838", "type": "control_flow", "target": "0040372c"}, {"source": "00403838", "type": "control_flow", "target": "00403856"}, {"source": "00403856", "type"... | null | null | [["reg_register:00000206", "CBRANCH_00403859_39", "input"], ["const_433", "LOAD_00403852_71", "input"], ["COPY_0040386c_50", "reg_register:00000000", "output"], ["const_0", "CALL_0040384d_69", "input"], ["unique_57088", "MULTIEQUAL_00403856_94", "input"], ["reg_register:00000038", "PTRSUB_00403832_158", "input"], ["reg... | [["reg_register:00000206", "CBRANCH_00403859_39", "input"], ["const_433", "LOAD_00403852_71", "input"], ["COPY_0040386c_50", "reg_register:00000000", "output"], ["unique_57088", "MULTIEQUAL_00403856_94", "input"], ["reg_register:00000018", "CALL_0040384d_69", "input"], ["reg_register:00000018", "CALL_00403840_64", "inp... | {"edges": [{"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_00403859_39"}, {"source": "const_433", "type": "input", "target": "LOAD_00403852_71"}, {"source": "COPY_0040386c_50", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "CALL_0040384d_6... | {"edges": [{"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_00403859_39"}, {"source": "const_433", "type": "input", "target": "LOAD_00403852_71"}, {"source": "COPY_0040386c_50", "type": "output", "target": "reg_register:00000000"}, {"source": "unique_57088", "type": "input", "target": "MULTIEQUAL... | 0040381d | .. | .. |
63_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | show_empty_list | FUN_00403876 |
/* WARNING: Unknown calling convention */
void show_empty_list(token *t)
{
token *in_RDI;
tok_show_ch(in_RDI);
if (in_RDI->tail->tokno == 0x29) {
tok_show_ch(in_RDI);
}
return;
}
|
void FUN_00403876(long param_1)
{
FUN_00402744(*(undefined8 *)(param_1 + 0x28));
if (**(int **)(param_1 + 0x30) == 0x29) {
FUN_00402744(*(undefined8 *)(param_1 + 0x30));
}
return;
}
| PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
MOV RBX,RDI
MOV RAX,qword ptr [RBX + 0x28]
MOV RDI,RAX
MOV EAX,0x0
CALL 0x00402744
MOV RAX,qword ptr [RBX + 0x30]
MOV EAX,dword ptr [RAX]
CMP EAX,0x29
JNZ 0x004038af
MOV RAX,qword ptr [RBX + 0x30]
MOV RDI,RAX
MOV EAX,0x0
CALL 0x00402744
NOP
MOV RBX,qword ptr [RBP + -0x8]
LEAVE
... | {"edges": [{"source": "LOAD_00403893_26", "type": "def", "target": "unique_57088"}, {"source": "var_00402744", "type": "use", "target": "CALL_004038aa_50"}, {"source": "PTRSUB_00403893_122", "type": "def", "target": "unique_18176"}, {"source": "const_48", "type": "use", "target": "PTRSUB_00403893_122"}, {"source": "var... | {"edges": [{"source": "LOAD_00403893_26", "type": "def", "target": "unique_57088"}, {"source": "var_00402744", "type": "use", "target": "CALL_004038aa_50"}, {"source": "var_00402744", "type": "use", "target": "CALL_0040388e_24"}, {"source": "unique_18176", "type": "use", "target": "LOAD_00403893_26"}, {"source": "const... | {"edges": [{"source": "00403876", "type": "control_flow", "target": "00402744"}, {"source": "00403876", "type": "control_flow", "target": "004038af"}, {"source": "00403876", "type": "control_flow", "target": "0040389e"}, {"source": "0040389e", "type": "control_flow", "target": "00402744"}, {"source": "0040389e", "type"... | {"edges": [{"source": "00403876", "type": "control_flow", "target": "00402744"}, {"source": "00403876", "type": "control_flow", "target": "004038af"}, {"source": "00403876", "type": "control_flow", "target": "0040389e"}, {"source": "0040389e", "type": "control_flow", "target": "00402744"}, {"source": "0040389e", "type"... | null | null | [["LOAD_00403897_28", "unique_56832", "output"], ["PTRSUB_00403897_123", "unique_268435527", "output"], ["var_00402744", "CALL_0040388e_24", "input"], ["reg_register:00000038", "CALL_0040388e_24", "input"], ["const_0", "PTRSUB_00403897_123", "input"], ["var_004038af", "CBRANCH_0040389c_42", "input"], ["const_433", "LOA... | [["unique_57088", "LOAD_00403897_28", "input"], ["unique_18176", "LOAD_0040389e_44", "input"], ["var_00402744", "CALL_0040388e_24", "input"], ["var_004038af", "CBRANCH_0040389c_42", "input"], ["const_48", "INT_ADD_00403893_25", "input"], ["unique_57088", "CALL_0040388e_24", "input"], ["CAST_0040389e_124", "unique_18176... | {"edges": [{"source": "LOAD_00403897_28", "type": "output", "target": "unique_56832"}, {"source": "PTRSUB_00403897_123", "type": "output", "target": "unique_268435527"}, {"source": "var_00402744", "type": "input", "target": "CALL_0040388e_24"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004038... | {"edges": [{"source": "unique_57088", "type": "input", "target": "LOAD_00403897_28"}, {"source": "unique_18176", "type": "input", "target": "LOAD_0040389e_44"}, {"source": "var_00402744", "type": "input", "target": "CALL_0040388e_24"}, {"source": "var_004038af", "type": "input", "target": "CBRANCH_0040389c_42"}, {"sour... | 00403876 | .. | .. |
64_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | show_struct_type | FUN_004038b6 |
/* WARNING: Unknown calling convention */
token * show_struct_type(token *p)
{
token *in_RDI;
tok_show(in_RDI);
do {
while( true ) {
while( true ) {
if (in_RDI->next == (token *)0x0) {
return in_RDI;
}
in_RDI = in_RDI->next;
if ((((in_RDI->tokno != 0x100) ... |
int * FUN_004038b6(int *param_1)
{
FUN_0040279f(param_1);
do {
while( true ) {
while( true ) {
if (*(long *)(param_1 + 8) == 0) {
return param_1;
}
param_1 = *(int **)(param_1 + 8);
if ((((*param_1 != 0x100) || (*(long *)(param_1 + 8) == 0)) ||
(**(i... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
MOV RBX,RDI
MOV RDI,RBX
MOV EAX,0x0
CALL 0x0040279f
JMP 0x0040395e
MOV RBX,qword ptr [RBX + 0x20]
MOV EAX,dword ptr [RBX]
CMP EAX,0x100
JNZ 0x0040392c
MOV RAX,qword ptr [RBX + 0x20]
TEST RAX,RAX
JZ 0x0040392c
MOV RAX,qword ptr [RBX + 0x20]
MOV EAX,dword ptr [RAX]
CMP EAX,0x100
... | {"edges": [{"source": "INT_EQUAL_00403962_30", "type": "def", "target": "reg_register:00000206"}, {"source": "PTRSUB_00403904_387", "type": "def", "target": "unique_18176"}, {"source": "PTRSUB_0040395e_393", "type": "def", "target": "unique_18176"}, {"source": "const_32", "type": "use", "target": "PTRSUB_0040395e_393"}... | {"edges": [{"source": "INT_ADD_00403908_113", "type": "def", "target": "unique_268435681"}, {"source": "INT_EQUAL_00403962_30", "type": "def", "target": "reg_register:00000206"}, {"source": "const_10", "type": "use", "target": "PTRADD_00403904_386"}, {"source": "var_0040395e", "type": "use", "target": "BRANCH_0040392a_... | {"edges": [{"source": "004038b6", "type": "control_flow", "target": "0040279f"}, {"source": "004038b6", "type": "control_flow", "target": "0040395e"}, {"source": "004038d4", "type": "control_flow", "target": "0040392c"}, {"source": "004038d4", "type": "control_flow", "target": "004038e1"}, {"source": "004038e1", "type"... | {"edges": [{"source": "004038b6", "type": "control_flow", "target": "0040279f"}, {"source": "004038b6", "type": "control_flow", "target": "0040395e"}, {"source": "004038d4", "type": "control_flow", "target": "0040392c"}, {"source": "004038d4", "type": "control_flow", "target": "004038e1"}, {"source": "004038e1", "type"... | null | null | [["reg_register:00000206", "CBRANCH_004038e8_76", "input"], ["CALL_00403922_139", "reg_register:00000000", "output"], ["unique_57088", "COPY_0040396e_275", "input"], ["const_32", "PTRSUB_004038ea_383", "input"], ["PTRSUB_004038fb_386", "unique_18176", "output"], ["unique_268435601", "LOAD_004038ee_80", "input"], ["reg_... | [["PTRADD_004038d4_382", "unique_18176", "output"], ["reg_register:00000206", "CBRANCH_004038e8_76", "input"], ["unique_57088", "PTRADD_004038f7_385", "input"], ["unique_57088", "INT_ADD_004038fb_97", "input"], ["unique_18176", "CAST_00403904_397", "input"], ["CAST_00403904_397", "unique_268435673", "output"], ["reg_re... | {"edges": [{"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_004038e8_76"}, {"source": "CALL_00403922_139", "type": "output", "target": "reg_register:00000000"}, {"source": "unique_57088", "type": "input", "target": "COPY_0040396e_275"}, {"source": "const_32", "type": "input", "target": "PTRSUB_00... | {"edges": [{"source": "PTRADD_004038d4_382", "type": "output", "target": "unique_18176"}, {"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_004038e8_76"}, {"source": "unique_57088", "type": "input", "target": "PTRADD_004038f7_385"}, {"source": "unique_57088", "type": "input", "target": "INT_ADD_00... | 004038b6 | .. | .. |
65_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | is_func_ptr_cast | FUN_00403974 |
/* WARNING: Unknown calling convention */
int is_func_ptr_cast(token *t)
{
int iVar1;
token *p;
int *piVar2;
int *in_RDI;
if ((((*in_RDI == 0x100) && (*(long *)(in_RDI + 8) != 0)) && (**(int **)(in_RDI + 8) == 0x100)) &&
((*(long *)(*(long *)(in_RDI + 10) + 0x28) != 0 &&
(**(int **)(*(long *)... |
undefined8 FUN_00403974(int *param_1)
{
int iVar1;
undefined8 uVar2;
int *piVar3;
if ((((*param_1 == 0x100) && (*(long *)(param_1 + 8) != 0)) && (**(int **)(param_1 + 8) == 0x100))
&& ((*(long *)(*(long *)(param_1 + 10) + 0x28) != 0 &&
(**(int **)(*(long *)(param_1 + 10) + 0x28) == 0x2a)))) {... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
MOV RAX,RDI
MOV EDX,dword ptr [RAX]
CMP EDX,0x100
JNZ 0x004039bd
MOV RDX,qword ptr [RAX + 0x20]
TEST RDX,RDX
JZ 0x004039bd
MOV RDX,qword ptr [RAX + 0x20]
MOV EDX,dword ptr [RDX]
CMP EDX,0x100
JNZ 0x004039bd
MOV RDX,qword ptr [RAX + 0x28]
MOV RDX,qword ptr [RDX + 0x28]
TEST RDX,... | {"edges": [{"source": "const_0", "type": "use", "target": "CALL_004039f2_181"}, {"source": "const_42", "type": "use", "target": "INT_EQUAL_004039b8_93"}, {"source": "COPY_00403a1a_370", "type": "def", "target": "reg_register:00000000"}, {"source": "var_00403a0b", "type": "use", "target": "BRANCH_004039cc_116"}, {"sourc... | {"edges": [{"source": "const_42", "type": "use", "target": "INT_EQUAL_004039b8_93"}, {"source": "reg_register:00000018", "type": "use", "target": "PTRADD_00403a07_366"}, {"source": "const_10", "type": "use", "target": "PTRADD_004039c4_365"}, {"source": "var_00403a0b", "type": "use", "target": "BRANCH_004039cc_116"}, {"... | {"edges": [{"source": "00403974", "type": "control_flow", "target": "004039bd"}, {"source": "00403974", "type": "control_flow", "target": "0040398a"}, {"source": "0040398a", "type": "control_flow", "target": "004039bd"}, {"source": "0040398a", "type": "control_flow", "target": "00403993"}, {"source": "00403993", "type"... | {"edges": [{"source": "00403974", "type": "control_flow", "target": "004039bd"}, {"source": "00403974", "type": "control_flow", "target": "0040398a"}, {"source": "0040398a", "type": "control_flow", "target": "004039bd"}, {"source": "0040398a", "type": "control_flow", "target": "00403993"}, {"source": "00403993", "type"... | null | null | [["const_0", "INT_NOTEQUAL_00403a0b_121", "input"], ["LOAD_00403a07_184", "unique_57088", "output"], ["unique_18176", "CAST_00403993_382", "input"], ["INT_ADD_004039a5_66", "unique_268435600", "output"], ["var_004039bd", "CBRANCH_004039ac_78", "input"], ["const_257", "INT_EQUAL_004039d0_136", "input"], ["INT_SLESS_0040... | [["const_0", "COPY_004039bd_99", "input"], ["unique_18176", "CAST_00403a07_375", "input"], ["const_0", "INT_NOTEQUAL_00403a0b_121", "input"], ["LOAD_00403a07_184", "unique_57088", "output"], ["const_10", "PTRADD_004039ae_364", "input"], ["INT_ADD_004039a5_66", "unique_268435600", "output"], ["var_004039bd", "CBRANCH_00... | {"edges": [{"source": "const_0", "type": "input", "target": "INT_NOTEQUAL_00403a0b_121"}, {"source": "LOAD_00403a07_184", "type": "output", "target": "unique_57088"}, {"source": "unique_18176", "type": "input", "target": "CAST_00403993_382"}, {"source": "INT_ADD_004039a5_66", "type": "output", "target": "unique_2684356... | {"edges": [{"source": "const_0", "type": "input", "target": "COPY_004039bd_99"}, {"source": "unique_18176", "type": "input", "target": "CAST_00403a07_375"}, {"source": "const_0", "type": "input", "target": "INT_NOTEQUAL_00403a0b_121"}, {"source": "LOAD_00403a07_184", "type": "output", "target": "unique_57088"}, {"sourc... | 00403974 | .. | .. |
66_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | check_cast | FUN_00403a1b |
void check_cast(token *t)
{
int iVar1;
token *p_00;
token *unaff_RBX;
token *p;
token *s;
token *ptVar2;
token *t_local;
for (ptVar2 = t->head; ptVar2 != (token *)0x0; ptVar2 = ptVar2->next) {
tok_show_ch(unaff_RBX);
for (p_00 = ptVar2->head; p_00 != (token *)0x0; p_00 = p_00->next) {
... |
void FUN_00403a1b(long param_1)
{
int iVar1;
int *piVar2;
long lVar3;
for (lVar3 = *(long *)(param_1 + 0x28); lVar3 != 0; lVar3 = *(long *)(lVar3 + 0x20)) {
FUN_00402744(lVar3);
for (piVar2 = *(int **)(lVar3 + 0x28); piVar2 != (int *)0x0; piVar2 = *(int **)(piVar2 + 8)) {
if (*piVar2 == 0x7b)... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
SUB RSP,0x10
MOV qword ptr [RBP + -0x18],RDI
MOV RAX,qword ptr [RBP + -0x18]
MOV R12,qword ptr [RAX + 0x28]
JMP 0x00403ac0
MOV RDI,R12
MOV EAX,0x0
CALL 0x00402744
MOV RBX,qword ptr [R12 + 0x28]
JMP 0x00403ab6
MOV EAX,dword ptr [RBX]
CMP EAX,0x7b
JZ 0x00403a92
CMP EAX,0x100
JNZ 0x0... | {"edges": [{"source": "const_123", "type": "use", "target": "INT_EQUAL_00403a4d_95"}, {"source": "const_0", "type": "use", "target": "INT_NOTEQUAL_00403ab6_77"}, {"source": "INT_EQUAL_00403a4d_95", "type": "def", "target": "reg_register:00000206"}, {"source": "var_004038b6", "type": "use", "target": "CALL_00403a9a_156"... | {"edges": [{"source": "const_123", "type": "use", "target": "INT_EQUAL_00403a4d_95"}, {"source": "const_4", "type": "use", "target": "PTRADD_00403a6a_386"}, {"source": "CALL_00403a9a_156", "type": "def", "target": "unique_268435630"}, {"source": "const_0", "type": "use", "target": "INT_NOTEQUAL_00403ab6_77"}, {"source"... | {"edges": [{"source": "00403a1b", "type": "control_flow", "target": "00403ac0"}, {"source": "00403a37", "type": "control_flow", "target": "00402744"}, {"source": "00403a37", "type": "control_flow", "target": "00403ab6"}, {"source": "00403a4b", "type": "control_flow", "target": "00403a92"}, {"source": "00403a4b", "type"... | {"edges": [{"source": "00403a1b", "type": "control_flow", "target": "00403ac0"}, {"source": "00403a37", "type": "control_flow", "target": "00402744"}, {"source": "00403a37", "type": "control_flow", "target": "00403ab6"}, {"source": "00403a4b", "type": "control_flow", "target": "00403a92"}, {"source": "00403a4b", "type"... | null | null | [["LOAD_00403ab2_139", "unique_57088", "output"], ["unique_268435622", "LOAD_00403a4b_87", "input"], ["reg_register:00000018", "PTRSUB_00403a4b_389", "input"], ["reg_register:00000206", "CBRANCH_00403a57_111", "input"], ["reg_register:00000000", "INT_EQUAL_00403a66_121", "input"], ["const_433", "LOAD_00403a44_70", "inp... | [["LOAD_00403ab2_139", "unique_57088", "output"], ["reg_register:00000206", "CBRANCH_00403a57_111", "input"], ["reg_register:00000018", "LOAD_00403a4b_87", "input"], ["var_00403a83", "CBRANCH_00403a68_126", "input"], ["MULTIEQUAL_00403ab6_239", "reg_register:00000018", "output"], ["LOAD_00403a6a_128", "unique_57088", "... | {"edges": [{"source": "LOAD_00403ab2_139", "type": "output", "target": "unique_57088"}, {"source": "unique_268435622", "type": "input", "target": "LOAD_00403a4b_87"}, {"source": "reg_register:00000018", "type": "input", "target": "PTRSUB_00403a4b_389"}, {"source": "reg_register:00000206", "type": "input", "target": "CB... | {"edges": [{"source": "LOAD_00403ab2_139", "type": "output", "target": "unique_57088"}, {"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_00403a57_111"}, {"source": "reg_register:00000018", "type": "input", "target": "LOAD_00403a4b_87"}, {"source": "var_00403a83", "type": "input", "target": "CBRAN... | 00403a1b | .. | .. |
67_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | block_dcls | FUN_00403ad4 |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void block_dcls(void)
{
int iVar1;
token *ptVar2;
token *t;
do {
while( true ) {
ptVar2 = tok_class();
if (ptVar2 == (token *)0x0) {
return;
}
iVar1 = ptVar2->tokno;
if (iVar1 == 0x106) b... |
void FUN_00403ad4(void)
{
int iVar1;
int *piVar2;
do {
while( true ) {
piVar2 = (int *)FUN_004028d7();
if (piVar2 == (int *)0x0) {
return;
}
iVar1 = *piVar2;
if (iVar1 == 0x106) break;
if (0x106 < iVar1) goto LAB_00403b68;
if (iVar1 != 0x103) {
if... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
JMP 0x00403b77
MOV EAX,dword ptr [RBX]
CMP EAX,0x106
JZ 0x00403b51
CMP EAX,0x106
JG 0x00403b68
CMP EAX,0x103
JZ 0x00403b0e
CMP EAX,0x103
JG 0x00403b68
CMP EAX,0xa
JZ 0x00403b0e
CMP EAX,0x101
JZ 0x00403b2a
JMP 0x00403b68
MOV RDI,RBX
MOV EAX,0x0
CALL 0x0040279f
MOV RDI,RBX
MOV EA... | {"edges": [{"source": "const_257", "type": "use", "target": "INT_EQUAL_00403b05_106"}, {"source": "const_0", "type": "use", "target": "RETURN_00403b92_41"}, {"source": "const_0", "type": "use", "target": "PTRSUB_00403ae2_454"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_00403ae9_54"}, {"sourc... | {"edges": [{"source": "reg_register:00000018", "type": "use", "target": "CALL_00403b70_117"}, {"source": "const_257", "type": "use", "target": "INT_EQUAL_00403b05_106"}, {"source": "const_0", "type": "use", "target": "RETURN_00403b92_41"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_00403ae9_5... | {"edges": [{"source": "00403ad4", "type": "control_flow", "target": "00403b77"}, {"source": "00403ae2", "type": "control_flow", "target": "00403b51"}, {"source": "00403ae2", "type": "control_flow", "target": "00403aeb"}, {"source": "00403aeb", "type": "control_flow", "target": "00403b68"}, {"source": "00403aeb", "type"... | {"edges": [{"source": "00403ad4", "type": "control_flow", "target": "00403b77"}, {"source": "00403ae2", "type": "control_flow", "target": "00403b51"}, {"source": "00403ae2", "type": "control_flow", "target": "00403aeb"}, {"source": "00403aeb", "type": "control_flow", "target": "00403b68"}, {"source": "00403aeb", "type"... | null | null | [["reg_register:00000206", "CBRANCH_00403b03_101", "input"], ["LOAD_00403ae2_42", "unique_56832", "output"], ["var_00403b68", "CBRANCH_00403afe_90", "input"], ["var_004040a0", "CALL_00403b59_138", "input"], ["var_00403b68", "CBRANCH_00403af0_67", "input"], ["const_0", "RETURN_00403b92_458", "input"], ["unique_61952", "... | [["reg_register:00000206", "CBRANCH_00403b03_101", "input"], ["LOAD_00403ae2_42", "unique_56832", "output"], ["var_00403b68", "CBRANCH_00403afe_90", "input"], ["var_004040a0", "CALL_00403b59_138", "input"], ["var_00403b68", "CBRANCH_00403af0_67", "input"], ["unique_268435654", "CAST_00403b49_462", "input"], ["unique_61... | {"edges": [{"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_00403b03_101"}, {"source": "LOAD_00403ae2_42", "type": "output", "target": "unique_56832"}, {"source": "var_00403b68", "type": "input", "target": "CBRANCH_00403afe_90"}, {"source": "var_004040a0", "type": "input", "target": "CALL_00403b5... | {"edges": [{"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_00403b03_101"}, {"source": "LOAD_00403ae2_42", "type": "output", "target": "unique_56832"}, {"source": "var_00403b68", "type": "input", "target": "CBRANCH_00403afe_90"}, {"source": "var_004040a0", "type": "input", "target": "CALL_00403b5... | 00403ad4 | .. | .. |
68_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | block_flush | FUN_00403b93 |
/* WARNING: Unknown calling convention */
void block_flush(token *t)
{
token *t_00;
token *in_RDI;
tok_show(in_RDI);
tok_free(in_RDI);
block_flush::count = block_flush::count + 1;
block_dcls();
do {
while( true ) {
while( true ) {
t_00 = tok_class();
if (t_00 == (token *)0x... |
void FUN_00403b93(undefined8 param_1)
{
int *piVar1;
FUN_0040279f(param_1);
FUN_00402feb(param_1);
DAT_004074b0 = DAT_004074b0 + 1;
FUN_00403ad4();
do {
while( true ) {
while( true ) {
piVar1 = (int *)FUN_004028d7();
if (piVar1 == (int *)0x0) {
return;
}
... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
MOV RBX,RDI
MOV RDI,RBX
MOV EAX,0x0
CALL 0x0040279f
MOV RDI,RBX
MOV EAX,0x0
CALL 0x00402feb
MOV EAX,dword ptr [0x004074b0]
ADD EAX,0x1
MOV dword ptr [0x004074b0],EAX
MOV EAX,0x0
CALL 0x00403ad4
JMP 0x00403c41
MOV EAX,dword ptr [RBX]
CMP EAX,0x100
JNZ 0x00403bf9
MOV RDI,RBX
MOV ... | {"edges": [{"source": "const_93", "type": "use", "target": "INDIRECT_00403bf2_394"}, {"source": "var_00403c0f", "type": "use", "target": "CBRANCH_00403bfe_109"}, {"source": "INDIRECT_00403c24_391", "type": "def", "target": "addrtied_004074b0"}, {"source": "reg_register:00000000", "type": "use", "target": "INDIRECT_0040... | {"edges": [{"source": "INDIRECT_00403bb4_388", "type": "def", "target": "addrtied_004074b0"}, {"source": "addrtied_004074b0", "type": "use", "target": "INT_ADD_00403bbf_31"}, {"source": "INDIRECT_00403c24_392", "type": "def", "target": "addrtied_004074b0"}, {"source": "const_21", "type": "use", "target": "INDIRECT_0040... | {"edges": [{"source": "00403b93", "type": "control_flow", "target": "0040279f"}, {"source": "00403b93", "type": "control_flow", "target": "00402feb"}, {"source": "00403b93", "type": "control_flow", "target": "00403ad4"}, {"source": "00403b93", "type": "control_flow", "target": "00403c41"}, {"source": "00403bd4", "type"... | {"edges": [{"source": "00403b93", "type": "control_flow", "target": "0040279f"}, {"source": "00403b93", "type": "control_flow", "target": "00402feb"}, {"source": "00403b93", "type": "control_flow", "target": "00403ad4"}, {"source": "00403b93", "type": "control_flow", "target": "00403c41"}, {"source": "00403bd4", "type"... | null | null | [["const_433", "LOAD_00403bf9_95", "input"], ["COPY_00403c58_433", "addrtied_004074b0", "output"], ["const_433", "LOAD_00403c29_126", "input"], ["unique_268435658", "LOAD_00403bf9_95", "input"], ["INT_NOTEQUAL_00403bd6_77", "reg_register:00000206", "output"], ["var_00403c41", "CBRANCH_00403c2e_140", "input"], ["addrtie... | [["reg_register:00000206", "CBRANCH_00403bfe_109", "input"], ["const_433", "LOAD_00403bf9_95", "input"], ["MULTIEQUAL_00403c41_398", "addrtied_004074b0", "output"], ["unique_56832", "INT_NOTEQUAL_00403c2b_134", "input"], ["addrtied_004074b0", "INDIRECT_00403ba7_387", "input"], ["var_00403b93", "CALL_00403c08_114", "inp... | {"edges": [{"source": "const_433", "type": "input", "target": "LOAD_00403bf9_95"}, {"source": "COPY_00403c58_433", "type": "output", "target": "addrtied_004074b0"}, {"source": "const_433", "type": "input", "target": "LOAD_00403c29_126"}, {"source": "unique_268435658", "type": "input", "target": "LOAD_00403bf9_95"}, {"s... | {"edges": [{"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_00403bfe_109"}, {"source": "const_433", "type": "input", "target": "LOAD_00403bf9_95"}, {"source": "MULTIEQUAL_00403c41_398", "type": "output", "target": "addrtied_004074b0"}, {"source": "unique_56832", "type": "input", "target": "INT_NO... | 00403b93 | .. | .. |
69_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | pair_flush | FUN_00403c59 |
/* WARNING: Unknown calling convention */
void pair_flush(token *t,int start,int stop)
{
token *t_00;
int in_EDX;
int in_ESI;
token *in_RDI;
tok_show(in_RDI);
tok_free(in_RDI);
do {
while( true ) {
while( true ) {
t_00 = tok_class();
if (t_00 == (token *)0x0) {
re... |
void FUN_00403c59(undefined8 param_1,int param_2,int param_3)
{
int *piVar1;
FUN_0040279f(param_1);
FUN_00402feb(param_1);
do {
while( true ) {
while( true ) {
piVar1 = (int *)FUN_004028d7();
if (piVar1 == (int *)0x0) {
return;
}
if (param_2 != *piVar1) b... | PUSH RBP
MOV RBP,RSP
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x8
MOV RBX,RDI
MOV R12D,ESI
MOV R13D,EDX
MOV RDI,RBX
MOV EAX,0x0
CALL 0x0040279f
MOV RDI,RBX
MOV EAX,0x0
CALL 0x00402feb
JMP 0x00403ced
MOV EAX,dword ptr [RBX]
CMP R12D,EAX
JNZ 0x00403ca7
MOV EDX,R13D
MOV ESI,R12D
MOV RDI,RBX
MOV EAX,0x0
CALL 0x00403c59
JMP 0x004... | {"edges": [{"source": "var_00402feb", "type": "use", "target": "CALL_00403ce1_142"}, {"source": "reg_register:00000030", "type": "use", "target": "INT_NOTEQUAL_00403c8d_91"}, {"source": "reg_register:00000000", "type": "use", "target": "CALL_00403cb8_126"}, {"source": "const_0", "type": "use", "target": "PTRSUB_00403ce... | {"edges": [{"source": "var_00402feb", "type": "use", "target": "CALL_00403ce1_142"}, {"source": "reg_register:00000030", "type": "use", "target": "INT_NOTEQUAL_00403c8d_91"}, {"source": "reg_register:00000000", "type": "use", "target": "CALL_00403cb8_126"}, {"source": "const_0", "type": "use", "target": "RETURN_00403d0... | {"edges": [{"source": "00403c59", "type": "control_flow", "target": "0040279f"}, {"source": "00403c59", "type": "control_flow", "target": "00402feb"}, {"source": "00403c59", "type": "control_flow", "target": "00403ced"}, {"source": "00403c8b", "type": "control_flow", "target": "00403ca7"}, {"source": "00403c8b", "type"... | {"edges": [{"source": "00403c59", "type": "control_flow", "target": "0040279f"}, {"source": "00403c59", "type": "control_flow", "target": "00402feb"}, {"source": "00403c59", "type": "control_flow", "target": "00403ced"}, {"source": "00403c8b", "type": "control_flow", "target": "00403ca7"}, {"source": "00403c8b", "type"... | null | null | [["reg_register:00000000", "PTRSUB_00403c8b_435", "input"], ["var_00403d01", "CBRANCH_00403ceb_156", "input"], ["reg_register:00000000", "CALL_00403cc5_131", "input"], ["var_004028d7", "CALL_00403cf2_41", "input"], ["const_433", "LOAD_00403c8b_83", "input"], ["reg_register:00000000", "INT_EQUAL_00403cfa_47", "input"], ... | [["var_00403d01", "CBRANCH_00403ceb_156", "input"], ["reg_register:00000000", "LOAD_00403ca7_108", "input"], ["reg_register:00000000", "CALL_00403cc5_131", "input"], ["var_004028d7", "CALL_00403cf2_41", "input"], ["const_433", "LOAD_00403c8b_83", "input"], ["reg_register:00000000", "INT_EQUAL_00403cfa_47", "input"], ["... | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "PTRSUB_00403c8b_435"}, {"source": "var_00403d01", "type": "input", "target": "CBRANCH_00403ceb_156"}, {"source": "reg_register:00000000", "type": "input", "target": "CALL_00403cc5_131"}, {"source": "var_004028d7", "type": "input", "target": "CAL... | {"edges": [{"source": "var_00403d01", "type": "input", "target": "CBRANCH_00403ceb_156"}, {"source": "reg_register:00000000", "type": "input", "target": "LOAD_00403ca7_108"}, {"source": "reg_register:00000000", "type": "input", "target": "CALL_00403cc5_131"}, {"source": "var_004028d7", "type": "input", "target": "CALL_... | 00403c59 | .. | .. |
70_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | initializer | FUN_00403d0d |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void initializer(void)
{
int iVar1;
token *t_00;
token *t;
int unaff_R12D;
int unaff_R13D;
LAB_00403dc1:
while( true ) {
t_00 = tok_class();
if (t_00 == (token *)0x0) {
return;
}
iVar1 = t_00->tokno;
... |
void FUN_00403d0d(void)
{
int iVar1;
int *piVar2;
LAB_00403dc1:
while( true ) {
piVar2 = (int *)FUN_004028d7();
if (piVar2 == (int *)0x0) {
return;
}
iVar1 = *piVar2;
if (iVar1 != 0x100) break;
FUN_00403a1b(piVar2);
FUN_00402feb(piVar2);
}
if (iVar1 < 0x101) {
if (iV... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
JMP 0x00403dc1
MOV EAX,dword ptr [RBX]
CMP EAX,0x100
JZ 0x00403d58
CMP EAX,0x100
JG 0x00403da6
CMP EAX,0x7b
JZ 0x00403d8d
CMP EAX,0x7b
JG 0x00403da6
CMP EAX,0x5b
JZ 0x00403d74
CMP EAX,0x5b
JG 0x00403da6
CMP EAX,0x2c
JZ 0x00403d49
CMP EAX,0x3b
JNZ 0x00403da6
MOV RDI,RBX
MOV EAX,... | {"edges": [{"source": "const_59", "type": "use", "target": "INT_EQUAL_00403d44_134"}, {"source": "unique_56832", "type": "use", "target": "INT_EQUAL_00403d44_134"}, {"source": "const_123", "type": "use", "target": "INT_EQUAL_00403d2b_73"}, {"source": "unique_61952", "type": "use", "target": "CBRANCH_00403d29_67"}, {"so... | {"edges": [{"source": "const_59", "type": "use", "target": "INT_EQUAL_00403d44_134"}, {"source": "unique_56832", "type": "use", "target": "INT_EQUAL_00403d44_134"}, {"source": "const_123", "type": "use", "target": "INT_EQUAL_00403d2b_73"}, {"source": "unique_61952", "type": "use", "target": "CBRANCH_00403d29_67"}, {"so... | {"edges": [{"source": "00403d0d", "type": "control_flow", "target": "00403dc1"}, {"source": "00403d1b", "type": "control_flow", "target": "00403d58"}, {"source": "00403d1b", "type": "control_flow", "target": "00403d24"}, {"source": "00403d24", "type": "control_flow", "target": "00403da6"}, {"source": "00403d24", "type"... | {"edges": [{"source": "00403d0d", "type": "control_flow", "target": "00403dc1"}, {"source": "00403d1b", "type": "control_flow", "target": "00403d58"}, {"source": "00403d1b", "type": "control_flow", "target": "00403d24"}, {"source": "00403d24", "type": "control_flow", "target": "00403da6"}, {"source": "00403d24", "type"... | null | null | [["var_00403c59", "CALL_00403d86_163", "input"], ["var_00403dc1", "BRANCH_00403da4_172", "input"], ["var_00403d1b", "CBRANCH_00403dd1_32", "input"], ["const_257", "INT_SLESS_00403d29_66", "input"], ["INT_EQUAL_00403d3f_123", "reg_register:00000206", "output"], ["reg_register:00000206", "CBRANCH_00403d42_128", "input"],... | [["var_00403c59", "CALL_00403d86_163", "input"], ["var_00403dc1", "BRANCH_00403da4_172", "input"], ["var_00403d1b", "CBRANCH_00403dd1_32", "input"], ["const_257", "INT_SLESS_00403d29_66", "input"], ["INT_EQUAL_00403d3f_123", "reg_register:00000206", "output"], ["reg_register:00000206", "CBRANCH_00403d42_128", "input"],... | {"edges": [{"source": "var_00403c59", "type": "input", "target": "CALL_00403d86_163"}, {"source": "var_00403dc1", "type": "input", "target": "BRANCH_00403da4_172"}, {"source": "var_00403d1b", "type": "input", "target": "CBRANCH_00403dd1_32"}, {"source": "const_257", "type": "input", "target": "INT_SLESS_00403d29_66"}, ... | {"edges": [{"source": "var_00403c59", "type": "input", "target": "CALL_00403d86_163"}, {"source": "var_00403dc1", "type": "input", "target": "BRANCH_00403da4_172"}, {"source": "var_00403d1b", "type": "input", "target": "CBRANCH_00403dd1_32"}, {"source": "const_257", "type": "input", "target": "INT_SLESS_00403d29_66"}, ... | 00403d0d | .. | .. |
71_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | func_ptr_dcl_flush | FUN_00403ddd |
/* WARNING: Unknown calling convention */
token * func_ptr_dcl_flush(token *list)
{
int iVar1;
token *t_00;
token *l2;
token *unaff_RBX;
token *t2;
token *in_RDI;
token *t;
do {
l2 = tok_class();
if (l2 == (token *)0x0) {
return in_RDI;
}
iVar1 = l2->tokno;
if (iVar1 != 0... |
undefined8 FUN_00403ddd(undefined8 param_1)
{
int iVar1;
int *piVar2;
int *piVar3;
do {
piVar3 = (int *)FUN_004028d7();
if (piVar3 == (int *)0x0) {
return param_1;
}
iVar1 = *piVar3;
if (iVar1 != 0x103) {
if (0x103 < iVar1) {
LAB_00403ee8:
FUN_00402edb(piVar3);
... | PUSH RBP
MOV RBP,RSP
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x8
MOV R13,RDI
JMP 0x00403efa
MOV EAX,dword ptr [R12]
CMP EAX,0x103
JZ 0x00403e19
CMP EAX,0x103
JG 0x00403ee8
CMP EAX,0xa
JZ 0x00403e19
CMP EAX,0x100
JZ 0x00403e38
JMP 0x00403ee8
MOV RDI,R12
MOV EAX,0x0
CALL 0x00402feb
JMP 0x00403efa
MOV RDI,RBX
MOV EAX,0x0
CALL ... | {"edges": [{"source": "var_00403e76", "type": "use", "target": "CBRANCH_00403e6b_190"}, {"source": "const_0", "type": "use", "target": "INT_NOTEQUAL_00403ecf_222"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_00403e0b_105"}, {"source": "var_00403efa", "type": "use", "target": "BRANCH_00403e26_... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "CALL_00403edc_232"}, {"source": "unique_268435753", "type": "use", "target": "CAST_00403e3d_759"}, {"source": "var_00403e76", "type": "use", "target": "CBRANCH_00403e6b_190"}, {"source": "const_0", "type": "use", "target": "INT_NOTEQUAL_00403ecf_2... | {"edges": [{"source": "00403ddd", "type": "control_flow", "target": "00403efa"}, {"source": "00403df2", "type": "control_flow", "target": "00403e19"}, {"source": "00403df2", "type": "control_flow", "target": "00403dfd"}, {"source": "00403dfd", "type": "control_flow", "target": "00403ee8"}, {"source": "00403dfd", "type"... | {"edges": [{"source": "00403ddd", "type": "control_flow", "target": "00403efa"}, {"source": "00403df2", "type": "control_flow", "target": "00403e19"}, {"source": "00403df2", "type": "control_flow", "target": "00403dfd"}, {"source": "00403dfd", "type": "control_flow", "target": "00403ee8"}, {"source": "00403dfd", "type"... | null | null | [["var_00402feb", "CALL_00403eca_217", "input"], ["const_0", "RETURN_00403f1d_68", "input"], ["reg_register:00000000", "INT_EQUAL_00403e6d_195", "input"], ["LOAD_00403e4a_139", "unique_56832", "output"], ["unique_56832", "INT_SLESS_00403e02_93", "input"], ["unique_56832", "INT_EQUAL_00403e4c_146", "input"], ["PTRSUB_00... | [["var_00402feb", "CALL_00403eca_217", "input"], ["const_0", "RETURN_00403f1d_68", "input"], ["COPY_00403e63_644", "reg_register:00000000", "output"], ["reg_register:00000000", "INT_EQUAL_00403e6d_195", "input"], ["LOAD_00403e4a_139", "unique_56832", "output"], ["unique_56832", "INT_SLESS_00403e02_93", "input"], ["uniq... | {"edges": [{"source": "var_00402feb", "type": "input", "target": "CALL_00403eca_217"}, {"source": "const_0", "type": "input", "target": "RETURN_00403f1d_68"}, {"source": "reg_register:00000000", "type": "input", "target": "INT_EQUAL_00403e6d_195"}, {"source": "LOAD_00403e4a_139", "type": "output", "target": "unique_568... | {"edges": [{"source": "var_00402feb", "type": "input", "target": "CALL_00403eca_217"}, {"source": "const_0", "type": "input", "target": "RETURN_00403f1d_68"}, {"source": "COPY_00403e63_644", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "input", "target": "INT_EQUAL_0... | 00403ddd | .. | .. |
72_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | function_dcl_flush | FUN_00403f1e |
/* WARNING: Unknown calling convention */
token * function_dcl_flush(token *list)
{
int iVar1;
token *t_00;
token *t;
token *in_RDI;
do {
t_00 = tok_class();
if (t_00 == (token *)0x0) {
return in_RDI;
}
iVar1 = t_00->tokno;
if (iVar1 != 0x103) {
if (0x103 < iVar1) {
LAB_0... |
undefined8 FUN_00403f1e(undefined8 param_1)
{
int iVar1;
int *piVar2;
do {
piVar2 = (int *)FUN_004028d7();
if (piVar2 == (int *)0x0) {
return param_1;
}
iVar1 = *piVar2;
if (iVar1 != 0x103) {
if (0x103 < iVar1) {
LAB_00404070:
FUN_00402edb(piVar2);
return param... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
MOV R12,RDI
JMP 0x00404082
MOV EAX,dword ptr [RBX]
CMP EAX,0x103
JZ 0x00403fa0
CMP EAX,0x103
JG 0x00404070
CMP EAX,0x101
JZ 0x00403fd6
CMP EAX,0x101
JG 0x00404070
CMP EAX,0x100
JZ 0x00404007
CMP EAX,0x100
JG 0x00404070
CMP EAX,0x7b
JZ 0x00403fb2
CMP EAX,0x7b
JG 0x00404070
CMP EAX,... | {"edges": [{"source": "var_00403fa0", "type": "use", "target": "CBRANCH_00403f34_56"}, {"source": "var_00404082", "type": "use", "target": "BRANCH_00403fad_218"}, {"source": "const_0", "type": "use", "target": "RETURN_0040409f_712"}, {"source": "reg_register:00000000", "type": "use", "target": "CALL_00403feb_262"}, {"s... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "LOAD_00403f2d_44"}, {"source": "var_00403fa0", "type": "use", "target": "CBRANCH_00403f34_56"}, {"source": "var_00404082", "type": "use", "target": "BRANCH_00403fad_218"}, {"source": "const_0", "type": "use", "target": "RETURN_0040409f_712"}, {"so... | {"edges": [{"source": "00403f1e", "type": "control_flow", "target": "00404082"}, {"source": "00403f2d", "type": "control_flow", "target": "00403fa0"}, {"source": "00403f2d", "type": "control_flow", "target": "00403f36"}, {"source": "00403f36", "type": "control_flow", "target": "00404070"}, {"source": "00403f36", "type"... | {"edges": [{"source": "00403f1e", "type": "control_flow", "target": "00404082"}, {"source": "00403f2d", "type": "control_flow", "target": "00403fa0"}, {"source": "00403f2d", "type": "control_flow", "target": "00403f36"}, {"source": "00403f36", "type": "control_flow", "target": "00404070"}, {"source": "00403f36", "type"... | null | null | [["INT_SLESS_00403f75_139", "unique_61952", "output"], ["unique_61952", "CBRANCH_00403f67_115", "input"], ["const_0", "RETURN_0040409f_712", "input"], ["const_0", "COPY_0040409b_707", "input"], ["var_00403fd6", "CBRANCH_00403f46_79", "input"], ["reg_register:00000206", "CBRANCH_00403f95_187", "input"], ["unique_56832",... | [["INT_SLESS_00403f75_139", "unique_61952", "output"], ["unique_61952", "CBRANCH_00403f67_115", "input"], ["const_0", "RETURN_0040409f_712", "input"], ["const_0", "COPY_0040409b_707", "input"], ["var_00403fd6", "CBRANCH_00403f46_79", "input"], ["reg_register:00000206", "CBRANCH_00403f95_187", "input"], ["unique_56832",... | {"edges": [{"source": "INT_SLESS_00403f75_139", "type": "output", "target": "unique_61952"}, {"source": "unique_61952", "type": "input", "target": "CBRANCH_00403f67_115"}, {"source": "const_0", "type": "input", "target": "RETURN_0040409f_712"}, {"source": "const_0", "type": "input", "target": "COPY_0040409b_707"}, {"so... | {"edges": [{"source": "INT_SLESS_00403f75_139", "type": "output", "target": "unique_61952"}, {"source": "unique_61952", "type": "input", "target": "CBRANCH_00403f67_115"}, {"source": "const_0", "type": "input", "target": "RETURN_0040409f_712"}, {"source": "const_0", "type": "input", "target": "COPY_0040409b_707"}, {"so... | 00403f1e | .. | .. |
73_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | dcl_flush | FUN_004040a0 |
/* WARNING: Unknown calling convention */
token * dcl_flush(token *t)
{
int iVar1;
token *ptVar2;
token *in_RDI;
int got_word;
token *ptVar3;
int unaff_R13D;
undefined4 unaff_000000ac;
ptVar3 = (token *)0x0;
do {
if (in_RDI == (token *)0x0) {
return (token *)0x0;
}
iVar1 = in_R... |
int * FUN_004040a0(int *param_1)
{
int iVar1;
bool bVar2;
int *piVar3;
bVar2 = false;
do {
if (param_1 == (int *)0x0) {
return (int *)0x0;
}
iVar1 = *param_1;
if (iVar1 == 0x106) {
LAB_0040410a:
bVar2 = true;
FUN_0040279f(param_1);
FUN_00402feb(param_1);
}
... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
MOV RBX,RDI
MOV R12D,0x0
JMP 0x004042a3
MOV EAX,dword ptr [RBX]
CMP EAX,0x106
JZ 0x0040410a
CMP EAX,0x106
JG 0x0040412f
CMP EAX,0x103
JZ 0x004040eb
CMP EAX,0x103
JG 0x0040412f
CMP EAX,0x101
JZ 0x0040410a
CMP EAX,0x101
JG 0x0040412f
CMP EAX,0xa
JZ 0x004040eb
CMP EAX,0x2a
JNZ 0x0040... | {"edges": [{"source": "var_00402feb", "type": "use", "target": "CALL_00404100_144"}, {"source": "PTRSUB_0040412f_1077", "type": "def", "target": "unique_268435861"}, {"source": "const_260", "type": "use", "target": "INT_SLESS_004040d1_87"}, {"source": "const_258", "type": "use", "target": "INT_SLESS_004040df_110"}, {"s... | {"edges": [{"source": "var_00402feb", "type": "use", "target": "CALL_00404100_144"}, {"source": "const_260", "type": "use", "target": "INT_SLESS_004040d1_87"}, {"source": "reg_register:00000018", "type": "use", "target": "CALL_004041e6_418"}, {"source": "const_0", "type": "use", "target": "RETURN_004042b5_1111"}, {"sou... | {"edges": [{"source": "004040a0", "type": "control_flow", "target": "004042a3"}, {"source": "004040b5", "type": "control_flow", "target": "0040410a"}, {"source": "004040b5", "type": "control_flow", "target": "004040be"}, {"source": "004040be", "type": "control_flow", "target": "0040412f"}, {"source": "004040be", "type"... | {"edges": [{"source": "004040a0", "type": "control_flow", "target": "004042a3"}, {"source": "004040b5", "type": "control_flow", "target": "0040410a"}, {"source": "004040b5", "type": "control_flow", "target": "004040be"}, {"source": "004040be", "type": "control_flow", "target": "0040412f"}, {"source": "004040be", "type"... | null | null | [["INT_EQUAL_0040417c_226", "reg_register:00000206", "output"], ["INT_NOTEQUAL_00404164_212", "reg_register:00000206", "output"], ["INT_EQUAL_004040e6_128", "reg_register:00000206", "output"], ["reg_register:00000018", "PTRSUB_00404145_1080", "input"], ["reg_register:00000206", "CBRANCH_00404143_180", "input"], ["const... | [["INT_NOTEQUAL_00404164_212", "reg_register:00000206", "output"], ["INT_EQUAL_004040e6_128", "reg_register:00000206", "output"], ["PTRADD_00404138_1093", "unique_18176", "output"], ["reg_register:00000206", "CBRANCH_00404143_180", "input"], ["const_0", "INT_NOTEQUAL_004041ee_424", "input"], ["reg_register:00000018", "... | {"edges": [{"source": "INT_EQUAL_0040417c_226", "type": "output", "target": "reg_register:00000206"}, {"source": "INT_NOTEQUAL_00404164_212", "type": "output", "target": "reg_register:00000206"}, {"source": "INT_EQUAL_004040e6_128", "type": "output", "target": "reg_register:00000206"}, {"source": "reg_register:00000018... | {"edges": [{"source": "INT_NOTEQUAL_00404164_212", "type": "output", "target": "reg_register:00000206"}, {"source": "INT_EQUAL_004040e6_128", "type": "output", "target": "reg_register:00000206"}, {"source": "PTRADD_00404138_1093", "type": "output", "target": "unique_18176"}, {"source": "reg_register:00000206", "type": ... | 004040a0 | .. | .. |
74_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | vs_alloc | FUN_004042b6 |
vstring * vs_alloc(int len)
{
vstring *pvVar1;
char *pcVar2;
vstring *vp;
int len_local;
if ((0 < len) && (pvVar1 = (vstring *)malloc(0x10), pvVar1 != (vstring *)0x0)) {
pcVar2 = (char *)malloc((ulong)(uint)len);
pvVar1->str = pcVar2;
if (pvVar1->str != (char *)0x0) {
pvVar1->last = pvV... |
long * FUN_004042b6(uint param_1)
{
long *plVar1;
void *pvVar2;
if ((0 < (int)param_1) && (plVar1 = (long *)malloc(0x10), plVar1 != (long *)0x0)) {
pvVar2 = malloc((ulong)param_1);
*plVar1 = (long)pvVar2;
if (*plVar1 != 0) {
plVar1[1] = (long)(int)param_1 + -1 + *plVar1;
return plVar1... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x18
MOV dword ptr [RBP + -0x14],EDI
CMP dword ptr [RBP + -0x14],0x0
JLE 0x004042f9
MOV EDI,0x10
MOV EAX,0x0
CALL 0x004010f0
MOV RBX,RAX
TEST RBX,RBX
JZ 0x004042f9
MOV EAX,dword ptr [RBP + -0x14]
MOV EDI,EAX
MOV EAX,0x0
CALL 0x004010f0
MOV qword ptr [RBX],RAX
MOV RAX,qword ptr [RBX... | {"edges": [{"source": "const_433", "type": "use", "target": "LOAD_004042f1_62"}, {"source": "PTRSUB_0040430f_232", "type": "def", "target": "unique_18176"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_004042dd_49"}, {"source": "var_00404300", "type": "use", "target": "CBRANCH_004042f7_74"}, {"... | {"edges": [{"source": "const_433", "type": "use", "target": "LOAD_004042f1_62"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_004042dd_49"}, {"source": "var_00404300", "type": "use", "target": "CBRANCH_004042f7_74"}, {"source": "INT_ZEXT_004042e2_164", "type": "def", "target": "reg_register:000... | {"edges": [{"source": "004042b6", "type": "control_flow", "target": "004042f9"}, {"source": "004042b6", "type": "control_flow", "target": "004042c8"}, {"source": "004042c8", "type": "control_flow", "target": "004010f0"}, {"source": "004042c8", "type": "control_flow", "target": "004042f9"}, {"source": "004042c8", "type"... | {"edges": [{"source": "004042b6", "type": "control_flow", "target": "004042f9"}, {"source": "004042b6", "type": "control_flow", "target": "004042c8"}, {"source": "004042c8", "type": "control_flow", "target": "004010f0"}, {"source": "004042c8", "type": "control_flow", "target": "004042f9"}, {"source": "004042c8", "type"... | null | null | [["CAST_004042e9_235", "reg_register:00000000", "output"], ["reg_register:00000000", "PTRSUB_004042ee_229", "input"], ["const_0", "PTRSUB_004042f1_230", "input"], ["reg_register:00000038", "INT_SLESS_004042c6_32", "input"], ["reg_register:00000000", "RETURN_0040431b_85", "input"], ["unique_268435536", "LOAD_004042f1_62... | [["PTRADD_0040430f_228", "unique_18176", "output"], ["CAST_00404306_232", "unique_268435564", "output"], ["reg_register:00000000", "RETURN_0040431b_85", "input"], ["INT_NOTEQUAL_004042da_44", "reg_register:00000206", "output"], ["LOAD_00404300_86", "unique_57088", "output"], ["const_0", "RETURN_0040431b_85", "input"], ... | {"edges": [{"source": "CAST_004042e9_235", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "input", "target": "PTRSUB_004042ee_229"}, {"source": "const_0", "type": "input", "target": "PTRSUB_004042f1_230"}, {"source": "reg_register:00000038", "type": "input", "target": ... | {"edges": [{"source": "PTRADD_0040430f_228", "type": "output", "target": "unique_18176"}, {"source": "CAST_00404306_232", "type": "output", "target": "unique_268435564"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_0040431b_85"}, {"source": "INT_NOTEQUAL_004042da_44", "type": "output", "targe... | 004042b6 | .. | .. |
75_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | vs_realloc | FUN_0040431c |
char * vs_realloc(vstring *vp,char *cp)
{
uint uVar1;
char *pcVar2;
char *pcVar3;
char *cp_local;
int len;
int where;
pcVar3 = vp->str;
uVar1 = (((int)vp->last - (int)vp->str) + 1) * 2;
pcVar2 = (char *)realloc(vp->str,(ulong)uVar1);
vp->str = pcVar2;
if (vp->str == (char *)0x0) {
pcVar3 ... |
long FUN_0040431c(long *param_1,int param_2)
{
uint uVar1;
void *pvVar2;
long lVar3;
lVar3 = *param_1;
uVar1 = (((int)param_1[1] - (int)*param_1) + 1) * 2;
pvVar2 = realloc((void *)*param_1,(ulong)uVar1);
*param_1 = (long)pvVar2;
if (*param_1 == 0) {
lVar3 = 0;
}
else {
param_1[1] = (lo... | PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x28
MOV RBX,RDI
MOV qword ptr [RBP + -0x28],RSI
MOV RDX,qword ptr [RBX]
MOV RAX,qword ptr [RBP + -0x28]
SUB RAX,RDX
MOV dword ptr [RBP + -0x14],EAX
MOV RAX,qword ptr [RBX + 0x8]
MOV RDX,qword ptr [RBX]
SUB RAX,RDX
ADD EAX,0x1
MOV dword ptr [RBP + -0x18],EAX
SHL dword ptr [RBP + -0... | {"edges": [{"source": "unique_268435529", "type": "use", "target": "INT_SUB_00404340_44"}, {"source": "INT_SEXT_0040438c_155", "type": "def", "target": "reg_register:00000000"}, {"source": "const_0", "type": "use", "target": "SUBPIECE_00404343_238"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00... | {"edges": [{"source": "unique_268435529", "type": "use", "target": "INT_SUB_00404340_44"}, {"source": "INT_SEXT_0040438c_155", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "LOAD_00404386_149"}, {"source": "const_0", "type": "use", "target": "SUBPIECE_00... | {"edges": [{"source": "0040431c", "type": "control_flow", "target": "00401120"}, {"source": "0040431c", "type": "control_flow", "target": "00404373"}, {"source": "0040431c", "type": "control_flow", "target": "0040436c"}, {"source": "0040436c", "type": "control_flow", "target": "00404391"}, {"source": "00404373", "type"... | {"edges": [{"source": "0040431c", "type": "control_flow", "target": "00401120"}, {"source": "0040431c", "type": "control_flow", "target": "00404373"}, {"source": "0040431c", "type": "control_flow", "target": "0040436c"}, {"source": "0040436c", "type": "control_flow", "target": "00404391"}, {"source": "00404373", "type"... | null | null | [["SUBPIECE_00404343_234", "unique_268435521", "output"], ["unique_268435521", "INT_SUB_00404340_44", "input"], ["const_0", "PTRSUB_00404361_258", "input"], ["unique_268435617", "LOAD_00404386_149", "input"], ["reg_register:00000038", "PTRSUB_0040433d_256", "input"], ["unique_268435553", "LOAD_0040432c_20", "input"], [... | [["SUBPIECE_00404343_234", "unique_268435521", "output"], ["const_433", "LOAD_0040432c_20", "input"], ["unique_268435521", "INT_SUB_00404340_44", "input"], ["const_-1", "INT_ADD_0040437b_130", "input"], ["INT_ZEXT_00404352_210", "reg_register:00000030", "output"], ["INT_ADD_0040437f_139", "reg_register:00000000", "outp... | {"edges": [{"source": "SUBPIECE_00404343_234", "type": "output", "target": "unique_268435521"}, {"source": "unique_268435521", "type": "input", "target": "INT_SUB_00404340_44"}, {"source": "const_0", "type": "input", "target": "PTRSUB_00404361_258"}, {"source": "unique_268435617", "type": "input", "target": "LOAD_00404... | {"edges": [{"source": "SUBPIECE_00404343_234", "type": "output", "target": "unique_268435521"}, {"source": "const_433", "type": "input", "target": "LOAD_0040432c_20"}, {"source": "unique_268435521", "type": "input", "target": "INT_SUB_00404340_44"}, {"source": "const_-1", "type": "input", "target": "INT_ADD_0040437b_13... | 0040431c | .. | .. |
76_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | vs_strcpy | FUN_00404397 |
/* WARNING: Unknown calling convention */
char * vs_strcpy(vstring *vp,char *dst,char *src)
{
char *pcVar1;
char *in_RDX;
char *in_RSI;
vstring *in_RDI;
while( true ) {
if (*in_RDX == '\0') {
*in_RSI = '\0';
return in_RSI;
}
pcVar1 = in_RSI;
if ((in_RDI->last <= in_RSI) && (p... |
char * FUN_00404397(long param_1,char *param_2,char *param_3)
{
char *pcVar1;
while( true ) {
if (*param_3 == '\0') {
*param_2 = '\0';
return param_2;
}
pcVar1 = param_2;
if ((*(char **)(param_1 + 8) <= param_2) &&
(pcVar1 = (char *)FUN_0040431c(param_1,param_2), pcVar1 == (c... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
MOV R12,RDI
MOV RAX,RSI
MOV RBX,RDX
JMP 0x004043e6
MOV RDX,qword ptr [R12 + 0x8]
CMP RAX,RDX
JC 0x004043c8
MOV RSI,RAX
MOV RDI,R12
MOV EAX,0x0
CALL 0x0040431c
TEST RAX,RAX
JZ 0x004043db
MOV RDX,RAX
LEA RAX,[RDX + 0x1]
MOVZX ECX,byte ptr [RBX]
MOV byte ptr [RDX],CL
MOVZX EDX,byte p... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "STORE_004043d2_82"}, {"source": "var_004043a9", "type": "use", "target": "CBRANCH_004043eb_27"}, {"source": "unique_18176", "type": "use", "target": "MULTIEQUAL_004043e6_160"}, {"source": "unique_268435510", "type": "use", "target": "MULTIEQUAL_00... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "STORE_004043d2_82"}, {"source": "var_004043a9", "type": "use", "target": "CBRANCH_004043eb_27"}, {"source": "reg_register:00000030", "type": "use", "target": "MULTIEQUAL_004043e6_161"}, {"source": "const_433", "type": "use", "target": "LOAD_004043... | {"edges": [{"source": "00404397", "type": "control_flow", "target": "004043e6"}, {"source": "004043a9", "type": "control_flow", "target": "004043c8"}, {"source": "004043a9", "type": "control_flow", "target": "004043b3"}, {"source": "004043b3", "type": "control_flow", "target": "0040431c"}, {"source": "004043b3", "type"... | {"edges": [{"source": "00404397", "type": "control_flow", "target": "004043e6"}, {"source": "004043a9", "type": "control_flow", "target": "004043c8"}, {"source": "004043a9", "type": "control_flow", "target": "004043b3"}, {"source": "004043b3", "type": "control_flow", "target": "0040431c"}, {"source": "004043b3", "type"... | null | null | [["const_1", "PTRADD_004043cb_76", "input"], ["unique_18176", "MULTIEQUAL_004043e6_160", "input"], ["LOAD_004043cf_78", "unique_56448", "output"], ["reg_register:00000000", "STORE_004043d2_82", "input"], ["const_0", "INT_EQUAL_004043e9_21", "input"], ["reg_register:00000000", "RETURN_004043f4_277", "input"], ["var_0040... | [["MULTIEQUAL_004043e6_161", "reg_register:00000000", "output"], ["const_1", "PTRADD_004043cb_76", "input"], ["LOAD_004043cf_78", "unique_56448", "output"], ["reg_register:00000000", "STORE_004043d2_82", "input"], ["const_0", "INT_EQUAL_004043e9_21", "input"], ["reg_register:00000000", "RETURN_004043f4_277", "input"], ... | {"edges": [{"source": "const_1", "type": "input", "target": "PTRADD_004043cb_76"}, {"source": "unique_18176", "type": "input", "target": "MULTIEQUAL_004043e6_160"}, {"source": "LOAD_004043cf_78", "type": "output", "target": "unique_56448"}, {"source": "reg_register:00000000", "type": "input", "target": "STORE_004043d2_... | {"edges": [{"source": "MULTIEQUAL_004043e6_161", "type": "output", "target": "reg_register:00000000"}, {"source": "const_1", "type": "input", "target": "PTRADD_004043cb_76"}, {"source": "LOAD_004043cf_78", "type": "output", "target": "unique_56448"}, {"source": "reg_register:00000000", "type": "input", "target": "STORE... | 00404397 | .. | .. |
77_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | sym_enter | FUN_004043f5 |
void sym_enter(char *name,int type)
{
int iVar1;
symbol *psVar2;
size_t sVar3;
char *pcVar4;
int type_local;
char *name_local;
int where;
symbol *s;
psVar2 = (symbol *)malloc(0x18);
if (psVar2 != (symbol *)0x0) {
sVar3 = strlen(name);
pcVar4 = (char *)malloc(sVar3 + 1);
psVar2->name... |
void FUN_004043f5(char *param_1,undefined4 param_2)
{
int iVar1;
long *plVar2;
size_t sVar3;
void *pvVar4;
plVar2 = (long *)malloc(0x18);
if (plVar2 != (long *)0x0) {
sVar3 = strlen(param_1);
pvVar4 = malloc(sVar3 + 1);
*plVar2 = (long)pvVar4;
if (*plVar2 != 0) goto LAB_0040445d;
}
... | PUSH RBP
MOV RBP,RSP
SUB RSP,0x20
MOV qword ptr [RBP + -0x18],RDI
MOV dword ptr [RBP + -0x1c],ESI
MOV EDI,0x18
MOV EAX,0x0
CALL 0x004010f0
MOV qword ptr [RBP + -0x8],RAX
CMP qword ptr [RBP + -0x8],0x0
JZ 0x0040444e
MOV RAX,qword ptr [RBP + -0x18]
MOV RDI,RAX
CALL 0x00401060
ADD RAX,0x1
MOV RDI,RAX
MOV EAX,0x0
CALL 0x00... | {"edges": [{"source": "const_0", "type": "use", "target": "PTRSUB_0040443f_366"}, {"source": "CAST_0040440e_371", "type": "def", "target": "reg_register:00000000"}, {"source": "const_0", "type": "use", "target": "INT_NOTEQUAL_00404449_75"}, {"source": "reg_register:00000000", "type": "use", "target": "INT_ADD_0040442a_... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "INT_ADD_0040442a_49"}, {"source": "CALL_00404436_60", "type": "def", "target": "reg_register:00000000"}, {"source": "unique_268435591", "type": "use", "target": "CALL_00404458_86"}, {"source": "reg_register:00000000", "type": "use", "target": "INT... | {"edges": [{"source": "004043f5", "type": "control_flow", "target": "004010f0"}, {"source": "004043f5", "type": "control_flow", "target": "0040444e"}, {"source": "004043f5", "type": "control_flow", "target": "0040441e"}, {"source": "0040441e", "type": "control_flow", "target": "00401060"}, {"source": "0040441e", "type"... | {"edges": [{"source": "004043f5", "type": "control_flow", "target": "004010f0"}, {"source": "004043f5", "type": "control_flow", "target": "0040444e"}, {"source": "004043f5", "type": "control_flow", "target": "0040441e"}, {"source": "0040441e", "type": "control_flow", "target": "00401060"}, {"source": "0040441e", "type"... | null | null | [["CAST_0040440e_371", "reg_register:00000000", "output"], ["var_004010f0", "CALL_0040440e_23", "input"], ["PTRSUB_00404461_368", "unique_268435655", "output"], ["const_433", "STORE_0040443f_65", "input"], ["reg_register:00000000", "CALL_00404436_60", "input"], ["const_0", "PTRSUB_0040443f_366", "input"], ["unique_2684... | [["var_004010f0", "CALL_0040440e_23", "input"], ["const_433", "STORE_0040443f_65", "input"], ["reg_register:00000000", "CALL_00404436_60", "input"], ["unique_268435591", "CALL_00404458_86", "input"], ["unique_268435639", "STORE_0040443f_65", "input"], ["const_8", "PTRADD_004044a7_357", "input"], ["unique_268435607", "P... | {"edges": [{"source": "CAST_0040440e_371", "type": "output", "target": "reg_register:00000000"}, {"source": "var_004010f0", "type": "input", "target": "CALL_0040440e_23"}, {"source": "PTRSUB_00404461_368", "type": "output", "target": "unique_268435655"}, {"source": "const_433", "type": "input", "target": "STORE_0040443... | {"edges": [{"source": "var_004010f0", "type": "input", "target": "CALL_0040440e_23"}, {"source": "const_433", "type": "input", "target": "STORE_0040443f_65"}, {"source": "reg_register:00000000", "type": "input", "target": "CALL_00404436_60"}, {"source": "unique_268435591", "type": "input", "target": "CALL_00404458_86"}... | 004043f5 | .. | .. |
78_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | sym_find | FUN_004044bf |
/* WARNING: Unknown calling convention */
symbol * sym_find(char *name)
{
int iVar1;
symbol *s;
symbol *psVar2;
char *in_RDI;
iVar1 = hash(in_RDI,0x14);
psVar2 = sym_tab[iVar1];
while( true ) {
if (psVar2 == (symbol *)0x0) {
return (symbol *)0x0;
}
if ((*in_RDI == *psVar2->name) &&... |
undefined8 * FUN_004044bf(char *param_1)
{
int iVar1;
undefined8 *puVar2;
iVar1 = FUN_00404622(param_1,0x14);
puVar2 = *(undefined8 **)(&DAT_004074c0 + (long)iVar1 * 8);
while( true ) {
if (puVar2 == (undefined8 *)0x0) {
return (undefined8 *)0x0;
}
if ((*param_1 == *(char *)*puVar2) && ... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
MOV R12,RDI
MOV ESI,0x14
MOV RDI,R12
MOV EAX,0x0
CALL 0x00404622
CDQE
MOV RBX,qword ptr [0x4074c0 + RAX*0x8]
JMP 0x00404511
MOVZX EDX,byte ptr [R12]
MOV RAX,qword ptr [RBX]
MOVZX EAX,byte ptr [RAX]
CMP DL,AL
JNZ 0x0040450d
MOV RAX,qword ptr [RBX]
MOV RSI,RAX
MOV RDI,R12
CALL 0x004... | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_004044d6_16"}, {"source": "PTRSUB_004044f6_251", "type": "def", "target": "unique_268435542"}, {"source": "const_0", "type": "use", "target": "COPY_0040451b_147"}, {"source": "const_0", "type": "use", "target": "PTRSUB_004044dd_248"}, {"sourc... | {"edges": [{"source": "unique_268435560", "type": "use", "target": "CAST_0040450d_254"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004044d6_16"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_0040451f_249"}, {"source": "unique_268435536", "type": "use", "target": "LOAD_00... | {"edges": [{"source": "004044bf", "type": "control_flow", "target": "00404622"}, {"source": "004044bf", "type": "control_flow", "target": "00404511"}, {"source": "004044e7", "type": "control_flow", "target": "0040450d"}, {"source": "004044e7", "type": "control_flow", "target": "004044f6"}, {"source": "004044f6", "type"... | {"edges": [{"source": "004044bf", "type": "control_flow", "target": "00404622"}, {"source": "004044bf", "type": "control_flow", "target": "00404511"}, {"source": "004044e7", "type": "control_flow", "target": "0040450d"}, {"source": "004044e7", "type": "control_flow", "target": "004044f6"}, {"source": "004044f6", "type"... | null | null | [["COPY_0040451b_147", "reg_register:00000000", "output"], ["reg_register:00000038", "CALL_004044ff_76", "input"], ["unique_268435542", "LOAD_004044f6_70", "input"], ["INT_EQUAL_004044f2_63", "reg_register:00000206", "output"], ["const_0", "INT_EQUAL_00404504_81", "input"], ["INT_EQUAL_00404511_27", "reg_register:00000... | [["LOAD_0040450d_91", "unique_268435560", "output"], ["LOAD_004044ec_53", "unique_268435544", "output"], ["reg_register:00000038", "CALL_004044ff_76", "input"], ["INT_EQUAL_004044f2_63", "reg_register:00000206", "output"], ["const_0", "INT_EQUAL_00404504_81", "input"], ["INT_EQUAL_00404511_27", "reg_register:00000206",... | {"edges": [{"source": "COPY_0040451b_147", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004044ff_76"}, {"source": "unique_268435542", "type": "input", "target": "LOAD_004044f6_70"}, {"source": "INT_EQUAL_004044f2_63", "type": "output", "targe... | {"edges": [{"source": "LOAD_0040450d_91", "type": "output", "target": "unique_268435560"}, {"source": "LOAD_004044ec_53", "type": "output", "target": "unique_268435544"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004044ff_76"}, {"source": "INT_EQUAL_004044f2_63", "type": "output", "target": "... | 004044bf | .. | .. |
79_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | sym_init | FUN_00404520 |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void sym_init(void)
{
sym *p;
sym *psVar1;
for (psVar1 = syms; psVar1->name != (char *)0x0; psVar1 = psVar1 + 1) {
sym_enter(psVar1->name,psVar1->tokno);
}
return;
}
|
void FUN_00404520(void)
{
undefined **ppuVar1;
for (ppuVar1 = &PTR_DAT_00407280; *ppuVar1 != (undefined *)0x0; ppuVar1 = ppuVar1 + 2) {
FUN_004043f5(*ppuVar1,*(undefined4 *)(ppuVar1 + 1));
}
return;
}
| PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x8
MOV EBX,0x407280
JMP 0x00404549
MOV EDX,dword ptr [RBX + 0x8]
MOV RAX,qword ptr [RBX]
MOV ESI,EDX
MOV RDI,RAX
MOV EAX,0x0
CALL 0x004043f5
ADD RBX,0x10
MOV RAX,qword ptr [RBX]
TEST RAX,RAX
JNZ 0x00404530
NOP
NOP
MOV RBX,qword ptr [RBP + -0x8]
LEAVE
RET | {"edges": [{"source": "LOAD_00404549_18", "type": "def", "target": "unique_57088"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_0040454f_30"}, {"source": "reg_register:00000018", "type": "use", "target": "PTRSUB_00404533_123"}, {"source": "var_004043f5", "type": "use", "target": "CALL_00404540... | {"edges": [{"source": "LOAD_00404549_18", "type": "def", "target": "unique_57088"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_0040454f_30"}, {"source": "reg_register:00000018", "type": "use", "target": "PTRADD_00404530_116"}, {"source": "var_004043f5", "type": "use", "target": "CALL_00404540... | {"edges": [{"source": "00404520", "type": "control_flow", "target": "00404549"}, {"source": "00404530", "type": "control_flow", "target": "004043f5"}, {"source": "00404530", "type": "control_flow", "target": "00404549"}, {"source": "00404549", "type": "control_flow", "target": "00404530"}, {"source": "00404549", "type"... | {"edges": [{"source": "00404520", "type": "control_flow", "target": "00404549"}, {"source": "00404530", "type": "control_flow", "target": "004043f5"}, {"source": "00404530", "type": "control_flow", "target": "00404549"}, {"source": "00404549", "type": "control_flow", "target": "00404530"}, {"source": "00404549", "type"... | null | null | [["LOAD_00404549_18", "unique_57088", "output"], ["const_4223616", "PTRSUB_00404529_16", "input"], ["PTRSUB_00404533_123", "unique_268435521", "output"], ["MULTIEQUAL_00404549_82", "reg_register:00000018", "output"], ["var_00404530", "CBRANCH_0040454f_30", "input"], ["PTRSUB_00404530_122", "unique_18176", "output"], ["... | [["const_1", "PTRADD_00404530_116", "input"], ["LOAD_00404549_18", "unique_57088", "output"], ["const_4223616", "PTRSUB_00404529_16", "input"], ["MULTIEQUAL_00404549_82", "reg_register:00000018", "output"], ["var_00404530", "CBRANCH_0040454f_30", "input"], ["reg_register:00000018", "PTRADD_00404545_117", "input"], ["re... | {"edges": [{"source": "LOAD_00404549_18", "type": "output", "target": "unique_57088"}, {"source": "const_4223616", "type": "input", "target": "PTRSUB_00404529_16"}, {"source": "PTRSUB_00404533_123", "type": "output", "target": "unique_268435521"}, {"source": "MULTIEQUAL_00404549_82", "type": "output", "target": "reg_re... | {"edges": [{"source": "const_1", "type": "input", "target": "PTRADD_00404530_116"}, {"source": "LOAD_00404549_18", "type": "output", "target": "unique_57088"}, {"source": "const_4223616", "type": "input", "target": "PTRSUB_00404529_16"}, {"source": "MULTIEQUAL_00404549_82", "type": "output", "target": "reg_register:000... | 00404520 | .. | .. |
80_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | error | error |
void error(char *text)
{
char *text_local;
error_where(in_path,in_line,text);
return;
}
|
void error(undefined8 param_1)
{
FUN_00404588(PTR_DAT_00407108,DAT_00407110,param_1);
return;
}
| PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
MOV ECX,dword ptr [0x00407110]
MOV RAX,qword ptr [0x00407108]
MOV RDX,qword ptr [RBP + -0x8]
MOV ESI,ECX
MOV RDI,RAX
MOV EAX,0x0
CALL 0x00404588
NOP
LEAVE
RET | {"edges": [{"source": "addrtied_00407110", "type": "use", "target": "CALL_00404580_28"}, {"source": "const_28", "type": "use", "target": "INDIRECT_00404580_66"}, {"source": "addrtied_00407108", "type": "use", "target": "CALL_00404580_28"}, {"source": "const_28", "type": "use", "target": "INDIRECT_00404580_68"}, {"sourc... | {"edges": [{"source": "addrtied_00407110", "type": "use", "target": "CALL_00404580_28"}, {"source": "INDIRECT_00404580_63", "type": "def", "target": "addrtied_00407110"}, {"source": "addrtied_00407108", "type": "use", "target": "CALL_00404580_28"}, {"source": "const_0", "type": "use", "target": "RETURN_00404587_34"}, {... | {"edges": [{"source": "00404559", "type": "control_flow", "target": "00404588"}], "nodes": [{"label": "00404559", "type": "basic_block", "id": "00404559"}, {"label": "00404588", "type": "basic_block", "id": "00404588"}]} | {"edges": [{"source": "00404559", "type": "control_flow", "target": "00404588"}], "nodes": [{"label": "00404559", "type": "basic_block", "id": "00404559"}, {"label": "00404588", "type": "basic_block", "id": "00404588"}]} | null | null | [["addrtied_00407110", "COPY_00404587_69", "input"], ["addrtied_00407108", "CALL_00404580_28", "input"], ["reg_register:00000038", "CALL_00404580_28", "input"], ["INDIRECT_00404580_68", "addrtied_00407110", "output"], ["INDIRECT_00404580_66", "addrtied_00407108", "output"], ["addrtied_00407108", "INDIRECT_00404580_66",... | [["const_28", "INDIRECT_00404580_61", "input"], ["COPY_00404587_64", "addrtied_00407110", "output"], ["addrtied_00407108", "INDIRECT_00404580_61", "input"], ["addrtied_00407108", "COPY_00404587_62", "input"], ["addrtied_00407108", "CALL_00404580_28", "input"], ["reg_register:00000038", "CALL_00404580_28", "input"], ["I... | {"edges": [{"source": "addrtied_00407110", "type": "input", "target": "COPY_00404587_69"}, {"source": "addrtied_00407108", "type": "input", "target": "CALL_00404580_28"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00404580_28"}, {"source": "INDIRECT_00404580_68", "type": "output", "target": "a... | {"edges": [{"source": "const_28", "type": "input", "target": "INDIRECT_00404580_61"}, {"source": "COPY_00404587_64", "type": "output", "target": "addrtied_00407110"}, {"source": "addrtied_00407108", "type": "input", "target": "INDIRECT_00404580_61"}, {"source": "addrtied_00407108", "type": "input", "target": "COPY_0040... | 00404559 | .. | .. |
81_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | error_where | FUN_00404588 |
void error_where(char *path,int line,char *text)
{
char *text_local;
int line_local;
char *path_local;
errcount = errcount + 1;
if ((line != 0) && (*path != '\0')) {
fprintf(stderr,"%s, line %d: ",path,(ulong)(uint)line);
}
fprintf(stderr,"%s\n",text);
return;
}
|
void FUN_00404588(char *param_1,uint param_2,undefined8 param_3)
{
DAT_00407560 = DAT_00407560 + 1;
if ((param_2 != 0) && (*param_1 != '\0')) {
fprintf(stderr,"%s, line %d: ",param_1,(ulong)param_2);
}
fprintf(stderr,"%s\n",param_3);
return;
}
| PUSH RBP
MOV RBP,RSP
SUB RSP,0x20
MOV qword ptr [RBP + -0x8],RDI
MOV dword ptr [RBP + -0xc],ESI
MOV qword ptr [RBP + -0x18],RDX
MOV EAX,dword ptr [0x00407560]
ADD EAX,0x1
MOV dword ptr [0x00407560],EAX
CMP dword ptr [RBP + -0xc],0x0
JZ 0x004045db
MOV RAX,qword ptr [RBP + -0x8]
MOVZX EAX,byte ptr [RAX]
TEST AL,AL
JZ 0x0... | {"edges": [{"source": "const_87", "type": "use", "target": "INDIRECT_004045f3_200"}, {"source": "var_004010d0", "type": "use", "target": "CALL_004045d6_77"}, {"source": "reg_register:00000030", "type": "use", "target": "CAST_004045c2_222"}, {"source": "reg_register:00000010", "type": "use", "target": "CALL_004045f3_87"... | {"edges": [{"source": "MULTIEQUAL_004045db_201", "type": "def", "target": "addrtied_00407560"}, {"source": "INDIRECT_004045d6_194", "type": "def", "target": "addrtied_00407480"}, {"source": "addrtied_00407480", "type": "use", "target": "MULTIEQUAL_004045db_197"}, {"source": "reg_register:00000000", "type": "use", "targ... | {"edges": [{"source": "00404588", "type": "control_flow", "target": "004045db"}, {"source": "00404588", "type": "control_flow", "target": "004045b0"}, {"source": "004045b0", "type": "control_flow", "target": "004045db"}, {"source": "004045b0", "type": "control_flow", "target": "004045bb"}, {"source": "004045bb", "type"... | {"edges": [{"source": "00404588", "type": "control_flow", "target": "004045db"}, {"source": "00404588", "type": "control_flow", "target": "004045b0"}, {"source": "004045b0", "type": "control_flow", "target": "004045db"}, {"source": "004045b0", "type": "control_flow", "target": "004045bb"}, {"source": "004045bb", "type"... | null | null | [["const_1", "INT_ADD_004045a1_26", "input"], ["INT_ADD_004045a1_26", "reg_register:00000000", "output"], ["COPY_004045d6_220", "unique_268435512", "output"], ["INT_ZEXT_004045c2_145", "reg_register:00000008", "output"], ["var_004045db", "CBRANCH_004045ae_47", "input"], ["addrtied_00407560", "COPY_004045fa_201", "input... | [["const_1", "INT_ADD_004045a1_26", "input"], ["INDIRECT_004045d6_194", "addrtied_00407480", "output"], ["INT_ADD_004045a1_26", "reg_register:00000000", "output"], ["addrtied_00407480", "COPY_004045fa_196", "input"], ["INT_ZEXT_004045c2_145", "reg_register:00000008", "output"], ["addrtied_00407480", "INDIRECT_004045f3_... | {"edges": [{"source": "const_1", "type": "input", "target": "INT_ADD_004045a1_26"}, {"source": "INT_ADD_004045a1_26", "type": "output", "target": "reg_register:00000000"}, {"source": "COPY_004045d6_220", "type": "output", "target": "unique_268435512"}, {"source": "INT_ZEXT_004045c2_145", "type": "output", "target": "re... | {"edges": [{"source": "const_1", "type": "input", "target": "INT_ADD_004045a1_26"}, {"source": "INDIRECT_004045d6_194", "type": "output", "target": "addrtied_00407480"}, {"source": "INT_ADD_004045a1_26", "type": "output", "target": "reg_register:00000000"}, {"source": "addrtied_00407480", "type": "input", "target": "CO... | 00404588 | .. | .. |
82_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | fatal | FUN_004045fb |
void fatal(char *text)
{
char *text_local;
error(text);
/* WARNING: Subroutine does not return */
exit(1);
}
|
void FUN_004045fb(undefined8 param_1)
{
error(param_1);
/* WARNING: Subroutine does not return */
exit(1);
}
| PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
MOV RAX,qword ptr [RBP + -0x8]
MOV RDI,RAX
MOV EAX,0x0
CALL 0x00404559
MOV EDI,0x1
CALL 0x00401150 | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_0040461d_29"}, {"source": "var_00401150", "type": "use", "target": "CALL_0040461d_27"}, {"source": "var_00404559", "type": "use", "target": "CALL_00404613_23"}, {"source": "const_1", "type": "use", "target": "CALL_0040461d_27"}, {"source": "reg_register:... | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_0040461d_29"}, {"source": "var_00401150", "type": "use", "target": "CALL_0040461d_27"}, {"source": "var_00404559", "type": "use", "target": "CALL_00404613_23"}, {"source": "const_1", "type": "use", "target": "CALL_0040461d_27"}, {"source": "reg_register:... | {"edges": [{"source": "004045fb", "type": "control_flow", "target": "00404559"}, {"source": "004045fb", "type": "control_flow", "target": "00401150"}], "nodes": [{"label": "004045fb", "type": "basic_block", "id": "004045fb"}, {"label": "00404559", "type": "basic_block", "id": "00404559"}, {"label": "00401150", "type": ... | {"edges": [{"source": "004045fb", "type": "control_flow", "target": "00404559"}, {"source": "004045fb", "type": "control_flow", "target": "00401150"}], "nodes": [{"label": "004045fb", "type": "basic_block", "id": "004045fb"}, {"label": "00404559", "type": "basic_block", "id": "00404559"}, {"label": "00401150", "type": ... | null | null | [["const_1", "CALL_0040461d_27", "input"], ["const_1", "RETURN_0040461d_29", "input"], ["var_00401150", "CALL_0040461d_27", "input"], ["reg_register:00000038", "CALL_00404613_23", "input"], ["var_00404559", "CALL_00404613_23", "input"]] | [["const_1", "CALL_0040461d_27", "input"], ["const_1", "RETURN_0040461d_29", "input"], ["var_00401150", "CALL_0040461d_27", "input"], ["reg_register:00000038", "CALL_00404613_23", "input"], ["var_00404559", "CALL_00404613_23", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "CALL_0040461d_27"}, {"source": "const_1", "type": "input", "target": "RETURN_0040461d_29"}, {"source": "var_00401150", "type": "input", "target": "CALL_0040461d_27"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00404613_23"}, {"source... | {"edges": [{"source": "const_1", "type": "input", "target": "CALL_0040461d_27"}, {"source": "const_1", "type": "input", "target": "RETURN_0040461d_29"}, {"source": "var_00401150", "type": "input", "target": "CALL_0040461d_27"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00404613_23"}, {"source... | 004045fb | .. | .. |
83_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | hash | FUN_00404622 |
int hash(char *s,uint size)
{
char *pcVar1;
ulong h;
ulong uVar2;
uint uVar3;
ulong g;
uint size_local;
uVar2 = 0;
while (*s != '\0') {
pcVar1 = s + 1;
uVar2 = uVar2 * 0x10 + (long)*s;
uVar3 = (uint)uVar2 & 0xf0000000;
s = pcVar1;
if ((ulong)uVar3 != 0) {
uVar2 = uVar2 ^ u... |
ulong FUN_00404622(char *param_1,uint param_2)
{
char *pcVar1;
ulong uVar2;
uint uVar3;
uVar2 = 0;
while (*param_1 != '\0') {
pcVar1 = param_1 + 1;
uVar2 = uVar2 * 0x10 + (long)*param_1;
uVar3 = (uint)uVar2 & 0xf0000000;
param_1 = pcVar1;
if ((ulong)uVar3 != 0) {
uVar2 = uVar2 ^... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
MOV RAX,RDI
MOV dword ptr [RBP + -0x14],ESI
MOV EBX,0x0
JMP 0x0040466b
MOV RCX,RBX
SHL RCX,0x4
MOV RDX,RAX
LEA RAX,[RDX + 0x1]
MOVZX EDX,byte ptr [RDX]
MOVSX RDX,DL
LEA RBX,[RCX + RDX*0x1]
MOV R12,RBX
AND R12D,0xf0000000
TEST R12,R12
JZ 0x0040466b
MOV RDX,R12
SHR RDX,0x18
XOR RBX,... | {"edges": [{"source": "unique_268435480", "type": "use", "target": "INT_ZEXT_00404661_133"}, {"source": "INT_AND_00404652_112", "type": "def", "target": "reg_register:000000a0"}, {"source": "unique_56448", "type": "use", "target": "INT_SEXT_00404647_105"}, {"source": "const_0", "type": "use", "target": "COPY_0040462f_1... | {"edges": [{"source": "unique_268435480", "type": "use", "target": "INT_ZEXT_00404661_133"}, {"source": "reg_register:00000030", "type": "use", "target": "INT_ZEXT_00404672_252"}, {"source": "INT_AND_00404652_112", "type": "def", "target": "reg_register:000000a0"}, {"source": "SUBPIECE_00404652_265", "type": "def", "ta... | {"edges": [{"source": "00404622", "type": "control_flow", "target": "0040466b"}, {"source": "00404636", "type": "control_flow", "target": "0040466b"}, {"source": "00404636", "type": "control_flow", "target": "0040465e"}, {"source": "0040465e", "type": "control_flow", "target": "0040466b"}, {"source": "0040466b", "type"... | {"edges": [{"source": "00404622", "type": "control_flow", "target": "0040466b"}, {"source": "00404636", "type": "control_flow", "target": "0040466b"}, {"source": "00404636", "type": "control_flow", "target": "0040465e"}, {"source": "0040465e", "type": "control_flow", "target": "0040466b"}, {"source": "0040466b", "type"... | null | null | [["const_24", "INT_RIGHT_00404661_286", "input"], ["var_00404636", "CBRANCH_00404670_29", "input"], ["reg_register:00000018", "MULTIEQUAL_0040466b_265", "input"], ["const_0", "RETURN_00404687_60", "input"], ["INT_RIGHT_00404661_286", "unique_268435480", "output"], ["unique_18944", "INT_XOR_00404665_170", "input"], ["co... | [["const_0", "SUBPIECE_00404652_265", "input"], ["var_00404636", "CBRANCH_00404670_29", "input"], ["const_0", "RETURN_00404687_60", "input"], ["unique_18944", "INT_XOR_00404665_170", "input"], ["const_433", "LOAD_0040466b_16", "input"], ["reg_register:00000008", "INT_REM_0040467d_43", "input"], ["reg_register:000000a0"... | {"edges": [{"source": "const_24", "type": "input", "target": "INT_RIGHT_00404661_286"}, {"source": "var_00404636", "type": "input", "target": "CBRANCH_00404670_29"}, {"source": "reg_register:00000018", "type": "input", "target": "MULTIEQUAL_0040466b_265"}, {"source": "const_0", "type": "input", "target": "RETURN_004046... | {"edges": [{"source": "const_0", "type": "input", "target": "SUBPIECE_00404652_265"}, {"source": "var_00404636", "type": "input", "target": "CBRANCH_00404670_29"}, {"source": "const_0", "type": "input", "target": "RETURN_00404687_60"}, {"source": "unique_18944", "type": "input", "target": "INT_XOR_00404665_170"}, {"sou... | 00404622 | .. | .. |
84_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | strsave | FUN_00404688 |
/* WARNING: Unknown calling convention */
char * strsave(char *str)
{
int iVar1;
int iVar2;
string *psVar3;
size_t sVar4;
char *pcVar5;
string *s;
int where;
iVar1 = hash(str,100);
for (psVar3 = str_tab[iVar1]; psVar3 != (string *)0x0; psVar3 = psVar3->next) {
if ((*str == *psVar3->strval) &... |
char * FUN_00404688(char *param_1)
{
int iVar1;
int iVar2;
long *plVar3;
size_t sVar4;
void *pvVar5;
char *pcVar6;
undefined8 *puVar7;
iVar1 = FUN_00404622(param_1,100);
for (puVar7 = *(undefined8 **)(&DAT_00407580 + (long)iVar1 * 8); puVar7 != (undefined8 *)0x0;
puVar7 = (undefined8 *)puVa... | PUSH RBP
MOV RBP,RSP
PUSH R12
PUSH RBX
SUB RSP,0x10
MOV qword ptr [RBP + -0x18],RDI
MOV ESI,0x64
MOV EAX,0x0
CALL 0x00404622
MOV R12D,EAX
MOVSXD RAX,R12D
MOV RBX,qword ptr [0x407580 + RAX*0x8]
JMP 0x004046df
MOV RDI,qword ptr [RBP + -0x18]
MOVZX EDX,byte ptr [RDI]
MOV RAX,qword ptr [RBX]
MOVZX EAX,byte ptr [RAX]
CMP DL... | {"edges": [{"source": "INT_SEXT_0040473e_110", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_00404760_147"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_0040471e_96"}, {"source": "PTRSUB_004046c7_527", "type": "def", "ta... | {"edges": [{"source": "INT_SEXT_0040473e_110", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_00404760_147"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_0040471e_96"}, {"source": "CAST_004046bd_519", "type": "def", "targ... | {"edges": [{"source": "00404688", "type": "control_flow", "target": "00404622"}, {"source": "00404688", "type": "control_flow", "target": "004046df"}, {"source": "004046b6", "type": "control_flow", "target": "004046db"}, {"source": "004046b6", "type": "control_flow", "target": "004046c7"}, {"source": "004046c7", "type"... | {"edges": [{"source": "00404688", "type": "control_flow", "target": "00404622"}, {"source": "00404688", "type": "control_flow", "target": "004046df"}, {"source": "004046b6", "type": "control_flow", "target": "004046db"}, {"source": "004046b6", "type": "control_flow", "target": "004046c7"}, {"source": "004046c7", "type"... | null | null | [["reg_register:00000018", "PTRSUB_004046db_529", "input"], ["const_100", "CALL_004046a1_26", "input"], ["const_8", "PTRSUB_0040473a_532", "input"], ["reg_register:00000000", "PTRSUB_00404749_533", "input"], ["reg_register:00000206", "CBRANCH_0040471e_96", "input"], ["unique_268435619", "PTRADD_004046ac_521", "input"],... | [["const_100", "CALL_004046a1_26", "input"], ["reg_register:00000206", "CBRANCH_0040471e_96", "input"], ["unique_57088", "MULTIEQUAL_004046df_304", "input"], ["LOAD_00404718_84", "unique_57088", "output"], ["const_8", "INT_MULT_004046ac_30", "input"], ["const_433", "LOAD_004046ac_32", "input"], ["LOAD_00404749_115", "u... | {"edges": [{"source": "reg_register:00000018", "type": "input", "target": "PTRSUB_004046db_529"}, {"source": "const_100", "type": "input", "target": "CALL_004046a1_26"}, {"source": "const_8", "type": "input", "target": "PTRSUB_0040473a_532"}, {"source": "reg_register:00000000", "type": "input", "target": "PTRSUB_004047... | {"edges": [{"source": "const_100", "type": "input", "target": "CALL_004046a1_26"}, {"source": "reg_register:00000206", "type": "input", "target": "CBRANCH_0040471e_96"}, {"source": "unique_57088", "type": "input", "target": "MULTIEQUAL_004046df_304"}, {"source": "LOAD_00404718_84", "type": "output", "target": "unique_5... | 00404688 | .. | .. |
85_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | __libc_csu_init | FUN_00404770 |
void __libc_csu_init(EVP_PKEY_CTX *param_1,undefined8 param_2,undefined8 param_3)
{
long lVar1;
_init(param_1);
lVar1 = 0;
do {
(*(code *)(&__frame_dummy_init_array_entry)[lVar1])((ulong)param_1 & 0xffffffff,param_2,param_3)
;
lVar1 = lVar1 + 1;
} while (lVar1 != 1);
return;
}
|
void FUN_00404770(undefined4 param_1,undefined8 param_2,undefined8 param_3)
{
long lVar1;
_DT_INIT();
lVar1 = 0;
do {
(*(code *)(&__DT_INIT_ARRAY)[lVar1])(param_1,param_2,param_3);
lVar1 = lVar1 + 1;
} while (lVar1 != 1);
return;
}
| PUSH R15
MOV R15,RDX
PUSH R14
MOV R14,RSI
PUSH R13
MOV R13D,EDI
PUSH R12
LEA R12,[0x406e00]
PUSH RBP
LEA RBP,[0x406e08]
PUSH RBX
SUB RBP,R12
SUB RSP,0x8
CALL 0x00401000
SAR RBP,0x3
JZ 0x004047be
XOR EBX,EBX
NOP dword ptr [RAX]
MOV RDX,R15
MOV RSI,R14
MOV EDI,R13D
CALL qword ptr [R12 + RBX*0x8]
ADD RBX,0x1
CMP RBP,RBX
J... | {"edges": [{"source": "reg_register:00000018", "type": "use", "target": "INT_ADD_004047b5_103"}, {"source": "unique_18944", "type": "use", "target": "LOAD_004047b1_96"}, {"source": "reg_register:00000018", "type": "use", "target": "PTRADD_004047b1_285"}, {"source": "CAST_0040477c_286", "type": "def", "target": "unique_... | {"edges": [{"source": "reg_register:00000018", "type": "use", "target": "INT_ADD_004047b5_103"}, {"source": "unique_18944", "type": "use", "target": "LOAD_004047b1_96"}, {"source": "reg_register:00000030", "type": "use", "target": "CALLIND_004047b1_100"}, {"source": "unique_268435578", "type": "use", "target": "PTRADD_... | {"edges": [{"source": "00404770", "type": "control_flow", "target": "00401000"}, {"source": "00404770", "type": "control_flow", "target": "004047be"}, {"source": "00404770", "type": "control_flow", "target": "004047a3"}, {"source": "004047a3", "type": "control_flow", "target": "004047a8"}, {"source": "004047a8", "type"... | {"edges": [{"source": "00404770", "type": "control_flow", "target": "00401000"}, {"source": "00404770", "type": "control_flow", "target": "004047be"}, {"source": "00404770", "type": "control_flow", "target": "004047a3"}, {"source": "004047a3", "type": "control_flow", "target": "004047a8"}, {"source": "004047a8", "type"... | null | null | [["reg_register:00000018", "MULTIEQUAL_004047a8_204", "input"], ["const_0", "PTRSUB_004047b1_284", "input"], ["unique_268435594", "CALLIND_004047b1_100", "input"], ["var_004047a8", "CBRANCH_004047bc_121", "input"], ["const_0", "RETURN_004047cc_157", "input"], ["reg_register:000000a8", "CALLIND_004047b1_100", "input"], ... | [["unique_268435594", "CALLIND_004047b1_100", "input"], ["CAST_004047b1_284", "unique_268435594", "output"], ["var_004047a8", "CBRANCH_004047bc_121", "input"], ["reg_register:00000018", "MULTIEQUAL_004047a8_201", "input"], ["const_0", "RETURN_004047cc_157", "input"], ["const_4222464", "PTRSUB_004047b1_282", "input"], [... | {"edges": [{"source": "reg_register:00000018", "type": "input", "target": "MULTIEQUAL_004047a8_204"}, {"source": "const_0", "type": "input", "target": "PTRSUB_004047b1_284"}, {"source": "unique_268435594", "type": "input", "target": "CALLIND_004047b1_100"}, {"source": "var_004047a8", "type": "input", "target": "CBRANCH... | {"edges": [{"source": "unique_268435594", "type": "input", "target": "CALLIND_004047b1_100"}, {"source": "CAST_004047b1_284", "type": "output", "target": "unique_268435594"}, {"source": "var_004047a8", "type": "input", "target": "CBRANCH_004047bc_121"}, {"source": "reg_register:00000018", "type": "input", "target": "MU... | 00404770 | .. | .. |
86_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | __libc_csu_fini | FUN_004047d0 |
void __libc_csu_fini(void)
{
return;
}
|
void FUN_004047d0(void)
{
return;
}
| RET | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_004047d0_2"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_004047d0_2"}]} | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_004047d0_2"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_004047d0_2"}]} | {"edges": [], "nodes": [{"label": "004047d0", "type": "basic_block", "id": "004047d0"}]} | {"edges": [], "nodes": [{"label": "004047d0", "type": "basic_block", "id": "004047d0"}]} | null | null | [["const_0", "RETURN_004047d0_2", "input"]] | [["const_0", "RETURN_004047d0_2", "input"]] | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_004047d0_2"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_004047d0_2"}, {"label": "input", "type": "var", "id": "const_0"}]} | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_004047d0_2"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_004047d0_2"}, {"label": "input", "type": "var", "id": "const_0"}]} | 004047d0 | .. | .. |
87_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | _fini | _DT_FINI |
void _fini(void)
{
return;
}
|
void _DT_FINI(void)
{
return;
}
| SUB RSP,0x8
ADD RSP,0x8
RET | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_004047dc_20"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_004047dc_20"}]} | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_004047dc_20"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_004047dc_20"}]} | {"edges": [], "nodes": [{"label": "004047d4", "type": "basic_block", "id": "004047d4"}]} | {"edges": [], "nodes": [{"label": "004047d4", "type": "basic_block", "id": "004047d4"}]} | null | null | [["const_0", "RETURN_004047dc_20", "input"]] | [["const_0", "RETURN_004047dc_20", "input"]] | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_004047dc_20"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_004047dc_20"}, {"label": "input", "type": "var", "id": "const_0"}]} | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_004047dc_20"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_004047dc_20"}, {"label": "input", "type": "var", "id": "const_0"}]} | 004047d4 | .. | .. |
88_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | putchar | putchar |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int putchar(int __c)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* putchar@@GLIBC_2.2.5 */
halt_baddata();
}
|
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int putchar(int __c)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408000_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408000_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408000_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408000_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408000_0", "input"]] | [["const_1", "RETURN_00408000_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408000_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408000_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408000_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408000_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408000 | .. | .. |
89_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | strcpy | strcpy |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
char * strcpy(char *__dest,char *__src)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* strcpy@@GLIBC_2.2.5 */
halt_ba... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
char * strcpy(char *__dest,char *__src)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408008_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408008_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408008_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408008_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408008_0", "input"]] | [["const_1", "RETURN_00408008_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408008_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408008_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408008_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408008_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408008 | .. | .. |
90_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | ctime | ctime |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
char * ctime(time_t *__timer)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* ctime@@GLIBC_2.2.5 */
halt_baddata();
}
... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
char * ctime(time_t *__timer)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408010_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408010_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408010_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408010_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408010_0", "input"]] | [["const_1", "RETURN_00408010_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408010_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408010_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408010_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408010_0"}]} | 00408010 | .. | .. |
91_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | strlen | strlen |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
size_t strlen(char *__s)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* strlen@@GLIBC_2.2.5 */
halt_baddata();
}
|
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
size_t strlen(char *__s)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408018_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408018_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408018_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408018_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408018_0", "input"]] | [["const_1", "RETURN_00408018_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408018_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408018_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408018_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408018_0"}]} | 00408018 | .. | .. |
92_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | strchr | strchr |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
char * strchr(char *__s,int __c)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* strchr@@GLIBC_2.2.5 */
halt_baddata()... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
char * strchr(char *__s,int __c)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408020_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408020_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408020_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408020_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408020_0", "input"]] | [["const_1", "RETURN_00408020_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408020_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408020_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408020_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408020_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408020 | .. | .. |
93_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | printf | printf |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int printf(char *__format,...)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* printf@@GLIBC_2.2.5 */
halt_baddata();
... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int printf(char *__format,...)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408028_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408028_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408028_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408028_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408028_0", "input"]] | [["const_1", "RETURN_00408028_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408028_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408028_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408028_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408028_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408028 | .. | .. |
94_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | fputs | fputs |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fputs(char *__s,FILE *__stream)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* fputs@@GLIBC_2.2.5 */
halt_baddata... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fputs(char *__s,FILE *__stream)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408030_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408030_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408030_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408030_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408030_0", "input"]] | [["const_1", "RETURN_00408030_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408030_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408030_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408030_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408030_0"}]} | 00408030 | .. | .. |
95_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | freopen | freopen |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
FILE * freopen(char *__filename,char *__modes,FILE *__stream)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* freopen@@G... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
FILE * freopen(char *__filename,char *__modes,FILE *__stream)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408038_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408038_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408038_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408038_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408038_0", "input"]] | [["const_1", "RETURN_00408038_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408038_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408038_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408038_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408038_0"}]} | 00408038 | .. | .. |
96_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | __libc_start_main | __libc_start_main |
/* WARNING: Control flow encountered bad instruction data */
void __libc_start_main(void)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* __libc_start_main@@GLIBC_2.2.5 */
halt_baddata();
}
|
/* WARNING: Control flow encountered bad instruction data */
void __libc_start_main(void)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408040_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408040_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408040_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408040_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408040_0", "input"]] | [["const_1", "RETURN_00408040_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408040_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408040_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408040_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408040_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408040 | .. | .. |
97_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | strcmp | strcmp |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int strcmp(char *__s1,char *__s2)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* strcmp@@GLIBC_2.2.5 */
halt_baddata(... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int strcmp(char *__s1,char *__s2)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408048_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408048_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408048_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408048_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408048_0", "input"]] | [["const_1", "RETURN_00408048_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408048_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408048_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408048_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408048_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408048 | .. | .. |
98_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | getchar | getchar |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int getchar(void)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* getchar@@GLIBC_2.2.5 */
halt_baddata();
}
|
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int getchar(void)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408050_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408050_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408050_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408050_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408050_0", "input"]] | [["const_1", "RETURN_00408050_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408050_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408050_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408050_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408050_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408050 | .. | .. |
99_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | fprintf | fprintf |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fprintf(FILE *__stream,char *__format,...)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* fprintf@@GLIBC_2.2.5 */
... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fprintf(FILE *__stream,char *__format,...)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408058_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408058_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408058_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408058_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408058_0", "input"]] | [["const_1", "RETURN_00408058_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408058_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408058_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408058_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408058_0"}]} | 00408058 | .. | .. |
100_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | __gmon_start__ | __gmon_start__ |
/* WARNING: Control flow encountered bad instruction data */
void __gmon_start__(void)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
|
/* WARNING: Control flow encountered bad instruction data */
void __gmon_start__(void)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408060_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408060_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408060_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408060_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408060_0", "input"]] | [["const_1", "RETURN_00408060_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408060_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408060_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408060_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408060_0"}]} | 00408060 | .. | .. |
101_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | time | time |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
time_t time(time_t *__timer)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* time@@GLIBC_2.2.5 */
halt_baddata();
}
|
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
time_t time(time_t *__timer)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408068_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408068_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408068_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408068_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408068_0", "input"]] | [["const_1", "RETURN_00408068_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408068_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408068_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408068_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408068_0"}]} | 00408068 | .. | .. |
102_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | malloc | malloc |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void * malloc(size_t __size)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* malloc@@GLIBC_2.2.5 */
halt_baddata();
}
... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void * malloc(size_t __size)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408070_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408070_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408070_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408070_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408070_0", "input"]] | [["const_1", "RETURN_00408070_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408070_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408070_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408070_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408070_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408070 | .. | .. |
103_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | __isoc99_sscanf | __isoc99_sscanf |
/* WARNING: Control flow encountered bad instruction data */
void __isoc99_sscanf(void)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* __isoc99_sscanf@@GLIBC_2.7 */
halt_baddata();
}
|
/* WARNING: Control flow encountered bad instruction data */
void __isoc99_sscanf(void)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408078_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408078_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408078_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408078_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408078_0", "input"]] | [["const_1", "RETURN_00408078_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408078_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408078_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408078_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408078_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408078 | .. | .. |
104_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | ungetc | ungetc |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int ungetc(int __c,FILE *__stream)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* ungetc@@GLIBC_2.2.5 */
halt_baddata... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int ungetc(int __c,FILE *__stream)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408080_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408080_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408080_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408080_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408080_0", "input"]] | [["const_1", "RETURN_00408080_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408080_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408080_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408080_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408080_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408080 | .. | .. |
105_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | realloc | realloc |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void * realloc(void *__ptr,size_t __size)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* realloc@@GLIBC_2.2.5 */
halt... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void * realloc(void *__ptr,size_t __size)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408088_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408088_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408088_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408088_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408088_0", "input"]] | [["const_1", "RETURN_00408088_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408088_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408088_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408088_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_00408088_0"}]} | 00408088 | .. | .. |
106_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | atoi | atoi |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int atoi(char *__nptr)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* atoi@@GLIBC_2.2.5 */
halt_baddata();
}
|
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int atoi(char *__nptr)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408090_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408090_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408090_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408090_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408090_0", "input"]] | [["const_1", "RETURN_00408090_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408090_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408090_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408090_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408090_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408090 | .. | .. |
107_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | sprintf | sprintf |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int sprintf(char *__s,char *__format,...)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* sprintf@@GLIBC_2.2.5 */
halt... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int sprintf(char *__s,char *__format,...)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408098_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408098_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_00408098_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408098_0"}, {"label": "var", "type": "var", "id": "const_1"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_00408098_0", "input"]] | [["const_1", "RETURN_00408098_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408098_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408098_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00408098_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00408098_0"}, {"label": "input", "type": "var", "id": "const_1"}]} | 00408098 | .. | .. |
108_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | exit | exit |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void exit(int __status)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* exit@@GLIBC_2.2.5 */
halt_baddata();
}
|
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void exit(int __status)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_004080a0_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080a0_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_004080a0_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080a0_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_004080a0_0", "input"]] | [["const_1", "RETURN_004080a0_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_004080a0_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080a0_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_004080a0_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080a0_0"}]} | 004080a0 | .. | .. |
109_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | fwrite | fwrite |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
size_t fwrite(void *__ptr,size_t __size,size_t __n,FILE *__s)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* fwrite@@GL... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
size_t fwrite(void *__ptr,size_t __size,size_t __n,FILE *__s)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_004080a8_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080a8_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_004080a8_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080a8_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_004080a8_0", "input"]] | [["const_1", "RETURN_004080a8_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_004080a8_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080a8_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_004080a8_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080a8_0"}]} | 004080a8 | .. | .. |
110_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_and_002af2385624637768d23bb76663b8e9cc957dc94ce666fc8b4df11712d0cc7f_strip.c | __ctype_b_loc | __ctype_b_loc |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
ushort ** __ctype_b_loc(void)
{
/* WARNING: Bad instruction - Truncating control flow here */
/* __ctype_b_loc@@GLIBC_2.3 */
halt_baddata... |
/* WARNING: Control flow encountered bad instruction data */
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
ushort ** __ctype_b_loc(void)
{
/* WARNING: Bad instruction - Truncating control flow here */
halt_baddata();
}
| null | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_004080b0_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080b0_0"}]} | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_004080b0_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080b0_0"}]} | {"edges": [], "nodes": []} | {"edges": [], "nodes": []} | null | null | [["const_1", "RETURN_004080b0_0", "input"]] | [["const_1", "RETURN_004080b0_0", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_004080b0_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080b0_0"}]} | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_004080b0_0"}], "nodes": [{"label": "input", "type": "var", "id": "const_1"}, {"label": "RETURN", "type": "op", "id": "RETURN_004080b0_0"}]} | 004080b0 | .. | .. |
1_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | _init | _DT_INIT |
int _init(EVP_PKEY_CTX *ctx)
{
int iVar1;
iVar1 = __gmon_start__();
return iVar1;
}
|
void _DT_INIT(void)
{
__gmon_start__();
return;
}
| SUB RSP,0x8
MOV RAX,qword ptr [0x0040aff8]
TEST RAX,RAX
JZ 0x00401012
CALL RAX
ADD RSP,0x8
RET | {"edges": [{"source": "CALL_00401010_23", "type": "def", "target": "reg_register:00000000"}, {"source": "const_0", "type": "use", "target": "RETURN_00401016_35"}, {"source": "COPY_00401016_41", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010... | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401016_35"}, {"source": "var_0040d080", "type": "use", "target": "CALL_00401010_23"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_00401016_35"}, {"label": "var", "type": "var", "id": "var... | {"edges": [{"source": "00401000", "type": "control_flow", "target": "00401012"}, {"source": "00401000", "type": "control_flow", "target": "00401010"}, {"source": "00401010", "type": "control_flow", "target": "0040d080"}, {"source": "00401010", "type": "control_flow", "target": "00401012"}], "nodes": [{"label": "0040100... | {"edges": [{"source": "00401000", "type": "control_flow", "target": "00401012"}, {"source": "00401000", "type": "control_flow", "target": "00401010"}, {"source": "00401010", "type": "control_flow", "target": "0040d080"}, {"source": "00401010", "type": "control_flow", "target": "00401012"}], "nodes": [{"label": "0040100... | null | null | [["var_0040d080", "CALL_00401010_23", "input"], ["CALL_00401010_23", "reg_register:00000000", "output"], ["COPY_00401016_41", "reg_register:00000000", "output"], ["reg_register:00000000", "RETURN_00401016_35", "input"], ["const_0", "RETURN_00401016_35", "input"], ["reg_register:00000000", "COPY_00401016_41", "input"]] | [["var_0040d080", "CALL_00401010_23", "input"], ["const_0", "RETURN_00401016_35", "input"]] | {"edges": [{"source": "var_0040d080", "type": "input", "target": "CALL_00401010_23"}, {"source": "CALL_00401010_23", "type": "output", "target": "reg_register:00000000"}, {"source": "COPY_00401016_41", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "input", "target": "... | {"edges": [{"source": "var_0040d080", "type": "input", "target": "CALL_00401010_23"}, {"source": "const_0", "type": "input", "target": "RETURN_00401016_35"}], "nodes": [{"label": "input", "type": "var", "id": "var_0040d080"}, {"label": "RETURN", "type": "op", "id": "RETURN_00401016_35"}, {"label": "CALL", "type": "op",... | 00401000 | .. | .. |
2_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | FUN_00401020 | FUN_00401020 |
void FUN_00401020(void)
{
(*(code *)(undefined *)0x0)();
return;
}
|
void FUN_00401020(void)
{
(*(code *)(undefined *)0x0)();
return;
}
| PUSH qword ptr [0x0040b008]
JMP qword ptr [0x0040b010] | {"edges": [{"source": "const_0", "type": "use", "target": "CAST_00401026_12"}, {"source": "const_1", "type": "use", "target": "RETURN_00401026_4"}, {"source": "CAST_00401026_12", "type": "def", "target": "unique_268435473"}, {"source": "unique_268435473", "type": "use", "target": "CALLIND_00401026_3"}], "nodes": [{"lab... | {"edges": [{"source": "const_0", "type": "use", "target": "CAST_00401026_12"}, {"source": "const_1", "type": "use", "target": "RETURN_00401026_4"}, {"source": "CAST_00401026_12", "type": "def", "target": "unique_268435473"}, {"source": "unique_268435473", "type": "use", "target": "CALLIND_00401026_3"}], "nodes": [{"lab... | {"edges": [{"source": "00401020", "type": "control_flow", "target": "0040b010"}], "nodes": [{"label": "00401020", "type": "basic_block", "id": "00401020"}, {"label": "0040b010", "type": "basic_block", "id": "0040b010"}]} | {"edges": [{"source": "00401020", "type": "control_flow", "target": "0040b010"}], "nodes": [{"label": "00401020", "type": "basic_block", "id": "00401020"}, {"label": "0040b010", "type": "basic_block", "id": "0040b010"}]} | null | null | [["const_1", "RETURN_00401026_4", "input"], ["CAST_00401026_12", "unique_268435473", "output"], ["unique_268435473", "CALLIND_00401026_3", "input"], ["const_0", "CAST_00401026_12", "input"]] | [["const_1", "RETURN_00401026_4", "input"], ["CAST_00401026_12", "unique_268435473", "output"], ["unique_268435473", "CALLIND_00401026_3", "input"], ["const_0", "CAST_00401026_12", "input"]] | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00401026_4"}, {"source": "CAST_00401026_12", "type": "output", "target": "unique_268435473"}, {"source": "unique_268435473", "type": "input", "target": "CALLIND_00401026_3"}, {"source": "const_0", "type": "input", "target": "CAST_00401026_12"}], "nodes... | {"edges": [{"source": "const_1", "type": "input", "target": "RETURN_00401026_4"}, {"source": "CAST_00401026_12", "type": "output", "target": "unique_268435473"}, {"source": "unique_268435473", "type": "input", "target": "CALLIND_00401026_3"}, {"source": "const_0", "type": "input", "target": "CAST_00401026_12"}], "nodes... | 00401020 | .. | .. |
3_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | __errno_location | __errno_location |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int * __errno_location(void)
{
int *piVar1;
piVar1 = __errno_location();
return piVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int * __errno_location(void)
{
int *piVar1;
piVar1 = __errno_location();
return piVar1;
}
| JMP qword ptr [0x0040b018] | {"edges": [{"source": "CALL_00401030_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401030_1"}, {"source": "var_0040d000", "type": "use", "target": "CALL_00401030_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401030_1"}], "no... | {"edges": [{"source": "CALL_00401030_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401030_1"}, {"source": "var_0040d000", "type": "use", "target": "CALL_00401030_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401030_1"}], "no... | {"edges": [{"source": "00401030", "type": "control_flow", "target": "0040d000"}], "nodes": [{"label": "00401030", "type": "basic_block", "id": "00401030"}, {"label": "0040d000", "type": "basic_block", "id": "0040d000"}]} | {"edges": [{"source": "00401030", "type": "control_flow", "target": "0040d000"}], "nodes": [{"label": "00401030", "type": "basic_block", "id": "00401030"}, {"label": "0040d000", "type": "basic_block", "id": "0040d000"}]} | null | null | [["reg_register:00000000", "RETURN_00401030_1", "input"], ["var_0040d000", "CALL_00401030_0", "input"], ["CALL_00401030_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401030_1", "input"]] | [["reg_register:00000000", "RETURN_00401030_1", "input"], ["var_0040d000", "CALL_00401030_0", "input"], ["CALL_00401030_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401030_1", "input"]] | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401030_1"}, {"source": "var_0040d000", "type": "input", "target": "CALL_00401030_0"}, {"source": "CALL_00401030_0", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "RETURN_00401030_... | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401030_1"}, {"source": "var_0040d000", "type": "input", "target": "CALL_00401030_0"}, {"source": "CALL_00401030_0", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "RETURN_00401030_... | 00401030 | .. | .. |
4_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | strncpy | strncpy |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
char * strncpy(char *__dest,char *__src,size_t __n)
{
char *pcVar1;
pcVar1 = strncpy(__dest,__src,__n);
return pcVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
char * strncpy(char *__dest,char *__src,size_t __n)
{
char *pcVar1;
pcVar1 = strncpy(__dest,__src,__n);
return pcVar1;
}
| JMP qword ptr [0x0040b020] | {"edges": [{"source": "CALL_00401040_0", "type": "def", "target": "reg_register:00000000"}, {"source": "var_0040d008", "type": "use", "target": "CALL_00401040_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401040_1"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00401040_0"}, {"sour... | {"edges": [{"source": "CALL_00401040_0", "type": "def", "target": "reg_register:00000000"}, {"source": "var_0040d008", "type": "use", "target": "CALL_00401040_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401040_1"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00401040_0"}, {"sour... | {"edges": [{"source": "00401040", "type": "control_flow", "target": "0040d008"}], "nodes": [{"label": "00401040", "type": "basic_block", "id": "00401040"}, {"label": "0040d008", "type": "basic_block", "id": "0040d008"}]} | {"edges": [{"source": "00401040", "type": "control_flow", "target": "0040d008"}], "nodes": [{"label": "00401040", "type": "basic_block", "id": "00401040"}, {"label": "0040d008", "type": "basic_block", "id": "0040d008"}]} | null | null | [["reg_register:00000030", "CALL_00401040_0", "input"], ["reg_register:00000010", "CALL_00401040_0", "input"], ["var_0040d008", "CALL_00401040_0", "input"], ["reg_register:00000000", "RETURN_00401040_1", "input"], ["CALL_00401040_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401040_1", "input"], ["reg_r... | [["reg_register:00000030", "CALL_00401040_0", "input"], ["reg_register:00000010", "CALL_00401040_0", "input"], ["var_0040d008", "CALL_00401040_0", "input"], ["reg_register:00000000", "RETURN_00401040_1", "input"], ["CALL_00401040_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401040_1", "input"], ["reg_r... | {"edges": [{"source": "reg_register:00000030", "type": "input", "target": "CALL_00401040_0"}, {"source": "reg_register:00000010", "type": "input", "target": "CALL_00401040_0"}, {"source": "var_0040d008", "type": "input", "target": "CALL_00401040_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETUR... | {"edges": [{"source": "reg_register:00000030", "type": "input", "target": "CALL_00401040_0"}, {"source": "reg_register:00000010", "type": "input", "target": "CALL_00401040_0"}, {"source": "var_0040d008", "type": "input", "target": "CALL_00401040_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETUR... | 00401040 | .. | .. |
5_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | puts | puts |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int puts(char *__s)
{
int iVar1;
iVar1 = puts(__s);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int puts(char *__s)
{
int iVar1;
iVar1 = puts(__s);
return iVar1;
}
| JMP qword ptr [0x0040b028] | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401050_1"}, {"source": "const_0", "type": "use", "target": "RETURN_00401050_1"}, {"source": "var_0040d010", "type": "use", "target": "CALL_00401050_0"}, {"source": "CALL_00401050_0", "type": "def", "target": "reg_register:00000000"}, {"so... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401050_1"}, {"source": "const_0", "type": "use", "target": "RETURN_00401050_1"}, {"source": "var_0040d010", "type": "use", "target": "CALL_00401050_0"}, {"source": "CALL_00401050_0", "type": "def", "target": "reg_register:00000000"}, {"so... | {"edges": [{"source": "00401050", "type": "control_flow", "target": "0040d010"}], "nodes": [{"label": "00401050", "type": "basic_block", "id": "00401050"}, {"label": "0040d010", "type": "basic_block", "id": "0040d010"}]} | {"edges": [{"source": "00401050", "type": "control_flow", "target": "0040d010"}], "nodes": [{"label": "00401050", "type": "basic_block", "id": "00401050"}, {"label": "0040d010", "type": "basic_block", "id": "0040d010"}]} | null | null | [["const_0", "RETURN_00401050_1", "input"], ["reg_register:00000038", "CALL_00401050_0", "input"], ["CALL_00401050_0", "reg_register:00000000", "output"], ["var_0040d010", "CALL_00401050_0", "input"], ["reg_register:00000000", "RETURN_00401050_1", "input"]] | [["const_0", "RETURN_00401050_1", "input"], ["reg_register:00000038", "CALL_00401050_0", "input"], ["CALL_00401050_0", "reg_register:00000000", "output"], ["var_0040d010", "CALL_00401050_0", "input"], ["reg_register:00000000", "RETURN_00401050_1", "input"]] | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401050_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401050_0"}, {"source": "CALL_00401050_0", "type": "output", "target": "reg_register:00000000"}, {"source": "var_0040d010", "type": "input", "target": "CALL_00401050_0"... | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401050_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401050_0"}, {"source": "CALL_00401050_0", "type": "output", "target": "reg_register:00000000"}, {"source": "var_0040d010", "type": "input", "target": "CALL_00401050_0"... | 00401050 | .. | .. |
6_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | fcntl | fcntl |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fcntl(int __fd,int __cmd,...)
{
int iVar1;
iVar1 = fcntl(__fd,__cmd);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fcntl(int __fd,int __cmd,...)
{
int iVar1;
iVar1 = fcntl(__fd,__cmd);
return iVar1;
}
| JMP qword ptr [0x0040b030] | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401060_1"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00401060_0"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401060_0"}, {"source": "var_0040d018", "type": "use", "target": "CALL_004010... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401060_1"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00401060_0"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401060_0"}, {"source": "var_0040d018", "type": "use", "target": "CALL_004010... | {"edges": [{"source": "00401060", "type": "control_flow", "target": "0040d018"}], "nodes": [{"label": "00401060", "type": "basic_block", "id": "00401060"}, {"label": "0040d018", "type": "basic_block", "id": "0040d018"}]} | {"edges": [{"source": "00401060", "type": "control_flow", "target": "0040d018"}], "nodes": [{"label": "00401060", "type": "basic_block", "id": "00401060"}, {"label": "0040d018", "type": "basic_block", "id": "0040d018"}]} | null | null | [["var_0040d018", "CALL_00401060_0", "input"], ["reg_register:00000030", "CALL_00401060_0", "input"], ["reg_register:00000038", "CALL_00401060_0", "input"], ["reg_register:00000000", "RETURN_00401060_1", "input"], ["CALL_00401060_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401060_1", "input"]] | [["var_0040d018", "CALL_00401060_0", "input"], ["reg_register:00000030", "CALL_00401060_0", "input"], ["reg_register:00000038", "CALL_00401060_0", "input"], ["reg_register:00000000", "RETURN_00401060_1", "input"], ["CALL_00401060_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401060_1", "input"]] | {"edges": [{"source": "var_0040d018", "type": "input", "target": "CALL_00401060_0"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_00401060_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401060_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETUR... | {"edges": [{"source": "var_0040d018", "type": "input", "target": "CALL_00401060_0"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_00401060_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401060_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETUR... | 00401060 | .. | .. |
7_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | write | write |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
ssize_t write(int __fd,void *__buf,size_t __n)
{
ssize_t sVar1;
sVar1 = write(__fd,__buf,__n);
return sVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
ssize_t write(int __fd,void *__buf,size_t __n)
{
ssize_t sVar1;
sVar1 = write(__fd,__buf,__n);
return sVar1;
}
| JMP qword ptr [0x0040b038] | {"edges": [{"source": "var_0040d020", "type": "use", "target": "CALL_00401070_0"}, {"source": "CALL_00401070_0", "type": "def", "target": "reg_register:00000000"}, {"source": "const_0", "type": "use", "target": "RETURN_00401070_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401070_0"}, {"sour... | {"edges": [{"source": "var_0040d020", "type": "use", "target": "CALL_00401070_0"}, {"source": "CALL_00401070_0", "type": "def", "target": "reg_register:00000000"}, {"source": "const_0", "type": "use", "target": "RETURN_00401070_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401070_0"}, {"sour... | {"edges": [{"source": "00401070", "type": "control_flow", "target": "0040d020"}], "nodes": [{"label": "00401070", "type": "basic_block", "id": "00401070"}, {"label": "0040d020", "type": "basic_block", "id": "0040d020"}]} | {"edges": [{"source": "00401070", "type": "control_flow", "target": "0040d020"}], "nodes": [{"label": "00401070", "type": "basic_block", "id": "00401070"}, {"label": "0040d020", "type": "basic_block", "id": "0040d020"}]} | null | null | [["reg_register:00000010", "CALL_00401070_0", "input"], ["var_0040d020", "CALL_00401070_0", "input"], ["reg_register:00000030", "CALL_00401070_0", "input"], ["const_0", "RETURN_00401070_1", "input"], ["reg_register:00000000", "RETURN_00401070_1", "input"], ["reg_register:00000038", "CALL_00401070_0", "input"], ["CALL_0... | [["reg_register:00000010", "CALL_00401070_0", "input"], ["var_0040d020", "CALL_00401070_0", "input"], ["reg_register:00000030", "CALL_00401070_0", "input"], ["const_0", "RETURN_00401070_1", "input"], ["reg_register:00000000", "RETURN_00401070_1", "input"], ["reg_register:00000038", "CALL_00401070_0", "input"], ["CALL_0... | {"edges": [{"source": "reg_register:00000010", "type": "input", "target": "CALL_00401070_0"}, {"source": "var_0040d020", "type": "input", "target": "CALL_00401070_0"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_00401070_0"}, {"source": "const_0", "type": "input", "target": "RETURN_00401070_1"}... | {"edges": [{"source": "reg_register:00000010", "type": "input", "target": "CALL_00401070_0"}, {"source": "var_0040d020", "type": "input", "target": "CALL_00401070_0"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_00401070_0"}, {"source": "const_0", "type": "input", "target": "RETURN_00401070_1"}... | 00401070 | .. | .. |
8_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | fclose | fclose |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fclose(FILE *__stream)
{
int iVar1;
iVar1 = fclose(__stream);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fclose(FILE *__stream)
{
int iVar1;
iVar1 = fclose(__stream);
return iVar1;
}
| JMP qword ptr [0x0040b040] | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_00401080_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401080_1"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401080_1"}, {"source": "CALL_00401080_0", "type": "def", "target": "reg_register:0000000... | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_00401080_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401080_1"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401080_1"}, {"source": "CALL_00401080_0", "type": "def", "target": "reg_register:0000000... | {"edges": [{"source": "00401080", "type": "control_flow", "target": "0040d028"}], "nodes": [{"label": "00401080", "type": "basic_block", "id": "00401080"}, {"label": "0040d028", "type": "basic_block", "id": "0040d028"}]} | {"edges": [{"source": "00401080", "type": "control_flow", "target": "0040d028"}], "nodes": [{"label": "00401080", "type": "basic_block", "id": "00401080"}, {"label": "0040d028", "type": "basic_block", "id": "0040d028"}]} | null | null | [["var_0040d028", "CALL_00401080_0", "input"], ["reg_register:00000038", "CALL_00401080_0", "input"], ["CALL_00401080_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401080_1", "input"], ["reg_register:00000000", "RETURN_00401080_1", "input"]] | [["var_0040d028", "CALL_00401080_0", "input"], ["reg_register:00000038", "CALL_00401080_0", "input"], ["CALL_00401080_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401080_1", "input"], ["reg_register:00000000", "RETURN_00401080_1", "input"]] | {"edges": [{"source": "var_0040d028", "type": "input", "target": "CALL_00401080_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401080_0"}, {"source": "CALL_00401080_0", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "RETURN_00401080_1"... | {"edges": [{"source": "var_0040d028", "type": "input", "target": "CALL_00401080_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401080_0"}, {"source": "CALL_00401080_0", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "RETURN_00401080_1"... | 00401080 | .. | .. |
9_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | cfsetospeed | cfsetospeed |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int cfsetospeed(termios *__termios_p,speed_t __speed)
{
int iVar1;
iVar1 = cfsetospeed(__termios_p,__speed);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int cfsetospeed(termios *__termios_p,speed_t __speed)
{
int iVar1;
iVar1 = cfsetospeed(__termios_p,__speed);
return iVar1;
}
| JMP qword ptr [0x0040b048] | {"edges": [{"source": "reg_register:00000030", "type": "use", "target": "CALL_00401090_0"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401090_0"}, {"source": "CALL_00401090_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETU... | {"edges": [{"source": "reg_register:00000030", "type": "use", "target": "CALL_00401090_0"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401090_0"}, {"source": "CALL_00401090_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETU... | {"edges": [{"source": "00401090", "type": "control_flow", "target": "0040d030"}], "nodes": [{"label": "00401090", "type": "basic_block", "id": "00401090"}, {"label": "0040d030", "type": "basic_block", "id": "0040d030"}]} | {"edges": [{"source": "00401090", "type": "control_flow", "target": "0040d030"}], "nodes": [{"label": "00401090", "type": "basic_block", "id": "00401090"}, {"label": "0040d030", "type": "basic_block", "id": "0040d030"}]} | null | null | [["reg_register:00000030", "CALL_00401090_0", "input"], ["CALL_00401090_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401090_1", "input"], ["reg_register:00000038", "CALL_00401090_0", "input"], ["var_0040d030", "CALL_00401090_0", "input"], ["reg_register:00000000", "RETURN_00401090_1", "input"]] | [["reg_register:00000030", "CALL_00401090_0", "input"], ["CALL_00401090_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401090_1", "input"], ["reg_register:00000038", "CALL_00401090_0", "input"], ["var_0040d030", "CALL_00401090_0", "input"], ["reg_register:00000000", "RETURN_00401090_1", "input"]] | {"edges": [{"source": "reg_register:00000030", "type": "input", "target": "CALL_00401090_0"}, {"source": "CALL_00401090_0", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "RETURN_00401090_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00... | {"edges": [{"source": "reg_register:00000030", "type": "input", "target": "CALL_00401090_0"}, {"source": "CALL_00401090_0", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "RETURN_00401090_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00... | 00401090 | .. | .. |
10_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | tcflush | tcflush |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int tcflush(int __fd,int __queue_selector)
{
int iVar1;
iVar1 = tcflush(__fd,__queue_selector);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int tcflush(int __fd,int __queue_selector)
{
int iVar1;
iVar1 = tcflush(__fd,__queue_selector);
return iVar1;
}
| JMP qword ptr [0x0040b050] | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_004010a0_1"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010a0_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004010a0_0"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_004010a0_... | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_004010a0_1"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010a0_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004010a0_0"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_004010a0_... | {"edges": [{"source": "004010a0", "type": "control_flow", "target": "0040d038"}], "nodes": [{"label": "004010a0", "type": "basic_block", "id": "004010a0"}, {"label": "0040d038", "type": "basic_block", "id": "0040d038"}]} | {"edges": [{"source": "004010a0", "type": "control_flow", "target": "0040d038"}], "nodes": [{"label": "004010a0", "type": "basic_block", "id": "004010a0"}, {"label": "0040d038", "type": "basic_block", "id": "0040d038"}]} | null | null | [["CALL_004010a0_0", "reg_register:00000000", "output"], ["reg_register:00000000", "RETURN_004010a0_1", "input"], ["const_0", "RETURN_004010a0_1", "input"], ["reg_register:00000038", "CALL_004010a0_0", "input"], ["var_0040d038", "CALL_004010a0_0", "input"], ["reg_register:00000030", "CALL_004010a0_0", "input"]] | [["CALL_004010a0_0", "reg_register:00000000", "output"], ["reg_register:00000000", "RETURN_004010a0_1", "input"], ["const_0", "RETURN_004010a0_1", "input"], ["reg_register:00000038", "CALL_004010a0_0", "input"], ["var_0040d038", "CALL_004010a0_0", "input"], ["reg_register:00000030", "CALL_004010a0_0", "input"]] | {"edges": [{"source": "CALL_004010a0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_004010a0_1"}, {"source": "const_0", "type": "input", "target": "RETURN_004010a0_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_... | {"edges": [{"source": "CALL_004010a0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_004010a0_1"}, {"source": "const_0", "type": "input", "target": "RETURN_004010a0_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_... | 004010a0 | .. | .. |
11_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | printf | printf |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int printf(char *__format,...)
{
int iVar1;
iVar1 = printf(__format);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int printf(char *__format,...)
{
int iVar1;
iVar1 = printf(__format);
return iVar1;
}
| JMP qword ptr [0x0040b058] | {"edges": [{"source": "var_0040d040", "type": "use", "target": "CALL_004010b0_0"}, {"source": "CALL_004010b0_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004010b0_0"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010... | {"edges": [{"source": "var_0040d040", "type": "use", "target": "CALL_004010b0_0"}, {"source": "CALL_004010b0_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004010b0_0"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010... | {"edges": [{"source": "004010b0", "type": "control_flow", "target": "0040d040"}], "nodes": [{"label": "004010b0", "type": "basic_block", "id": "004010b0"}, {"label": "0040d040", "type": "basic_block", "id": "0040d040"}]} | {"edges": [{"source": "004010b0", "type": "control_flow", "target": "0040d040"}], "nodes": [{"label": "004010b0", "type": "basic_block", "id": "004010b0"}, {"label": "0040d040", "type": "basic_block", "id": "0040d040"}]} | null | null | [["CALL_004010b0_0", "reg_register:00000000", "output"], ["var_0040d040", "CALL_004010b0_0", "input"], ["const_0", "RETURN_004010b0_1", "input"], ["reg_register:00000000", "RETURN_004010b0_1", "input"], ["reg_register:00000038", "CALL_004010b0_0", "input"]] | [["CALL_004010b0_0", "reg_register:00000000", "output"], ["var_0040d040", "CALL_004010b0_0", "input"], ["const_0", "RETURN_004010b0_1", "input"], ["reg_register:00000000", "RETURN_004010b0_1", "input"], ["reg_register:00000038", "CALL_004010b0_0", "input"]] | {"edges": [{"source": "CALL_004010b0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "var_0040d040", "type": "input", "target": "CALL_004010b0_0"}, {"source": "const_0", "type": "input", "target": "RETURN_004010b0_1"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_004010b0_... | {"edges": [{"source": "CALL_004010b0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "var_0040d040", "type": "input", "target": "CALL_004010b0_0"}, {"source": "const_0", "type": "input", "target": "RETURN_004010b0_1"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_004010b0_... | 004010b0 | .. | .. |
12_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | fgetc | fgetc |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fgetc(FILE *__stream)
{
int iVar1;
iVar1 = fgetc(__stream);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fgetc(FILE *__stream)
{
int iVar1;
iVar1 = fgetc(__stream);
return iVar1;
}
| JMP qword ptr [0x0040b060] | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_004010c0_0"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010c0_1"}, {"source": "CALL_004010c0_0", "type": "def", "target": "reg_register:00000000"}, {"source": "var_0040d048", "type": "use", "target": "CALL_004010... | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_004010c0_0"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010c0_1"}, {"source": "CALL_004010c0_0", "type": "def", "target": "reg_register:00000000"}, {"source": "var_0040d048", "type": "use", "target": "CALL_004010... | {"edges": [{"source": "004010c0", "type": "control_flow", "target": "0040d048"}], "nodes": [{"label": "004010c0", "type": "basic_block", "id": "004010c0"}, {"label": "0040d048", "type": "basic_block", "id": "0040d048"}]} | {"edges": [{"source": "004010c0", "type": "control_flow", "target": "0040d048"}], "nodes": [{"label": "004010c0", "type": "basic_block", "id": "004010c0"}, {"label": "0040d048", "type": "basic_block", "id": "0040d048"}]} | null | null | [["CALL_004010c0_0", "reg_register:00000000", "output"], ["reg_register:00000038", "CALL_004010c0_0", "input"], ["var_0040d048", "CALL_004010c0_0", "input"], ["reg_register:00000000", "RETURN_004010c0_1", "input"], ["const_0", "RETURN_004010c0_1", "input"]] | [["CALL_004010c0_0", "reg_register:00000000", "output"], ["reg_register:00000038", "CALL_004010c0_0", "input"], ["var_0040d048", "CALL_004010c0_0", "input"], ["reg_register:00000000", "RETURN_004010c0_1", "input"], ["const_0", "RETURN_004010c0_1", "input"]] | {"edges": [{"source": "CALL_004010c0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004010c0_0"}, {"source": "var_0040d048", "type": "input", "target": "CALL_004010c0_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETU... | {"edges": [{"source": "CALL_004010c0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004010c0_0"}, {"source": "var_0040d048", "type": "input", "target": "CALL_004010c0_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETU... | 004010c0 | .. | .. |
13_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | close | close |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int close(int __fd)
{
int iVar1;
iVar1 = close(__fd);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int close(int __fd)
{
int iVar1;
iVar1 = close(__fd);
return iVar1;
}
| JMP qword ptr [0x0040b068] | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010d0_1"}, {"source": "const_0", "type": "use", "target": "RETURN_004010d0_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004010d0_0"}, {"source": "CALL_004010d0_0", "type": "def", "target": "reg_register:0000000... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010d0_1"}, {"source": "const_0", "type": "use", "target": "RETURN_004010d0_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004010d0_0"}, {"source": "CALL_004010d0_0", "type": "def", "target": "reg_register:0000000... | {"edges": [{"source": "004010d0", "type": "control_flow", "target": "0040d050"}], "nodes": [{"label": "004010d0", "type": "basic_block", "id": "004010d0"}, {"label": "0040d050", "type": "basic_block", "id": "0040d050"}]} | {"edges": [{"source": "004010d0", "type": "control_flow", "target": "0040d050"}], "nodes": [{"label": "004010d0", "type": "basic_block", "id": "004010d0"}, {"label": "0040d050", "type": "basic_block", "id": "0040d050"}]} | null | null | [["reg_register:00000000", "RETURN_004010d0_1", "input"], ["var_0040d050", "CALL_004010d0_0", "input"], ["CALL_004010d0_0", "reg_register:00000000", "output"], ["reg_register:00000038", "CALL_004010d0_0", "input"], ["const_0", "RETURN_004010d0_1", "input"]] | [["reg_register:00000000", "RETURN_004010d0_1", "input"], ["var_0040d050", "CALL_004010d0_0", "input"], ["CALL_004010d0_0", "reg_register:00000000", "output"], ["reg_register:00000038", "CALL_004010d0_0", "input"], ["const_0", "RETURN_004010d0_1", "input"]] | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_004010d0_1"}, {"source": "var_0040d050", "type": "input", "target": "CALL_004010d0_0"}, {"source": "CALL_004010d0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "input", "target": "CA... | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_004010d0_1"}, {"source": "var_0040d050", "type": "input", "target": "CALL_004010d0_0"}, {"source": "CALL_004010d0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "input", "target": "CA... | 004010d0 | .. | .. |
14_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | fputc | fputc |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fputc(int __c,FILE *__stream)
{
int iVar1;
iVar1 = fputc(__c,__stream);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fputc(int __c,FILE *__stream)
{
int iVar1;
iVar1 = fputc(__c,__stream);
return iVar1;
}
| JMP qword ptr [0x0040b070] | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_004010e0_1"}, {"source": "CALL_004010e0_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010e0_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004010e0_... | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_004010e0_1"}, {"source": "CALL_004010e0_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010e0_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004010e0_... | {"edges": [{"source": "004010e0", "type": "control_flow", "target": "0040d058"}], "nodes": [{"label": "004010e0", "type": "basic_block", "id": "004010e0"}, {"label": "0040d058", "type": "basic_block", "id": "0040d058"}]} | {"edges": [{"source": "004010e0", "type": "control_flow", "target": "0040d058"}], "nodes": [{"label": "004010e0", "type": "basic_block", "id": "004010e0"}, {"label": "0040d058", "type": "basic_block", "id": "0040d058"}]} | null | null | [["reg_register:00000038", "CALL_004010e0_0", "input"], ["reg_register:00000000", "RETURN_004010e0_1", "input"], ["const_0", "RETURN_004010e0_1", "input"], ["reg_register:00000030", "CALL_004010e0_0", "input"], ["CALL_004010e0_0", "reg_register:00000000", "output"], ["var_0040d058", "CALL_004010e0_0", "input"]] | [["reg_register:00000038", "CALL_004010e0_0", "input"], ["reg_register:00000000", "RETURN_004010e0_1", "input"], ["const_0", "RETURN_004010e0_1", "input"], ["reg_register:00000030", "CALL_004010e0_0", "input"], ["CALL_004010e0_0", "reg_register:00000000", "output"], ["var_0040d058", "CALL_004010e0_0", "input"]] | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_004010e0_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_004010e0_1"}, {"source": "const_0", "type": "input", "target": "RETURN_004010e0_1"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_0... | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_004010e0_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_004010e0_1"}, {"source": "const_0", "type": "input", "target": "RETURN_004010e0_1"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_0... | 004010e0 | .. | .. |
15_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | read | read |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
ssize_t read(int __fd,void *__buf,size_t __nbytes)
{
ssize_t sVar1;
sVar1 = read(__fd,__buf,__nbytes);
return sVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
ssize_t read(int __fd,void *__buf,size_t __nbytes)
{
ssize_t sVar1;
sVar1 = read(__fd,__buf,__nbytes);
return sVar1;
}
| JMP qword ptr [0x0040b078] | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_004010f0_0"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010f0_1"}, {"source": "reg_register:00000010", "type": "use", "target": "CALL_004010f0_0"}, {"source": "const_0", "type": "use", "target": "RETURN_004010f0_... | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_004010f0_0"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004010f0_1"}, {"source": "reg_register:00000010", "type": "use", "target": "CALL_004010f0_0"}, {"source": "const_0", "type": "use", "target": "RETURN_004010f0_... | {"edges": [{"source": "004010f0", "type": "control_flow", "target": "0040d060"}], "nodes": [{"label": "004010f0", "type": "basic_block", "id": "004010f0"}, {"label": "0040d060", "type": "basic_block", "id": "0040d060"}]} | {"edges": [{"source": "004010f0", "type": "control_flow", "target": "0040d060"}], "nodes": [{"label": "004010f0", "type": "basic_block", "id": "004010f0"}, {"label": "0040d060", "type": "basic_block", "id": "0040d060"}]} | null | null | [["reg_register:00000030", "CALL_004010f0_0", "input"], ["reg_register:00000038", "CALL_004010f0_0", "input"], ["CALL_004010f0_0", "reg_register:00000000", "output"], ["const_0", "RETURN_004010f0_1", "input"], ["var_0040d060", "CALL_004010f0_0", "input"], ["reg_register:00000000", "RETURN_004010f0_1", "input"], ["reg_r... | [["reg_register:00000030", "CALL_004010f0_0", "input"], ["reg_register:00000038", "CALL_004010f0_0", "input"], ["CALL_004010f0_0", "reg_register:00000000", "output"], ["const_0", "RETURN_004010f0_1", "input"], ["var_0040d060", "CALL_004010f0_0", "input"], ["reg_register:00000000", "RETURN_004010f0_1", "input"], ["reg_r... | {"edges": [{"source": "reg_register:00000030", "type": "input", "target": "CALL_004010f0_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004010f0_0"}, {"source": "CALL_004010f0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "RETURN_00... | {"edges": [{"source": "reg_register:00000030", "type": "input", "target": "CALL_004010f0_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004010f0_0"}, {"source": "CALL_004010f0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "RETURN_00... | 004010f0 | .. | .. |
16_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | strcmp | strcmp |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int strcmp(char *__s1,char *__s2)
{
int iVar1;
iVar1 = strcmp(__s1,__s2);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int strcmp(char *__s1,char *__s2)
{
int iVar1;
iVar1 = strcmp(__s1,__s2);
return iVar1;
}
| JMP qword ptr [0x0040b080] | {"edges": [{"source": "var_0040d070", "type": "use", "target": "CALL_00401100_0"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401100_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401100_1"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00401100_0"}, {"sour... | {"edges": [{"source": "var_0040d070", "type": "use", "target": "CALL_00401100_0"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401100_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401100_1"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00401100_0"}, {"sour... | {"edges": [{"source": "00401100", "type": "control_flow", "target": "0040d070"}], "nodes": [{"label": "00401100", "type": "basic_block", "id": "00401100"}, {"label": "0040d070", "type": "basic_block", "id": "0040d070"}]} | {"edges": [{"source": "00401100", "type": "control_flow", "target": "0040d070"}], "nodes": [{"label": "00401100", "type": "basic_block", "id": "00401100"}, {"label": "0040d070", "type": "basic_block", "id": "0040d070"}]} | null | null | [["reg_register:00000038", "CALL_00401100_0", "input"], ["CALL_00401100_0", "reg_register:00000000", "output"], ["reg_register:00000030", "CALL_00401100_0", "input"], ["var_0040d070", "CALL_00401100_0", "input"], ["reg_register:00000000", "RETURN_00401100_1", "input"], ["const_0", "RETURN_00401100_1", "input"]] | [["reg_register:00000038", "CALL_00401100_0", "input"], ["CALL_00401100_0", "reg_register:00000000", "output"], ["reg_register:00000030", "CALL_00401100_0", "input"], ["var_0040d070", "CALL_00401100_0", "input"], ["reg_register:00000000", "RETURN_00401100_1", "input"], ["const_0", "RETURN_00401100_1", "input"]] | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_00401100_0"}, {"source": "CALL_00401100_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_00401100_0"}, {"source": "var_0040d070", "type": "input", "target": "CALL... | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_00401100_0"}, {"source": "CALL_00401100_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_00401100_0"}, {"source": "var_0040d070", "type": "input", "target": "CALL... | 00401100 | .. | .. |
17_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | fprintf | fprintf |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fprintf(FILE *__stream,char *__format,...)
{
int iVar1;
iVar1 = fprintf(__stream,__format);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fprintf(FILE *__stream,char *__format,...)
{
int iVar1;
iVar1 = fprintf(__stream,__format);
return iVar1;
}
| JMP qword ptr [0x0040b088] | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401110_1"}, {"source": "CALL_00401110_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401110_0"}, {"source": "reg_register:00000030", "type": "use", "target": "CA... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401110_1"}, {"source": "CALL_00401110_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401110_0"}, {"source": "reg_register:00000030", "type": "use", "target": "CA... | {"edges": [{"source": "00401110", "type": "control_flow", "target": "0040d078"}], "nodes": [{"label": "00401110", "type": "basic_block", "id": "00401110"}, {"label": "0040d078", "type": "basic_block", "id": "0040d078"}]} | {"edges": [{"source": "00401110", "type": "control_flow", "target": "0040d078"}], "nodes": [{"label": "00401110", "type": "basic_block", "id": "00401110"}, {"label": "0040d078", "type": "basic_block", "id": "0040d078"}]} | null | null | [["reg_register:00000000", "RETURN_00401110_1", "input"], ["var_0040d078", "CALL_00401110_0", "input"], ["reg_register:00000038", "CALL_00401110_0", "input"], ["reg_register:00000030", "CALL_00401110_0", "input"], ["CALL_00401110_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401110_1", "input"]] | [["reg_register:00000000", "RETURN_00401110_1", "input"], ["var_0040d078", "CALL_00401110_0", "input"], ["reg_register:00000038", "CALL_00401110_0", "input"], ["reg_register:00000030", "CALL_00401110_0", "input"], ["CALL_00401110_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401110_1", "input"]] | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401110_1"}, {"source": "var_0040d078", "type": "input", "target": "CALL_00401110_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401110_0"}, {"source": "reg_register:00000030", "type": "input", "target": "CAL... | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401110_1"}, {"source": "var_0040d078", "type": "input", "target": "CALL_00401110_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401110_0"}, {"source": "reg_register:00000030", "type": "input", "target": "CAL... | 00401110 | .. | .. |
18_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | fflush | fflush |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fflush(FILE *__stream)
{
int iVar1;
iVar1 = fflush(__stream);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int fflush(FILE *__stream)
{
int iVar1;
iVar1 = fflush(__stream);
return iVar1;
}
| JMP qword ptr [0x0040b090] | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401120_1"}, {"source": "CALL_00401120_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401120_0"}, {"source": "var_0040d088", "type": "use", "target": "CALL_00401120_0"}, {"sour... | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401120_1"}, {"source": "CALL_00401120_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401120_0"}, {"source": "var_0040d088", "type": "use", "target": "CALL_00401120_0"}, {"sour... | {"edges": [{"source": "00401120", "type": "control_flow", "target": "0040d088"}], "nodes": [{"label": "00401120", "type": "basic_block", "id": "00401120"}, {"label": "0040d088", "type": "basic_block", "id": "0040d088"}]} | {"edges": [{"source": "00401120", "type": "control_flow", "target": "0040d088"}], "nodes": [{"label": "00401120", "type": "basic_block", "id": "00401120"}, {"label": "0040d088", "type": "basic_block", "id": "0040d088"}]} | null | null | [["reg_register:00000000", "RETURN_00401120_1", "input"], ["const_0", "RETURN_00401120_1", "input"], ["reg_register:00000038", "CALL_00401120_0", "input"], ["var_0040d088", "CALL_00401120_0", "input"], ["CALL_00401120_0", "reg_register:00000000", "output"]] | [["reg_register:00000000", "RETURN_00401120_1", "input"], ["const_0", "RETURN_00401120_1", "input"], ["reg_register:00000038", "CALL_00401120_0", "input"], ["var_0040d088", "CALL_00401120_0", "input"], ["CALL_00401120_0", "reg_register:00000000", "output"]] | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401120_1"}, {"source": "const_0", "type": "input", "target": "RETURN_00401120_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401120_0"}, {"source": "var_0040d088", "type": "input", "target": "CALL_00401120_0... | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401120_1"}, {"source": "const_0", "type": "input", "target": "RETURN_00401120_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401120_0"}, {"source": "var_0040d088", "type": "input", "target": "CALL_00401120_0... | 00401120 | .. | .. |
19_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | realloc | realloc |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void * realloc(void *__ptr,size_t __size)
{
void *pvVar1;
pvVar1 = realloc(__ptr,__size);
return pvVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void * realloc(void *__ptr,size_t __size)
{
void *pvVar1;
pvVar1 = realloc(__ptr,__size);
return pvVar1;
}
| JMP qword ptr [0x0040b098] | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401130_1"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00401130_0"}, {"source": "var_0040d090", "type": "use", "target": "CALL_00401130_0"}, {"source": "CALL_00401130_0", "type": "def", "target": "reg_register:00000000"}, {"sour... | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401130_1"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00401130_0"}, {"source": "var_0040d090", "type": "use", "target": "CALL_00401130_0"}, {"source": "CALL_00401130_0", "type": "def", "target": "reg_register:00000000"}, {"sour... | {"edges": [{"source": "00401130", "type": "control_flow", "target": "0040d090"}], "nodes": [{"label": "00401130", "type": "basic_block", "id": "00401130"}, {"label": "0040d090", "type": "basic_block", "id": "0040d090"}]} | {"edges": [{"source": "00401130", "type": "control_flow", "target": "0040d090"}], "nodes": [{"label": "00401130", "type": "basic_block", "id": "00401130"}, {"label": "0040d090", "type": "basic_block", "id": "0040d090"}]} | null | null | [["const_0", "RETURN_00401130_1", "input"], ["var_0040d090", "CALL_00401130_0", "input"], ["reg_register:00000038", "CALL_00401130_0", "input"], ["reg_register:00000000", "RETURN_00401130_1", "input"], ["CALL_00401130_0", "reg_register:00000000", "output"], ["reg_register:00000030", "CALL_00401130_0", "input"]] | [["const_0", "RETURN_00401130_1", "input"], ["var_0040d090", "CALL_00401130_0", "input"], ["reg_register:00000038", "CALL_00401130_0", "input"], ["reg_register:00000000", "RETURN_00401130_1", "input"], ["CALL_00401130_0", "reg_register:00000000", "output"], ["reg_register:00000030", "CALL_00401130_0", "input"]] | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401130_1"}, {"source": "var_0040d090", "type": "input", "target": "CALL_00401130_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401130_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401130_1... | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401130_1"}, {"source": "var_0040d090", "type": "input", "target": "CALL_00401130_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401130_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401130_1... | 00401130 | .. | .. |
20_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | tcsetattr | tcsetattr |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int tcsetattr(int __fd,int __optional_actions,termios *__termios_p)
{
int iVar1;
iVar1 = tcsetattr(__fd,__optional_actions,__termios_p);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int tcsetattr(int __fd,int __optional_actions,termios *__termios_p)
{
int iVar1;
iVar1 = tcsetattr(__fd,__optional_actions,__termios_p);
return iVar1;
}
| JMP qword ptr [0x0040b0a0] | {"edges": [{"source": "CALL_00401140_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000010", "type": "use", "target": "CALL_00401140_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401140_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401140_0"... | {"edges": [{"source": "CALL_00401140_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000010", "type": "use", "target": "CALL_00401140_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401140_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401140_0"... | {"edges": [{"source": "00401140", "type": "control_flow", "target": "0040d098"}], "nodes": [{"label": "00401140", "type": "basic_block", "id": "00401140"}, {"label": "0040d098", "type": "basic_block", "id": "0040d098"}]} | {"edges": [{"source": "00401140", "type": "control_flow", "target": "0040d098"}], "nodes": [{"label": "00401140", "type": "basic_block", "id": "00401140"}, {"label": "0040d098", "type": "basic_block", "id": "0040d098"}]} | null | null | [["var_0040d098", "CALL_00401140_0", "input"], ["CALL_00401140_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401140_1", "input"], ["reg_register:00000038", "CALL_00401140_0", "input"], ["reg_register:00000000", "RETURN_00401140_1", "input"], ["reg_register:00000030", "CALL_00401140_0", "input"], ["reg_r... | [["var_0040d098", "CALL_00401140_0", "input"], ["CALL_00401140_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401140_1", "input"], ["reg_register:00000038", "CALL_00401140_0", "input"], ["reg_register:00000000", "RETURN_00401140_1", "input"], ["reg_register:00000030", "CALL_00401140_0", "input"], ["reg_r... | {"edges": [{"source": "var_0040d098", "type": "input", "target": "CALL_00401140_0"}, {"source": "CALL_00401140_0", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "RETURN_00401140_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401140_0"... | {"edges": [{"source": "var_0040d098", "type": "input", "target": "CALL_00401140_0"}, {"source": "CALL_00401140_0", "type": "output", "target": "reg_register:00000000"}, {"source": "const_0", "type": "input", "target": "RETURN_00401140_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401140_0"... | 00401140 | .. | .. |
21_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | open | open |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int open(char *__file,int __oflag,...)
{
int iVar1;
iVar1 = open(__file,__oflag);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int open(char *__file,int __oflag,...)
{
int iVar1;
iVar1 = open(__file,__oflag);
return iVar1;
}
| JMP qword ptr [0x0040b0a8] | {"edges": [{"source": "reg_register:00000030", "type": "use", "target": "CALL_00401150_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401150_1"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401150_1"}, {"source": "var_0040d0a0", "type": "use", "target": "CALL_00401150_0"}, {"so... | {"edges": [{"source": "reg_register:00000030", "type": "use", "target": "CALL_00401150_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401150_1"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401150_1"}, {"source": "var_0040d0a0", "type": "use", "target": "CALL_00401150_0"}, {"so... | {"edges": [{"source": "00401150", "type": "control_flow", "target": "0040d0a0"}], "nodes": [{"label": "00401150", "type": "basic_block", "id": "00401150"}, {"label": "0040d0a0", "type": "basic_block", "id": "0040d0a0"}]} | {"edges": [{"source": "00401150", "type": "control_flow", "target": "0040d0a0"}], "nodes": [{"label": "00401150", "type": "basic_block", "id": "00401150"}, {"label": "0040d0a0", "type": "basic_block", "id": "0040d0a0"}]} | null | null | [["CALL_00401150_0", "reg_register:00000000", "output"], ["reg_register:00000000", "RETURN_00401150_1", "input"], ["reg_register:00000038", "CALL_00401150_0", "input"], ["const_0", "RETURN_00401150_1", "input"], ["reg_register:00000030", "CALL_00401150_0", "input"], ["var_0040d0a0", "CALL_00401150_0", "input"]] | [["CALL_00401150_0", "reg_register:00000000", "output"], ["reg_register:00000000", "RETURN_00401150_1", "input"], ["reg_register:00000038", "CALL_00401150_0", "input"], ["const_0", "RETURN_00401150_1", "input"], ["reg_register:00000030", "CALL_00401150_0", "input"], ["var_0040d0a0", "CALL_00401150_0", "input"]] | {"edges": [{"source": "CALL_00401150_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401150_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401150_0"}, {"source": "const_0", "type": "input", "target": "RETURN_... | {"edges": [{"source": "CALL_00401150_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401150_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401150_0"}, {"source": "const_0", "type": "input", "target": "RETURN_... | 00401150 | .. | .. |
22_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | fopen | fopen |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
FILE * fopen(char *__filename,char *__modes)
{
FILE *pFVar1;
pFVar1 = fopen(__filename,__modes);
return pFVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
FILE * fopen(char *__filename,char *__modes)
{
FILE *pFVar1;
pFVar1 = fopen(__filename,__modes);
return pFVar1;
}
| JMP qword ptr [0x0040b0b0] | {"edges": [{"source": "CALL_00401160_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401160_0"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00401160_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401160_1"... | {"edges": [{"source": "CALL_00401160_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401160_0"}, {"source": "reg_register:00000030", "type": "use", "target": "CALL_00401160_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401160_1"... | {"edges": [{"source": "00401160", "type": "control_flow", "target": "0040d0a8"}], "nodes": [{"label": "00401160", "type": "basic_block", "id": "00401160"}, {"label": "0040d0a8", "type": "basic_block", "id": "0040d0a8"}]} | {"edges": [{"source": "00401160", "type": "control_flow", "target": "0040d0a8"}], "nodes": [{"label": "00401160", "type": "basic_block", "id": "00401160"}, {"label": "0040d0a8", "type": "basic_block", "id": "0040d0a8"}]} | null | null | [["reg_register:00000038", "CALL_00401160_0", "input"], ["var_0040d0a8", "CALL_00401160_0", "input"], ["reg_register:00000000", "RETURN_00401160_1", "input"], ["const_0", "RETURN_00401160_1", "input"], ["reg_register:00000030", "CALL_00401160_0", "input"], ["CALL_00401160_0", "reg_register:00000000", "output"]] | [["reg_register:00000038", "CALL_00401160_0", "input"], ["var_0040d0a8", "CALL_00401160_0", "input"], ["reg_register:00000000", "RETURN_00401160_1", "input"], ["const_0", "RETURN_00401160_1", "input"], ["reg_register:00000030", "CALL_00401160_0", "input"], ["CALL_00401160_0", "reg_register:00000000", "output"]] | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_00401160_0"}, {"source": "var_0040d0a8", "type": "input", "target": "CALL_00401160_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401160_1"}, {"source": "const_0", "type": "input", "target": "RETURN_00401160_1... | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_00401160_0"}, {"source": "var_0040d0a8", "type": "input", "target": "CALL_00401160_0"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401160_1"}, {"source": "const_0", "type": "input", "target": "RETURN_00401160_1... | 00401160 | .. | .. |
23_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | cfsetispeed | cfsetispeed |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int cfsetispeed(termios *__termios_p,speed_t __speed)
{
int iVar1;
iVar1 = cfsetispeed(__termios_p,__speed);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int cfsetispeed(termios *__termios_p,speed_t __speed)
{
int iVar1;
iVar1 = cfsetispeed(__termios_p,__speed);
return iVar1;
}
| JMP qword ptr [0x0040b0b8] | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401170_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401170_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401170_1"}, {"source": "var_0040d0b0", "type": "use", "target": "CALL_00401170_0"}, {"so... | {"edges": [{"source": "reg_register:00000000", "type": "use", "target": "RETURN_00401170_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401170_0"}, {"source": "const_0", "type": "use", "target": "RETURN_00401170_1"}, {"source": "var_0040d0b0", "type": "use", "target": "CALL_00401170_0"}, {"so... | {"edges": [{"source": "00401170", "type": "control_flow", "target": "0040d0b0"}], "nodes": [{"label": "00401170", "type": "basic_block", "id": "00401170"}, {"label": "0040d0b0", "type": "basic_block", "id": "0040d0b0"}]} | {"edges": [{"source": "00401170", "type": "control_flow", "target": "0040d0b0"}], "nodes": [{"label": "00401170", "type": "basic_block", "id": "00401170"}, {"label": "0040d0b0", "type": "basic_block", "id": "0040d0b0"}]} | null | null | [["reg_register:00000000", "RETURN_00401170_1", "input"], ["reg_register:00000030", "CALL_00401170_0", "input"], ["reg_register:00000038", "CALL_00401170_0", "input"], ["CALL_00401170_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401170_1", "input"], ["var_0040d0b0", "CALL_00401170_0", "input"]] | [["reg_register:00000000", "RETURN_00401170_1", "input"], ["reg_register:00000030", "CALL_00401170_0", "input"], ["reg_register:00000038", "CALL_00401170_0", "input"], ["CALL_00401170_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401170_1", "input"], ["var_0040d0b0", "CALL_00401170_0", "input"]] | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401170_1"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_00401170_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401170_0"}, {"source": "CALL_00401170_0", "type": "output", "target": ... | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_00401170_1"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_00401170_0"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401170_0"}, {"source": "CALL_00401170_0", "type": "output", "target": ... | 00401170 | .. | .. |
24_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | perror | perror |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void perror(char *__s)
{
perror(__s);
return;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void perror(char *__s)
{
perror(__s);
return;
}
| JMP qword ptr [0x0040b0c0] | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401180_1"}, {"source": "var_0040d0b8", "type": "use", "target": "CALL_00401180_0"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401180_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "var", "type": "... | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401180_1"}, {"source": "var_0040d0b8", "type": "use", "target": "CALL_00401180_0"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401180_0"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "var", "type": "... | {"edges": [{"source": "00401180", "type": "control_flow", "target": "0040d0b8"}], "nodes": [{"label": "00401180", "type": "basic_block", "id": "00401180"}, {"label": "0040d0b8", "type": "basic_block", "id": "0040d0b8"}]} | {"edges": [{"source": "00401180", "type": "control_flow", "target": "0040d0b8"}], "nodes": [{"label": "00401180", "type": "basic_block", "id": "00401180"}, {"label": "0040d0b8", "type": "basic_block", "id": "0040d0b8"}]} | null | null | [["var_0040d0b8", "CALL_00401180_0", "input"], ["const_0", "RETURN_00401180_1", "input"], ["reg_register:00000038", "CALL_00401180_0", "input"]] | [["var_0040d0b8", "CALL_00401180_0", "input"], ["const_0", "RETURN_00401180_1", "input"], ["reg_register:00000038", "CALL_00401180_0", "input"]] | {"edges": [{"source": "var_0040d0b8", "type": "input", "target": "CALL_00401180_0"}, {"source": "const_0", "type": "input", "target": "RETURN_00401180_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401180_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00401180_1"}, {"label"... | {"edges": [{"source": "var_0040d0b8", "type": "input", "target": "CALL_00401180_0"}, {"source": "const_0", "type": "input", "target": "RETURN_00401180_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_00401180_0"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00401180_1"}, {"label"... | 00401180 | .. | .. |
25_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | getopt | getopt |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int getopt(int ___argc,char **___argv,char *__shortopts)
{
int iVar1;
iVar1 = getopt(___argc,___argv,__shortopts);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int getopt(int ___argc,char **___argv,char *__shortopts)
{
int iVar1;
iVar1 = getopt(___argc,___argv,__shortopts);
return iVar1;
}
| JMP qword ptr [0x0040b0c8] | {"edges": [{"source": "reg_register:00000030", "type": "use", "target": "CALL_00401190_0"}, {"source": "CALL_00401190_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401190_0"}, {"source": "reg_register:00000000", "type": "use", "target": "RETU... | {"edges": [{"source": "reg_register:00000030", "type": "use", "target": "CALL_00401190_0"}, {"source": "CALL_00401190_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_00401190_0"}, {"source": "reg_register:00000000", "type": "use", "target": "RETU... | {"edges": [{"source": "00401190", "type": "control_flow", "target": "0040d0c0"}], "nodes": [{"label": "00401190", "type": "basic_block", "id": "00401190"}, {"label": "0040d0c0", "type": "basic_block", "id": "0040d0c0"}]} | {"edges": [{"source": "00401190", "type": "control_flow", "target": "0040d0c0"}], "nodes": [{"label": "00401190", "type": "basic_block", "id": "00401190"}, {"label": "0040d0c0", "type": "basic_block", "id": "0040d0c0"}]} | null | null | [["reg_register:00000038", "CALL_00401190_0", "input"], ["reg_register:00000010", "CALL_00401190_0", "input"], ["reg_register:00000030", "CALL_00401190_0", "input"], ["reg_register:00000000", "RETURN_00401190_1", "input"], ["CALL_00401190_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401190_1", "input"]... | [["reg_register:00000038", "CALL_00401190_0", "input"], ["reg_register:00000010", "CALL_00401190_0", "input"], ["reg_register:00000030", "CALL_00401190_0", "input"], ["reg_register:00000000", "RETURN_00401190_1", "input"], ["CALL_00401190_0", "reg_register:00000000", "output"], ["const_0", "RETURN_00401190_1", "input"]... | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_00401190_0"}, {"source": "reg_register:00000010", "type": "input", "target": "CALL_00401190_0"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_00401190_0"}, {"source": "reg_register:00000000", "type": "input", "target... | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_00401190_0"}, {"source": "reg_register:00000010", "type": "input", "target": "CALL_00401190_0"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_00401190_0"}, {"source": "reg_register:00000000", "type": "input", "target... | 00401190 | .. | .. |
26_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | exit | exit |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void exit(int __status)
{
/* WARNING: Subroutine does not return */
exit(__status);
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void exit(int __status)
{
/* WARNING: Subroutine does not return */
exit(__status);
}
| JMP qword ptr [0x0040b0d0] | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_004011a0_2"}, {"source": "var_0040d0c8", "type": "use", "target": "CALL_004011a0_0"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004011a0_0"}], "nodes": [{"label": "CALL", "type": "op", "id": "CALL_004011a0_0"}, {"label": "var", "... | {"edges": [{"source": "const_1", "type": "use", "target": "RETURN_004011a0_2"}, {"source": "var_0040d0c8", "type": "use", "target": "CALL_004011a0_0"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004011a0_0"}], "nodes": [{"label": "CALL", "type": "op", "id": "CALL_004011a0_0"}, {"label": "var", "... | {"edges": [{"source": "004011a0", "type": "control_flow", "target": "0040d0c8"}], "nodes": [{"label": "004011a0", "type": "basic_block", "id": "004011a0"}, {"label": "0040d0c8", "type": "basic_block", "id": "0040d0c8"}]} | {"edges": [{"source": "004011a0", "type": "control_flow", "target": "0040d0c8"}], "nodes": [{"label": "004011a0", "type": "basic_block", "id": "004011a0"}, {"label": "0040d0c8", "type": "basic_block", "id": "0040d0c8"}]} | null | null | [["reg_register:00000038", "CALL_004011a0_0", "input"], ["var_0040d0c8", "CALL_004011a0_0", "input"], ["const_1", "RETURN_004011a0_2", "input"]] | [["reg_register:00000038", "CALL_004011a0_0", "input"], ["var_0040d0c8", "CALL_004011a0_0", "input"], ["const_1", "RETURN_004011a0_2", "input"]] | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_004011a0_0"}, {"source": "var_0040d0c8", "type": "input", "target": "CALL_004011a0_0"}, {"source": "const_1", "type": "input", "target": "RETURN_004011a0_2"}], "nodes": [{"label": "CALL", "type": "op", "id": "CALL_004011a0_0"}, {"label": "i... | {"edges": [{"source": "reg_register:00000038", "type": "input", "target": "CALL_004011a0_0"}, {"source": "var_0040d0c8", "type": "input", "target": "CALL_004011a0_0"}, {"source": "const_1", "type": "input", "target": "RETURN_004011a0_2"}], "nodes": [{"label": "CALL", "type": "op", "id": "CALL_004011a0_0"}, {"label": "i... | 004011a0 | .. | .. |
27_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | fwrite | fwrite |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
size_t fwrite(void *__ptr,size_t __size,size_t __n,FILE *__s)
{
size_t sVar1;
sVar1 = fwrite(__ptr,__size,__n,__s);
return sVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
size_t fwrite(void *__ptr,size_t __size,size_t __n,FILE *__s)
{
size_t sVar1;
sVar1 = fwrite(__ptr,__size,__n,__s);
return sVar1;
}
| JMP qword ptr [0x0040b0d8] | {"edges": [{"source": "reg_register:00000030", "type": "use", "target": "CALL_004011b0_0"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004011b0_1"}, {"source": "reg_register:00000010", "type": "use", "target": "CALL_004011b0_0"}, {"source": "var_0040d0d0", "type": "use", "target": "CALL_004011... | {"edges": [{"source": "reg_register:00000030", "type": "use", "target": "CALL_004011b0_0"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004011b0_1"}, {"source": "reg_register:00000010", "type": "use", "target": "CALL_004011b0_0"}, {"source": "var_0040d0d0", "type": "use", "target": "CALL_004011... | {"edges": [{"source": "004011b0", "type": "control_flow", "target": "0040d0d0"}], "nodes": [{"label": "004011b0", "type": "basic_block", "id": "004011b0"}, {"label": "0040d0d0", "type": "basic_block", "id": "0040d0d0"}]} | {"edges": [{"source": "004011b0", "type": "control_flow", "target": "0040d0d0"}], "nodes": [{"label": "004011b0", "type": "basic_block", "id": "004011b0"}, {"label": "0040d0d0", "type": "basic_block", "id": "0040d0d0"}]} | null | null | [["reg_register:00000008", "CALL_004011b0_0", "input"], ["reg_register:00000030", "CALL_004011b0_0", "input"], ["reg_register:00000010", "CALL_004011b0_0", "input"], ["var_0040d0d0", "CALL_004011b0_0", "input"], ["CALL_004011b0_0", "reg_register:00000000", "output"], ["reg_register:00000038", "CALL_004011b0_0", "input"... | [["reg_register:00000008", "CALL_004011b0_0", "input"], ["reg_register:00000030", "CALL_004011b0_0", "input"], ["reg_register:00000010", "CALL_004011b0_0", "input"], ["var_0040d0d0", "CALL_004011b0_0", "input"], ["CALL_004011b0_0", "reg_register:00000000", "output"], ["reg_register:00000038", "CALL_004011b0_0", "input"... | {"edges": [{"source": "reg_register:00000008", "type": "input", "target": "CALL_004011b0_0"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_004011b0_0"}, {"source": "reg_register:00000010", "type": "input", "target": "CALL_004011b0_0"}, {"source": "var_0040d0d0", "type": "input", "target": "CALL_... | {"edges": [{"source": "reg_register:00000008", "type": "input", "target": "CALL_004011b0_0"}, {"source": "reg_register:00000030", "type": "input", "target": "CALL_004011b0_0"}, {"source": "reg_register:00000010", "type": "input", "target": "CALL_004011b0_0"}, {"source": "var_0040d0d0", "type": "input", "target": "CALL_... | 004011b0 | .. | .. |
28_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | strerror | strerror |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
char * strerror(int __errnum)
{
char *pcVar1;
pcVar1 = strerror(__errnum);
return pcVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
char * strerror(int __errnum)
{
char *pcVar1;
pcVar1 = strerror(__errnum);
return pcVar1;
}
| JMP qword ptr [0x0040b0e0] | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_004011c0_0"}, {"source": "const_0", "type": "use", "target": "RETURN_004011c0_1"}, {"source": "CALL_004011c0_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004011c0_... | {"edges": [{"source": "reg_register:00000038", "type": "use", "target": "CALL_004011c0_0"}, {"source": "const_0", "type": "use", "target": "RETURN_004011c0_1"}, {"source": "CALL_004011c0_0", "type": "def", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "use", "target": "RETURN_004011c0_... | {"edges": [{"source": "004011c0", "type": "control_flow", "target": "0040d0d8"}], "nodes": [{"label": "004011c0", "type": "basic_block", "id": "004011c0"}, {"label": "0040d0d8", "type": "basic_block", "id": "0040d0d8"}]} | {"edges": [{"source": "004011c0", "type": "control_flow", "target": "0040d0d8"}], "nodes": [{"label": "004011c0", "type": "basic_block", "id": "004011c0"}, {"label": "0040d0d8", "type": "basic_block", "id": "0040d0d8"}]} | null | null | [["CALL_004011c0_0", "reg_register:00000000", "output"], ["reg_register:00000000", "RETURN_004011c0_1", "input"], ["reg_register:00000038", "CALL_004011c0_0", "input"], ["const_0", "RETURN_004011c0_1", "input"], ["var_0040d0d8", "CALL_004011c0_0", "input"]] | [["CALL_004011c0_0", "reg_register:00000000", "output"], ["reg_register:00000000", "RETURN_004011c0_1", "input"], ["reg_register:00000038", "CALL_004011c0_0", "input"], ["const_0", "RETURN_004011c0_1", "input"], ["var_0040d0d8", "CALL_004011c0_0", "input"]] | {"edges": [{"source": "CALL_004011c0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_004011c0_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004011c0_0"}, {"source": "const_0", "type": "input", "target": "RETURN_... | {"edges": [{"source": "CALL_004011c0_0", "type": "output", "target": "reg_register:00000000"}, {"source": "reg_register:00000000", "type": "input", "target": "RETURN_004011c0_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004011c0_0"}, {"source": "const_0", "type": "input", "target": "RETURN_... | 004011c0 | .. | .. |
29_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | usleep | usleep |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int usleep(__useconds_t __useconds)
{
int iVar1;
iVar1 = usleep(__useconds);
return iVar1;
}
|
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
int usleep(__useconds_t __useconds)
{
int iVar1;
iVar1 = usleep(__useconds);
return iVar1;
}
| JMP qword ptr [0x0040b0e8] | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_004011d0_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004011d0_0"}, {"source": "var_0040d0e0", "type": "use", "target": "CALL_004011d0_0"}, {"source": "CALL_004011d0_0", "type": "def", "target": "reg_register:00000000"}, {"sour... | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_004011d0_1"}, {"source": "reg_register:00000038", "type": "use", "target": "CALL_004011d0_0"}, {"source": "var_0040d0e0", "type": "use", "target": "CALL_004011d0_0"}, {"source": "CALL_004011d0_0", "type": "def", "target": "reg_register:00000000"}, {"sour... | {"edges": [{"source": "004011d0", "type": "control_flow", "target": "0040b0e8"}, {"source": "004011d0", "type": "control_flow", "target": "0040d0e0"}], "nodes": [{"label": "004011d0", "type": "basic_block", "id": "004011d0"}, {"label": "0040b0e8", "type": "basic_block", "id": "0040b0e8"}, {"label": "0040d0e0", "type": ... | {"edges": [{"source": "004011d0", "type": "control_flow", "target": "0040b0e8"}, {"source": "004011d0", "type": "control_flow", "target": "0040d0e0"}], "nodes": [{"label": "004011d0", "type": "basic_block", "id": "004011d0"}, {"label": "0040b0e8", "type": "basic_block", "id": "0040b0e8"}, {"label": "0040d0e0", "type": ... | null | null | [["reg_register:00000000", "RETURN_004011d0_1", "input"], ["const_0", "RETURN_004011d0_1", "input"], ["reg_register:00000038", "CALL_004011d0_0", "input"], ["CALL_004011d0_0", "reg_register:00000000", "output"], ["var_0040d0e0", "CALL_004011d0_0", "input"]] | [["reg_register:00000000", "RETURN_004011d0_1", "input"], ["const_0", "RETURN_004011d0_1", "input"], ["reg_register:00000038", "CALL_004011d0_0", "input"], ["CALL_004011d0_0", "reg_register:00000000", "output"], ["var_0040d0e0", "CALL_004011d0_0", "input"]] | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_004011d0_1"}, {"source": "const_0", "type": "input", "target": "RETURN_004011d0_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004011d0_0"}, {"source": "CALL_004011d0_0", "type": "output", "target": "reg_registe... | {"edges": [{"source": "reg_register:00000000", "type": "input", "target": "RETURN_004011d0_1"}, {"source": "const_0", "type": "input", "target": "RETURN_004011d0_1"}, {"source": "reg_register:00000038", "type": "input", "target": "CALL_004011d0_0"}, {"source": "CALL_004011d0_0", "type": "output", "target": "reg_registe... | 004011d0 | .. | .. |
30_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | _start | entry |
void processEntry _start(undefined8 param_1,undefined8 param_2)
{
undefined1 auStack_8 [8];
__libc_start_main(main,param_2,&stack0x00000008,__libc_csu_init,__libc_csu_fini,param_1,auStack_8)
;
do {
/* WARNING: Do nothing block with infinite loop */
} while( true );
}
|
void processEntry entry(undefined8 param_1,undefined8 param_2)
{
undefined1 auStack_8 [8];
__libc_start_main(FUN_00401fa7,param_2,&stack0x00000008,FUN_00407130,FUN_00407190,param_1,
auStack_8);
do {
/* WARNING: Do nothing block with infinite loop */
} while( true );
... | XOR EBP,EBP
MOV R9,RDX
POP RSI
MOV RDX,RSP
AND RSP,-0x10
PUSH RAX
PUSH RSP
MOV R8,0x407190
MOV RCX,0x407130
MOV RDI,0x401fa7
CALL qword ptr [0x0040aff0]
HLT | {"edges": [{"source": "PTRSUB_004011e5_77", "type": "def", "target": "reg_register:00000020"}, {"source": "reg_register:00000020", "type": "use", "target": "PTRSUB_004011e5_77"}, {"source": "unique_268435489", "type": "use", "target": "CALL_00401204_37"}, {"source": "reg_register:00000010", "type": "use", "target": "CA... | {"edges": [{"source": "PTRSUB_004011e5_77", "type": "def", "target": "reg_register:00000020"}, {"source": "reg_register:00000020", "type": "use", "target": "PTRSUB_004011e5_77"}, {"source": "unique_268435489", "type": "use", "target": "CALL_00401204_37"}, {"source": "reg_register:00000010", "type": "use", "target": "CA... | {"edges": [{"source": "004011e0", "type": "control_flow", "target": "0040d068"}], "nodes": [{"label": "004011e0", "type": "basic_block", "id": "004011e0"}, {"label": "0040d068", "type": "basic_block", "id": "0040d068"}]} | {"edges": [{"source": "004011e0", "type": "control_flow", "target": "0040d068"}], "nodes": [{"label": "004011e0", "type": "basic_block", "id": "004011e0"}, {"label": "0040d068", "type": "basic_block", "id": "0040d068"}]} | null | null | [["var_0040120a", "BRANCH_0040120a_38", "input"], ["unique_268435489", "CALL_00401204_37", "input"], ["addrtied_Stack[0x0]", "CALL_00401204_37", "input"], ["PTRSUB_004011e5_77", "reg_register:00000020", "output"], ["reg_register:00000020", "PTRSUB_004011ed_78", "input"], ["const_0", "PTRSUB_00401204_75", "input"], ["co... | [["var_0040120a", "BRANCH_0040120a_38", "input"], ["unique_268435489", "CALL_00401204_37", "input"], ["addrtied_Stack[0x0]", "CALL_00401204_37", "input"], ["PTRSUB_004011e5_77", "reg_register:00000020", "output"], ["reg_register:00000020", "PTRSUB_004011ed_78", "input"], ["const_0", "PTRSUB_00401204_75", "input"], ["co... | {"edges": [{"source": "var_0040120a", "type": "input", "target": "BRANCH_0040120a_38"}, {"source": "unique_268435489", "type": "input", "target": "CALL_00401204_37"}, {"source": "addrtied_Stack[0x0]", "type": "input", "target": "CALL_00401204_37"}, {"source": "PTRSUB_004011e5_77", "type": "output", "target": "reg_regis... | {"edges": [{"source": "var_0040120a", "type": "input", "target": "BRANCH_0040120a_38"}, {"source": "unique_268435489", "type": "input", "target": "CALL_00401204_37"}, {"source": "addrtied_Stack[0x0]", "type": "input", "target": "CALL_00401204_37"}, {"source": "PTRSUB_004011e5_77", "type": "output", "target": "reg_regis... | 004011e0 | .. | .. |
31_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | _dl_relocate_static_pie | FUN_00401210 |
void _dl_relocate_static_pie(void)
{
return;
}
|
void FUN_00401210(void)
{
return;
}
| RET | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401210_2"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_00401210_2"}]} | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401210_2"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_00401210_2"}]} | {"edges": [], "nodes": [{"label": "00401210", "type": "basic_block", "id": "00401210"}]} | {"edges": [], "nodes": [{"label": "00401210", "type": "basic_block", "id": "00401210"}]} | null | null | [["const_0", "RETURN_00401210_2", "input"]] | [["const_0", "RETURN_00401210_2", "input"]] | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401210_2"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00401210_2"}, {"label": "input", "type": "var", "id": "const_0"}]} | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401210_2"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00401210_2"}, {"label": "input", "type": "var", "id": "const_0"}]} | 00401210 | .. | .. |
32_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | deregister_tm_clones | FUN_00401220 |
/* WARNING: Removing unreachable block (ram,0x0040122d) */
/* WARNING: Removing unreachable block (ram,0x00401237) */
void deregister_tm_clones(void)
{
return;
}
|
/* WARNING: Removing unreachable block (ram,0x0040122d) */
/* WARNING: Removing unreachable block (ram,0x00401237) */
void FUN_00401220(void)
{
return;
}
| MOV EAX,0x40b1a0
CMP RAX,0x40b1a0
JZ 0x00401240
MOV EAX,0x0
TEST RAX,RAX
JZ 0x00401240
MOV EDI,0x40b1a0
JMP RAX
RET | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401240_26"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_00401240_26"}]} | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401240_26"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_00401240_26"}]} | {"edges": [{"source": "00401220", "type": "control_flow", "target": "00401240"}, {"source": "00401220", "type": "control_flow", "target": "0040122d"}, {"source": "0040122d", "type": "control_flow", "target": "00401240"}, {"source": "0040122d", "type": "control_flow", "target": "00401237"}], "nodes": [{"label": "0040122... | {"edges": [{"source": "00401220", "type": "control_flow", "target": "00401240"}, {"source": "00401220", "type": "control_flow", "target": "0040122d"}, {"source": "0040122d", "type": "control_flow", "target": "00401240"}, {"source": "0040122d", "type": "control_flow", "target": "00401237"}], "nodes": [{"label": "0040122... | null | null | [["const_0", "RETURN_00401240_26", "input"]] | [["const_0", "RETURN_00401240_26", "input"]] | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401240_26"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00401240_26"}, {"label": "input", "type": "var", "id": "const_0"}]} | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401240_26"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00401240_26"}, {"label": "input", "type": "var", "id": "const_0"}]} | 00401220 | .. | .. |
33_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | register_tm_clones | FUN_00401250 |
/* WARNING: Removing unreachable block (ram,0x0040126f) */
/* WARNING: Removing unreachable block (ram,0x00401279) */
void register_tm_clones(void)
{
return;
}
|
/* WARNING: Removing unreachable block (ram,0x0040126f) */
/* WARNING: Removing unreachable block (ram,0x00401279) */
void FUN_00401250(void)
{
return;
}
| MOV ESI,0x40b1a0
SUB RSI,0x40b1a0
MOV RAX,RSI
SHR RSI,0x3f
SAR RAX,0x3
ADD RSI,RAX
SAR RSI,0x1
JZ 0x00401280
MOV EAX,0x0
TEST RAX,RAX
JZ 0x00401280
MOV EDI,0x40b1a0
JMP RAX
RET | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401280_117"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_00401280_117"}]} | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401280_117"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_00401280_117"}]} | {"edges": [{"source": "00401250", "type": "control_flow", "target": "00401280"}, {"source": "00401250", "type": "control_flow", "target": "0040126f"}, {"source": "0040126f", "type": "control_flow", "target": "00401280"}, {"source": "0040126f", "type": "control_flow", "target": "00401279"}], "nodes": [{"label": "0040125... | {"edges": [{"source": "00401250", "type": "control_flow", "target": "00401280"}, {"source": "00401250", "type": "control_flow", "target": "0040126f"}, {"source": "0040126f", "type": "control_flow", "target": "00401280"}, {"source": "0040126f", "type": "control_flow", "target": "00401279"}], "nodes": [{"label": "0040125... | null | null | [["const_0", "RETURN_00401280_117", "input"]] | [["const_0", "RETURN_00401280_117", "input"]] | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401280_117"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00401280_117"}, {"label": "input", "type": "var", "id": "const_0"}]} | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401280_117"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00401280_117"}, {"label": "input", "type": "var", "id": "const_0"}]} | 00401250 | .. | .. |
34_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | __do_global_dtors_aux | _FINI_0 |
void __do_global_dtors_aux(void)
{
if (completed_0 == '\0') {
deregister_tm_clones();
completed_0 = 1;
return;
}
return;
}
|
void _FINI_0(void)
{
if (DAT_0040b1c8 == '\0') {
FUN_00401220();
DAT_0040b1c8 = 1;
return;
}
return;
}
| CMP byte ptr [0x0040b1c8],0x0
JNZ 0x004012b0
PUSH RBP
MOV RBP,RSP
CALL 0x00401220
MOV byte ptr [0x0040b1c8],0x1
POP RBP
RET
RET | {"edges": [{"source": "const_1", "type": "use", "target": "COPY_004012a2_19"}, {"source": "COPY_004012b0_46", "type": "def", "target": "addrtied_0040b1c8"}, {"source": "addrtied_0040b1c8", "type": "use", "target": "COPY_004012b0_46"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_00401297_11"}, ... | {"edges": [{"source": "const_1", "type": "use", "target": "COPY_004012a2_19"}, {"source": "COPY_004012b0_46", "type": "def", "target": "addrtied_0040b1c8"}, {"source": "addrtied_0040b1c8", "type": "use", "target": "COPY_004012b0_46"}, {"source": "reg_register:00000206", "type": "use", "target": "CBRANCH_00401297_11"}, ... | {"edges": [{"source": "00401290", "type": "control_flow", "target": "004012b0"}, {"source": "00401290", "type": "control_flow", "target": "00401299"}, {"source": "00401299", "type": "control_flow", "target": "00401220"}], "nodes": [{"label": "00401290", "type": "basic_block", "id": "00401290"}, {"label": "004012b0", "t... | {"edges": [{"source": "00401290", "type": "control_flow", "target": "004012b0"}, {"source": "00401290", "type": "control_flow", "target": "00401299"}, {"source": "00401299", "type": "control_flow", "target": "00401220"}], "nodes": [{"label": "00401290", "type": "basic_block", "id": "00401290"}, {"label": "004012b0", "t... | null | null | [["addrtied_0040b1c8", "COPY_004012aa_45", "input"], ["const_0", "RETURN_004012aa_26", "input"], ["addrtied_0040b1c8", "COPY_004012b0_46", "input"], ["const_0", "INT_EQUAL_00401290_5", "input"], ["reg_register:00000206", "CBRANCH_00401297_11", "input"], ["COPY_004012b0_46", "addrtied_0040b1c8", "output"], ["var_004012b... | [["addrtied_0040b1c8", "COPY_004012aa_45", "input"], ["const_0", "RETURN_004012aa_26", "input"], ["addrtied_0040b1c8", "COPY_004012b0_46", "input"], ["const_0", "INT_EQUAL_00401290_5", "input"], ["reg_register:00000206", "CBRANCH_00401297_11", "input"], ["COPY_004012b0_46", "addrtied_0040b1c8", "output"], ["var_004012b... | {"edges": [{"source": "addrtied_0040b1c8", "type": "input", "target": "COPY_004012aa_45"}, {"source": "const_0", "type": "input", "target": "RETURN_004012aa_26"}, {"source": "addrtied_0040b1c8", "type": "input", "target": "COPY_004012b0_46"}, {"source": "const_0", "type": "input", "target": "INT_EQUAL_00401290_5"}, {"s... | {"edges": [{"source": "addrtied_0040b1c8", "type": "input", "target": "COPY_004012aa_45"}, {"source": "const_0", "type": "input", "target": "RETURN_004012aa_26"}, {"source": "addrtied_0040b1c8", "type": "input", "target": "COPY_004012b0_46"}, {"source": "const_0", "type": "input", "target": "INT_EQUAL_00401290_5"}, {"s... | 00401290 | .. | .. |
35_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | frame_dummy | _INIT_0 |
/* WARNING: Removing unreachable block (ram,0x0040126f) */
/* WARNING: Removing unreachable block (ram,0x00401279) */
void frame_dummy(void)
{
return;
}
|
/* WARNING: Removing unreachable block (ram,0x0040126f) */
/* WARNING: Removing unreachable block (ram,0x00401279) */
void _INIT_0(void)
{
return;
}
| JMP 0x00401250 | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401280_118"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_00401280_118"}]} | {"edges": [{"source": "const_0", "type": "use", "target": "RETURN_00401280_118"}], "nodes": [{"label": "var", "type": "var", "id": "const_0"}, {"label": "RETURN", "type": "op", "id": "RETURN_00401280_118"}]} | {"edges": [{"source": "004012c0", "type": "control_flow", "target": "00401250"}], "nodes": [{"label": "004012c0", "type": "basic_block", "id": "004012c0"}, {"label": "00401250", "type": "basic_block", "id": "00401250"}]} | {"edges": [{"source": "004012c0", "type": "control_flow", "target": "00401250"}], "nodes": [{"label": "004012c0", "type": "basic_block", "id": "004012c0"}, {"label": "00401250", "type": "basic_block", "id": "00401250"}]} | null | null | [["const_0", "RETURN_00401280_118", "input"]] | [["const_0", "RETURN_00401280_118", "input"]] | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401280_118"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00401280_118"}, {"label": "input", "type": "var", "id": "const_0"}]} | {"edges": [{"source": "const_0", "type": "input", "target": "RETURN_00401280_118"}], "nodes": [{"label": "RETURN", "type": "op", "id": "RETURN_00401280_118"}, {"label": "input", "type": "var", "id": "const_0"}]} | 004012c0 | .. | .. |
36_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | read_port | FUN_004012c2 |
/* WARNING: Unknown calling convention */
uint8_t read_port(void)
{
ssize_t sVar1;
uint8_t data;
int res;
int timeout;
int t;
t = 0;
timeout = 5000;
do {
sVar1 = read(portHandle,&data,1);
res = (int)sVar1;
t = t + 1;
if (res == 0) {
usleep(10);
}
} while ((res == 0) && ... |
undefined1 FUN_004012c2(void)
{
ssize_t sVar1;
undefined1 local_15;
int local_14;
int local_10;
int local_c;
local_c = 0;
local_10 = 5000;
do {
sVar1 = read(DAT_0040b3e0,&local_15,1);
local_14 = (int)sVar1;
local_c = local_c + 1;
if (local_14 == 0) {
usleep(10);
}
} whil... | PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV dword ptr [RBP + -0x4],0x0
MOV dword ptr [RBP + -0x8],0x1388
MOV EAX,dword ptr [0x0040b3e0]
LEA RCX,[RBP + -0xd]
MOV EDX,0x1
MOV RSI,RCX
MOV EDI,EAX
CALL 0x004010f0
MOV dword ptr [RBP + -0xc],EAX
ADD dword ptr [RBP + -0x4],0x1
CMP dword ptr [RBP + -0xc],0x0
JNZ 0x00401308
MOV EDI,0... | {"edges": [{"source": "unique_18176", "type": "use", "target": "CALL_004012ec_29"}, {"source": "INDIRECT_0040134d_386", "type": "def", "target": "addrtied_0040b3e0"}, {"source": "addrtied_0040b3e0", "type": "use", "target": "MULTIEQUAL_00401308_392"}, {"source": "COPY_004012ca_15", "type": "def", "target": "addrtied_St... | {"edges": [{"source": "const_121", "type": "use", "target": "INDIRECT_00401323_382"}, {"source": "const_156", "type": "use", "target": "INDIRECT_00401343_407"}, {"source": "unique_18176", "type": "use", "target": "CALL_004012ec_29"}, {"source": "PTRSUB_004012de_445", "type": "def", "target": "unique_18176"}, {"source":... | {"edges": [{"source": "004012c2", "type": "control_flow", "target": "004012d8"}, {"source": "004012d8", "type": "control_flow", "target": "004010f0"}, {"source": "004012d8", "type": "control_flow", "target": "00401308"}, {"source": "004012d8", "type": "control_flow", "target": "004012fe"}, {"source": "004012fe", "type"... | {"edges": [{"source": "004012c2", "type": "control_flow", "target": "004012d8"}, {"source": "004012d8", "type": "control_flow", "target": "004010f0"}, {"source": "004012d8", "type": "control_flow", "target": "00401308"}, {"source": "004012d8", "type": "control_flow", "target": "004012fe"}, {"source": "004012fe", "type"... | null | null | [["var_004010f0", "CALL_004012ec_29", "input"], ["INDIRECT_004012ec_402", "addrtied_Stack[-0x15]", "output"], ["addrtied_Stack[-0xc]", "INT_EQUAL_00401319_111", "input"], ["const_125", "INDIRECT_0040132d_415", "input"], ["INDIRECT_004012ec_418", "addrtied_Stack[-0x10]", "output"], ["const_0", "INT_EQUAL_00401308_75", "... | [["var_004010f0", "CALL_004012ec_29", "input"], ["INDIRECT_0040134d_408", "addrtied_Stack[-0x14]", "output"], ["const_29", "INDIRECT_004012ec_413", "input"], ["addrtied_Stack[-0xc]", "INT_EQUAL_00401319_111", "input"], ["INDIRECT_0040132d_426", "addrtied_Stack[-0xc]", "output"], ["MULTIEQUAL_00401308_411", "addrtied_St... | {"edges": [{"source": "var_004010f0", "type": "input", "target": "CALL_004012ec_29"}, {"source": "INDIRECT_004012ec_402", "type": "output", "target": "addrtied_Stack[-0x15]"}, {"source": "addrtied_Stack[-0xc]", "type": "input", "target": "INT_EQUAL_00401319_111"}, {"source": "const_125", "type": "input", "target": "IND... | {"edges": [{"source": "var_004010f0", "type": "input", "target": "CALL_004012ec_29"}, {"source": "INDIRECT_0040134d_408", "type": "output", "target": "addrtied_Stack[-0x14]"}, {"source": "const_29", "type": "input", "target": "INDIRECT_004012ec_413"}, {"source": "addrtied_Stack[-0xc]", "type": "input", "target": "INT_E... | 004012c2 | .. | .. |
37_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_and_000fb44cfbdf73e4f9cf87fc02f7ec09caaa36bb119557aa00d8d9ec02608198_strip.c | check_result | FUN_00401354 |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
void check_result(void)
{
byte bVar1;
uint8_t result;
bVar1 = read_port();
if (3 < verbose) {
fprintf(stderr,"[RESULT: %d]\n",(ulong)bVar1);
}
if (bVar1 == 0) {
fwrite("JTAG error\r\n",1,0xc,stderr);
... |
void FUN_00401354(void)
{
byte bVar1;
bVar1 = FUN_004012c2();
if (3 < DAT_0040b3f0) {
fprintf(stderr,"[RESULT: %d]\n",(ulong)bVar1);
}
if (bVar1 == 0) {
fwrite("JTAG error\r\n",1,0xc,stderr);
/* WARNING: Subroutine does not return */
exit(2);
}
return;
}
| PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV EAX,0x0
CALL 0x004012c2
MOV byte ptr [RBP + -0x1],AL
MOV EAX,dword ptr [0x0040b3f0]
CMP EAX,0x3
JLE 0x00401391
MOVZX EDX,byte ptr [RBP + -0x1]
MOV RAX,qword ptr [0x0040b1c0]
MOV ESI,0x408020
MOV RDI,RAX
MOV EAX,0x0
CALL 0x00401110
CMP byte ptr [RBP + -0x1],0x0
JNZ 0x004013bf
MOV RA... | {"edges": [{"source": "const_0", "type": "use", "target": "INT_EQUAL_00401391_53"}, {"source": "var_004013bf", "type": "use", "target": "CBRANCH_00401395_59"}, {"source": "addrtied_0040b1c0", "type": "use", "target": "INDIRECT_0040138c_186"}, {"source": "INDIRECT_004013ba_195", "type": "def", "target": "addrtied_0040b3... | {"edges": [{"source": "const_71", "type": "use", "target": "INDIRECT_004013ba_193"}, {"source": "const_0", "type": "use", "target": "INT_EQUAL_00401391_53"}, {"source": "addrtied_0040b1c0", "type": "use", "target": "INDIRECT_0040138c_184"}, {"source": "var_004013bf", "type": "use", "target": "CBRANCH_00401395_59"}, {"s... | {"edges": [{"source": "00401354", "type": "control_flow", "target": "004012c2"}, {"source": "00401354", "type": "control_flow", "target": "00401391"}, {"source": "00401354", "type": "control_flow", "target": "00401374"}, {"source": "00401374", "type": "control_flow", "target": "00401110"}, {"source": "00401374", "type"... | {"edges": [{"source": "00401354", "type": "control_flow", "target": "004012c2"}, {"source": "00401354", "type": "control_flow", "target": "00401391"}, {"source": "00401354", "type": "control_flow", "target": "00401374"}, {"source": "00401374", "type": "control_flow", "target": "00401110"}, {"source": "00401374", "type"... | null | null | [["COPY_004013c1_190", "addrtied_0040b1c0", "output"], ["const_71", "INDIRECT_004013ba_188", "input"], ["COPY_004013c1_197", "addrtied_0040b3f0", "output"], ["addrtied_0040b3f0", "INDIRECT_0040138c_193", "input"], ["addrtied_0040b1c0", "INDIRECT_004013b0_187", "input"], ["const_71", "INDIRECT_004013ba_195", "input"], [... | [["MULTIEQUAL_00401391_196", "addrtied_0040b3f0", "output"], ["INDIRECT_004013b0_192", "addrtied_0040b3f0", "output"], ["INDIRECT_004013b0_185", "addrtied_0040b1c0", "output"], ["addrtied_0040b1c0", "CALL_0040138c_45", "input"], ["unique_61440", "CBRANCH_00401372_34", "input"], ["const_16", "INDIRECT_00401361_183", "in... | {"edges": [{"source": "COPY_004013c1_190", "type": "output", "target": "addrtied_0040b1c0"}, {"source": "const_71", "type": "input", "target": "INDIRECT_004013ba_188"}, {"source": "COPY_004013c1_197", "type": "output", "target": "addrtied_0040b3f0"}, {"source": "addrtied_0040b3f0", "type": "input", "target": "INDIRECT_... | {"edges": [{"source": "MULTIEQUAL_00401391_196", "type": "output", "target": "addrtied_0040b3f0"}, {"source": "INDIRECT_004013b0_192", "type": "output", "target": "addrtied_0040b3f0"}, {"source": "INDIRECT_004013b0_185", "type": "output", "target": "addrtied_0040b1c0"}, {"source": "addrtied_0040b1c0", "type": "input", ... | 00401354 | .. | .. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.