blob: 23cd6188f082b7288297d8c24490b63426ca2163 (
plain)
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
|
/**
* UPEM / Compilation / Projet
* Pacien TRAN-GIRARD, Adam NAILI
*/
#ifndef __SYMBOL_TABLE_H__
#define __SYMBOL_TABLE_H__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#define MAXNAME 32
#define MAXSYMBOLS 256
#define MAXFUNCTIONS 256
typedef enum scope {
GLOBAL,
LOCAL
} Scope;
typedef enum type {
INT,
CHAR,
VOID_T
} Type;
typedef struct {
char name[MAXNAME];
int type;
int addr;
bool read_only;
} STentry;
typedef struct {
STentry entries[MAXSYMBOLS];
int maxsize;
int size;
} SymbolTable;
typedef struct {
char name[MAXNAME];
int return_type;
int nb_parameters;
} FTentry;
typedef struct {
FTentry entries[MAXFUNCTIONS];
int maxsize;
int size;
} FunctionTable;
void fun_add(const char name[], int rt_type, int nb_par);
void fun_display_table();
int fun_lookup(const char name[], int nb_param);
void glo_addVar(const char name[], int type);
void glo_addConst(const char name[]);
int glo_lookup(const char name[]);
int glo_get_addr(const char name[]);
void glo_display_table();
void loc_addVar(const char name[], int type);
void loc_addConst(const char name[]);
int loc_lookup(const char name[]);
int loc_get_addr(const char name[]);
void loc_display_table();
void loc_clean_table();
void check_expected_type(int type_to_check, int type_expected);
bool is_read_only(const char name[], Scope scope);
#endif
|