/* Copyright (C) 2014-2015 Ben Kurtovic Released under the terms of the MIT License. See LICENSE for details. */ #include #include "assembler.h" #include "assembler/errors.h" #include "assembler/io.h" #include "assembler/preprocessor.h" #include "assembler/state.h" #include "assembler/tokenizer.h" #include "logging.h" #include "rom.h" #include "util.h" /* Return the smallest ROM size that can contain the given address. This uses bit twiddling hacks up to the largest possible ROM size. */ static size_t bounding_rom_size(size_t size) { size--; size |= size >> 1; size |= size >> 2; size |= size >> 4; size |= size >> 8; size |= size >> 16; size++; return size; } /* 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; const ASMInstruction *inst = state->instructions; while (inst) { size_t bound = inst->loc.offset + inst->loc.length; if (bound > state->rom_size) state->rom_size = bounding_rom_size(bound); inst = inst->next; } const ASMData *data = state->data; while (data) { size_t bound = data->loc.offset + data->loc.length; if (bound > state->rom_size) state->rom_size = bounding_rom_size(bound); data = data->next; } 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) { ErrorInfo *ei; ASMInstruction *inst = state->instructions; const ASMSymbol *symbol; while (inst) { if (inst->symbol) { symbol = asm_symtable_find(state->symtable, inst->symbol); if (!symbol) { ei = error_info_create(inst->line, ET_SYMBOL, ED_SYM_NO_LABEL); return ei; } if (inst->loc.length == 3) { inst->b2 = symbol->offset & 0xFF; inst->b3 = symbol->offset >> 8; } else { inst->b3 = symbol->offset & 0xFF; inst->b4 = symbol->offset >> 8; } free(inst->symbol); inst->symbol = NULL; } inst = inst->next; } 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; }