aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>2023-07-13 11:57:41 +0200
committerArthur Cohen <arthur.cohen@embecosm.com>2024-01-16 18:55:59 +0100
commit987a411d409fac53041033979e12c404a8995e93 (patch)
tree42f649ea9798cc92d0e57a81200c859527fff394 /gcc
parented866110ef0f90f24c60a91a7141565b706ad185 (diff)
downloadgcc-987a411d409fac53041033979e12c404a8995e93.zip
gcc-987a411d409fac53041033979e12c404a8995e93.tar.gz
gcc-987a411d409fac53041033979e12c404a8995e93.tar.bz2
gccrs: resolve: Convert identifier to a SimplePath
We wish to remove node ids from identifiers, because they do not make that much sense and are only used for procedural macros anyway. This means we either have to wrap those into a structure or converting them to an existing structure that already have a node id. This commit convert those meta word identifiers to a meta path SimplePath. gcc/rust/ChangeLog: * ast/rust-ast.h: Add new constructor for SimplePath from an identifier. * expand/rust-expand-visitor.cc (get_traits_to_derive): Add conversion. Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Diffstat (limited to 'gcc')
-rw-r--r--gcc/rust/ast/rust-ast.h7
-rw-r--r--gcc/rust/expand/rust-expand-visitor.cc9
2 files changed, 15 insertions, 1 deletions
diff --git a/gcc/rust/ast/rust-ast.h b/gcc/rust/ast/rust-ast.h
index 5be6932..8ec707f 100644
--- a/gcc/rust/ast/rust-ast.h
+++ b/gcc/rust/ast/rust-ast.h
@@ -427,6 +427,13 @@ public:
node_id (Analysis::Mappings::get ()->get_next_node_id ())
{}
+ SimplePath (Identifier ident)
+ : opening_scope_resolution (false),
+ segments ({SimplePathSegment (ident.as_string (), ident.get_locus ())}),
+ locus (ident.get_locus ()),
+ node_id (Analysis::Mappings::get ()->get_next_node_id ())
+ {}
+
// Creates an empty SimplePath.
static SimplePath create_empty ()
{
diff --git a/gcc/rust/expand/rust-expand-visitor.cc b/gcc/rust/expand/rust-expand-visitor.cc
index 3fa0b5f..54075e1 100644
--- a/gcc/rust/expand/rust-expand-visitor.cc
+++ b/gcc/rust/expand/rust-expand-visitor.cc
@@ -87,8 +87,15 @@ get_traits_to_derive (AST::Attribute &attr)
break;
case AST::MetaItem::ItemKind::Word: {
auto word = static_cast<AST::MetaWord *> (meta_item);
+ // Convert current word to path
+ current
+ = make_unique<AST::MetaItemPath> (AST::MetaItemPath (
+ AST::SimplePath (word->get_ident ())));
+ auto path
+ = static_cast<AST::MetaItemPath *> (current.get ());
+
result.push_back (
- Rust::make_unique<Identifier> (word->get_ident ()));
+ make_unique<AST::SimplePath> (path->get_path ()));
}
break;
case AST::MetaItem::ItemKind::ListPaths: