95 lines
3.5 KiB
C++
95 lines
3.5 KiB
C++
/* Name analysis.
|
|
Copyright (C) 2025 Free Software Foundation, Inc.
|
|
|
|
GCC 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, or (at your option)
|
|
any later version.
|
|
|
|
GCC 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 GCC; see the file COPYING3. If not see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <memory>
|
|
#include <deque>
|
|
|
|
#include "elna/boot/ast.h"
|
|
#include "elna/boot/result.h"
|
|
#include "elna/boot/symbol.h"
|
|
|
|
namespace elna::boot
|
|
{
|
|
class undeclared_error : public error
|
|
{
|
|
std::string identifier;
|
|
|
|
public:
|
|
undeclared_error(const std::string& identifier, const char *path, const struct position position);
|
|
|
|
std::string what() const override;
|
|
};
|
|
|
|
class already_declared_error : public error
|
|
{
|
|
std::string identifier;
|
|
|
|
public:
|
|
already_declared_error(const std::string& identifier, const char *path, const struct position position);
|
|
|
|
std::string what() const override;
|
|
};
|
|
|
|
class declaration_visitor final : public parser_visitor, public error_container
|
|
{
|
|
type current_type;
|
|
std::shared_ptr<symbol_table> symbols;
|
|
|
|
public:
|
|
std::unordered_map<std::string, std::shared_ptr<alias_type>> unresolved;
|
|
|
|
explicit declaration_visitor(const char *path, std::shared_ptr<symbol_table> symbols);
|
|
|
|
void visit(primitive_type_expression *type_expression) override;
|
|
void visit(array_type_expression *type_expression) override;
|
|
void visit(pointer_type_expression *type_expression) override;
|
|
void visit(program *program) override;
|
|
void visit(type_definition *definition) override;
|
|
void visit(record_type_expression *) override;
|
|
void visit(union_type_expression *) override;
|
|
void visit(procedure_type_expression *) override;
|
|
|
|
void visit(variable_declaration *declaration) override;
|
|
void visit(constant_definition *) override;
|
|
void visit(procedure_definition *definition) override;
|
|
void visit(assign_statement *statement) override;
|
|
void visit(if_statement *statement) override;
|
|
void visit(while_statement *statement) override;
|
|
void visit(return_statement *statement) override;
|
|
void visit(defer_statement *statement) override;
|
|
void visit(procedure_call *call) override;
|
|
void visit(block *block) override;
|
|
void visit(cast_expression *expression) override;
|
|
void visit(traits_expression *trait) override;
|
|
void visit(binary_expression *expression) override;
|
|
void visit(unary_expression *expression) override;
|
|
void visit(variable_expression *) override;
|
|
void visit(array_access_expression *expression) override;
|
|
void visit(field_access_expression *expression) override;
|
|
void visit(dereference_expression *expression) override;
|
|
void visit(literal<std::int32_t> *) override;
|
|
void visit(literal<std::uint32_t> *) override;
|
|
void visit(literal<double> *) override;
|
|
void visit(literal<bool> *) override;
|
|
void visit(literal<unsigned char> *) override;
|
|
void visit(literal<std::nullptr_t> *) override;
|
|
void visit(literal<std::string> *) override;
|
|
};
|
|
}
|