docs and some small changes
This commit is contained in:
parent
bc5b48ec82
commit
182d4bbb90
|
@ -518,7 +518,7 @@ Token aa_func10(char lexeme[]) {
|
||||||
t.code = INL_T;
|
t.code = INL_T;
|
||||||
new_olval = atool(lexeme);
|
new_olval = atool(lexeme);
|
||||||
|
|
||||||
if (new_olval < 0 || new_olval > 32767) {
|
if (new_olval < 0 || new_olval > PLT_SHRT_MAX) {
|
||||||
t = aa_table[ES](lexeme);
|
t = aa_table[ES](lexeme);
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
106
stable.c
106
stable.c
|
@ -17,9 +17,11 @@ extern STD sym_table;
|
||||||
/* Create a symbol table
|
/* Create a symbol table
|
||||||
* Author: Victor Fernandes, 040772243
|
* Author: Victor Fernandes, 040772243
|
||||||
* Version: 0.0.1
|
* Version: 0.0.1
|
||||||
* Called functions:
|
* Called functions: malloc, b_create, free
|
||||||
* Parameters: int - size of the symbol table
|
* Parameters:
|
||||||
* Return value: The symbol table descriptor
|
int - size of the symbol table
|
||||||
|
* Return value:
|
||||||
|
STD - The symbol table
|
||||||
* Algorithm:
|
* Algorithm:
|
||||||
*/
|
*/
|
||||||
STD st_create(int st_size){
|
STD st_create(int st_size){
|
||||||
|
@ -44,9 +46,15 @@ STD st_create(int st_size){
|
||||||
/* Install a new entry in the symbol table
|
/* Install a new entry in the symbol table
|
||||||
* Author: Victor Fernandes, 040772243
|
* Author: Victor Fernandes, 040772243
|
||||||
* Version: 0.0.1
|
* Version: 0.0.1
|
||||||
* Called functions:
|
* Called functions: st_lookup, b_setmark, b_size, b_addc, b_rflag, st_incoffset
|
||||||
* Parameters:
|
* Parameters:
|
||||||
|
STD - The symbol table
|
||||||
|
char - The lexeme to be stored
|
||||||
|
char - the type of the lexeme
|
||||||
|
int - the line in the source file where the lexeme was found
|
||||||
* Return value:
|
* Return value:
|
||||||
|
int - the element offset of where the symbol table is pointing to
|
||||||
|
-1 if an internal error occurs
|
||||||
* Algorithm:
|
* Algorithm:
|
||||||
*/
|
*/
|
||||||
int st_install(STD sym_table, char *lexeme, char type, int line){
|
int st_install(STD sym_table, char *lexeme, char type, int line){
|
||||||
|
@ -82,15 +90,15 @@ int st_install(STD sym_table, char *lexeme, char type, int line){
|
||||||
|
|
||||||
switch (type){
|
switch (type){
|
||||||
case 'I': /* Integer type */
|
case 'I': /* Integer type */
|
||||||
sym_table.pstvr[sym_table.st_offset].status_field != INT_MASK;
|
sym_table.pstvr[sym_table.st_offset].status_field |= INT_MASK;
|
||||||
sym_table.pstvr[sym_table.st_offset].i_value.int_val = 0;
|
sym_table.pstvr[sym_table.st_offset].i_value.int_val = 0;
|
||||||
break;
|
break;
|
||||||
case 'F': /* Floating point type */
|
case 'F': /* Floating point type */
|
||||||
sym_table.pstvr[sym_table.st_offset].status_field != FLT_MASK;
|
sym_table.pstvr[sym_table.st_offset].status_field |= FLT_MASK;
|
||||||
sym_table.pstvr[sym_table.st_offset].i_value.int_val = 0.0f;
|
sym_table.pstvr[sym_table.st_offset].i_value.int_val = 0.0f;
|
||||||
break;
|
break;
|
||||||
case 'S': /* String type */
|
case 'S': /* String type */
|
||||||
sym_table.pstvr[sym_table.st_offset].status_field != STR_MASK;
|
sym_table.pstvr[sym_table.st_offset].status_field |= STR_MASK;
|
||||||
sym_table.pstvr[sym_table.st_offset].i_value.str_offset = -1;
|
sym_table.pstvr[sym_table.st_offset].i_value.str_offset = -1;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@ -112,6 +120,13 @@ int st_install(STD sym_table, char *lexeme, char type, int line){
|
||||||
/* Look up the lexeme string in the symbol table's buffer
|
/* Look up the lexeme string in the symbol table's buffer
|
||||||
* Author: Victor Fernandes
|
* Author: Victor Fernandes
|
||||||
* Version: 0.1
|
* Version: 0.1
|
||||||
|
* Called functions: b_setmark, strcmp, strlen
|
||||||
|
* Parameters:
|
||||||
|
STD - The symbol table
|
||||||
|
char - The lexeme to be searched
|
||||||
|
* Return value:
|
||||||
|
int - the element offset index in the symbol table
|
||||||
|
-1 if no element was found
|
||||||
*/
|
*/
|
||||||
int st_lookup(STD sym_table, char *lexeme){
|
int st_lookup(STD sym_table, char *lexeme){
|
||||||
int idx, i; /* idx: index locatio for symbol table, i: increment counter*/
|
int idx, i; /* idx: index locatio for symbol table, i: increment counter*/
|
||||||
|
@ -127,10 +142,16 @@ int st_lookup(STD sym_table, char *lexeme){
|
||||||
return -1; /* Found nothing */
|
return -1; /* Found nothing */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Change the data type indicator of the variable entry located
|
/* Change the data type indicator of the variable entry located in vid_offset.
|
||||||
in vid_offset.
|
|
||||||
* Author: Victor Fernandes
|
* Author: Victor Fernandes
|
||||||
* Version: 0.1
|
* Version: 0.1
|
||||||
|
* Called functions: N/A
|
||||||
|
* Parameters:
|
||||||
|
STD - The symbol table
|
||||||
|
int - the offset location of the VID
|
||||||
|
char - the new type of the VID
|
||||||
|
* Return value:
|
||||||
|
1 ifchange successful, -1 if no change was made or internal error
|
||||||
*/
|
*/
|
||||||
int st_change_type(STD sym_table, int vid_offset, char v_type) {
|
int st_change_type(STD sym_table, int vid_offset, char v_type) {
|
||||||
|
|
||||||
|
@ -141,17 +162,18 @@ int st_change_type(STD sym_table, int vid_offset, char v_type) {
|
||||||
Note: Can separate the statements to set the update flag at the
|
Note: Can separate the statements to set the update flag at the
|
||||||
end, but this resets AND updates at once
|
end, but this resets AND updates at once
|
||||||
*/
|
*/
|
||||||
sym_table.pstvr[vid_offset].status_field = sym_table.pstvr[vid_offset].status_field & DFT_U_MASK;
|
/*sym_table.pstvr[vid_offset].status_field = sym_table.pstvr[vid_offset].status_field & DFT_U_MASK;*/
|
||||||
|
sym_table.pstvr[vid_offset].status_field &= DFT_U_MASK;
|
||||||
|
|
||||||
/*TODO: Ask if re-setting flags and "bailing out" is spec breaking, and
|
/*TODO: Ask if re-setting flags and "bailing out" is spec breaking, and
|
||||||
if flags should only be set if v_type is valid */
|
if flags should only be set if v_type is valid */
|
||||||
|
|
||||||
switch (v_type){
|
switch (v_type){
|
||||||
case 'I': /* Integer type */
|
case 'I': /* Integer type */
|
||||||
sym_table.pstvr[sym_table.st_offset].status_field != INT_MASK;
|
sym_table.pstvr[sym_table.st_offset].status_field |= INT_MASK;
|
||||||
break;
|
break;
|
||||||
case 'F': /* Floating point type */
|
case 'F': /* Floating point type */
|
||||||
sym_table.pstvr[sym_table.st_offset].status_field != FLT_MASK;
|
sym_table.pstvr[sym_table.st_offset].status_field |= FLT_MASK;
|
||||||
break;
|
break;
|
||||||
case 'S': /* String type, do nothing as it cannot be changed */
|
case 'S': /* String type, do nothing as it cannot be changed */
|
||||||
break;
|
break;
|
||||||
|
@ -165,10 +187,12 @@ int st_change_type(STD sym_table, int vid_offset, char v_type) {
|
||||||
/* Change the i_value of the variable located by vid_offset to new Value
|
/* Change the i_value of the variable located by vid_offset to new Value
|
||||||
* Author: Victor Fernandes, 040772243
|
* Author: Victor Fernandes, 040772243
|
||||||
* Version: 0.0.1
|
* Version: 0.0.1
|
||||||
* Called functions:
|
* Called functions: N/A
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* Return value:
|
STD - The symbol table
|
||||||
* Algorithm:
|
int - the offset location of the VID
|
||||||
|
Value - the new value of the VID
|
||||||
|
* Return value: the offset location of the VID
|
||||||
*/
|
*/
|
||||||
int st_change_value(STD sym_table, int vid_offset, Value value){
|
int st_change_value(STD sym_table, int vid_offset, Value value){
|
||||||
sym_table.pstvr[vid_offset].i_value = value;
|
sym_table.pstvr[vid_offset].i_value = value;
|
||||||
|
@ -178,10 +202,13 @@ int st_change_value(STD sym_table, int vid_offset, Value value){
|
||||||
/* Get the type of the variable specified by vid_offset
|
/* Get the type of the variable specified by vid_offset
|
||||||
* Author: Victor Fernandes, 040772243
|
* Author: Victor Fernandes, 040772243
|
||||||
* Version: 0.0.1
|
* Version: 0.0.1
|
||||||
* Called functions:
|
* Called functions: N/A
|
||||||
* Parameters:
|
* Parameters:
|
||||||
|
STD - The symbol table
|
||||||
|
int - the offset of the VID in the table
|
||||||
* Return value:
|
* Return value:
|
||||||
* Algorithm:
|
char - the type of the VID ('I','F', or 'S')
|
||||||
|
-1 if there is an invalid value set
|
||||||
*/
|
*/
|
||||||
char st_get_type(STD sym_table, int vid_offset){
|
char st_get_type(STD sym_table, int vid_offset){
|
||||||
unsigned short mask;
|
unsigned short mask;
|
||||||
|
@ -203,8 +230,11 @@ char st_get_type(STD sym_table, int vid_offset){
|
||||||
* Version: 0.0.1
|
* Version: 0.0.1
|
||||||
* Called functions:
|
* Called functions:
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* Return value: Value i_value, incorrect parameters will have undefined behaviour
|
STD - The symbol table
|
||||||
* Algorithm:
|
int - the offset of the VID in the table
|
||||||
|
* Return value:
|
||||||
|
Value - the value of the VID
|
||||||
|
Incorrect parameters will cause undefined behaviour
|
||||||
*/
|
*/
|
||||||
Value st_get_value(STD sym_table, int vid_offset){
|
Value st_get_value(STD sym_table, int vid_offset){
|
||||||
return sym_table.pstvr[vid_offset].i_value;
|
return sym_table.pstvr[vid_offset].i_value;
|
||||||
|
@ -213,10 +243,9 @@ Value st_get_value(STD sym_table, int vid_offset){
|
||||||
/* Free memory used by the symbol table
|
/* Free memory used by the symbol table
|
||||||
* Author: Victor Fernandes, 040772243
|
* Author: Victor Fernandes, 040772243
|
||||||
* Version: 0.0.1
|
* Version: 0.0.1
|
||||||
* Called functions:
|
* Called functions: free, b_free
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* Return value:
|
STD - The symbol table
|
||||||
* Algorithm:
|
|
||||||
*/
|
*/
|
||||||
void st_destroy(STD sym_table){
|
void st_destroy(STD sym_table){
|
||||||
if (sym_table.pstvr != NULL){
|
if (sym_table.pstvr != NULL){
|
||||||
|
@ -229,10 +258,11 @@ void st_destroy(STD sym_table){
|
||||||
/* Print the contents of the symbol table to standard output
|
/* Print the contents of the symbol table to standard output
|
||||||
* Author: Victor Fernandes, 040772243
|
* Author: Victor Fernandes, 040772243
|
||||||
* Version: 0.0.1
|
* Version: 0.0.1
|
||||||
* Called functions:
|
* Called functions: printf
|
||||||
* Parameters:
|
* Parameters:
|
||||||
|
STD - The symbol table
|
||||||
* Return value:
|
* Return value:
|
||||||
* Algorithm:
|
int - the number of items printed to stdout
|
||||||
*/
|
*/
|
||||||
int st_print(STD sym_table){
|
int st_print(STD sym_table){
|
||||||
int i;
|
int i;
|
||||||
|
@ -245,20 +275,23 @@ int st_print(STD sym_table){
|
||||||
|
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Store the symbol table to a file named $stable.ste.
|
/* Store the symbol table to a file named $stable.ste.
|
||||||
It overwrites any existing file named $stable.ste.
|
It overwrites any existing file named $stable.ste.
|
||||||
* Author: Victor Fernandes, 040772243
|
* Author: Victor Fernandes, 040772243
|
||||||
* Version: 0.0.1
|
* Version: 0.0.1
|
||||||
* Called functions:
|
* Called functions: fopen, fprintf, st_get_type, fclose, printf
|
||||||
* Parameters:
|
* Parameters:
|
||||||
|
STD - The symbol table
|
||||||
* Return value:
|
* Return value:
|
||||||
* Algorithm:
|
int - the number of items stored
|
||||||
|
-1 if the file stream cannot be opened
|
||||||
*/
|
*/
|
||||||
int st_store(STD sym_table){
|
int st_store(STD sym_table){
|
||||||
FILE *out; /* The target file*/
|
FILE *out; /* The target file*/
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if((out = fopen("$stable.ste", "w+")) == NULL)
|
if((out = fopen(ST_FILE_NAME, "w+")) == NULL)
|
||||||
return -1; /* Can't open file, stop. */
|
return -1; /* Can't open file, stop. */
|
||||||
|
|
||||||
fprintf(out, "%d", sym_table.st_size);
|
fprintf(out, "%d", sym_table.st_size);
|
||||||
|
@ -275,12 +308,11 @@ int st_store(STD sym_table){
|
||||||
case 'I':
|
case 'I':
|
||||||
case 'F':
|
case 'F':
|
||||||
case 'S':
|
case 'S':
|
||||||
fprintf(out, " %c", type);
|
fprintf(out, " %c", type);
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fclose(out);
|
fclose(out);
|
||||||
printf("Symbol Tavble stored\n");
|
printf("Symbol Table stored\n");
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -288,10 +320,9 @@ int st_store(STD sym_table){
|
||||||
/* Internal function to set the table size to 0.
|
/* Internal function to set the table size to 0.
|
||||||
* Author: Victor Fernandes, 040772243
|
* Author: Victor Fernandes, 040772243
|
||||||
* Version: 0.0.1
|
* Version: 0.0.1
|
||||||
* Called functions:
|
* Called functions: N/A
|
||||||
* Parameters:
|
* Parameters: N/A
|
||||||
* Return value:
|
* Return value: N/A
|
||||||
* Algorithm:
|
|
||||||
*/
|
*/
|
||||||
static void st_setsize(void){
|
static void st_setsize(void){
|
||||||
sym_table.st_size = 0;
|
sym_table.st_size = 0;
|
||||||
|
@ -300,10 +331,9 @@ static void st_setsize(void){
|
||||||
/* Internal function to increment st_offset by 1.
|
/* Internal function to increment st_offset by 1.
|
||||||
* Author: Victor Fernandes, 040772243
|
* Author: Victor Fernandes, 040772243
|
||||||
* Version: 0.0.1
|
* Version: 0.0.1
|
||||||
* Called functions:
|
* Called functions: N/A
|
||||||
* Parameters:
|
* Parameters: N/A
|
||||||
* Return value:
|
* Return value: N/A
|
||||||
* Algorithm:
|
|
||||||
*/
|
*/
|
||||||
static void st_incoffset(void){
|
static void st_incoffset(void){
|
||||||
++sym_table.st_offset;
|
++sym_table.st_offset;
|
||||||
|
|
14
stable.h
14
stable.h
|
@ -28,18 +28,20 @@
|
||||||
#define CHK_MASK 0x0006 /* Type check mask */
|
#define CHK_MASK 0x0006 /* Type check mask */
|
||||||
#define DFT_U_MASK 0xFFF9 /* Default mask with update flag */
|
#define DFT_U_MASK 0xFFF9 /* Default mask with update flag */
|
||||||
|
|
||||||
|
#define ST_FILE_NAME "$stable.ste"
|
||||||
|
|
||||||
typedef union InitialValue {
|
typedef union InitialValue {
|
||||||
int int_val; /* Integer variable initial value */
|
int int_val; /* Integer variable initial value */
|
||||||
float fpl_val; /* Floating-point variable initial value */
|
float fpl_val; /* Floating-point variable initial value */
|
||||||
int str_offset; /* String variable initial value (location offset) */
|
int str_offset; /* String variable initial value (location offset) */
|
||||||
} Value;
|
} Value;
|
||||||
|
|
||||||
typedef struct SymbolTableVidRecord {
|
typedef struct SymbolTableVidRecord {
|
||||||
unsigned short status_field; /* Variable record status field */
|
unsigned short status_field; /* Variable record status field */
|
||||||
char *plex; /* Pointer to lexeme (VID name) in CA (character array) */
|
char *plex; /* Pointer to lexeme (VID name) in CA (character array) */
|
||||||
int o_line; /* Line of first occurence */
|
int o_line; /* Line of first occurence */
|
||||||
Value i_value; /* Variable initial value */
|
Value i_value; /* Variable initial value */
|
||||||
void *reserved; /* Reserved for future use, not needed right now */
|
void *reserved; /* Reserved for future use, not needed right now */
|
||||||
} STVR;
|
} STVR;
|
||||||
|
|
||||||
typedef struct SymbolTableDescriptor {
|
typedef struct SymbolTableDescriptor {
|
||||||
|
|
2
table.h
2
table.h
|
@ -38,6 +38,8 @@
|
||||||
#define ESWR 13 /* Error state (no retract) */
|
#define ESWR 13 /* Error state (no retract) */
|
||||||
#define IS -1 /* Invalid state */
|
#define IS -1 /* Invalid state */
|
||||||
|
|
||||||
|
/*Avoid platform dependency and use fixed 2-byte short */
|
||||||
|
#define PLT_SHRT_MAX 32767
|
||||||
/* State transition table definition */
|
/* State transition table definition */
|
||||||
|
|
||||||
#define TABLE_COLUMNS 7
|
#define TABLE_COLUMNS 7
|
||||||
|
|
Loading…
Reference in New Issue