1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
// Copyright (C) 2020 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
// <http://www.gnu.org/licenses/>.
#ifndef RUST_AST_RESOLVE_TOPLEVEL_H
#define RUST_AST_RESOLVE_TOPLEVEL_H
#include "rust-ast-resolve-base.h"
#include "rust-ast-resolve-type.h"
#include "rust-ast-resolve-implitem.h"
#include "rust-ast-full.h"
namespace Rust {
namespace Resolver {
class ResolveTopLevel : public ResolverBase
{
using Rust::Resolver::ResolverBase::visit;
public:
static void go (AST::Item *item,
const CanonicalPath &prefix = CanonicalPath::create_empty ())
{
ResolveTopLevel resolver (prefix);
item->accept_vis (resolver);
};
void visit (AST::TypeAlias &alias) override
{
resolver->get_type_scope ().insert (
CanonicalPath (alias.get_new_type_name ()), alias.get_node_id (),
alias.get_locus (), false,
[&] (const CanonicalPath &, NodeId, Location locus) -> void {
RichLocation r (alias.get_locus ());
r.add_range (locus);
rust_error_at (r, "redefined multiple times");
});
}
void visit (AST::TupleStruct &struct_decl) override
{
resolver->get_type_scope ().insert (
CanonicalPath (struct_decl.get_identifier ()), struct_decl.get_node_id (),
struct_decl.get_locus (), false,
[&] (const CanonicalPath &, NodeId, Location locus) -> void {
RichLocation r (struct_decl.get_locus ());
r.add_range (locus);
rust_error_at (r, "redefined multiple times");
});
}
void visit (AST::StructStruct &struct_decl) override
{
resolver->get_type_scope ().insert (
CanonicalPath (struct_decl.get_identifier ()), struct_decl.get_node_id (),
struct_decl.get_locus (), false,
[&] (const CanonicalPath &, NodeId, Location locus) -> void {
RichLocation r (struct_decl.get_locus ());
r.add_range (locus);
rust_error_at (r, "redefined multiple times");
});
}
void visit (AST::StaticItem &var) override
{
resolver->get_name_scope ().insert (
CanonicalPath (var.get_identifier ()), var.get_node_id (),
var.get_locus (), false,
[&] (const CanonicalPath &, NodeId, Location locus) -> void {
RichLocation r (var.get_locus ());
r.add_range (locus);
rust_error_at (r, "redefined multiple times");
});
resolver->insert_new_definition (var.get_node_id (),
Definition{var.get_node_id (),
var.get_node_id ()});
resolver->mark_decl_mutability (var.get_node_id (), var.is_mutable ());
}
void visit (AST::ConstantItem &constant) override
{
auto path
= prefix.append (ResolveConstantItemToCanonicalPath::resolve (constant));
resolver->get_name_scope ().insert (
path, constant.get_node_id (), constant.get_locus (), false,
[&] (const CanonicalPath &, NodeId, Location locus) -> void {
RichLocation r (constant.get_locus ());
r.add_range (locus);
rust_error_at (r, "redefined multiple times");
});
resolver->insert_new_definition (constant.get_node_id (),
Definition{constant.get_node_id (),
constant.get_node_id ()});
}
void visit (AST::Function &function) override
{
auto path
= prefix.append (ResolveFunctionItemToCanonicalPath::resolve (function));
resolver->get_name_scope ().insert (
path, function.get_node_id (), function.get_locus (), false,
[&] (const CanonicalPath &, NodeId, Location locus) -> void {
RichLocation r (function.get_locus ());
r.add_range (locus);
rust_error_at (r, "redefined multiple times");
});
resolver->insert_new_definition (function.get_node_id (),
Definition{function.get_node_id (),
function.get_node_id ()});
// if this does not get a reference it will be determined to be unused
// lets give it a fake reference to itself
if (function.get_function_name ().compare ("main") == 0)
{
resolver->insert_resolved_name (function.get_node_id (),
function.get_node_id ());
}
}
void visit (AST::InherentImpl &impl_block) override
{
bool canonicalize_type_args = !impl_block.has_generics ();
bool type_resolve_generic_args = false;
CanonicalPath impl_type
= ResolveTypeToCanonicalPath::resolve (*impl_block.get_type ().get (),
canonicalize_type_args,
type_resolve_generic_args);
CanonicalPath impl_prefix = prefix.append (impl_type);
for (auto &impl_item : impl_block.get_impl_items ())
ResolveToplevelImplItem::go (impl_item.get (), impl_prefix);
}
void visit (AST::TraitImpl &impl_block) override
{
bool canonicalize_type_args = !impl_block.has_generics ();
bool type_resolve_generic_args = false;
CanonicalPath impl_type
= ResolveTypeToCanonicalPath::resolve (*impl_block.get_type ().get (),
canonicalize_type_args,
type_resolve_generic_args);
CanonicalPath impl_prefix = prefix.append (impl_type);
for (auto &impl_item : impl_block.get_impl_items ())
ResolveToplevelImplItem::go (impl_item.get (), impl_prefix);
}
void visit (AST::Trait &trait) override
{
CanonicalPath path
= prefix.append (CanonicalPath (trait.get_identifier ()));
resolver->get_type_scope ().insert (
path, trait.get_node_id (), trait.get_locus (), false,
[&] (const CanonicalPath &, NodeId, Location locus) -> void {
RichLocation r (trait.get_locus ());
r.add_range (locus);
rust_error_at (r, "redefined multiple times");
});
for (auto &item : trait.get_trait_items ())
ResolveTopLevelTraitItems::go (item.get ());
}
private:
ResolveTopLevel (const CanonicalPath &prefix)
: ResolverBase (UNKNOWN_NODEID), prefix (prefix)
{}
const CanonicalPath &prefix;
};
} // namespace Resolver
} // namespace Rust
#endif // RUST_AST_RESOLVE_TOPLEVEL_H
|