/*
* Copyright (C) 2024 olang maintainers
*
* 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 3 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, see .
*/
#include "checker.h"
#include "scope.h"
#include
#include
#include
static void
populate_scope(checker_t *checker, scope_t *scope, ast_node_t *ast);
static void
populate_types(checker_t *checker, ast_node_t *ast);
checker_t *
checker_new(arena_t *arena)
{
assert(arena);
checker_t *checker = (checker_t *)arena_alloc(arena, sizeof(checker_t));
if (checker == NULL) {
fprintf(stderr, "[FATAL] Out of memory: checker_new: %s\n", strerror(errno));
exit(EXIT_FAILURE);
}
checker->arena = arena;
return checker;
}
void
checker_check(checker_t *checker, ast_node_t *ast)
{
assert(checker);
assert(ast);
scope_t *scope = scope_new(checker->arena);
populate_types(checker, ast);
populate_scope(checker, scope, ast);
// TODO: traverse the ast tree to verify semantics
}
static void
populate_scope(checker_t *checker, scope_t *scope, ast_node_t *ast)
{
switch (ast->kind) {
case AST_NODE_PROGRAM: {
populate_scope(checker, scope, ast->as_program.fn);
return;
}
case AST_NODE_FN_DEF: {
ast->as_fn_def.scope = scope;
// FIXME: insert function symbol to scope
populate_scope(checker, scope, ast->as_fn_def.block);
return;
}
case AST_NODE_IF_STMT: {
populate_scope(checker, scope, ast->as_if_stmt.cond);
populate_scope(checker, scope, ast->as_if_stmt.then);
if (ast->as_if_stmt._else) {
populate_scope(checker, scope, ast->as_if_stmt._else);
}
return;
}
case AST_NODE_BINARY_OP: {
ast_binary_op_t bin_op = ast->as_bin_op;
populate_scope(checker, scope, bin_op.lhs);
populate_scope(checker, scope, bin_op.rhs);
return;
}
case AST_NODE_RETURN_STMT: {
ast_return_stmt_t return_stmt = ast->as_return_stmt;
populate_scope(checker, scope, return_stmt.data);
return;
}
case AST_NODE_BLOCK: {
ast_block_t block = ast->as_block;
scope = scope_push(scope);
list_item_t *item = list_head(block.nodes);
while (item != NULL) {
populate_scope(checker, scope, (ast_node_t *)item->value);
item = list_next(item);
}
return;
}
case AST_NODE_VAR_DEF: {
string_view_t id = ast->as_var_def.identifier;
type_t type = ast->as_var_def.type;
symbol_t *symbol = symbol_new(checker->arena, id, type);
scope_insert(scope, symbol);
ast->as_var_def.scope = scope;
return;
}
case AST_NODE_REF: {
ast->as_ref.scope = scope;
return;
}
case AST_NODE_LITERAL:
case AST_NODE_UNKNOWN:
return;
}
}
static void
evaluate_type(type_t *type)
{
if (string_view_eq_to_cstr(type->id, "u8")) {
type->kind = TYPE_PRIMITIVE;
type->as_primitive = TYPE_U8;
return;
}
if (string_view_eq_to_cstr(type->id, "u16")) {
type->kind = TYPE_PRIMITIVE;
type->as_primitive = TYPE_U16;
return;
}
if (string_view_eq_to_cstr(type->id, "u32")) {
type->kind = TYPE_PRIMITIVE;
type->as_primitive = TYPE_U32;
return;
}
if (string_view_eq_to_cstr(type->id, "u64")) {
type->kind = TYPE_PRIMITIVE;
type->as_primitive = TYPE_U64;
return;
}
type->kind = TYPE_USER_DEFINED;
}
static void
populate_types(checker_t *checker, ast_node_t *ast)
{
switch (ast->kind) {
case AST_NODE_PROGRAM: {
populate_types(checker, ast->as_program.fn);
return;
}
case AST_NODE_FN_DEF: {
evaluate_type(&ast->as_fn_def.return_type);
populate_types(checker, ast->as_fn_def.block);
return;
}
case AST_NODE_IF_STMT: {
populate_types(checker, ast->as_if_stmt.cond);
populate_types(checker, ast->as_if_stmt.then);
if (ast->as_if_stmt._else) {
populate_types(checker, ast->as_if_stmt._else);
}
return;
}
case AST_NODE_BINARY_OP: {
ast_binary_op_t bin_op = ast->as_bin_op;
populate_types(checker, bin_op.lhs);
populate_types(checker, bin_op.rhs);
return;
}
case AST_NODE_RETURN_STMT: {
populate_types(checker, ast->as_return_stmt.data);
return;
}
case AST_NODE_BLOCK: {
ast_block_t block = ast->as_block;
list_item_t *item = list_head(block.nodes);
while (item != NULL) {
populate_types(checker, (ast_node_t *)item->value);
item = list_next(item);
}
return;
}
case AST_NODE_VAR_DEF: {
evaluate_type(&ast->as_var_def.type);
return;
}
case AST_NODE_REF:
case AST_NODE_LITERAL:
case AST_NODE_UNKNOWN:
return;
}
}