-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuncwatch_param_util.c
65 lines (52 loc) · 1.4 KB
/
funcwatch_param_util.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <stdio.h>
#include "funcwatch.h"
#include "funcwatch_param_util.h"
funcwatch_param *getFirstNonPointer(struct funcwatch_param *pointer_param){
funcwatch_param *p = pointer_param;
while((p->flags & FW_POINTER) && p->value != NULL){
p = p->next;
}
return p;
}
funcwatch_param *get_end_of_list(funcwatch_param *param){
while(param->next != NULL)
param = param->next;
return param;
}
void funcwatch_param_initialize(funcwatch_param *param){
param->name = NULL;
param->func_name = NULL;
param->call_num = -1;
param->type_die = NULL;
param->var_die = NULL;
param->type = NULL;
param->size = 0;
param->flags = 0;
param->addr = NULL;
param->value = NULL;
param->value_float = 0;
param->next = NULL;
param->struct_level = 0;
}
Vector *get_param_of_call_id(Vector *variables, int variables_length, int call_id){
Vector *vector = variables;
for(int i =0; i< variables_length; i++){
if(vector->size > 0){
funcwatch_param *variable = vector_get(vector, 0);
if(variable->call_num == call_id){
return vector;
}
}
vector = vector + 1;
}
return NULL;
}
funcwatch_param *get_return_of_call_id(funcwatch_param *variables, int variables_length, int call_id){
for(int i =0; i< variables_length; i++){
funcwatch_param *variable = variables + i;
if(variable->call_num == call_id){
return variable;
}
}
return NULL;
}