-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.c
232 lines (173 loc) · 4.92 KB
/
list.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
//#include "list.h"
#include "definitions.h"
//static
void *xmalloc(size_t size)
{
register void *addr = malloc(size); /* Line copied from the GNU C Library documentation!
The "register" keyword is a hint to the compiler
that the variable should be kept in a processor
register, if possible. */
if (addr == NULL)
error(E_XMALLOC, ACTION_PRINTMSG_AND_EXIT);
return addr;
}
list *create_list()
{
list *newlist = xmalloc(sizeof(list));
newlist->head = NULL;
newlist->size = 0;
return newlist;
}
static
node *add_node_recursive(node *SL, ASMinstr value)
{
if (SL == NULL){
SL = xmalloc(sizeof(node));
SL->instr = value;
SL->next = NULL;
SL->branch = NULL;
return SL; // Return the address of the (new) node with the instruction "value"...
}
else
SL->next = add_node_recursive(SL->next, value);
return SL;
}
node *add_node_iterative(node *SL, ASMinstr value)
{
node *tmp = xmalloc(sizeof(node));
tmp->instr = value;
tmp->next = NULL;
tmp->branch = NULL;
if (SL == NULL)
SL = tmp;
else {
node *n;
for (n = SL; n->next != NULL; n = n->next); // now n->next == NULL
n->next = tmp;
}
return tmp;
}
/*
node* get_node_at(int index, list* L)
{
node* currentNode;
currentNode = L->head;
for(int i=0; i<index; i++)
{
currentNode = currentNode->next;
}
return currentNode;
}
*/
void add_node(list *L, ASMinstr value)
{
if (L == NULL)
L = create_list();
if (L->head != NULL)
add_node_recursive(L->head, value);
else
L->head = add_node_recursive(L->head, value);
//L->head = add_node_iterative(L->head, value);
L->size+=1;
}
node *add_node_and_get_address(list *L, ASMinstr value) // needed for intructions after labels :(
{
if (L == NULL)
L = create_list();
node *tmp;
if (L->head != NULL)
tmp = add_node_recursive(L->head, value);
else
tmp = L->head = add_node_recursive(L->head, value);
L->size+=1;
tmp = L->head; // !!
while(tmp->next != NULL)
tmp = tmp->next;
return tmp;
}
node *get_node_at(list* L, int index)
{
node* currentNode;
currentNode = L->head;
for(int i=0; i<index; i++){
currentNode = currentNode->next;
}
return currentNode;
}
static
void free_sublist(node *SL)
{
if (SL != NULL)
free_sublist(SL->next);
free(SL); // Freeing NULL is OK and "SL = NULL;" is not needed because SL is a local var.
}
void free_list(list *L)
{
if (L == NULL)
return;
free_sublist(L->head);
free(L);
}
static
void consume_sublist(node *SL, void (*callback)(ASMinstr)) // perhaps callback() should be bool
{ // with its return value ignored
if (SL != NULL){
callback(SL->instr);
consume_sublist(SL->next, callback);
}
}
void consume_list(list *L, void (*callback)(ASMinstr)) // perhaps callback() should be bool
{ // with its return value ignored
consume_sublist(L->head, callback);
}
static
void execute_sublist(node *SL, int (*callback)(ASMinstr))
{
if (SL != NULL){
if (callback(SL->instr)){
assert(SL->branch != NULL); // Branching ins. are expected to point to a valid label
execute_sublist(SL->branch, callback); // without assertions, we would stop anyway:)
}
else
execute_sublist(SL->next, callback);
}
}
void execute_list(list *L, int(*callback)(ASMinstr)) // difference: this also executes branches
{
execute_sublist(L->head, callback);
}
static
void sublist_to_array(node *SL, arrayStruct *array, long *position) /** PROBABLY NOT READY **/
{ /** ... AND NOT USEFUL **/
if (SL == NULL)
return;
array->ar[(*position)++] = SL->instr;
sublist_to_array(SL->next, array, position);
}
arrayStruct *list_to_array(list *L) /** PROBABLY NOT READY **/
{ /** ... AND NOT USEFUL (right now) **/
if (L == NULL)
return NULL;
/* dynamic array allocation! */
arrayStruct *tmp = xmalloc(sizeof(arrayStruct) + L->size*sizeof(ASMinstr));
long position = 0;
sublist_to_array(L->head, tmp, &position);
tmp->size = L->size;
return tmp;
}
static
void delete_node(list *L, int index) /* NOT YET IMPLEMENTED */
{
}
long sublist_size(node *SL)
{
if (SL == NULL)
return 0;
return sublist_size(SL->next) + 1;
}
static
void prettyprint_list(list *L) /* NOT YET IMPLEMENTED */
{
if (L == NULL) // if T empty, abort
return;
}