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 : #include "rust-ast-fragment.h"
20 :
21 : namespace Rust {
22 : namespace AST {
23 :
24 25135342 : Fragment::Fragment (FragmentKind kind, std::vector<SingleASTNode> nodes,
25 : std::vector<std::unique_ptr<AST::Token>> tokens)
26 25135342 : : kind (kind), nodes (std::move (nodes)), tokens (std::move (tokens))
27 25135342 : {}
28 :
29 25130222 : Fragment::Fragment (Fragment const &other) : kind (other.get_kind ())
30 : {
31 25130222 : *this = other;
32 25130222 : }
33 :
34 : Fragment &
35 50315863 : Fragment::operator= (Fragment const &other)
36 : {
37 50315863 : kind = other.get_kind ();
38 :
39 50315863 : nodes.clear ();
40 50315863 : nodes.reserve (other.nodes.size ());
41 50579327 : for (auto &n : other.nodes)
42 263464 : nodes.push_back (n);
43 :
44 50315863 : tokens.clear ();
45 50315863 : tokens.reserve (other.tokens.size ());
46 59030439 : for (auto &t : other.tokens)
47 8714576 : tokens.emplace_back (t->clone_token ());
48 :
49 50315863 : return *this;
50 : }
51 :
52 : Fragment
53 25133301 : Fragment::create_error ()
54 : {
55 25133301 : return Fragment (FragmentKind::Error, {}, {});
56 : }
57 :
58 : Fragment
59 2041 : Fragment::create_empty ()
60 : {
61 2041 : return Fragment (FragmentKind::Complete, {}, {});
62 : }
63 :
64 55935 : Fragment::Fragment (std::vector<AST::SingleASTNode> nodes,
65 : std::vector<std::unique_ptr<AST::Token>> tokens)
66 55935 : : kind (FragmentKind::Complete), nodes (std::move (nodes)),
67 55935 : tokens (std::move (tokens))
68 55935 : {}
69 :
70 1255 : Fragment::Fragment (std::vector<AST::SingleASTNode> nodes,
71 : std::unique_ptr<AST::Token> token)
72 1255 : : kind (FragmentKind::Complete), nodes (std::move (nodes))
73 : {
74 1255 : tokens.emplace_back (std::move (token));
75 1255 : }
76 :
77 : std::vector<SingleASTNode> &
78 5705 : Fragment::get_nodes ()
79 : {
80 5705 : return nodes;
81 : }
82 :
83 : std::vector<std::unique_ptr<AST::Token>> &
84 726 : Fragment::get_tokens ()
85 : {
86 726 : return tokens;
87 : }
88 :
89 : FragmentKind
90 100574477 : Fragment::get_kind () const
91 : {
92 100574477 : return kind;
93 : }
94 :
95 : bool
96 25128392 : Fragment::is_error () const
97 : {
98 25128392 : return get_kind () == FragmentKind::Error;
99 : }
100 :
101 : bool
102 25070005 : Fragment::should_expand () const
103 : {
104 25070005 : return !is_error ();
105 : }
106 :
107 : bool
108 50269 : Fragment::is_expression_fragment () const
109 : {
110 50269 : return is_single_fragment_of_kind (SingleASTNode::Kind::Expr);
111 : }
112 :
113 : bool
114 497 : Fragment::is_type_fragment () const
115 : {
116 497 : return is_single_fragment_of_kind (SingleASTNode::Kind::Type);
117 : }
118 :
119 : bool
120 1 : Fragment::is_pattern_fragment () const
121 : {
122 1 : return is_single_fragment_of_kind (SingleASTNode::Kind::Pattern);
123 : }
124 :
125 : std::unique_ptr<Expr>
126 50267 : Fragment::take_expression_fragment ()
127 : {
128 50267 : assert_single_fragment (SingleASTNode::Kind::Expr);
129 50267 : return nodes[0].take_expr ();
130 : }
131 :
132 : std::unique_ptr<Type>
133 497 : Fragment::take_type_fragment ()
134 : {
135 497 : assert_single_fragment (SingleASTNode::Kind::Type);
136 497 : return nodes[0].take_type ();
137 : }
138 :
139 : std::unique_ptr<Pattern>
140 1 : Fragment::take_pattern_fragment ()
141 : {
142 1 : assert_single_fragment (SingleASTNode::Kind::Pattern);
143 1 : return nodes[0].take_pattern ();
144 : }
145 :
146 : void
147 0 : Fragment::accept_vis (ASTVisitor &vis)
148 : {
149 0 : for (auto &node : nodes)
150 0 : node.accept_vis (vis);
151 0 : }
152 :
153 : bool
154 101532 : Fragment::is_single_fragment () const
155 : {
156 101532 : return nodes.size () == 1;
157 : }
158 :
159 : bool
160 50767 : Fragment::is_single_fragment_of_kind (SingleASTNode::Kind expected) const
161 : {
162 50767 : return is_single_fragment () && nodes[0].get_kind () == expected;
163 : }
164 :
165 : void
166 50765 : Fragment::assert_single_fragment (SingleASTNode::Kind expected) const
167 : {
168 50765 : static const std::map<SingleASTNode::Kind, const char *> str_map = {
169 : {SingleASTNode::Kind::Assoc, "associated item"},
170 : {SingleASTNode::Kind::Item, "item"},
171 : {SingleASTNode::Kind::Type, "type"},
172 : {SingleASTNode::Kind::Expr, "expr"},
173 : {SingleASTNode::Kind::Stmt, "stmt"},
174 : {SingleASTNode::Kind::Extern, "extern"},
175 : {SingleASTNode::Kind::Pattern, "pattern"},
176 50765 : };
177 :
178 50765 : auto actual = nodes[0].get_kind ();
179 50765 : auto fail = false;
180 :
181 50765 : if (!is_single_fragment ())
182 : {
183 0 : rust_error_at (UNDEF_LOCATION, "fragment is not single");
184 0 : fail = true;
185 : }
186 :
187 50765 : if (actual != expected)
188 : {
189 0 : rust_error_at (
190 : UNDEF_LOCATION,
191 : "invalid fragment operation: expected %qs node, got %qs node",
192 0 : str_map.find (expected)->second,
193 0 : str_map.find (nodes[0].get_kind ())->second);
194 0 : fail = true;
195 : }
196 :
197 50765 : rust_assert (!fail);
198 50765 : }
199 :
200 : } // namespace AST
201 : } // namespace Rust
|