Branch data Line data Source code
1 : : // Copyright (C) 2020-2024 Free Software Foundation, Inc.
2 : :
3 : : // This file is part of GCC.
4 : :
5 : : // GCC is free software; you can redistribute it and/or modify it under
6 : : // the terms of the GNU General Public License as published by the Free
7 : : // Software Foundation; either version 3, or (at your option) any later
8 : : // version.
9 : :
10 : : // GCC is distributed in the hope that it will be useful, but WITHOUT ANY
11 : : // WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 : : // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 : : // for more details.
14 : :
15 : : // You should have received a copy of the GNU General Public License
16 : : // along with GCC; see the file COPYING3. If not see
17 : : // <http://www.gnu.org/licenses/>.
18 : :
19 : : #ifndef RUST_AST_LOWER_EXTERN_ITEM
20 : : #define RUST_AST_LOWER_EXTERN_ITEM
21 : :
22 : : #include "rust-ast-lower-base.h"
23 : : #include "rust-ast-lower-type.h"
24 : : #include "rust-ast-lower.h"
25 : : #include "rust-hir-full-decls.h"
26 : :
27 : : namespace Rust {
28 : : namespace HIR {
29 : :
30 : 1592 : class ASTLoweringExternItem : public ASTLoweringBase
31 : : {
32 : : using Rust::HIR::ASTLoweringBase::visit;
33 : :
34 : : public:
35 : 1592 : static HIR::ExternalItem *translate (AST::ExternalItem *item,
36 : : HirId parent_hirid)
37 : : {
38 : 3184 : ASTLoweringExternItem resolver;
39 : 1592 : item->accept_vis (resolver);
40 : :
41 : 1592 : rust_assert (resolver.translated != nullptr);
42 : 1592 : resolver.mappings->insert_hir_extern_item (resolver.translated,
43 : : parent_hirid);
44 : 1592 : resolver.mappings->insert_location (
45 : 1592 : resolver.translated->get_mappings ().get_hirid (),
46 : 1592 : resolver.translated->get_locus ());
47 : :
48 : 1592 : return resolver.translated;
49 : 1592 : }
50 : :
51 : 1 : void visit (AST::ExternalStaticItem &item) override
52 : : {
53 : 1 : HIR::Visibility vis = translate_visibility (item.get_visibility ());
54 : 1 : HIR::Type *static_type = ASTLoweringType::translate (item.get_type ());
55 : :
56 : 1 : auto crate_num = mappings->get_current_crate ();
57 : 2 : Analysis::NodeMapping mapping (crate_num, item.get_node_id (),
58 : 1 : mappings->get_next_hir_id (crate_num),
59 : 1 : mappings->get_next_localdef_id (crate_num));
60 : :
61 : 1 : translated = new HIR::ExternalStaticItem (
62 : 2 : mapping, item.get_identifier (), std::unique_ptr<HIR::Type> (static_type),
63 : 1 : item.is_mut () ? Mutability::Mut : Mutability::Imm, std::move (vis),
64 : 3 : item.get_outer_attrs (), item.get_locus ());
65 : 1 : }
66 : :
67 : 1591 : void visit (AST::Function &function) override
68 : : {
69 : 1591 : std::vector<std::unique_ptr<HIR::WhereClauseItem> > where_clause_items;
70 : 1591 : HIR::WhereClause where_clause (std::move (where_clause_items));
71 : 1591 : HIR::Visibility vis = translate_visibility (function.get_visibility ());
72 : :
73 : 1591 : std::vector<std::unique_ptr<HIR::GenericParam> > generic_params;
74 : 1591 : if (function.has_generics ())
75 : 508 : generic_params = lower_generic_params (function.get_generic_params ());
76 : :
77 : 1591 : HIR::Type *return_type
78 : 1591 : = function.has_return_type ()
79 : 1591 : ? ASTLoweringType::translate (function.get_return_type ())
80 : 1591 : : nullptr;
81 : :
82 : 1591 : bool is_variadic = function.is_variadic ();
83 : 1591 : auto begin = function.get_function_params ().begin ();
84 : 1591 : auto end = is_variadic ? function.get_function_params ().end () - 1
85 : 890 : : function.get_function_params ().end ();
86 : :
87 : 1591 : std::vector<HIR::NamedFunctionParam> function_params;
88 : 3526 : for (auto it = begin; it != end; it++)
89 : : {
90 : 1935 : auto ¶m = static_cast<AST::FunctionParam &> (**it);
91 : :
92 : 1935 : if (param.is_variadic () || param.is_self ())
93 : 0 : continue;
94 : 1935 : auto param_kind = param.get_pattern ().get_pattern_kind ();
95 : :
96 : 1935 : rust_assert (param_kind == AST::Pattern::Kind::Identifier
97 : : || param_kind == AST::Pattern::Kind::Wildcard);
98 : 1935 : auto ¶m_ident
99 : 1935 : = static_cast<AST::IdentifierPattern &> (param.get_pattern ());
100 : 1935 : Identifier param_name = param_kind == AST::Pattern::Kind::Identifier
101 : 1935 : ? param_ident.get_ident ()
102 : 1935 : : std::string ("_");
103 : :
104 : 1935 : HIR::Type *param_type = ASTLoweringType::translate (param.get_type ());
105 : :
106 : 1935 : auto crate_num = mappings->get_current_crate ();
107 : 1935 : Analysis::NodeMapping mapping (crate_num, param.get_node_id (),
108 : 1935 : mappings->get_next_hir_id (crate_num),
109 : 1935 : mappings->get_next_localdef_id (
110 : 1935 : crate_num));
111 : :
112 : 3870 : function_params.push_back (
113 : 1935 : HIR::NamedFunctionParam (mapping, param_name,
114 : 3870 : std::unique_ptr<HIR::Type> (param_type)));
115 : 1935 : }
116 : :
117 : 1591 : auto crate_num = mappings->get_current_crate ();
118 : 3182 : Analysis::NodeMapping mapping (crate_num, function.get_node_id (),
119 : 1591 : mappings->get_next_hir_id (crate_num),
120 : 1591 : mappings->get_next_localdef_id (crate_num));
121 : :
122 : 1591 : translated = new HIR::ExternalFunctionItem (
123 : 3182 : mapping, function.get_function_name (), std::move (generic_params),
124 : 3182 : std::unique_ptr<HIR::Type> (return_type), std::move (where_clause),
125 : : std::move (function_params), is_variadic, std::move (vis),
126 : 4773 : function.get_outer_attrs (), function.get_locus ());
127 : 1591 : }
128 : :
129 : 0 : void visit (AST::ExternalTypeItem &type) override
130 : : {
131 : 0 : auto crate_num = mappings->get_current_crate ();
132 : 0 : Analysis::NodeMapping mapping (crate_num, type.get_node_id (),
133 : 0 : mappings->get_next_hir_id (crate_num),
134 : 0 : mappings->get_next_localdef_id (crate_num));
135 : :
136 : 0 : HIR::Visibility vis = translate_visibility (type.get_visibility ());
137 : :
138 : 0 : translated = new HIR::ExternalTypeItem (mapping, type.get_identifier (),
139 : 0 : vis, type.get_locus ());
140 : 0 : }
141 : :
142 : : private:
143 : 1592 : ASTLoweringExternItem () : translated (nullptr) {}
144 : :
145 : : HIR::ExternalItem *translated;
146 : : };
147 : :
148 : : } // namespace HIR
149 : : } // namespace Rust
150 : :
151 : : #endif // RUST_AST_LOWER_ITEM
|