// Copyright (C) 2020-2023 Free Software Foundation, Inc. // This file is part of GCC. // 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 // . #ifndef RUST_AST_LOWER_IMPLITEM_H #define RUST_AST_LOWER_IMPLITEM_H #include "rust-diagnostics.h" #include "rust-ast-lower-type.h" #include "rust-ast-lower-stmt.h" #include "rust-ast-lower-expr.h" #include "rust-ast-lower-pattern.h" #include "rust-ast-lower-block.h" namespace Rust { namespace HIR { class ASTLowerImplItem : public ASTLoweringBase { using Rust::HIR::ASTLoweringBase::visit; public: static HIR::ImplItem *translate (AST::InherentImplItem *item, HirId parent_impl_id) { ASTLowerImplItem resolver; item->accept_vis (resolver); if (resolver.translated != nullptr) { rust_assert (resolver.item_cast != nullptr); auto id = resolver.translated->get_impl_mappings ().get_hirid (); auto defid = resolver.translated->get_impl_mappings ().get_defid (); auto locus = resolver.translated->get_locus (); resolver.handle_outer_attributes (*resolver.item_cast); resolver.mappings->insert_hir_implitem (parent_impl_id, resolver.translated); resolver.mappings->insert_location (id, locus); resolver.mappings->insert_defid_mapping (defid, resolver.item_cast); } return resolver.translated; } static HIR::ImplItem *translate (AST::TraitImplItem *item, HirId parent_impl_id) { ASTLowerImplItem resolver; item->accept_vis (resolver); if (resolver.translated != nullptr) { rust_assert (resolver.item_cast != nullptr); auto id = resolver.translated->get_impl_mappings ().get_hirid (); auto defid = resolver.translated->get_impl_mappings ().get_defid (); auto locus = resolver.translated->get_locus (); resolver.handle_outer_attributes (*resolver.item_cast); resolver.mappings->insert_hir_implitem (parent_impl_id, resolver.translated); resolver.mappings->insert_location (id, locus); resolver.mappings->insert_defid_mapping (defid, resolver.item_cast); } return resolver.translated; } void visit (AST::TypeAlias &alias) override { std::vector > where_clause_items; HIR::WhereClause where_clause (std::move (where_clause_items)); HIR::Visibility vis = translate_visibility (alias.get_visibility ()); std::vector > generic_params; if (alias.has_generics ()) generic_params = lower_generic_params (alias.get_generic_params ()); HIR::Type *existing_type = ASTLoweringType::translate (alias.get_type_aliased ().get ()); auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, alias.get_node_id (), mappings->get_next_hir_id (crate_num), mappings->get_next_localdef_id (crate_num)); auto type_alias = new HIR::TypeAlias ( mapping, alias.get_new_type_name (), std::move (generic_params), std::move (where_clause), std::unique_ptr (existing_type), std::move (vis), alias.get_outer_attrs (), alias.get_locus ()); translated = type_alias; item_cast = type_alias; } void visit (AST::ConstantItem &constant) override { HIR::Visibility vis = translate_visibility (constant.get_visibility ()); HIR::Type *type = ASTLoweringType::translate (constant.get_type ().get ()); HIR::Expr *expr = ASTLoweringExpr::translate (constant.get_expr ().get ()); auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, constant.get_node_id (), mappings->get_next_hir_id (crate_num), mappings->get_next_localdef_id (crate_num)); auto translated_constant = new HIR::ConstantItem (mapping, constant.get_identifier (), vis, std::unique_ptr (type), std::unique_ptr (expr), constant.get_outer_attrs (), constant.get_locus ()); translated = translated_constant; item_cast = translated_constant; } void visit (AST::Function &function) override { // ignore for now and leave empty std::vector > where_clause_items; HIR::WhereClause where_clause (std::move (where_clause_items)); HIR::FunctionQualifiers qualifiers = lower_qualifiers (function.get_qualifiers ()); HIR::Visibility vis = translate_visibility (function.get_visibility ()); // need std::vector > generic_params; if (function.has_generics ()) { generic_params = lower_generic_params (function.get_generic_params ()); } Identifier function_name = function.get_function_name (); Location locus = function.get_locus (); std::unique_ptr return_type = function.has_return_type () ? std::unique_ptr ( ASTLoweringType::translate (function.get_return_type ().get ())) : nullptr; std::vector function_params; for (auto ¶m : function.get_function_params ()) { auto translated_pattern = std::unique_ptr ( ASTLoweringPattern::translate (param.get_pattern ().get ())); auto translated_type = std::unique_ptr ( ASTLoweringType::translate (param.get_type ().get ())); auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, param.get_node_id (), mappings->get_next_hir_id (crate_num), UNKNOWN_LOCAL_DEFID); auto hir_param = HIR::FunctionParam (mapping, std::move (translated_pattern), std::move (translated_type), param.get_locus ()); function_params.push_back (std::move (hir_param)); } bool terminated = false; std::unique_ptr function_body = std::unique_ptr ( ASTLoweringBlock::translate (function.get_definition ().get (), &terminated)); auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, function.get_node_id (), mappings->get_next_hir_id (crate_num), mappings->get_next_localdef_id (crate_num)); mappings->insert_location (function_body->get_mappings ().get_hirid (), function.get_locus ()); auto fn = new HIR::Function (mapping, std::move (function_name), std::move (qualifiers), std::move (generic_params), std::move (function_params), std::move (return_type), std::move (where_clause), std::move (function_body), std::move (vis), function.get_outer_attrs (), HIR::SelfParam::error (), locus); // add the mappings for the function params at the end for (auto ¶m : fn->get_function_params ()) { mappings->insert_hir_param (¶m); mappings->insert_location (mapping.get_hirid (), param.get_locus ()); } translated = fn; item_cast = fn; } void visit (AST::Method &method) override { // ignore for now and leave empty std::vector > where_clause_items; HIR::WhereClause where_clause (std::move (where_clause_items)); HIR::FunctionQualifiers qualifiers = lower_qualifiers (method.get_qualifiers ()); HIR::Visibility vis = translate_visibility (method.get_visibility ()); // need std::vector > generic_params; if (method.has_generics ()) { generic_params = lower_generic_params (method.get_generic_params ()); } Identifier method_name = method.get_method_name (); Location locus = method.get_locus (); HIR::SelfParam self_param = lower_self (method.get_self_param ()); std::unique_ptr return_type = method.has_return_type () ? std::unique_ptr ( ASTLoweringType::translate (method.get_return_type ().get ())) : nullptr; std::vector function_params; for (auto ¶m : method.get_function_params ()) { auto translated_pattern = std::unique_ptr ( ASTLoweringPattern::translate (param.get_pattern ().get ())); auto translated_type = std::unique_ptr ( ASTLoweringType::translate (param.get_type ().get ())); auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, param.get_node_id (), mappings->get_next_hir_id (crate_num), UNKNOWN_LOCAL_DEFID); auto hir_param = HIR::FunctionParam (mapping, std::move (translated_pattern), std::move (translated_type), param.get_locus ()); function_params.push_back (std::move (hir_param)); } bool terminated = false; std::unique_ptr method_body = std::unique_ptr ( ASTLoweringBlock::translate (method.get_definition ().get (), &terminated)); auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, method.get_node_id (), mappings->get_next_hir_id (crate_num), mappings->get_next_localdef_id (crate_num)); auto mth = new HIR::Function (mapping, std::move (method_name), std::move (qualifiers), std::move (generic_params), std::move (function_params), std::move (return_type), std::move (where_clause), std::move (method_body), std::move (vis), method.get_outer_attrs (), std::move (self_param), locus); // insert mappings for self mappings->insert_hir_self_param (&self_param); mappings->insert_location (self_param.get_mappings ().get_hirid (), self_param.get_locus ()); // add the mappings for the function params at the end for (auto ¶m : mth->get_function_params ()) { mappings->insert_hir_param (¶m); mappings->insert_location (mapping.get_hirid (), param.get_locus ()); } translated = mth; item_cast = mth; } private: ASTLowerImplItem () : translated (nullptr), item_cast (nullptr) {} HIR::ImplItem *translated; HIR::Item *item_cast; }; class ASTLowerTraitItem : public ASTLoweringBase { using Rust::HIR::ASTLoweringBase::visit; public: static HIR::TraitItem *translate (AST::TraitItem *item) { ASTLowerTraitItem resolver; item->accept_vis (resolver); if (resolver.translated != nullptr) { auto id = resolver.translated->get_mappings ().get_hirid (); auto defid = resolver.translated->get_mappings ().get_defid (); auto locus = resolver.translated->get_trait_locus (); resolver.handle_outer_attributes (*resolver.translated); resolver.mappings->insert_hir_trait_item (resolver.translated); resolver.mappings->insert_location (id, locus); resolver.mappings->insert_defid_mapping (defid, resolver.translated); } return resolver.translated; } void visit (AST::TraitItemFunc &func) override { AST::TraitFunctionDecl &ref = func.get_trait_function_decl (); std::vector > where_clause_items; HIR::WhereClause where_clause (std::move (where_clause_items)); HIR::FunctionQualifiers qualifiers = lower_qualifiers (func.get_trait_function_decl ().get_qualifiers ()); std::vector > generic_params; if (ref.has_generics ()) { generic_params = lower_generic_params (ref.get_generic_params ()); } std::unique_ptr return_type = ref.has_return_type () ? std::unique_ptr ( ASTLoweringType::translate (ref.get_return_type ().get ())) : nullptr; std::vector function_params; for (auto ¶m : ref.get_function_params ()) { auto translated_pattern = std::unique_ptr ( ASTLoweringPattern::translate (param.get_pattern ().get ())); auto translated_type = std::unique_ptr ( ASTLoweringType::translate (param.get_type ().get ())); auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, param.get_node_id (), mappings->get_next_hir_id (crate_num), UNKNOWN_LOCAL_DEFID); auto hir_param = HIR::FunctionParam (mapping, std::move (translated_pattern), std::move (translated_type), param.get_locus ()); function_params.push_back (std::move (hir_param)); } HIR::TraitFunctionDecl decl (ref.get_identifier (), std::move (qualifiers), std::move (generic_params), HIR::SelfParam::error (), std::move (function_params), std::move (return_type), std::move (where_clause)); bool terminated = false; std::unique_ptr block_expr = func.has_definition () ? std::unique_ptr ( ASTLoweringBlock::translate (func.get_definition ().get (), &terminated)) : nullptr; auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, func.get_node_id (), mappings->get_next_hir_id (crate_num), mappings->get_next_localdef_id (crate_num)); HIR::TraitItemFunc *trait_item = new HIR::TraitItemFunc (mapping, std::move (decl), std::move (block_expr), func.get_outer_attrs (), func.get_locus ()); translated = trait_item; // add the mappings for the function params at the end for (auto ¶m : trait_item->get_decl ().get_function_params ()) { mappings->insert_hir_param (¶m); mappings->insert_location (mapping.get_hirid (), param.get_locus ()); } } void visit (AST::TraitItemMethod &method) override { AST::TraitMethodDecl &ref = method.get_trait_method_decl (); std::vector > where_clause_items; HIR::WhereClause where_clause (std::move (where_clause_items)); HIR::FunctionQualifiers qualifiers = lower_qualifiers (method.get_trait_method_decl ().get_qualifiers ()); std::vector > generic_params; if (ref.has_generics ()) { generic_params = lower_generic_params (ref.get_generic_params ()); } std::unique_ptr return_type = ref.has_return_type () ? std::unique_ptr ( ASTLoweringType::translate (ref.get_return_type ().get ())) : nullptr; HIR::SelfParam self_param = lower_self (ref.get_self_param ()); std::vector function_params; for (auto ¶m : ref.get_function_params ()) { auto translated_pattern = std::unique_ptr ( ASTLoweringPattern::translate (param.get_pattern ().get ())); auto translated_type = std::unique_ptr ( ASTLoweringType::translate (param.get_type ().get ())); auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, param.get_node_id (), mappings->get_next_hir_id (crate_num), UNKNOWN_LOCAL_DEFID); auto hir_param = HIR::FunctionParam (mapping, std::move (translated_pattern), std::move (translated_type), param.get_locus ()); function_params.push_back (hir_param); } HIR::TraitFunctionDecl decl (ref.get_identifier (), std::move (qualifiers), std::move (generic_params), std::move (self_param), std::move (function_params), std::move (return_type), std::move (where_clause)); bool terminated = false; std::unique_ptr block_expr = method.has_definition () ? std::unique_ptr ( ASTLoweringBlock::translate (method.get_definition ().get (), &terminated)) : nullptr; auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, method.get_node_id (), mappings->get_next_hir_id (crate_num), mappings->get_next_localdef_id (crate_num)); HIR::TraitItemFunc *trait_item = new HIR::TraitItemFunc (mapping, std::move (decl), std::move (block_expr), method.get_outer_attrs (), method.get_locus ()); translated = trait_item; // insert mappings for self mappings->insert_hir_self_param (&self_param); mappings->insert_location (self_param.get_mappings ().get_hirid (), self_param.get_locus ()); // add the mappings for the function params at the end for (auto ¶m : trait_item->get_decl ().get_function_params ()) { mappings->insert_hir_param (¶m); mappings->insert_location (mapping.get_hirid (), param.get_locus ()); } } void visit (AST::TraitItemConst &constant) override { HIR::Type *type = ASTLoweringType::translate (constant.get_type ().get ()); HIR::Expr *expr = constant.has_expression () ? ASTLoweringExpr::translate (constant.get_expr ().get ()) : nullptr; auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, constant.get_node_id (), mappings->get_next_hir_id (crate_num), mappings->get_next_localdef_id (crate_num)); HIR::TraitItemConst *trait_item = new HIR::TraitItemConst (mapping, constant.get_identifier (), std::unique_ptr (type), std::unique_ptr (expr), constant.get_outer_attrs (), constant.get_locus ()); translated = trait_item; } void visit (AST::TraitItemType &type) override { std::vector > type_param_bounds; auto crate_num = mappings->get_current_crate (); Analysis::NodeMapping mapping (crate_num, type.get_node_id (), mappings->get_next_hir_id (crate_num), mappings->get_next_localdef_id (crate_num)); HIR::TraitItemType *trait_item = new HIR::TraitItemType (mapping, type.get_identifier (), std::move (type_param_bounds), type.get_outer_attrs (), type.get_locus ()); translated = trait_item; } private: ASTLowerTraitItem () : translated (nullptr) {} HIR::TraitItem *translated; }; } // namespace HIR } // namespace Rust #endif // RUST_AST_LOWER_IMPLITEM_H