/* Symbol definitions. 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 . */ #include "elna/boot/symbol.h" namespace elna::boot { type::type() { } type::type(std::shared_ptr alias) : tag(type_tag::alias), alias(alias) { } type::type(std::shared_ptr primitive) : tag(type_tag::primitive), primitive(primitive) { } type::type(std::shared_ptr record) : tag(type_tag::record), record(record) { } type::type(std::shared_ptr _union) : tag(type_tag::_union), _union(_union) { } type::type(std::shared_ptr pointer) : tag(type_tag::pointer), pointer(pointer) { } type::type(std::shared_ptr array) : tag(type_tag::array), array(array) { } void type::copy(const type& other) { switch (other.tag) { case type_tag::empty: break; case type_tag::alias: new (&alias) std::weak_ptr(other.alias); break; case type_tag::primitive: new (&primitive) std::shared_ptr(other.primitive); break; case type_tag::record: new (&record) std::shared_ptr(other.record); break; case type_tag::_union: new (&_union) std::shared_ptr(other._union); break; case type_tag::pointer: new (&pointer) std::shared_ptr(other.pointer); break; case type_tag::array: new (&array) std::shared_ptr(other.array); break; } } type::type(const type& other) : tag(other.tag) { copy(other); } void type::move(type&& other) { switch (other.tag) { case type_tag::empty: break; case type_tag::alias: new (&alias) std::weak_ptr(std::move(other.alias)); break; case type_tag::primitive: new (&primitive) std::shared_ptr(std::move(other.primitive)); break; case type_tag::record: new (&record) std::shared_ptr(std::move(other.record)); break; case type_tag::_union: new (&_union) std::shared_ptr(std::move(other._union)); break; case type_tag::pointer: new (&pointer) std::shared_ptr(std::move(other.pointer)); break; case type_tag::array: new (&array) std::shared_ptr(std::move(other.array)); break; } } type& type::operator=(const type& other) { this->~type(); this->tag = other.tag; copy(other); return *this; } type::type(type&& other) : tag(other.tag) { move(std::move(other)); } type& type::operator=(type&& other) { this->~type(); this->tag = other.tag; move(std::move(other)); return *this; } bool type::operator==(const std::nullptr_t&) { return empty(); } type::~type() { switch (tag) { case type_tag::empty: break; case type_tag::alias: this->alias.~weak_ptr(); break; case type_tag::primitive: this->primitive.~shared_ptr(); break; case type_tag::record: this->record.~shared_ptr(); break; case type_tag::_union: this->_union.~shared_ptr(); break; case type_tag::pointer: this->pointer.~shared_ptr(); break; case type_tag::array: this->array.~shared_ptr(); break; } } template<> std::shared_ptr type::get() const { if (tag == type_tag::alias) { return this->alias.lock(); } else { return nullptr; } } template<> std::shared_ptr type::get() const { if (tag == type_tag::primitive) { return this->primitive; } else { return nullptr; } } template<> std::shared_ptr type::get() const { if (tag == type_tag::record) { return this->record; } else { return nullptr; } } template<> std::shared_ptr type::get() const { if (tag == type_tag::_union) { return this->_union; } else { return nullptr; } } template<> std::shared_ptr type::get() const { if (tag == type_tag::pointer) { return this->pointer; } else { return nullptr; } } template<> std::shared_ptr type::get() const { if (tag == type_tag::array) { return this->array; } else { return nullptr; } } bool type::empty() const { return tag == type_tag::empty; } alias_type::alias_type(const std::string& name) : name(name), reference() { } pointer_type::pointer_type(type base) : base(base) { } array_type::array_type(type base, std::uint64_t size) : base(base), size(size) { } primitive_type::primitive_type(const std::string& identifier) : identifier(identifier) { } procedure_type::procedure_type(return_t return_type) : return_type(return_type) { } info::~info() { } std::shared_ptr info::is_type() { return nullptr; } type_info::type_info(const type symbol) : symbol(symbol) { } std::shared_ptr type_info::is_type() { return std::static_pointer_cast(shared_from_this()); } std::shared_ptr builtin_symbol_table() { auto result = std::make_shared(); result->enter("Int", std::make_shared(type(std::make_shared("Int")))); result->enter("Word", std::make_shared(type(std::make_shared("Word")))); result->enter("Char", std::make_shared(type(std::make_shared("Char")))); result->enter("Bool", std::make_shared(type(std::make_shared("Bool")))); result->enter("Byte", std::make_shared(type(std::make_shared("Byte")))); result->enter("Float", std::make_shared(type(std::make_shared("Float")))); result->enter("String", std::make_shared(type(std::make_shared("String")))); return result; } }