aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/resolve/rust-rib.cc
diff options
context:
space:
mode:
authorArthur Cohen <arthur.cohen@embecosm.com>2023-08-28 16:40:12 +0200
committerArthur Cohen <arthur.cohen@embecosm.com>2024-08-01 16:52:25 +0200
commitc47cae71d32fa580572a5284e677590ed7cd9509 (patch)
tree3ff564f59c6148fe433cc49a324f57c53d129c37 /gcc/rust/resolve/rust-rib.cc
parent53c74beb3a15a477f4fef770fe6abccbdb124fb7 (diff)
downloadgcc-c47cae71d32fa580572a5284e677590ed7cd9509.zip
gcc-c47cae71d32fa580572a5284e677590ed7cd9509.tar.gz
gcc-c47cae71d32fa580572a5284e677590ed7cd9509.tar.bz2
gccrs: late: Setup builtin types properly, change Rib API
gcc/rust/ChangeLog: * resolve/rust-forever-stack.hxx: Start using Rib::Definition for shadowable information. * resolve/rust-late-name-resolver-2.0.cc (next_node_id): New. (next_hir_id): New. (Late::setup_builtin_types): Improve builtin type setup. * resolve/rust-rib.cc (Rib::Definition::Definition): New constructor. (Rib::Definition::Shadowable): Likewise. (Rib::Definition::NonShadowable): Likewise. (Rib::Rib): Fix general constructor. (Rib::insert): Use Definition class. (Rib::get): Likewise. * resolve/rust-rib.h: New Definition class, new prototypes.
Diffstat (limited to 'gcc/rust/resolve/rust-rib.cc')
-rw-r--r--gcc/rust/resolve/rust-rib.cc38
1 files changed, 29 insertions, 9 deletions
diff --git a/gcc/rust/resolve/rust-rib.cc b/gcc/rust/resolve/rust-rib.cc
index a198149..dee3a09 100644
--- a/gcc/rust/resolve/rust-rib.cc
+++ b/gcc/rust/resolve/rust-rib.cc
@@ -17,10 +17,27 @@
// <http://www.gnu.org/licenses/>.
#include "rust-rib.h"
+#include "rust-name-resolution-context.h"
namespace Rust {
namespace Resolver2_0 {
+Rib::Definition::Definition (NodeId id, bool shadowable)
+ : id (id), shadowable (shadowable)
+{}
+
+Rib::Definition
+Rib::Definition::Shadowable (NodeId id)
+{
+ return Definition (id, true);
+}
+
+Rib::Definition
+Rib::Definition::NonShadowable (NodeId id)
+{
+ return Definition (id, false);
+}
+
DuplicateNameError::DuplicateNameError (std::string name, NodeId existing)
: name (name), existing (existing)
{}
@@ -31,20 +48,23 @@ Rib::Rib (Kind kind, std::string identifier, NodeId id)
: Rib (kind, {{identifier, id}})
{}
-Rib::Rib (Kind kind, std::unordered_map<std::string, NodeId> values)
- : kind (kind), values (std::move (values))
-{}
+Rib::Rib (Kind kind, std::unordered_map<std::string, NodeId> to_insert)
+ : kind (kind)
+{
+ for (auto &value : to_insert)
+ values.insert ({value.first, Definition::NonShadowable (value.second)});
+}
tl::expected<NodeId, DuplicateNameError>
-Rib::insert (std::string name, NodeId id, bool can_shadow)
+Rib::insert (std::string name, Definition def)
{
- auto res = values.insert ({name, id});
- auto inserted_id = res.first->second;
+ auto res = values.insert ({name, def});
+ auto inserted_id = res.first->second.id;
auto existed = !res.second;
// if we couldn't insert, the element already exists - exit with an error,
// unless shadowing is allowed
- if (existed && !can_shadow)
+ if (existed && !def.shadowable)
return tl::make_unexpected (DuplicateNameError (name, inserted_id));
// return the NodeId
@@ -59,10 +79,10 @@ Rib::get (const std::string &name)
if (it == values.end ())
return {};
- return it->second;
+ return it->second.id;
}
-const std::unordered_map<std::string, NodeId> &
+const std::unordered_map<std::string, Rib::Definition> &
Rib::get_values () const
{
return values;