/* Copyright (C) 2014-2015 Ben Kurtovic Released under the terms of the MIT License. See LICENSE for details. */ #include #include "assembler.h" #include "assembler/directives.h" #include "assembler/errors.h" #include "assembler/io.h" #include "assembler/parse_util.h" #include "assembler/preprocessor.h" #include "assembler/state.h" #include "logging.h" #include "rom.h" #include "util.h" #define IS_LABEL(line) (line->data[line->length - 1] == ':') /* Parse an instruction encoded in line into an ASMInstruction object. On success, return NULL and store the instruction in *inst_ptr. On failure, return an ErrorInfo object; *inst_ptr is not modified. */ static ErrorInfo* parse_instruction( const ASMLine *line, ASMInstruction **inst_ptr, size_t offset) { // TODO return error_info_create(line, ET_PARSER, ED_PARSE_SYNTAX); } /* Tokenize ASMLines into ASMInstructions. NULL is returned on success and an ErrorInfo object is returned on failure. state->instructions, state->data, and state->symtable may or may not be modified regardless of success. */ static ErrorInfo* tokenize(AssemblerState *state) { size_t size = state->rom_size ? state->rom_size : ROM_SIZE_MAX; const ASMLine **overlap_table = calloc(size, sizeof(const ASMLine*)); if (!overlap_table) OUT_OF_MEMORY() // TODO: fill overlap table for header with pointers to a dummy object ErrorInfo *ei = NULL; ASMInstruction dummy = {.next = NULL}, *inst, *prev = &dummy; const ASMLine *line = state->lines, *origin = NULL; size_t offset = 0; while (line) { if (IS_LOCAL_DIRECTIVE(line)) { if (IS_DIRECTIVE(line, DIR_ORIGIN)) { if (!DIRECTIVE_HAS_ARG(line, DIR_ORIGIN)) { ei = error_info_create(line, ET_PREPROC, ED_PP_NO_ARG); goto cleanup; } uint32_t arg; if (!dparse_uint32_t(&arg, line, DIR_ORIGIN)) { ei = error_info_create(line, ET_PREPROC, ED_PP_BAD_ARG); goto cleanup; } offset = arg; origin = line; } 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; } } else if (IS_LABEL(line)) { // TODO: add to symbol table } else { if ((ei = parse_instruction(line, &inst, offset))) 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; prev->next = inst; prev = inst; } line = line->next; } cleanup: state->instructions = dummy.next; free(overlap_table); return ei; } /* Resolve default placeholder values in assembler state, such as ROM size. On success, no new heap objects are allocated. On error, an ErrorInfo object is returned. */ static ErrorInfo* resolve_defaults(AssemblerState *state) { if (!state->rom_size) { state->rom_size = ROM_SIZE_MIN; // TODO: use highest instruction too if (state->header.rom_size != INVALID_SIZE_CODE) { size_t decl_size = size_code_to_bytes(state->header.rom_size); if (decl_size > state->rom_size) state->rom_size = decl_size; } } if (state->header.rom_size == INVALID_SIZE_CODE) state->header.rom_size = size_bytes_to_code(state->rom_size); return NULL; } /* Resolve symbol placeholders in instructions such as jumps and branches. On success, no new heap objects are allocated. On error, an ErrorInfo object is returned. */ static ErrorInfo* resolve_symbols(AssemblerState *state) { // TODO (void) state; return NULL; } /* Convert finalized ASMInstructions and ASMData into a binary data block. This function should never fail. */ static void serialize_binary(AssemblerState *state, uint8_t *binary) { // TODO for (size_t i = 0; i < state->rom_size; i++) binary[i] = 'X'; } /* Assemble the z80 source code in the source code buffer into binary data. If successful, return the size of the assembled binary data and change *binary_ptr to point to the assembled ROM data buffer. *binary_ptr must be free()'d when finished. If an error occurred, return 0 and update *ei_ptr to point to an ErrorInfo object which can be shown to the user with error_info_print(). The ErrorInfo object must be destroyed with error_info_destroy() when finished. In either case, only one of *binary_ptr and *ei_ptr is modified. */ size_t assemble(const LineBuffer *source, uint8_t **binary_ptr, ErrorInfo **ei_ptr) { AssemblerState state; ErrorInfo *error_info; size_t retval = 0; state_init(&state); if ((error_info = preprocess(&state, source))) goto error; asm_symtable_init(&state.symtable); #ifdef DEBUG_MODE asm_lines_print(state.lines); #endif if ((error_info = tokenize(&state))) goto error; if ((error_info = resolve_defaults(&state))) goto error; if ((error_info = resolve_symbols(&state))) goto error; uint8_t *binary = malloc(sizeof(uint8_t) * state.rom_size); if (!binary) OUT_OF_MEMORY() serialize_binary(&state, binary); *binary_ptr = binary; retval = state.rom_size; goto cleanup; error: *ei_ptr = error_info; cleanup: state_free(&state); return retval; } /* Assemble the z80 source code at the input path into a binary file. Return true if the operation was a success and false if it was a failure. Errors are printed to STDOUT; if the operation was successful then nothing is printed. */ bool assemble_file(const char *src_path, const char *dst_path) { LineBuffer *source = read_source_file(src_path, true); if (!source) return false; uint8_t *binary; ErrorInfo *error_info; size_t size = assemble(source, &binary, &error_info); line_buffer_free(source); if (!size) { error_info_print(error_info, stderr); error_info_destroy(error_info); return false; } bool success = write_binary_file(dst_path, binary, size); free(binary); return success; }