Sfoglia il codice sorgente

Layout checking logic.

master
Ben Kurtovic 9 anni fa
parent
commit
c46f1045ce
3 ha cambiato i file con 95 aggiunte e 31 eliminazioni
  1. +89
    -25
      src/assembler.c
  2. +3
    -3
      src/assembler/errors.c
  3. +3
    -3
      src/assembler/errors.h

+ 89
- 25
src/assembler.c Vedi File

@@ -16,6 +16,9 @@


#define IS_LABEL(line) (line->data[line->length - 1] == ':') #define IS_LABEL(line) (line->data[line->length - 1] == ':')


/* Sentinel values for overlap table */
const ASMLine header_sentinel, bounds_sentinel;

/* /*
Add a given line, representing a label, to the symbol table. Add a given line, representing a label, to the symbol table.


@@ -48,7 +51,21 @@ static ErrorInfo* add_label_to_table(
} }


/* /*
Parse an instruction encoded in line into an ASMInstruction object.
Parse data encoded in a line into an ASMData object.

On success, return NULL and store the instruction in *data_ptr. On failure,
return an ErrorInfo object; *data_ptr is not modified.
*/
static ErrorInfo* parse_data(
const ASMLine *line, ASMData **data_ptr, size_t offset)
{
// TODO

return error_info_create(line, ET_PARSER, ED_PARSE_SYNTAX);
}

/*
Parse an instruction encoded in a line into an ASMInstruction object.


On success, return NULL and store the instruction in *inst_ptr. On failure, On success, return NULL and store the instruction in *inst_ptr. On failure,
return an ErrorInfo object; *inst_ptr is not modified. return an ErrorInfo object; *inst_ptr is not modified.
@@ -62,6 +79,42 @@ static ErrorInfo* parse_instruction(
} }


/* /*
Check if the range [offset, offset + length) overlaps with existing data.

Return the ASMLine corresponding to the earliest data that overlaps, or
NULL if there is no overlap.
*/
static const ASMLine* check_layout(
const ASMLine **overlap_table, size_t size, size_t offset, size_t length)
{
if (offset + length >= size)
return &bounds_sentinel;

for (size_t i = 0; i < length; i++) {
if (overlap_table[offset + i])
return overlap_table[offset + i];
}
return NULL;
}

/*
Build and return an error message for overlapping or out-of-bounds lines.
*/
static ErrorInfo* build_layout_error(
const ASMLine *line, const ASMLine *clash, const ASMLine *origin)
{
ErrorInfo *ei = error_info_create(line, ET_LAYOUT,
(clash == &header_sentinel) ? ED_LYT_OVERLAP_HEAD :
(clash == &bounds_sentinel) ? ED_LYT_BOUNDS : ED_LYT_OVERLAP);

if (origin)
error_info_append(ei, origin);
if (clash != &header_sentinel && clash != &bounds_sentinel)
error_info_append(ei, clash);
return ei;
}

