-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.c
50 lines (41 loc) · 1.17 KB
/
environment.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <err.h>
#include "environment.h"
/* A data structure that maps variable names (i.e. strings) to offsets
* (integers) in the current stack frame.
*/
Environment *environment_new() {
Environment *env = malloc(sizeof(Environment));
env->size = 0;
env->items = NULL;
return env;
}
void environment_set_offset(Environment *env, char *var_name, int offset) {
env->size++;
env->items = realloc(env->items, env->size * sizeof(VarWithOffset));
VarWithOffset *vwo = &env->items[env->size - 1];
// TODO: use a copy of the string instead
vwo->var_name = var_name;
vwo->offset = offset;
}
/* Return the offset from %ebp of variable VAR_NAME.
*/
int environment_get_offset(Environment *env, char *var_name) {
VarWithOffset vwo;
for (size_t i = 0; i < env->size; i++) {
vwo = env->items[i];
if (strcmp(vwo.var_name, var_name) == 0) {
return vwo.offset;
}
}
warnx("Could not find %s in environment", var_name);
return -1;
}
void environment_free(Environment *env) {
if (env != NULL) {
free(env->items);
free(env);
}
}