1
0
Fork 0
mirror of https://github.com/pnx/m16vm synced 2026-06-16 03:44:55 +02:00
m16vm/as/parser.c

263 lines
6.5 KiB
C

/* parser.c
*
* Copyright (C) 2012,2014-2015,2018-2019,2023 Henrik Hautakoski <henrik.hautakoski@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include "asm_error.h"
#include "codegen.h"
#include "ast.h"
#include "lexer.h"
#include "parser.h"
/*
* Helper functions/macros for defining parser rules.
*/
enum number_size {
NUMBER_SIZE_U4,
NUMBER_SIZE_S4,
NUMBER_SIZE_S8,
};
// match the next token.
// returns 0 if the token was of the correct type. -1 otherwise
static int match_type(struct lexer* lex, enum token_type type) {
lexer_get_next(lex);
return lex->token.type == type ? 0 : -1;
}
static int validate_number(struct lexer* lex, enum number_size size) {
int8_t n = lex->token.value.n;
switch(size) {
case NUMBER_SIZE_U4 :
if (!(n >= 0x0 && n <= 0xF))
return asm_error(lex->lineno, "Value out of range %u", (uint8_t) n);
break;
case NUMBER_SIZE_S4 :
if (!(n >= -8 && n < 8))
return asm_error(lex->lineno, "Value out of range %i", n);
break;
case NUMBER_SIZE_S8 :
if (!(n >= -128 && n< 128))
return asm_error(lex->lineno, "Value out of range %i", n);
break;
}
return 0;
}
// Same as match_type() but also generates a operand in the AST.
static int match_operand(struct lexer* lex, enum token_type type, struct ast *ast) {
if (match_type(lex, type) < 0)
return -1;
if (type == TOKEN_REG) {
ast_instr_operand(ast, DATATYPE_REGISTER, *((void**) &lex->token.value.n));
} else if (type == TOKEN_NUMBER) {
ast_instr_operand(ast, DATATYPE_NUMBER, *((void**) &lex->token.value.n));
} else {
ast_instr_operand(ast, DATATYPE_STRING, lex->token.value.s);
}
return 1;
}
/*
* Helper macros for matching tokens.
*/
#define match_reg(pos, ast) \
if (match_operand(lex, TOKEN_REG, ast) < 0 || validate_number(lex, NUMBER_SIZE_U4) < 0) \
return asm_error((lex)->lineno, "Expected register at argument %i", pos)
#define match_imm(pos, size, ast) \
if (match_operand(lex, TOKEN_NUMBER, ast) < 0 || validate_number(lex, size) < 0) \
return asm_error((lex)->lineno, "Expected number at argument %i", pos)
#define match_arg(pos) \
if (match_type(lex, TOKEN_ARG_SEP) < 0) \
return asm_error((lex)->lineno, "Expected separator after argument %i", pos)
#define match_end \
if (match_type(lex, TOKEN_EOL) < 0) \
return asm_error(lex->lineno, "Expected newline")
/*
* Functions for matching complete instructions.
*/
// R-Type (rs : u4, r0 : u4, r1 : u4)
static int match_typeR(struct lexer* lex, struct ast *ast) {
match_reg(1, ast); match_arg(1);
match_reg(2, ast); match_arg(2);
match_reg(3, ast);
match_end;
return 1;
}
// RI-Type (rs : u4, r0 : u4, offset : s4)
static int match_typeRI(struct lexer* lex, struct ast *ast) {
match_reg(1, ast); match_arg(1);
match_reg(2, ast); match_arg(2);
match_imm(3, NUMBER_SIZE_S4, ast);
match_end;
return 1;
}
// I-Type (rs : u4, imm : s8)
static int match_typeI(struct lexer* lex, struct ast *ast) {
match_reg(1, ast); match_arg(1);
match_imm(2, NUMBER_SIZE_S8, ast);
match_end;
return 1;
}
// J-Type (addr : string)
static int match_typeJ(struct lexer* lex, struct ast *ast) {
if (match_operand(lex, TOKEN_LABEL, ast) < 0)
return asm_error(lex->lineno, "Expected label at argument 1");
match_end;
return 1;
}
static int match_label_decl(struct lexer* lex, struct ast *ast) {
uint16_t location = ast->instr.size / sizeof(struct ast_instr);
ast_location(ast, lex->token.value.s, location);
return 1;
}
#define opcode_guard(op) \
if (op_set == 0) { op_set = 1; ast_instr(ast, op); }
/*
* Parse a single line.
*/
static int parse_line(struct lexer* lex, struct ast *ast) {
int op_set = 0;
if (lexer_get_next(lex) < 0)
return -1;
// Opcode should come first.
switch(lex->token.type) {
case TOKEN_EOI: return 0;
case TOKEN_EOL: break;
case TOKEN_OPCODE_NOOP : ast_instr(ast, OP_NOOP);
match_end;
break;
// Type-R
case TOKEN_OPCODE_ADD : opcode_guard(OP_ADD);
return match_typeR(lex, ast);
// Type-I
case TOKEN_OPCODE_MOVL : opcode_guard(OP_MOVL);
case TOKEN_OPCODE_MOVH : opcode_guard(OP_MOVH);
case TOKEN_OPCODE_JR : opcode_guard(OP_JR);
case TOKEN_OPCODE_INT : opcode_guard(OP_INT);
return match_typeI(lex, ast);
// Type-RI
case TOKEN_OPCODE_LD : opcode_guard(OP_LW);
case TOKEN_OPCODE_SW : opcode_guard(OP_SW);
case TOKEN_OPCODE_BEQ : opcode_guard(OP_BEQ);
return match_typeRI(lex, ast);
// Type-J
case TOKEN_OPCODE_JMP : opcode_guard(OP_JMP);
return match_typeJ(lex, ast);
case TOKEN_LABEL_DECL :
return match_label_decl(lex, ast);
default:
return asm_error(lex->lineno, "Opcode or label expected");
}
return 1;
}
// Check the semantics of the program's AST.
// For now, we only need to check that all
// referenced labels exist in the symbol table
static int check_semantics(struct ast* ast) {
int i;
// TODO: Need to implement a iterator for vectors.
for(i = 0; i < ast->instr.size; i += sizeof(struct ast_instr)) {
struct ast_instr *instr = ast->instr.base + i;
// Only J-Type can have labels.
if (instr->opcode == OP_JMP
&& instr->operands[0].type == DATATYPE_STRING
&& symtab_get(ast->symbols, instr->operands[0].s, NULL) < 0) {
return asm_error(0, "Label '%s' is not defined", instr->operands[0].s);
}
}
return 0;
}
/*
* Main parser function.
*/
int parse(FILE *source_fd, FILE *dest_fd) {
struct lexer lex;
struct ast ast;
ast_init(&ast);
lexer_init(&lex, source_fd);
// Parse and build AST.
for(;;) {
int rc = parse_line(&lex, &ast);
if (rc < 0)
goto done;
if (rc == 0)
break;
}
if (check_semantics(&ast) < 0)
goto done;
// Code generation
for(int i = 0; i < ast.instr.size; i += sizeof(struct ast_instr)) {
struct ast_instr *instr = ast.instr.base + i;
uint8_t code[2] = { 0 };
codegen_emit(instr, ast.symbols, code);
fwrite(&code, sizeof(code), 1, dest_fd);
}
// Cleanup
done: ast_free(&ast);
return 0;
}