Line data Source code
1 : // Copyright (C) 2020-2026 Free Software Foundation, Inc.
2 :
3 : // This file is part of GCC.
4 :
5 : // GCC is free software; you can redistribute it and/or modify it under
6 : // the terms of the GNU General Public License as published by the Free
7 : // Software Foundation; either version 3, or (at your option) any later
8 : // version.
9 :
10 : // GCC is distributed in the hope that it will be useful, but WITHOUT ANY
11 : // WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 : // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 : // for more details.
14 :
15 : // You should have received a copy of the GNU General Public License
16 : // along with GCC; see the file COPYING3. If not see
17 : // <http://www.gnu.org/licenses/>.
18 :
19 : #ifndef RUST_HIR_TYPE_CHECK_ITEM
20 : #define RUST_HIR_TYPE_CHECK_ITEM
21 :
22 : #include "rust-hir-type-check-base.h"
23 : #include "rust-hir-visitor.h"
24 :
25 : namespace Rust {
26 : namespace Resolver {
27 :
28 23091 : class TypeCheckItem : private TypeCheckBase, private HIR::HIRVisItemVisitor
29 : {
30 : public:
31 : static TyTy::BaseType *Resolve (HIR::Item &item);
32 :
33 : static TyTy::BaseType *ResolveImplItem (HIR::ImplBlock &impl_block,
34 : HIR::ImplItem &item);
35 :
36 : static TyTy::BaseType *ResolveImplBlockSelf (HIR::ImplBlock &impl_block);
37 :
38 : static TyTy::BaseType *ResolveImplBlockSelfWithInference (
39 : HIR::ImplBlock &impl, location_t locus,
40 : TyTy::SubstitutionArgumentMappings *infer_arguments);
41 :
42 : static std::vector<TyTy::SubstitutionParamMapping>
43 : ResolveImplBlockSubstitutions (HIR::ImplBlock &impl_block,
44 : bool &failure_flag);
45 :
46 : static void ResolveImplTraitAssociatedTypes (
47 : TypeCheckContext *context, HIR::ImplBlock &impl_block,
48 : TyTy::TypeBoundPredicate &specified_bound, TyTy::BaseType *self,
49 : std::vector<TyTy::SubstitutionParamMapping> &substitutions,
50 : std::map<DefId, AssocTypeEntry> &assoc_types_by_trait_item,
51 : std::vector<const TraitItemReference *> &trait_item_refs);
52 :
53 : void visit (HIR::Module &module) override;
54 : void visit (HIR::Function &function) override;
55 : void visit (HIR::TypeAlias &alias) override;
56 : void visit (HIR::TupleStruct &struct_decl) override;
57 : void visit (HIR::StructStruct &struct_decl) override;
58 : void visit (HIR::Enum &enum_decl) override;
59 : void visit (HIR::Union &union_decl) override;
60 : void visit (HIR::StaticItem &var) override;
61 : void visit (HIR::ConstantItem &constant) override;
62 : void visit (HIR::ImplBlock &impl_block) override;
63 : void visit (HIR::ExternBlock &extern_block) override;
64 : void visit (HIR::Trait &trait_block) override;
65 : void visit (HIR::ExternCrate &extern_crate) override;
66 :
67 : // nothing to do
68 0 : void visit (HIR::UseDeclaration &) override {}
69 :
70 : protected:
71 : void resolve_impl_block (HIR::ImplBlock &impl_block);
72 : void resolve_trait_impl_block (HIR::ImplBlock &impl_block);
73 :
74 : std::pair<std::vector<TyTy::SubstitutionParamMapping>,
75 : TyTy::RegionConstraints>
76 : resolve_impl_block_substitutions (HIR::ImplBlock &impl_block,
77 : bool &failure_flag);
78 :
79 : void validate_trait_impl_block (
80 : const TyTy::TypeBoundPredicate &specified_bound,
81 : std::vector<const TraitItemReference *> trait_item_refs,
82 : TraitReference *trait_reference, HIR::ImplBlock &impl_block,
83 : TyTy::BaseType *self,
84 : std::vector<TyTy::SubstitutionParamMapping> &substitutions);
85 :
86 : TyTy::BaseType *resolve_impl_item (HIR::ImplBlock &impl_block,
87 : HIR::ImplItem &item);
88 :
89 : TyTy::BaseType *resolve_impl_block_self (HIR::ImplBlock &impl_block);
90 :
91 : private:
92 : TypeCheckItem ();
93 :
94 : TyTy::BaseType *infered;
95 : };
96 :
97 : } // namespace Resolver
98 : } // namespace Rust
99 :
100 : #endif // RUST_HIR_TYPE_CHECK_ITEM
|