aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPhilip Herron <herron.philip@googlemail.com>2023-06-20 16:39:25 +0100
committerPhilip Herron <philip.herron@embecosm.com>2023-06-21 09:00:30 +0000
commit8e2619254f7f53d2637148a13e1d5c8e26447c41 (patch)
tree5e3aba1ceb56085794365150ca704711ec5d9c6d /gcc
parent7bb7c2a44e6e2b3ea6f95891ee60e2b91cc8cd59 (diff)
downloadgcc-8e2619254f7f53d2637148a13e1d5c8e26447c41.zip
gcc-8e2619254f7f53d2637148a13e1d5c8e26447c41.tar.gz
gcc-8e2619254f7f53d2637148a13e1d5c8e26447c41.tar.bz2
gccrs: Fix generic argument tracking
When we do generic argument substitution we creating mappings of the HIR::GenericArgs argument to the TyTy::SubstitutionParam as a pointer. So for example when we have Generic Parameters <Self, T> and arguments <T, U> T0: Arguments: <Self=T, T=U> T1: Self -> replaced-with T T2: Arguments: <T=T, T=U> T3: T maps back to the replace Self->T T4: Arguments <T=T, T=T> Which is wrong but because we do a string comparison to find the argument mapping we cant reply on the pointer to the origin parameter mapping as the parameter will be updated resulting in bad mappings. This patch changes the Argument mappings to track the _original_ parameter type so that lookup's for the mappings use this symbol instead not the updated ones during substitution. Addresses #1893 gcc/rust/ChangeLog: * typecheck/rust-hir-type-check-path.cc (TypeCheckExpr::resolve_segments): simplify lookup of the respective predicate * typecheck/rust-tyty-subst.cc (SubstitutionArg::SubstitutionArg): track original parameter (SubstitutionArg::operator=): update copy ctor (SubstitutionArg::get_param_ty): use original param (SubstitutionArg::as_string): update as_string * typecheck/rust-tyty-subst.h: add new private field Signed-off-by: Philip Herron <herron.philip@googlemail.com>
Diffstat (limited to 'gcc')
-rw-r--r--gcc/rust/typecheck/rust-hir-type-check-path.cc26
-rw-r--r--gcc/rust/typecheck/rust-tyty-subst.cc22
-rw-r--r--gcc/rust/typecheck/rust-tyty-subst.h3
3 files changed, 28 insertions, 23 deletions
diff --git a/gcc/rust/typecheck/rust-hir-type-check-path.cc b/gcc/rust/typecheck/rust-hir-type-check-path.cc
index d685d73..834d42f 100644
--- a/gcc/rust/typecheck/rust-hir-type-check-path.cc
+++ b/gcc/rust/typecheck/rust-hir-type-check-path.cc
@@ -431,23 +431,15 @@ TypeCheckExpr::resolve_segments (NodeId root_resolved_node_id,
// we need to setup with apropriate bounds
HIR::TypePath &bound_path
= *associated->get_impl_block ()->get_trait_ref ().get ();
-
- // generate an implicit HIR Type we can apply to the predicate
- HirId implicit_id = mappings->get_next_hir_id ();
- context->insert_implicit_type (implicit_id, impl_block_ty);
-
- Analysis::NodeMapping mappings (expr_mappings.get_crate_num (),
- expr_mappings.get_nodeid (),
- implicit_id,
- expr_mappings.get_local_defid ());
- HIR::TypePath *implicit_self_bound
- = new HIR::TypePath (mappings, {},
- Linemap::predeclared_location (), false);
-
- TyTy::TypeBoundPredicate predicate
- = get_predicate_from_bound (bound_path, implicit_self_bound);
- impl_block_ty
- = associated->setup_associated_types (prev_segment, predicate);
+ const auto &trait_ref = *TraitResolver::Resolve (bound_path);
+ rust_assert (!trait_ref.is_error ());
+
+ const auto &predicate
+ = impl_block_ty->lookup_predicate (trait_ref.get_defid ());
+ if (!predicate.is_error ())
+ impl_block_ty
+ = associated->setup_associated_types (prev_segment,
+ predicate);
}
}
diff --git a/gcc/rust/typecheck/rust-tyty-subst.cc b/gcc/rust/typecheck/rust-tyty-subst.cc
index 7d7ab7c..5452ae0 100644
--- a/gcc/rust/typecheck/rust-tyty-subst.cc
+++ b/gcc/rust/typecheck/rust-tyty-subst.cc
@@ -168,10 +168,14 @@ SubstitutionParamMapping::override_context ()
SubstitutionArg::SubstitutionArg (const SubstitutionParamMapping *param,
BaseType *argument)
: param (param), argument (argument)
-{}
+{
+ if (param != nullptr)
+ original_param = param->get_param_ty ();
+}
SubstitutionArg::SubstitutionArg (const SubstitutionArg &other)
- : param (other.param), argument (other.argument)
+ : param (other.param), original_param (other.original_param),
+ argument (other.argument)
{}
SubstitutionArg &
@@ -179,6 +183,8 @@ SubstitutionArg::operator= (const SubstitutionArg &other)
{
param = other.param;
argument = other.argument;
+ original_param = other.original_param;
+
return *this;
}
@@ -200,6 +206,12 @@ SubstitutionArg::get_param_mapping () const
return param;
}
+const ParamType *
+SubstitutionArg::get_param_ty () const
+{
+ return original_param;
+}
+
SubstitutionArg
SubstitutionArg::error ()
{
@@ -227,7 +239,7 @@ SubstitutionArg::is_conrete () const
std::string
SubstitutionArg::as_string () const
{
- return param->as_string ()
+ return original_param->as_string ()
+ (argument != nullptr ? ":" + argument->as_string () : "");
}
@@ -289,9 +301,7 @@ SubstitutionArgumentMappings::get_argument_for_symbol (
{
for (auto &mapping : mappings)
{
- const SubstitutionParamMapping *param = mapping.get_param_mapping ();
- const ParamType *p = param->get_param_ty ();
-
+ const ParamType *p = mapping.get_param_ty ();
if (p->get_symbol ().compare (param_to_find->get_symbol ()) == 0)
{
*argument = mapping;
diff --git a/gcc/rust/typecheck/rust-tyty-subst.h b/gcc/rust/typecheck/rust-tyty-subst.h
index 0bbb164..e00eef2 100644
--- a/gcc/rust/typecheck/rust-tyty-subst.h
+++ b/gcc/rust/typecheck/rust-tyty-subst.h
@@ -87,6 +87,8 @@ public:
const SubstitutionParamMapping *get_param_mapping () const;
+ const ParamType *get_param_ty () const;
+
static SubstitutionArg error ();
bool is_error () const;
@@ -97,6 +99,7 @@ public:
private:
const SubstitutionParamMapping *param;
+ const ParamType *original_param;
BaseType *argument;
};