1 // Copyright (C) 2020-2024 Free Software Foundation, Inc.
3 // This file is part of GCC.
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
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
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/>.
19 #ifndef RUST_COMPILE_ITEM
20 #define RUST_COMPILE_ITEM
22 #include "rust-compile-base.h"
23 #include "rust-hir-visitor.h"
28 class CompileItem
: private HIRCompileBase
, protected HIR::HIRStmtVisitor
32 static tree
compile (HIR::Item
*item
, Context
*ctx
,
33 TyTy::BaseType
*concrete
= nullptr,
34 bool is_query_mode
= false,
35 location_t ref_locus
= UNDEF_LOCATION
)
37 CompileItem
compiler (ctx
, concrete
, ref_locus
);
38 item
->accept_vis (compiler
);
40 if (is_query_mode
&& compiler
.reference
== error_mark_node
)
41 rust_internal_error_at (ref_locus
, "failed to compile item: %s",
42 item
->as_string ().c_str ());
44 return compiler
.reference
;
47 void visit (HIR::StaticItem
&var
) override
;
48 void visit (HIR::ConstantItem
&constant
) override
;
49 void visit (HIR::Function
&function
) override
;
50 void visit (HIR::ImplBlock
&impl_block
) override
;
51 void visit (HIR::ExternBlock
&extern_block
) override
;
52 void visit (HIR::Module
&module
) override
;
54 // Empty visit for unused Stmt HIR nodes.
55 void visit (HIR::TupleStruct
&) override
{}
56 void visit (HIR::EnumItem
&) override
{}
57 void visit (HIR::EnumItemTuple
&) override
{}
58 void visit (HIR::EnumItemStruct
&) override
{}
59 void visit (HIR::EnumItemDiscriminant
&) override
{}
60 void visit (HIR::TypePathSegmentFunction
&) override
{}
61 void visit (HIR::TypePath
&) override
{}
62 void visit (HIR::QualifiedPathInType
&) override
{}
63 void visit (HIR::ExternCrate
&) override
{}
64 void visit (HIR::UseDeclaration
&) override
{}
65 void visit (HIR::TypeAlias
&) override
{}
66 void visit (HIR::StructStruct
&) override
{}
67 void visit (HIR::Enum
&) override
{}
68 void visit (HIR::Union
&) override
{}
69 void visit (HIR::Trait
&) override
{}
70 void visit (HIR::EmptyStmt
&) override
{}
71 void visit (HIR::LetStmt
&) override
{}
72 void visit (HIR::ExprStmt
&) override
{}
75 CompileItem (Context
*ctx
, TyTy::BaseType
*concrete
, location_t ref_locus
)
76 : HIRCompileBase (ctx
), concrete (concrete
), reference (error_mark_node
),
80 TyTy::BaseType
*concrete
;
85 } // namespace Compile
88 #endif // RUST_COMPILE_ITEM