Compare commits
No commits in common. "c857bb68e81317b5c0755423e6ffe5ea870001e2" and "fab7d8916edf8f688508df1ad5e0801ef06da637" have entirely different histories.
c857bb68e8
...
fab7d8916e
@ -8,59 +8,37 @@ extern tlhash_t *global_names;
|
|||||||
extern char **string_list;
|
extern char **string_list;
|
||||||
extern size_t n_string_list, stringc;
|
extern size_t n_string_list, stringc;
|
||||||
|
|
||||||
// Functions from the skeleton
|
// Implementation choices, only relevant internally
|
||||||
|
static void find_globals ( void );
|
||||||
static uint64_t find_globals ( void );
|
/** @param function Function's symbol table entry
|
||||||
|
* @param root Function's root node */
|
||||||
static void bind_names ( symbol_t *function, node_t *root );
|
static void bind_names ( symbol_t *function, node_t *root );
|
||||||
|
|
||||||
// Helper functions, see description in the definition
|
/* Helper functions */
|
||||||
|
void print_global_tree(symbol_t* global);
|
||||||
|
void insert_symbol(tlhash_t *hash_table, symbol_t* symbol);
|
||||||
|
void push_scope(void);
|
||||||
|
void pop_scope(void);
|
||||||
|
|
||||||
static void print_global_tree(symbol_t* global);
|
|
||||||
static void print_string_list(void);
|
|
||||||
static void destroy_global(symbol_t* global);
|
|
||||||
static void push_scope(void);
|
|
||||||
static void pop_scope(void);
|
|
||||||
static void insert_symbol(tlhash_t *hash_table, symbol_t* symbol);
|
|
||||||
static void insert_local_to_scope(symbol_t *local);
|
|
||||||
static void insert_local_to_func(symbol_t *function, symbol_t *root);
|
|
||||||
static void insert_local_var(symbol_t *function, node_t *root);
|
|
||||||
static void collect_string(node_t *root);
|
|
||||||
static symbol_t* lookup_var(symbol_t *function, char* var);
|
|
||||||
|
|
||||||
// Local "global" variables
|
|
||||||
static const char *symbol_names[4] = {
|
|
||||||
"GLOBAL_VAR",
|
|
||||||
"FUNCTION",
|
|
||||||
"PARAMETER",
|
|
||||||
"LOCAL_VAR"
|
|
||||||
};
|
|
||||||
static uint64_t no_scopes, cur_scope_depth;
|
static uint64_t no_scopes, cur_scope_depth;
|
||||||
static tlhash_t **scopes;
|
static tlhash_t **scopes;
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gather information and create a symbol table.
|
|
||||||
*
|
|
||||||
* Used in vslc.c
|
|
||||||
*/
|
|
||||||
void
|
void
|
||||||
create_symbol_table ( void )
|
create_symbol_table ( void )
|
||||||
{
|
{
|
||||||
|
|
||||||
// Initialize string array
|
// Initialize string array
|
||||||
n_string_list = DEFAULT_STRING_LIST_SIZE;
|
string_list = malloc(n_string_list * sizeof(char*));
|
||||||
string_list = malloc(n_string_list * sizeof(char*));
|
n_string_list = DEFAULT_STRING_LIST_SIZE;
|
||||||
stringc = 0;
|
stringc = 0;
|
||||||
|
|
||||||
// Initialize scope array
|
no_scopes = DEFAULT_NO_SCOPES;
|
||||||
no_scopes = DEFAULT_NO_SCOPES;
|
|
||||||
scopes = malloc(no_scopes * sizeof(tlhash_t));
|
|
||||||
cur_scope_depth = 0;
|
cur_scope_depth = 0;
|
||||||
|
scopes = malloc(no_scopes * sizeof(tlhash_t));
|
||||||
|
|
||||||
// Traverse the root node for globals
|
find_globals();
|
||||||
uint64_t no_globals = find_globals();
|
|
||||||
|
uint64_t no_globals = tlhash_size(global_names);
|
||||||
// Prepare a temp list of globals and fetch all globals
|
|
||||||
symbol_t **global_list = malloc(no_globals * sizeof(symbol_t));
|
symbol_t **global_list = malloc(no_globals * sizeof(symbol_t));
|
||||||
tlhash_values(global_names, (void **)global_list );
|
tlhash_values(global_names, (void **)global_list );
|
||||||
|
|
||||||
@ -70,50 +48,18 @@ create_symbol_table ( void )
|
|||||||
if (global_list[g]->type == SYM_FUNCTION)
|
if (global_list[g]->type == SYM_FUNCTION)
|
||||||
bind_names(global_list[g], global_list[g]->node);
|
bind_names(global_list[g], global_list[g]->node);
|
||||||
}
|
}
|
||||||
// Free the temp list
|
|
||||||
free(global_list);
|
free(global_list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
const char *symbol_names[4] = {"GLOBAL_VAR", "FUNCTION", "PARAMETER", "LOCAL_VAR"};
|
||||||
* Prints the symbol table and the string array
|
void
|
||||||
*
|
|
||||||
* Used in vslc.c
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
print_symbol_table ( void )
|
|
||||||
{
|
|
||||||
/* Get the number of symbols, size up a temporary list and fill it */
|
|
||||||
uint64_t no_globals = tlhash_size(global_names);
|
|
||||||
symbol_t **global_list = malloc(no_globals * sizeof(symbol_t));
|
|
||||||
tlhash_values(global_names, (void **)global_list );
|
|
||||||
|
|
||||||
/* Iterate over the temporary list, printing entries */
|
|
||||||
for (uint64_t g = 0; g < no_globals; g++ )
|
|
||||||
// Print the tree structure for each global
|
|
||||||
print_global_tree(global_list[g]);
|
|
||||||
|
|
||||||
free(global_list);
|
|
||||||
|
|
||||||
// Print strings
|
|
||||||
print_string_list();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Prins the tree of a global
|
|
||||||
*
|
|
||||||
* @param global pointer to the global to be printed
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
print_global_tree(symbol_t* global)
|
print_global_tree(symbol_t* global)
|
||||||
{
|
{
|
||||||
// Check if null ptr
|
|
||||||
if (!global)
|
if (!global)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Print global root
|
printf("─%s(%s, nparams=%ld, seq=%ld, node=%p)\n",
|
||||||
printf("─%s: %-16s [nparams=%2ld, seq=%2ld, node=%p]\n",
|
|
||||||
symbol_names[global->type],
|
symbol_names[global->type],
|
||||||
global->name,
|
global->name,
|
||||||
global->nparms,
|
global->nparms,
|
||||||
@ -121,61 +67,83 @@ print_global_tree(symbol_t* global)
|
|||||||
global->node
|
global->node
|
||||||
);
|
);
|
||||||
|
|
||||||
// If the global does not have params or locals, return
|
|
||||||
if (!global->nparms && !global->locals)
|
if (!global->nparms && !global->locals)
|
||||||
{putchar('\n');return;}
|
{putchar('\n');return;}
|
||||||
|
|
||||||
// Need to fetch the whole size, since nparams
|
|
||||||
// only count the params, not all locals
|
|
||||||
uint64_t no_locals = tlhash_size(global->locals);
|
uint64_t no_locals = tlhash_size(global->locals);
|
||||||
symbol_t **locals_list = malloc(no_locals * sizeof(symbol_t));
|
symbol_t **locals_list = malloc(no_locals * sizeof(symbol_t));
|
||||||
tlhash_values(global->locals, (void **)locals_list );
|
tlhash_values(global->locals, (void **)locals_list );
|
||||||
// Go through all locals
|
|
||||||
for (int l = 0; l < no_locals; l++)
|
for (int l = 0; l < no_locals; l++)
|
||||||
{ // Do some simple sorting, so seq num is in order
|
{
|
||||||
for (int ll = 0; ll < no_locals; ll++)
|
printf(" %s─%s(%s, seq=%ld, node=%p)\n",
|
||||||
{
|
(l < (no_locals - 1)) ? "├" : "└",
|
||||||
if (locals_list[ll]->seq == l)
|
symbol_names[locals_list[l]->type],
|
||||||
{
|
locals_list[l]->name,
|
||||||
printf(" %s─[%s]: %-22s\t[seq=%2ld, node=%p]\n",
|
locals_list[l]->seq,
|
||||||
(l < (no_locals - 1)) ? "├" : "└",
|
locals_list[l]->node
|
||||||
symbol_names[locals_list[ll]->type],
|
);
|
||||||
locals_list[ll]->name,
|
|
||||||
locals_list[ll]->seq,
|
|
||||||
locals_list[ll]->node
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
putchar('\n');
|
putchar('\n');
|
||||||
free(locals_list);
|
free(locals_list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
/**
|
|
||||||
* Prints the array of strings
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
print_string_list(void)
|
print_string_list(void)
|
||||||
{ // Print out all the collected strings
|
{
|
||||||
printf("─STRINGS [%ld]\n", stringc);
|
printf("─STRINGS [%ld]\n", stringc);
|
||||||
for (uint64_t i = 0; i < stringc; i++)
|
for (uint64_t i = 0; i < stringc; i++)
|
||||||
printf(" %s─[%ld]: %s\n",
|
printf(" %s─[%ld]: %s\n",
|
||||||
(i < (stringc - 1)) ? "├" : "└",
|
(i < (stringc - 1)) ? "├" : "└",
|
||||||
i,
|
i, string_list[i]
|
||||||
string_list[i]
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
void
|
||||||
* Destroys all the dynamicly allocated memory and all the hash tables.
|
print_symbol_table ( void )
|
||||||
* Frees up the array of strings as well.
|
{
|
||||||
*
|
/* TODO: output its contents */
|
||||||
* Used in vslc.c
|
/* Get the number of symbols, size up a temporary list and fill it */
|
||||||
*/
|
uint64_t no_globals = tlhash_size(global_names);
|
||||||
|
symbol_t **global_list = malloc(no_globals * sizeof(symbol_t));
|
||||||
|
tlhash_values(global_names, (void **)global_list );
|
||||||
|
|
||||||
|
/* Iterate over the temporary list, printing entries */
|
||||||
|
for (uint64_t g = 0; g < no_globals; g++ )
|
||||||
|
{
|
||||||
|
//printf("global: %s\n", global_list[g]->name );
|
||||||
|
print_global_tree(global_list[g]);
|
||||||
|
}
|
||||||
|
free(global_list);
|
||||||
|
|
||||||
|
print_string_list();
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
destroy_global(symbol_t* global)
|
||||||
|
{
|
||||||
|
if (!global)
|
||||||
|
return;
|
||||||
|
if (!global->locals)
|
||||||
|
{
|
||||||
|
free(global);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint64_t no_locals = tlhash_size(global->locals);
|
||||||
|
symbol_t **locals_list = malloc(no_locals * sizeof(symbol_t));
|
||||||
|
tlhash_values(global->locals, (void **)locals_list );
|
||||||
|
|
||||||
|
for (int l = 0; l < no_locals; l++)
|
||||||
|
free(locals_list[l]);
|
||||||
|
|
||||||
|
tlhash_finalize(global->locals);
|
||||||
|
free(global->locals);
|
||||||
|
free(global);
|
||||||
|
|
||||||
|
free(locals_list);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
destroy_symbol_table ( void )
|
destroy_symbol_table ( void )
|
||||||
{
|
{
|
||||||
@ -213,55 +181,23 @@ destroy_symbol_table ( void )
|
|||||||
free(global_list);
|
free(global_list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
/**
|
insert_symbol(tlhash_t *hash_table, symbol_t* symbol)
|
||||||
* Destroys the supplied global symbol by
|
|
||||||
* finalizing each of the local tables
|
|
||||||
*
|
|
||||||
* @param global pointer to the global symbol to be destroyed
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
destroy_global(symbol_t* global)
|
|
||||||
{
|
{
|
||||||
if (!global)
|
tlhash_insert(hash_table, symbol->name, strlen(symbol->name), symbol);
|
||||||
return;
|
|
||||||
if (!global->locals)
|
|
||||||
{
|
|
||||||
free(global);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint64_t no_locals = tlhash_size(global->locals);
|
|
||||||
symbol_t **locals_list = malloc(no_locals * sizeof(symbol_t));
|
|
||||||
tlhash_values(global->locals, (void **)locals_list );
|
|
||||||
|
|
||||||
for (int l = 0; l < no_locals; l++)
|
|
||||||
free(locals_list[l]);
|
|
||||||
|
|
||||||
tlhash_finalize(global->locals);
|
|
||||||
free(global->locals);
|
|
||||||
free(global);
|
|
||||||
|
|
||||||
free(locals_list);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
/**
|
|
||||||
* Goes trough the root node and finds all global variables and functions
|
|
||||||
*
|
|
||||||
* @return Returns the number of globals found (functions + variables)
|
|
||||||
*/
|
|
||||||
static uint64_t
|
|
||||||
find_globals ( void )
|
find_globals ( void )
|
||||||
{
|
{
|
||||||
tlhash_init(global_names = malloc(sizeof(tlhash_t)), GLOBAL_BUCKET_SIZE);
|
tlhash_init(global_names = malloc(sizeof(tlhash_t)), GLOBAL_BUCKET_SIZE);
|
||||||
|
|
||||||
uint64_t no_functions = 0, no_global_vars = 0;
|
uint64_t no_functions = 0;
|
||||||
node_t *global_list = root;
|
node_t *global_list = root;
|
||||||
|
|
||||||
// Check if not nullptr
|
// Check if not nullptr
|
||||||
if (!global_list)
|
if (!global_list)
|
||||||
return 0;
|
return;
|
||||||
|
|
||||||
symbol_t* global_symbol;
|
symbol_t* global_symbol;
|
||||||
for (uint64_t global_i = 0; global_i < global_list->n_children; global_i++)
|
for (uint64_t global_i = 0; global_i < global_list->n_children; global_i++)
|
||||||
@ -284,7 +220,6 @@ find_globals ( void )
|
|||||||
.locals = NULL
|
.locals = NULL
|
||||||
};
|
};
|
||||||
insert_symbol(global_names, global_symbol);
|
insert_symbol(global_names, global_symbol);
|
||||||
no_global_vars++;
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case FUNCTION:
|
case FUNCTION:
|
||||||
@ -341,106 +276,15 @@ find_globals ( void )
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return no_functions + no_global_vars;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
/**
|
|
||||||
* Inserts a symbol into a hash table, key is defined in the name field in the symbol supplied.
|
|
||||||
*
|
|
||||||
* @param hash_table pointer to the hash table the symbol is inserted into
|
|
||||||
* @param symbol pointer to the symbol to be inserted
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
insert_symbol(tlhash_t *hash_table, symbol_t* symbol)
|
|
||||||
{
|
|
||||||
tlhash_insert(hash_table, symbol->name, strlen(symbol->name), symbol);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Traverse a node root, and find all variables and strings
|
|
||||||
*
|
|
||||||
* @param function pointer to the current function
|
|
||||||
* @param root pointer to the root node
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
bind_names ( symbol_t *function, node_t *root )
|
|
||||||
{ // NULL check
|
|
||||||
if (!function)
|
|
||||||
return;
|
|
||||||
if (!root)
|
|
||||||
return;
|
|
||||||
|
|
||||||
// Can't declare variables inside switch unless
|
|
||||||
// it is in a new scope
|
|
||||||
node_t *declarations;
|
|
||||||
// We want do top to bottom traverse, so do not
|
|
||||||
// call recusivly unless we need to go deeper
|
|
||||||
switch (root->type)
|
|
||||||
{
|
|
||||||
// If new BLOCK start, push the scope and recurse from here.
|
|
||||||
case BLOCK:
|
|
||||||
push_scope();
|
|
||||||
for (uint64_t i = 0; i < root->n_children; i++)
|
|
||||||
bind_names(function, root->children[i]);
|
|
||||||
pop_scope();
|
|
||||||
break;
|
|
||||||
|
|
||||||
// If DECLARATION_LIST, find all the identifiers
|
|
||||||
// and insert local into scope and function
|
|
||||||
case DECLARATION_LIST:
|
|
||||||
if (!root->children[0])
|
|
||||||
break;
|
|
||||||
|
|
||||||
declarations = root->children[0];
|
|
||||||
for (uint64_t i = 0; i < declarations->n_children; i++)
|
|
||||||
// Insert each of the local variables in the declaration
|
|
||||||
insert_local_var(function, declarations->children[i]);
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
// If IDENTIFIER_DATA, look up the identifier in all the scopes.
|
|
||||||
// If not found (NULL), crash the compiler with a somewhat helpful message.
|
|
||||||
case IDENTIFIER_DATA:
|
|
||||||
if (!root->data)
|
|
||||||
break;
|
|
||||||
|
|
||||||
if (!(root->entry = lookup_var(function, root->data)))
|
|
||||||
{
|
|
||||||
ERRPRT("Could not find %s in scope!\n", (char*)root->data)
|
|
||||||
exit(EXIT_FAILURE);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
// If STRING_DATA, collect the string and point the
|
|
||||||
// data in the corresponding node to the array index
|
|
||||||
case STRING_DATA:
|
|
||||||
collect_string(root);
|
|
||||||
break;
|
|
||||||
|
|
||||||
// If none of the above, go deeper if possible.
|
|
||||||
default:
|
|
||||||
for (uint64_t i = 0; i < root->n_children; i++)
|
|
||||||
bind_names(function, root->children[i]);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Pushes a new hash table to the scope stack.
|
|
||||||
*
|
|
||||||
* Increases the size of the stack if too small.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
push_scope(void)
|
push_scope(void)
|
||||||
{
|
{
|
||||||
// Allocate memory for the hash table and initialize
|
|
||||||
scopes[cur_scope_depth] = malloc(sizeof(tlhash_t));
|
scopes[cur_scope_depth] = malloc(sizeof(tlhash_t));
|
||||||
tlhash_init(scopes[cur_scope_depth++], LOCAL_BUCKET_SIZE);
|
tlhash_init(scopes[cur_scope_depth++], LOCAL_BUCKET_SIZE);
|
||||||
|
|
||||||
// Grow the amount of scopes if not enough
|
// Grow the amount of scopes
|
||||||
if (cur_scope_depth >= no_scopes)
|
if (cur_scope_depth >= no_scopes)
|
||||||
{
|
{
|
||||||
no_scopes *= 2;
|
no_scopes *= 2;
|
||||||
@ -454,33 +298,33 @@ push_scope(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
/**
|
|
||||||
* Pops the dynamicy allocated hash table for the current scope depth
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
pop_scope(void)
|
pop_scope(void)
|
||||||
{
|
{
|
||||||
tlhash_finalize(scopes[--cur_scope_depth]);
|
tlhash_finalize(scopes[--cur_scope_depth]);
|
||||||
free(scopes[cur_scope_depth]);
|
free(scopes[cur_scope_depth]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
insert_local_to_scope(symbol_t *local)
|
||||||
|
{
|
||||||
|
insert_symbol(scopes[cur_scope_depth - 1], local);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
void
|
||||||
* Allocates and inserts a local symbol into
|
insert_local_to_func(symbol_t *function, symbol_t *root)
|
||||||
* the scope stack and into the function
|
{
|
||||||
*
|
tlhash_insert(
|
||||||
* @param function pointer to the current function
|
function->locals, //! Insert local to the function var table
|
||||||
* @param root pointer to the root node for the symbol
|
&root->seq, //! The key is a number, unique, strictly growing
|
||||||
*/
|
sizeof(root->seq), //! Size of key
|
||||||
static void
|
root //! The local symbol
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
insert_local_var(symbol_t *function, node_t *root)
|
insert_local_var(symbol_t *function, node_t *root)
|
||||||
{ // Null ptr check
|
{
|
||||||
if (!root->data)
|
|
||||||
return;
|
|
||||||
|
|
||||||
// Get the sequence num, is the size
|
|
||||||
size_t sequence = tlhash_size(function->locals);
|
size_t sequence = tlhash_size(function->locals);
|
||||||
|
|
||||||
symbol_t *variable = malloc(sizeof(symbol_t));
|
symbol_t *variable = malloc(sizeof(symbol_t));
|
||||||
@ -496,58 +340,16 @@ insert_local_var(symbol_t *function, node_t *root)
|
|||||||
insert_local_to_func(function, variable);
|
insert_local_to_func(function, variable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
/**
|
|
||||||
* Inserts a symbol to the top most scope in stack
|
|
||||||
*
|
|
||||||
* @param local pointer to the local to be inserted
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
insert_local_to_scope(symbol_t *local)
|
|
||||||
{
|
|
||||||
insert_symbol(scopes[cur_scope_depth - 1], local);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Insert local symbol to the functions table of local variables
|
|
||||||
* uses the seq num as key as this is strictly growing
|
|
||||||
*
|
|
||||||
* @param function pointer to the function to insert the symbol
|
|
||||||
* @param local pointer to the symbol to be inserted in the table
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
insert_local_to_func(symbol_t *function, symbol_t *local)
|
|
||||||
{
|
|
||||||
tlhash_insert(
|
|
||||||
function->locals, //! Insert local to the function var table
|
|
||||||
&local->seq, //! The key is a number, unique, strictly growing
|
|
||||||
sizeof(local->seq), //! Size of key
|
|
||||||
local //! The local symbol
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Collects strings to the string array and
|
|
||||||
* points the data in the associated node
|
|
||||||
* to the array position
|
|
||||||
*
|
|
||||||
* @param root pointer to the root node of the string
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
collect_string(node_t *root)
|
collect_string(node_t *root)
|
||||||
{ // Null ptr check
|
{
|
||||||
if (!root->data)
|
if (!root->data)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Get the string and allocate room for array index of string
|
|
||||||
string_list[stringc] = root->data;
|
string_list[stringc] = root->data;
|
||||||
root->data = malloc(sizeof(size_t));
|
root->data = malloc(sizeof(size_t));
|
||||||
// Set the data ptr
|
|
||||||
*((size_t*)root->data) = stringc++;
|
*((size_t*)root->data) = stringc++;
|
||||||
|
|
||||||
// Grow string array if nessecary
|
|
||||||
if (stringc >= n_string_list)
|
if (stringc >= n_string_list)
|
||||||
{
|
{
|
||||||
n_string_list *= 2;
|
n_string_list *= 2;
|
||||||
@ -561,16 +363,6 @@ collect_string(node_t *root)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Looks up a variable identifier in all the scopes.
|
|
||||||
* Start with the scopes, then the parameters and
|
|
||||||
* the the globals
|
|
||||||
*
|
|
||||||
* @param function pointer to the function
|
|
||||||
* @param var identifier to the variable
|
|
||||||
* @return Returns the pointer to the "closest" matched identifier. NULL if not found.
|
|
||||||
*/
|
|
||||||
static symbol_t*
|
static symbol_t*
|
||||||
lookup_var(symbol_t *function, char* var)
|
lookup_var(symbol_t *function, char* var)
|
||||||
{
|
{
|
||||||
@ -600,3 +392,57 @@ lookup_var(symbol_t *function, char* var)
|
|||||||
// If nothing is found, return NULL
|
// If nothing is found, return NULL
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
bind_names ( symbol_t *function, node_t *root )
|
||||||
|
{
|
||||||
|
if (!function)
|
||||||
|
return;
|
||||||
|
if (!root)
|
||||||
|
return;
|
||||||
|
|
||||||
|
// Can't declare variables inside switch unless
|
||||||
|
// it is in a new scope
|
||||||
|
node_t *declarations;
|
||||||
|
// We want do top to bottom traverse, so do not
|
||||||
|
// call recusivly unless we need to go deeper
|
||||||
|
switch (root->type)
|
||||||
|
{
|
||||||
|
case BLOCK:
|
||||||
|
push_scope();
|
||||||
|
for (uint64_t i = 0; i < root->n_children; i++)
|
||||||
|
bind_names(function, root->children[i]);
|
||||||
|
pop_scope();
|
||||||
|
break;
|
||||||
|
case DECLARATION_LIST:
|
||||||
|
if (!root->children[0])
|
||||||
|
break;
|
||||||
|
|
||||||
|
declarations = root->children[0];
|
||||||
|
for (uint64_t i = 0; i < declarations->n_children; i++)
|
||||||
|
// Insert each of the local variables in the declaration
|
||||||
|
insert_local_var(function, declarations->children[i]);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case IDENTIFIER_DATA:
|
||||||
|
if (!root->data)
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (!(root->entry = lookup_var(function, root->data)))
|
||||||
|
{
|
||||||
|
ERRPRT("Could not find %s in scope!\n", (char*)root->data)
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case STRING_DATA:
|
||||||
|
collect_string(root);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
for (uint64_t i = 0; i < root->n_children; i++)
|
||||||
|
bind_names(function, root->children[i]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -380,6 +380,9 @@ simplify_tree ( node_t **simplified, node_t *root )
|
|||||||
if (!root)
|
if (!root)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
//for (int i = 0; i < root->n_children; i++)
|
||||||
|
// simplify_tree(&root->children[i], root->children[i]);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Each of the functions do their operations recursivly.
|
Each of the functions do their operations recursivly.
|
||||||
This opens up for a lot more flexibility, like removing
|
This opens up for a lot more flexibility, like removing
|
||||||
|
@ -6,19 +6,19 @@
|
|||||||
|
|
||||||
/* Global state */
|
/* Global state */
|
||||||
|
|
||||||
node_t *root; // Syntax tree
|
node_t *root; // Syntax tree
|
||||||
tlhash_t *global_names; // Symbol table
|
tlhash_t *global_names; // Symbol table
|
||||||
char **string_list; // List of strings in the source
|
char **string_list; // List of strings in the source
|
||||||
size_t n_string_list = 8; // Initial string list capacity (grow on demand)
|
size_t n_string_list = 8; // Initial string list capacity (grow on demand)
|
||||||
size_t stringc = 0; // Initial string count
|
size_t stringc = 0; // Initial string count
|
||||||
|
|
||||||
/* Command line option parsing for the main function */
|
/* Command line option parsing for the main function */
|
||||||
static void options ( int argc, char **argv );
|
static void options ( int argc, char **argv );
|
||||||
bool
|
bool
|
||||||
print_full_tree = false,
|
print_full_tree = false,
|
||||||
print_simplified_tree = false,
|
print_simplified_tree = false,
|
||||||
print_symbol_table_contents = false,
|
print_symbol_table_contents = false,
|
||||||
new_print_style = true;
|
new_print_style = true;
|
||||||
|
|
||||||
|
|
||||||
/* Entry point */
|
/* Entry point */
|
||||||
@ -27,8 +27,8 @@ main ( int argc, char **argv )
|
|||||||
{
|
{
|
||||||
options ( argc, argv );
|
options ( argc, argv );
|
||||||
|
|
||||||
yyparse(); // Generated from grammar/bison, constructs syntax tree
|
yyparse(); // Generated from grammar/bison, constructs syntax tree
|
||||||
yylex_destroy(); // Free heap used by flex
|
yylex_destroy(); // Free heap used by flex
|
||||||
|
|
||||||
if ( print_full_tree )
|
if ( print_full_tree )
|
||||||
print_syntax_tree ();
|
print_syntax_tree ();
|
||||||
@ -36,7 +36,7 @@ main ( int argc, char **argv )
|
|||||||
if ( print_simplified_tree )
|
if ( print_simplified_tree )
|
||||||
print_syntax_tree ();
|
print_syntax_tree ();
|
||||||
|
|
||||||
create_symbol_table (); // In ir.c
|
create_symbol_table (); // In ir.c
|
||||||
if ( print_symbol_table_contents )
|
if ( print_symbol_table_contents )
|
||||||
print_symbol_table();
|
print_symbol_table();
|
||||||
|
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
from pygments.lexer import RegexLexer
|
|
||||||
from pygments.token import Whitespace, Comment, Keyword, Operator, Number, Name, String, Generic
|
|
||||||
|
|
||||||
class VSLLexer(RegexLexer):
|
|
||||||
name = "VSL"
|
|
||||||
aliases = ["vsl"]
|
|
||||||
filenames = ["*.vsl"]
|
|
||||||
|
|
||||||
tokens = {
|
|
||||||
"root": [
|
|
||||||
(r"[\ \t\v\r\n]+", Whitespace),
|
|
||||||
(r"\/\/[^\n]+", Comment),
|
|
||||||
(r"func|print|return|continue|if|then|else|while|do|begin|end|var", Keyword),
|
|
||||||
(r"\^|\||:|=|\+|-|\*|\/|<|>|&", Operator),
|
|
||||||
(r"[0-9]+", Number.Integer),
|
|
||||||
(r"[A-Za-z_][0-9A-Za-z_]*", Name),
|
|
||||||
(r"\"([^\"\n]|\\\")*\"", String),
|
|
||||||
(r".", Generic),
|
|
||||||
]
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user