elna/source/semantic.cpp

230 lines
8.0 KiB
C++
Raw Normal View History

2024-03-14 08:52:45 +01:00
#include "elna/source/semantic.hpp"
2024-05-16 21:01:11 +02:00
#include "elna/source/result.hpp"
2024-03-14 08:52:45 +01:00
#include <cstdlib>
namespace elna::source
{
2024-05-16 21:01:11 +02:00
name_analysis_visitor::name_analysis_visitor(std::shared_ptr<symbol_table> table,
2024-05-19 00:43:59 +02:00
const std::filesystem::path& filename, const std::size_t target_pointer_size)
: table(table), filename(filename), pointer_size(target_pointer_size)
{
}
2024-03-20 17:56:38 +01:00
void name_analysis_visitor::visit(constant_definition *definition)
2024-03-14 08:52:45 +01:00
{
2024-05-19 00:43:59 +02:00
auto constant_type = std::make_shared<const class type>(int_type);
2024-03-14 08:52:45 +01:00
this->table->enter(definition->identifier(),
2024-05-19 00:43:59 +02:00
std::make_shared<constant_info>(constant_type, definition->body().number()));
2024-03-14 08:52:45 +01:00
}
2024-04-07 23:39:56 +02:00
std::shared_ptr<const type> name_analysis_visitor::convert_declaration_type(const type_expression& ast_type) const
{
auto variable_type = std::dynamic_pointer_cast<type_info>(table->lookup(ast_type.base()))
->type();
std::shared_ptr<type> declaration_type;
if (ast_type.is_pointer())
{
return std::make_shared<pointer_type>(variable_type, 4);
}
else
{
return variable_type;
}
}
2024-03-14 08:52:45 +01:00
void name_analysis_visitor::visit(declaration *declaration)
{
2024-04-07 23:39:56 +02:00
std::shared_ptr<const type> declaration_type = convert_declaration_type(declaration->type());
2024-03-14 08:52:45 +01:00
this->table->enter(declaration->identifier(),
2024-04-07 23:39:56 +02:00
std::make_shared<variable_info>(declaration_type));
2024-03-14 08:52:45 +01:00
}
void name_analysis_visitor::visit(program *program)
{
2024-05-19 00:43:59 +02:00
class procedure_type main_type{ std::vector<std::shared_ptr<const class type>>(), this->pointer_size };
this->table->enter("main", std::make_shared<procedure_info>(main_type, this->table));
empty_visitor::visit(program);
}
void name_analysis_visitor::visit(procedure_definition *procedure)
{
2024-05-19 00:43:59 +02:00
std::vector<std::shared_ptr<const type>> arguments;
2024-03-29 11:01:19 +01:00
for (auto& parameter : procedure->parameters())
{
2024-04-07 23:39:56 +02:00
auto declaration_type = convert_declaration_type(parameter->type());
2024-05-19 00:43:59 +02:00
arguments.push_back(declaration_type);
}
procedure_type definition_type{ std::move(arguments), this->pointer_size };
auto info = std::make_shared<procedure_info>(definition_type, this->table);
2024-04-07 23:39:56 +02:00
2024-05-19 00:43:59 +02:00
this->table->enter(procedure->identifier(), info);
this->table = info->scope();
for (std::size_t i = 0; i < procedure->parameters().size(); ++i)
{
this->table->enter(procedure->parameters().at(i)->identifier(),
std::make_shared<parameter_info>(definition_type.arguments.at(i)));
2024-03-29 11:01:19 +01:00
}
procedure->body().accept(this);
this->table = info->scope()->scope();
}
2024-05-16 21:01:11 +02:00
const std::list<std::unique_ptr<error>>& name_analysis_visitor::errors() const noexcept
{
return m_errors;
}
allocator_visitor::allocator_visitor(std::shared_ptr<symbol_table> table)
: table(table)
2024-03-14 08:52:45 +01:00
{
}
void allocator_visitor::visit(declaration *declaration)
{
2024-03-29 11:01:19 +01:00
auto declaration_info = this->table->lookup(declaration->identifier());
if (auto variable = std::dynamic_pointer_cast<variable_info>(declaration_info))
{
this->local_offset -= sizeof(std::int32_t);
variable->offset = this->local_offset;
}
else if (auto parameter = std::dynamic_pointer_cast<parameter_info>(declaration_info))
{
parameter->offset = this->argument_offset;
this->argument_offset += sizeof(std::int32_t);
}
2024-03-14 08:52:45 +01:00
}
void allocator_visitor::visit(program *program)
{
2024-03-29 11:01:19 +01:00
this->local_offset = 0;
this->argument_offset = 0;
empty_visitor::visit(program);
2024-03-29 11:01:19 +01:00
std::dynamic_pointer_cast<procedure_info>(table->lookup("main"))->local_stack_size =
std::abs(this->local_offset);
}
void allocator_visitor::visit(procedure_definition *procedure)
2024-03-14 08:52:45 +01:00
{
2024-03-29 11:01:19 +01:00
this->local_offset = 0;
this->argument_offset = 0;
auto info = std::dynamic_pointer_cast<procedure_info>(this->table->lookup(procedure->identifier()));
this->table = info->scope();
empty_visitor::visit(procedure);
2024-03-29 11:01:19 +01:00
this->table = info->scope()->scope();
info->local_stack_size = std::abs(this->local_offset);
info->argument_stack_size = this->argument_offset;
}
void allocator_visitor::visit(call_statement *statement)
{
auto call_info = std::dynamic_pointer_cast<intrinsic_info>(this->table->lookup(statement->name()));
this->argument_offset = std::max(static_cast<std::size_t>(this->argument_offset),
call_info->parameter_stack_size());
2024-03-14 08:52:45 +01:00
}
2024-05-16 21:01:11 +02:00
type_analysis_visitor::type_analysis_visitor(std::shared_ptr<symbol_table> table,
2024-05-19 00:43:59 +02:00
const std::filesystem::path& filename, const std::size_t target_pointer_size)
2024-05-16 21:01:11 +02:00
: table(table), filename(filename), pointer_size(target_pointer_size)
{
}
void type_analysis_visitor::visit(program *program)
{
for (auto& definition : program->definitions())
{
if (dynamic_cast<procedure_definition *>(definition.get()) != nullptr)
{
definition->accept(this);
}
}
program->body().accept(this);
}
2024-05-19 00:43:59 +02:00
void type_analysis_visitor::visit(procedure_definition *procedure)
2024-05-16 21:01:11 +02:00
{
2024-05-19 00:43:59 +02:00
auto info = std::dynamic_pointer_cast<procedure_info>(this->table->lookup(procedure->identifier()));
this->table = info->scope();
procedure->body().accept(this);
this->table = info->scope()->scope();
2024-05-16 21:01:11 +02:00
}
void type_analysis_visitor::visit(integer_literal *literal)
{
literal->data_type = std::dynamic_pointer_cast<type_info>(table->lookup("Int"))->type();
}
void type_analysis_visitor::visit(boolean_literal *literal)
{
literal->data_type = std::dynamic_pointer_cast<type_info>(table->lookup("Boolean"))->type();
}
void type_analysis_visitor::visit(unary_expression *expression)
{
empty_visitor::visit(expression);
switch (expression->operation())
{
case unary_operator::reference:
expression->data_type = std::make_shared<const pointer_type>(expression->operand().data_type,
this->pointer_size);
break;
case unary_operator::dereference:
auto operand_type = expression->operand().data_type;
if (auto referenced_type = std::dynamic_pointer_cast<const pointer_type>(operand_type))
{
expression->data_type = referenced_type;
}
else if (operand_type != nullptr)
{
auto new_error = std::make_unique<type_mismatch>(operand_type,
type_mismatch::operation::dereference, this->filename, expression->position());
m_errors.push_back(std::move(new_error));
}
break;
}
}
2024-05-19 00:43:59 +02:00
void type_analysis_visitor::visit(call_statement *statement)
{
auto call_info = std::dynamic_pointer_cast<intrinsic_info>(this->table->lookup(statement->name()));
std::size_t i{ 0 };
for (const auto& argument : statement->arguments())
{
argument->accept(this);
if (argument->data_type != nullptr && i < call_info->type()->arguments.size()
&& call_info->type()->arguments[i] != argument->data_type)
{
auto new_error = std::make_unique<type_mismatch>(argument->data_type,
type_mismatch::operation::argument, this->filename, argument->position());
m_errors.push_back(std::move(new_error));
}
++i;
}
}
void type_analysis_visitor::visit(constant_definition *definition)
{
definition->body().accept(this);
}
2024-05-16 21:01:11 +02:00
const std::list<std::unique_ptr<error>>& type_analysis_visitor::errors() const noexcept
{
return m_errors;
}
2024-03-14 08:52:45 +01:00
}