diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-11-05 11:38:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-05 11:38:05 +0000 |
commit | e73922ef9f07c511c383cc37532d0324a1138d99 (patch) | |
tree | cbb57b666f3a9907175d710134d6783f130e7049 /gcc/rust/backend/rust-compile-context.h | |
parent | 8e992e371bbd896c8b605e1ebade5cad80b1b411 (diff) | |
parent | f4c200fcfec75b3841640263609d2133ead0c518 (diff) | |
download | gcc-e73922ef9f07c511c383cc37532d0324a1138d99.zip gcc-e73922ef9f07c511c383cc37532d0324a1138d99.tar.gz gcc-e73922ef9f07c511c383cc37532d0324a1138d99.tar.bz2 |
Merge #794
794: Fix unhandled type bounds in TypeAlias r=philberty a=philberty
This adds support for trait-object-types and desugars HIR::TraitObjectTypeOneBound into a single
HIR::TraitObjectType. This also adds the missing cases of the generic arguments to the TypeBoundPredicates.
It also contains cleanup for helpers used during monomorphization and a recursion limiter which is likely set too
low but it is good enough for the test-cases we have now to get good back-traces.
Fixes #786
Co-authored-by: Philip Herron <philip.herron@embecosm.com>
Diffstat (limited to 'gcc/rust/backend/rust-compile-context.h')
-rw-r--r-- | gcc/rust/backend/rust-compile-context.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/rust/backend/rust-compile-context.h b/gcc/rust/backend/rust-compile-context.h index 551e041..396cb10 100644 --- a/gcc/rust/backend/rust-compile-context.h +++ b/gcc/rust/backend/rust-compile-context.h @@ -367,6 +367,9 @@ public: void visit (const TyTy::ParamType ¶m) override { + recursion_count++; + rust_assert (recursion_count < kDefaultRecusionLimit); + param.resolve ()->accept_vis (*this); } @@ -670,12 +673,16 @@ public: private: TyTyResolveCompile (Context *ctx, bool trait_object_mode) - : ctx (ctx), trait_object_mode (trait_object_mode), translated (nullptr) + : ctx (ctx), trait_object_mode (trait_object_mode), translated (nullptr), + recursion_count (0) {} Context *ctx; bool trait_object_mode; ::Btype *translated; + size_t recursion_count; + + static const size_t kDefaultRecusionLimit = 5; }; } // namespace Compile |