/*
Tokenize ASMLines into ASMInstructions. Tokenize ASMLines into ASMInstructions.


NULL is returned on success and an ErrorInfo object is returned on failure. NULL is returned on success and an ErrorInfo object is returned on failure.
@@ -75,17 +128,21 @@ static ErrorInfo* tokenize(AssemblerState *state)
if (!overlap_table) if (!overlap_table)
OUT_OF_MEMORY() OUT_OF_MEMORY()


ASMLine header_indicator;
for (size_t i = 0; i < HEADER_SIZE; i++)
overlap_table[state->header.offset + i] = &header_indicator;

ErrorInfo *ei = NULL; ErrorInfo *ei = NULL;
ASMInstruction dummy = {.next = NULL}, *inst, *prev = &dummy;
const ASMLine *line = state->lines, *origin = NULL;
ASMInstruction dummy_inst = {.next = NULL}, *inst, *prev_inst = &dummy_inst;
ASMData dummy_data = {.next = NULL}, *data, *prev_data = &dummy_data;
const ASMLine *line = state->lines, *origin = NULL, *clash;
size_t offset = 0; size_t offset = 0;


for (size_t i = 0; i < HEADER_SIZE; i++)
overlap_table[state->header.offset + i] = &header_sentinel;

while (line) { while (line) {
if (IS_LOCAL_DIRECTIVE(line)) {
if (IS_LABEL(line)) {
if ((ei = add_label_to_table(state->symtable, line, offset)))
goto cleanup;
}
else if (IS_LOCAL_DIRECTIVE(line)) {
if (IS_DIRECTIVE(line, DIR_ORIGIN)) { if (IS_DIRECTIVE(line, DIR_ORIGIN)) {
if (!DIRECTIVE_HAS_ARG(line, DIR_ORIGIN)) { if (!DIRECTIVE_HAS_ARG(line, DIR_ORIGIN)) {
ei = error_info_create(line, ET_PREPROC, ED_PP_NO_ARG); ei = error_info_create(line, ET_PREPROC, ED_PP_NO_ARG);
@@ -102,35 +159,42 @@ static ErrorInfo* tokenize(AssemblerState *state)
origin = line; origin = line;
} }
else { else {
// TODO: first parse data item, then do same bounded check as
// with instructions below, then increment offset and
// ASMData list pointers appropriate
ei = error_info_create(line, ET_PREPROC, ED_PP_UNKNOWN);
goto cleanup;
if ((ei = parse_data(line, &data, offset)))
goto cleanup;

offset += data->length;
prev_data->next = data;
prev_data = data;

clash = check_layout(overlap_table, size, data->offset, data->length);
if (clash) {
ei = build_layout_error(line, clash, origin);
goto cleanup;
}
// TODO: enter data into overlap table
} }
} }
else if (IS_LABEL(line)) {
if ((ei = add_label_to_table(state->symtable, line, offset)))
goto cleanup;
}
else { else {
if ((ei = parse_instruction(line, &inst, offset))) if ((ei = parse_instruction(line, &inst, offset)))
goto cleanup; goto cleanup;


// TODO: bounded check on range [offset, offset + inst->length) against overlap table
// if clash, use error with current line,
// then table line (if not header),
// then origin line (if non-null)

offset += inst->length; offset += inst->length;
prev->next = inst;
prev = inst;
prev_inst->next = inst;
prev_inst = inst;

clash = check_layout(overlap_table, size, inst->offset, inst->length);
if (clash) {
ei = build_layout_error(line, clash, origin);
goto cleanup;
}
// TODO: enter inst into overlap table
} }
line = line->next; line = line->next;
} }


cleanup: cleanup:
state->instructions = dummy.next;
state->instructions = dummy_inst.next;
state->data = dummy_data.next;
free(overlap_table); free(overlap_table);
return ei; return ei;
} }


+ 3
- 3
src/assembler/errors.c Vedi File

@@ -34,9 +34,9 @@ static const char *asm_error_descs[] = {
"header offset exceeds given ROM size", // ED_LYT_HEADER_RANGE "header offset exceeds given ROM size", // ED_LYT_HEADER_RANGE
"declared ROM size in header exceeds actual size", // ED_LYT_DECLARE_RANGE "declared ROM size in header exceeds actual size", // ED_LYT_DECLARE_RANGE
"duplicate definitions for label", // ED_LYT_DUPE_LABELS "duplicate definitions for label", // ED_LYT_DUPE_LABELS
"location overlaps with ROM header", // ED_LYT_HEAD_OVERLAP
"location overlaps with previous instruction", // ED_LYT_INST_OVERLAP
"location overlaps with previous data", // ED_LYT_DATA_OVERLAP
"location is out of bounds for the ROM size", // ED_LYT_BOUNDS
"location overlaps with instruction or data", // ED_LYT_OVERLAP
"location overlaps with ROM header", // ED_LYT_OVERLAP_HEAD


"syntax error" // ED_PARSE_SYNTAX "syntax error" // ED_PARSE_SYNTAX
}; };


+ 3
- 3
src/assembler/errors.h Vedi File

@@ -30,9 +30,9 @@ typedef enum {
ED_LYT_HEADER_RANGE, ED_LYT_HEADER_RANGE,
ED_LYT_DECLARE_RANGE, ED_LYT_DECLARE_RANGE,
ED_LYT_DUPE_LABELS, ED_LYT_DUPE_LABELS,
ED_LYT_HEAD_OVERLAP,
ED_LYT_INST_OVERLAP,
ED_LYT_DATA_OVERLAP,
ED_LYT_BOUNDS,
ED_LYT_OVERLAP,
ED_LYT_OVERLAP_HEAD,


ED_PARSE_SYNTAX ED_PARSE_SYNTAX
} ASMErrorDesc; } ASMErrorDesc;


Caricamento…
Annulla
Salva