Branch data Line data Source code
1 : : // Copyright (C) 2020-2025 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-cfg-strip.h"
20 : : #include "rust-ast-full.h"
21 : : #include "rust-ast-visitor.h"
22 : : #include "rust-session-manager.h"
23 : : #include "rust-attribute-values.h"
24 : :
25 : : namespace Rust {
26 : :
27 : : /**
28 : : * Determines whether any cfg predicate is false and hence item with attributes
29 : : * should be stripped. Note that attributes must be expanded before calling.
30 : : */
31 : : bool
32 : 0 : fails_cfg (const AST::AttrVec &attrs)
33 : : {
34 : 0 : auto &session = Session::get_instance ();
35 : :
36 : 0 : for (const auto &attr : attrs)
37 : : {
38 : 0 : if (attr.get_path () == Values::Attributes::CFG
39 : 0 : && !attr.check_cfg_predicate (session))
40 : 0 : return true;
41 : : }
42 : : return false;
43 : : }
44 : :
45 : : /**
46 : : * Determines whether any cfg predicate is false and hence item with attributes
47 : : * should be stripped. Will expand attributes as well.
48 : : */
49 : : bool
50 : 874735 : fails_cfg_with_expand (AST::AttrVec &attrs)
51 : : {
52 : 874735 : auto &session = Session::get_instance ();
53 : :
54 : : // TODO: maybe have something that strips cfg attributes that evaluate true?
55 : 880152 : for (auto &attr : attrs)
56 : : {
57 : 5478 : if (attr.get_path () == Values::Attributes::CFG)
58 : : {
59 : 568 : if (!attr.is_parsed_to_meta_item ())
60 : 230 : attr.parse_attr_to_meta_item ();
61 : :
62 : : // DEBUG
63 : 568 : if (!attr.is_parsed_to_meta_item ())
64 : 0 : rust_debug ("failed to parse attr to meta item, right before "
65 : : "cfg predicate check");
66 : : else
67 : 568 : rust_debug ("attr has been successfully parsed to meta item, "
68 : : "right before cfg predicate check");
69 : :
70 : 568 : if (!attr.check_cfg_predicate (session))
71 : : {
72 : : // DEBUG
73 : 61 : rust_debug (
74 : : "cfg predicate failed for attribute: \033[0;31m'%s'\033[0m",
75 : : attr.as_string ().c_str ());
76 : :
77 : 61 : return true;
78 : : }
79 : : else
80 : : {
81 : : // DEBUG
82 : 507 : rust_debug ("cfg predicate succeeded for attribute: "
83 : : "\033[0;31m'%s'\033[0m",
84 : : attr.as_string ().c_str ());
85 : : }
86 : : }
87 : : }
88 : : return false;
89 : : }
90 : :
91 : : /**
92 : : * Expands cfg_attr attributes.
93 : : */
94 : : void
95 : 874735 : expand_cfg_attrs (AST::AttrVec &attrs)
96 : : {
97 : 874735 : auto &session = Session::get_instance ();
98 : :
99 : 879902 : for (std::size_t i = 0; i < attrs.size (); i++)
100 : : {
101 : 5167 : auto &attr = attrs[i];
102 : 5167 : if (attr.get_path () == Values::Attributes::CFG_ATTR)
103 : : {
104 : 11 : if (!attr.is_parsed_to_meta_item ())
105 : 11 : attr.parse_attr_to_meta_item ();
106 : :
107 : 11 : if (attr.check_cfg_predicate (session))
108 : : {
109 : : // split off cfg_attr
110 : 4 : AST::AttrVec new_attrs = attr.separate_cfg_attrs ();
111 : :
112 : : // remove attr from vector
113 : 4 : attrs.erase (attrs.begin () + i);
114 : :
115 : : // add new attrs to vector
116 : 4 : attrs.insert (attrs.begin () + i,
117 : : std::make_move_iterator (new_attrs.begin ()),
118 : : std::make_move_iterator (new_attrs.end ()));
119 : 4 : }
120 : :
121 : : /* do something - if feature (first token in tree) is in fact enabled,
122 : : * make tokens listed afterwards into attributes. i.e.: for
123 : : * [cfg_attr(feature = "wow", wow1, wow2)], if "wow" is true, then add
124 : : * attributes [wow1] and [wow2] to attribute list. This can also be
125 : : * recursive, so check for expanded attributes being recursive and
126 : : * possibly recursively call the expand_attrs? */
127 : : }
128 : : else
129 : : {
130 : 5156 : i++;
131 : : }
132 : : }
133 : 874735 : attrs.shrink_to_fit ();
134 : 874735 : }
135 : :
136 : : void
137 : 5319 : CfgStrip::go (AST::Crate &crate)
138 : : {
139 : 5319 : visit (crate);
140 : 5319 : }
141 : :
142 : : void
143 : 5319 : CfgStrip::visit (AST::Crate &crate)
144 : : {
145 : : // expand crate cfg_attr attributes
146 : 5319 : expand_cfg_attrs (crate.inner_attrs);
147 : :
148 : 5319 : if (fails_cfg_with_expand (crate.inner_attrs))
149 : : {
150 : : // basically, delete whole crate
151 : 0 : crate.strip_crate ();
152 : : // TODO: maybe create warning here? probably not desired behaviour
153 : : }
154 : :
155 : 5319 : auto &items = crate.items;
156 : :
157 : 5319 : AST::DefaultASTVisitor::visit (crate);
158 : 24878 : for (auto it = items.begin (); it != items.end ();)
159 : : {
160 : 19559 : auto &item = *it;
161 : 19559 : if (item->is_marked_for_strip ())
162 : 13 : it = items.erase (it);
163 : : else
164 : 19546 : it++;
165 : : }
166 : : // expand module attributes?
167 : 5319 : }
168 : :
169 : : // Visitor used to expand attributes.
170 : : void
171 : 210 : CfgStrip::maybe_strip_struct_fields (std::vector<AST::StructField> &fields)
172 : : {
173 : 694 : for (auto it = fields.begin (); it != fields.end ();)
174 : : {
175 : 484 : auto &field = *it;
176 : :
177 : 484 : auto &field_attrs = field.get_outer_attrs ();
178 : 484 : expand_cfg_attrs (field_attrs);
179 : 484 : if (fails_cfg_with_expand (field_attrs))
180 : : {
181 : 0 : it = fields.erase (it);
182 : 0 : continue;
183 : : }
184 : :
185 : : // expand sub-types of type, but can't strip type itself
186 : 484 : auto &type = field.get_field_type ();
187 : 484 : type.accept_vis (*this);
188 : :
189 : 484 : if (type.is_marked_for_strip ())
190 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
191 : :
192 : : // if nothing else happens, increment
193 : 484 : ++it;
194 : : }
195 : 210 : }
196 : :
197 : : void
198 : 1434 : CfgStrip::maybe_strip_tuple_fields (std::vector<AST::TupleField> &fields)
199 : : {
200 : 3838 : for (auto it = fields.begin (); it != fields.end ();)
201 : : {
202 : 2404 : auto &field = *it;
203 : :
204 : 2404 : auto &field_attrs = field.get_outer_attrs ();
205 : 2404 : expand_cfg_attrs (field_attrs);
206 : 2404 : if (fails_cfg_with_expand (field_attrs))
207 : : {
208 : 0 : it = fields.erase (it);
209 : 0 : continue;
210 : : }
211 : :
212 : : // expand sub-types of type, but can't strip type itself
213 : 2404 : auto &type = field.get_field_type ();
214 : 2404 : type.accept_vis (*this);
215 : 2404 : if (type.is_marked_for_strip ())
216 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
217 : :
218 : : // if nothing else happens, increment
219 : 2404 : ++it;
220 : : }
221 : 1434 : }
222 : :
223 : : void
224 : 20668 : CfgStrip::maybe_strip_function_params (
225 : : std::vector<std::unique_ptr<AST::Param>> ¶ms)
226 : : {
227 : 41112 : for (auto it = params.begin (); it != params.end ();)
228 : : {
229 : 20444 : if (!(*it)->is_self () && !(*it)->is_variadic ())
230 : : {
231 : 10646 : auto param = static_cast<AST::FunctionParam *> (it->get ());
232 : :
233 : 10646 : auto ¶m_attrs = param->get_outer_attrs ();
234 : 10646 : expand_cfg_attrs (param_attrs);
235 : 10646 : if (fails_cfg_with_expand (param_attrs))
236 : : {
237 : 0 : it = params.erase (it);
238 : 0 : continue;
239 : : }
240 : :
241 : : // TODO: should an unwanted strip lead to break out of loop?
242 : 10646 : auto &pattern = param->get_pattern ();
243 : 10646 : pattern.accept_vis (*this);
244 : 10646 : if (pattern.is_marked_for_strip ())
245 : 0 : rust_error_at (pattern.get_locus (),
246 : : "cannot strip pattern in this position");
247 : :
248 : 10646 : auto &type = param->get_type ();
249 : 10646 : type.accept_vis (*this);
250 : :
251 : 10646 : if (type.is_marked_for_strip ())
252 : 0 : rust_error_at (type.get_locus (),
253 : : "cannot strip type in this position");
254 : : }
255 : : // increment
256 : 20444 : ++it;
257 : : }
258 : 20668 : }
259 : :
260 : : void
261 : 5108 : CfgStrip::maybe_strip_generic_args (AST::GenericArgs &args)
262 : : {
263 : : // lifetime args can't be expanded
264 : : // FIXME: Can we have macro invocations for lifetimes?
265 : :
266 : : // expand type args - strip sub-types only
267 : 10421 : for (auto &arg : args.get_generic_args ())
268 : : {
269 : 5313 : switch (arg.get_kind ())
270 : : {
271 : 2061 : case AST::GenericArg::Kind::Type: {
272 : 2061 : auto &type = arg.get_type ();
273 : 2061 : type.accept_vis (*this);
274 : :
275 : 2061 : if (type.is_marked_for_strip ())
276 : 0 : rust_error_at (type.get_locus (),
277 : : "cannot strip type in this position");
278 : : break;
279 : : }
280 : 31 : case AST::GenericArg::Kind::Const: {
281 : 31 : auto &expr = arg.get_expression ();
282 : 31 : expr.accept_vis (*this);
283 : :
284 : 31 : if (expr.is_marked_for_strip ())
285 : 0 : rust_error_at (expr.get_locus (),
286 : : "cannot strip expression in this position");
287 : : break;
288 : : }
289 : : default:
290 : : break;
291 : : // FIXME: Figure out what to do here if there is ambiguity. Since the
292 : : // resolver comes after the expansion, we need to figure out a way to
293 : : // strip ambiguous values here
294 : : // TODO: Arthur: Probably add a `mark_as_strip` method to `GenericArg`
295 : : // or something. This would clean up this whole thing
296 : : }
297 : : }
298 : :
299 : : // FIXME: Can we have macro invocations in generic type bindings?
300 : : // expand binding args - strip sub-types only
301 : 5187 : for (auto &binding : args.get_binding_args ())
302 : : {
303 : 79 : auto &type = binding.get_type ();
304 : 79 : type.accept_vis (*this);
305 : :
306 : 79 : if (type.is_marked_for_strip ())
307 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
308 : : }
309 : 5108 : }
310 : :
311 : : void
312 : 678 : CfgStrip::maybe_strip_qualified_path_type (AST::QualifiedPathType &path_type)
313 : : {
314 : 678 : auto &type = path_type.get_type ();
315 : 678 : type.accept_vis (*this);
316 : :
317 : 678 : if (type.is_marked_for_strip ())
318 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
319 : :
320 : 678 : if (path_type.has_as_clause ())
321 : : {
322 : 628 : auto &type_path = path_type.get_as_type_path ();
323 : 628 : visit (type_path);
324 : 628 : if (type_path.is_marked_for_strip ())
325 : 0 : rust_error_at (type_path.get_locus (),
326 : : "cannot strip type path in this position");
327 : : }
328 : 678 : }
329 : :
330 : : void
331 : 103 : CfgStrip::CfgStrip::maybe_strip_closure_params (
332 : : std::vector<AST::ClosureParam> ¶ms)
333 : : {
334 : 213 : for (auto it = params.begin (); it != params.end ();)
335 : : {
336 : 110 : auto ¶m = *it;
337 : :
338 : 110 : auto ¶m_attrs = param.get_outer_attrs ();
339 : 110 : expand_cfg_attrs (param_attrs);
340 : 110 : if (fails_cfg_with_expand (param_attrs))
341 : : {
342 : 0 : it = params.erase (it);
343 : 0 : continue;
344 : : }
345 : :
346 : 110 : auto &pattern = param.get_pattern ();
347 : 110 : pattern.accept_vis (*this);
348 : 110 : if (pattern.is_marked_for_strip ())
349 : 0 : rust_error_at (pattern.get_locus (),
350 : : "cannot strip pattern in this position");
351 : :
352 : 110 : if (param.has_type_given ())
353 : : {
354 : 102 : auto &type = param.get_type ();
355 : 102 : type.accept_vis (*this);
356 : :
357 : 102 : if (type.is_marked_for_strip ())
358 : 0 : rust_error_at (type.get_locus (),
359 : : "cannot strip type in this position");
360 : : }
361 : :
362 : : // increment if found nothing else so far
363 : 110 : ++it;
364 : : }
365 : 103 : }
366 : :
367 : : void
368 : 0 : CfgStrip::maybe_strip_where_clause (AST::WhereClause &where_clause)
369 : : {
370 : : // items cannot be stripped conceptually, so just accept visitor
371 : 0 : for (auto &item : where_clause.get_items ())
372 : 0 : item->accept_vis (*this);
373 : 0 : }
374 : :
375 : : void
376 : 60432 : CfgStrip::visit (AST::IdentifierExpr &ident_expr)
377 : : {
378 : : // strip test based on outer attrs
379 : 60432 : AST::DefaultASTVisitor::visit (ident_expr);
380 : 60432 : expand_cfg_attrs (ident_expr.get_outer_attrs ());
381 : 60432 : if (fails_cfg_with_expand (ident_expr.get_outer_attrs ()))
382 : : {
383 : 0 : ident_expr.mark_for_strip ();
384 : 0 : return;
385 : : }
386 : : }
387 : :
388 : : void
389 : 3179 : CfgStrip::visit (AST::MacroInvocation ¯o_invoc)
390 : : {
391 : : // initial strip test based on outer attrs
392 : 3179 : expand_cfg_attrs (macro_invoc.get_outer_attrs ());
393 : 3179 : if (fails_cfg_with_expand (macro_invoc.get_outer_attrs ()))
394 : : {
395 : 0 : macro_invoc.mark_for_strip ();
396 : 0 : return;
397 : : }
398 : :
399 : : // can't strip simple path
400 : :
401 : : // I don't think any macro token trees can be stripped in any way
402 : :
403 : : // TODO: maybe have cfg! macro stripping behaviour here?
404 : : }
405 : :
406 : : void
407 : 36531 : CfgStrip::visit (AST::PathInExpression &path)
408 : : {
409 : : // initial strip test based on outer attrs
410 : 36531 : expand_cfg_attrs (path.get_outer_attrs ());
411 : 36531 : if (fails_cfg_with_expand (path.get_outer_attrs ()))
412 : : {
413 : 0 : path.mark_for_strip ();
414 : 0 : return;
415 : : }
416 : :
417 : 81722 : for (auto &segment : path.get_segments ())
418 : : {
419 : 90382 : if (segment.has_generic_args ())
420 : 1898 : maybe_strip_generic_args (segment.get_generic_args ());
421 : : }
422 : : }
423 : :
424 : : void
425 : 3166 : CfgStrip::visit (AST::TypePathSegmentGeneric &segment)
426 : : {
427 : : // TODO: strip inside generic args
428 : :
429 : 3166 : if (!segment.has_generic_args ())
430 : : return;
431 : :
432 : 3166 : maybe_strip_generic_args (segment.get_generic_args ());
433 : : }
434 : : void
435 : 20 : CfgStrip::visit (AST::TypePathSegmentFunction &segment)
436 : : {
437 : 20 : AST::DefaultASTVisitor::visit (segment);
438 : 20 : auto &type_path_function = segment.get_type_path_function ();
439 : :
440 : 40 : for (auto &type : type_path_function.get_params ())
441 : : {
442 : 20 : if (type->is_marked_for_strip ())
443 : 0 : rust_error_at (type->get_locus (),
444 : : "cannot strip type in this position");
445 : : }
446 : :
447 : 20 : if (type_path_function.has_return_type ())
448 : : {
449 : 18 : auto &return_type = type_path_function.get_return_type ();
450 : :
451 : 18 : if (return_type.is_marked_for_strip ())
452 : 0 : rust_error_at (return_type.get_locus (),
453 : : "cannot strip type in this position");
454 : : }
455 : 20 : }
456 : :
457 : : void
458 : 174 : CfgStrip::visit (AST::QualifiedPathInExpression &path)
459 : : {
460 : : // initial strip test based on outer attrs
461 : 174 : AST::DefaultASTVisitor::visit (path);
462 : :
463 : 174 : expand_cfg_attrs (path.get_outer_attrs ());
464 : 174 : if (fails_cfg_with_expand (path.get_outer_attrs ()))
465 : : {
466 : 0 : path.mark_for_strip ();
467 : 0 : return;
468 : : }
469 : :
470 : 174 : maybe_strip_qualified_path_type (path.get_qualified_path_type ());
471 : :
472 : 348 : for (auto &segment : path.get_segments ())
473 : : {
474 : 348 : if (segment.has_generic_args ())
475 : 0 : maybe_strip_generic_args (segment.get_generic_args ());
476 : : }
477 : : }
478 : :
479 : : void
480 : 504 : CfgStrip::visit (AST::QualifiedPathInType &path)
481 : : {
482 : 504 : maybe_strip_qualified_path_type (path.get_qualified_path_type ());
483 : :
484 : : // this shouldn't strip any segments, but can strip inside them
485 : 504 : AST::DefaultASTVisitor::visit (path);
486 : 504 : }
487 : :
488 : : void
489 : 563205 : CfgStrip::visit (AST::LiteralExpr &expr)
490 : : {
491 : : // initial strip test based on outer attrs
492 : 563205 : expand_cfg_attrs (expr.get_outer_attrs ());
493 : 563205 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
494 : : {
495 : 0 : expr.mark_for_strip ();
496 : 0 : return;
497 : : }
498 : : }
499 : :
500 : : void
501 : 3879 : CfgStrip::visit (AST::BorrowExpr &expr)
502 : : {
503 : 3879 : AST::DefaultASTVisitor::visit (expr);
504 : : // initial strip test based on outer attrs
505 : 3879 : expand_cfg_attrs (expr.get_outer_attrs ());
506 : 3879 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
507 : : {
508 : 0 : expr.mark_for_strip ();
509 : 0 : return;
510 : : }
511 : :
512 : : /* strip any internal sub-expressions - expression itself isn't
513 : : * allowed to have external attributes in this position so can't be
514 : : * stripped. */
515 : 3879 : auto &borrowed_expr = expr.get_borrowed_expr ();
516 : 3879 : if (borrowed_expr.is_marked_for_strip ())
517 : 0 : rust_error_at (borrowed_expr.get_locus (),
518 : : "cannot strip expression in this position - outer "
519 : : "attributes not allowed");
520 : : }
521 : : void
522 : 3588 : CfgStrip::visit (AST::DereferenceExpr &expr)
523 : : {
524 : : // initial strip test based on outer attrs
525 : 3588 : expand_cfg_attrs (expr.get_outer_attrs ());
526 : 3588 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
527 : : {
528 : 0 : expr.mark_for_strip ();
529 : 0 : return;
530 : : }
531 : :
532 : : /* strip any internal sub-expressions - expression itself isn't
533 : : * allowed to have external attributes in this position so can't be
534 : : * stripped. */
535 : 3588 : auto &dereferenced_expr = expr.get_dereferenced_expr ();
536 : 3588 : dereferenced_expr.accept_vis (*this);
537 : 3588 : if (dereferenced_expr.is_marked_for_strip ())
538 : 0 : rust_error_at (dereferenced_expr.get_locus (),
539 : : "cannot strip expression in this position - outer "
540 : : "attributes not allowed");
541 : : }
542 : : void
543 : 0 : CfgStrip::visit (AST::ErrorPropagationExpr &expr)
544 : : {
545 : 0 : AST::DefaultASTVisitor::visit (expr);
546 : :
547 : : // initial strip test based on outer attrs
548 : 0 : expand_cfg_attrs (expr.get_outer_attrs ());
549 : 0 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
550 : : {
551 : 0 : expr.mark_for_strip ();
552 : 0 : return;
553 : : }
554 : :
555 : : /* strip any internal sub-expressions - expression itself isn't
556 : : * allowed to have external attributes in this position so can't be
557 : : * stripped. */
558 : 0 : auto &propagating_expr = expr.get_propagating_expr ();
559 : 0 : if (propagating_expr.is_marked_for_strip ())
560 : 0 : rust_error_at (propagating_expr.get_locus (),
561 : : "cannot strip expression in this position - outer "
562 : : "attributes not allowed");
563 : : }
564 : : void
565 : 634 : CfgStrip::visit (AST::NegationExpr &expr)
566 : : {
567 : 634 : AST::DefaultASTVisitor::visit (expr);
568 : : // initial strip test based on outer attrs
569 : 634 : expand_cfg_attrs (expr.get_outer_attrs ());
570 : 634 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
571 : : {
572 : 0 : expr.mark_for_strip ();
573 : 0 : return;
574 : : }
575 : :
576 : : /* strip any internal sub-expressions - expression itself isn't
577 : : * allowed to have external attributes in this position so can't be
578 : : * stripped. */
579 : 634 : auto &negated_expr = expr.get_negated_expr ();
580 : 634 : if (negated_expr.is_marked_for_strip ())
581 : 0 : rust_error_at (negated_expr.get_locus (),
582 : : "cannot strip expression in this position - outer "
583 : : "attributes not allowed");
584 : : }
585 : : void
586 : 530200 : CfgStrip::visit (AST::ArithmeticOrLogicalExpr &expr)
587 : : {
588 : 530200 : AST::DefaultASTVisitor::visit (expr);
589 : : /* outer attributes never allowed before these. while cannot strip
590 : : * two direct descendant expressions, can strip ones below that */
591 : :
592 : : // ensure that they are not marked for strip
593 : 530200 : if (expr.get_left_expr ().is_marked_for_strip ())
594 : 0 : rust_error_at (expr.get_left_expr ().get_locus (),
595 : : "cannot strip expression in this position - outer "
596 : : "attributes are never allowed "
597 : : "before binary op exprs");
598 : 530200 : if (expr.get_right_expr ().is_marked_for_strip ())
599 : 0 : rust_error_at (expr.get_right_expr ().get_locus (),
600 : : "cannot strip expression in this position - outer "
601 : : "attributes not allowed");
602 : 530200 : }
603 : :
604 : : void
605 : 2036 : CfgStrip::visit (AST::ComparisonExpr &expr)
606 : : {
607 : : /* outer attributes never allowed before these. while cannot strip
608 : : * two direct descendant expressions, can strip ones below that */
609 : 2036 : AST::DefaultASTVisitor::visit (expr);
610 : :
611 : : // ensure that they are not marked for strip
612 : 2036 : if (expr.get_left_expr ().is_marked_for_strip ())
613 : 0 : rust_error_at (expr.get_left_expr ().get_locus (),
614 : : "cannot strip expression in this position - outer "
615 : : "attributes are never allowed "
616 : : "before binary op exprs");
617 : 2036 : if (expr.get_right_expr ().is_marked_for_strip ())
618 : 0 : rust_error_at (expr.get_right_expr ().get_locus (),
619 : : "cannot strip expression in this position - outer "
620 : : "attributes not allowed");
621 : 2036 : }
622 : :
623 : : void
624 : 987 : CfgStrip::visit (AST::LazyBooleanExpr &expr)
625 : : {
626 : : /* outer attributes never allowed before these. while cannot strip
627 : : * two direct descendant expressions, can strip ones below that */
628 : 987 : AST::DefaultASTVisitor::visit (expr);
629 : :
630 : : // ensure that they are not marked for strip
631 : 987 : if (expr.get_left_expr ().is_marked_for_strip ())
632 : 0 : rust_error_at (expr.get_left_expr ().get_locus (),
633 : : "cannot strip expression in this position - outer "
634 : : "attributes are never allowed "
635 : : "before binary op exprs");
636 : 987 : if (expr.get_right_expr ().is_marked_for_strip ())
637 : 0 : rust_error_at (expr.get_right_expr ().get_locus (),
638 : : "cannot strip expression in this position - outer "
639 : : "attributes not allowed");
640 : 987 : }
641 : :
642 : : void
643 : 16912 : CfgStrip::visit (AST::TypeCastExpr &expr)
644 : : {
645 : : /* outer attributes never allowed before these. while cannot strip
646 : : * direct descendant expression, can strip ones below that */
647 : 16912 : AST::DefaultASTVisitor::visit (expr);
648 : :
649 : 16912 : auto &casted_expr = expr.get_casted_expr ();
650 : : // ensure that they are not marked for strip
651 : 16912 : if (casted_expr.is_marked_for_strip ())
652 : 0 : rust_error_at (casted_expr.get_locus (),
653 : : "cannot strip expression in this position - outer "
654 : : "attributes are never allowed before cast exprs");
655 : :
656 : : // TODO: strip sub-types of type
657 : 16912 : auto &type = expr.get_type_to_cast_to ();
658 : 16912 : if (type.is_marked_for_strip ())
659 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
660 : 16912 : }
661 : : void
662 : 4633 : CfgStrip::visit (AST::AssignmentExpr &expr)
663 : : {
664 : 4633 : expand_cfg_attrs (expr.get_outer_attrs ());
665 : 4633 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
666 : : {
667 : 14 : expr.mark_for_strip ();
668 : 14 : return;
669 : : }
670 : 4619 : AST::DefaultASTVisitor::visit (expr);
671 : :
672 : : // ensure that they are not marked for strip
673 : 4619 : if (expr.get_left_expr ().is_marked_for_strip ())
674 : 0 : rust_error_at (expr.get_left_expr ().get_locus (),
675 : : "cannot strip expression in this position - outer "
676 : : "attributes are never allowed "
677 : : "before binary op exprs");
678 : 4619 : if (expr.get_right_expr ().is_marked_for_strip ())
679 : 0 : rust_error_at (expr.get_right_expr ().get_locus (),
680 : : "cannot strip expression in this position - outer "
681 : : "attributes not allowed");
682 : : }
683 : : void
684 : 566 : CfgStrip::visit (AST::CompoundAssignmentExpr &expr)
685 : : {
686 : : /* outer attributes never allowed before these. while cannot strip
687 : : * two direct descendant expressions, can strip ones below that */
688 : 566 : AST::DefaultASTVisitor::visit (expr);
689 : :
690 : : // ensure that they are not marked for strip
691 : 566 : if (expr.get_left_expr ().is_marked_for_strip ())
692 : 0 : rust_error_at (expr.get_left_expr ().get_locus (),
693 : : "cannot strip expression in this position - outer "
694 : : "attributes are never allowed "
695 : : "before binary op exprs");
696 : 566 : if (expr.get_right_expr ().is_marked_for_strip ())
697 : 0 : rust_error_at (expr.get_right_expr ().get_locus (),
698 : : "cannot strip expression in this position - outer "
699 : : "attributes not allowed");
700 : 566 : }
701 : : void
702 : 384 : CfgStrip::visit (AST::GroupedExpr &expr)
703 : : {
704 : : // initial strip test based on outer attrs
705 : 384 : expand_cfg_attrs (expr.get_outer_attrs ());
706 : 384 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
707 : : {
708 : 0 : expr.mark_for_strip ();
709 : 0 : return;
710 : : }
711 : :
712 : : /* strip test based on inner attrs - spec says these are inner
713 : : * attributes, not outer attributes of inner expr */
714 : 384 : expand_cfg_attrs (expr.get_inner_attrs ());
715 : 384 : if (fails_cfg_with_expand (expr.get_inner_attrs ()))
716 : : {
717 : 0 : expr.mark_for_strip ();
718 : 0 : return;
719 : : }
720 : :
721 : : /* strip any internal sub-expressions - expression itself isn't
722 : : * allowed to have external attributes in this position so can't be
723 : : * stripped. */
724 : 384 : AST::DefaultASTVisitor::visit (expr);
725 : :
726 : 384 : auto &inner_expr = expr.get_expr_in_parens ();
727 : 384 : if (inner_expr.is_marked_for_strip ())
728 : 0 : rust_error_at (inner_expr.get_locus (),
729 : : "cannot strip expression in this position - outer "
730 : : "attributes not allowed");
731 : : }
732 : : void
733 : 387 : CfgStrip::visit (AST::ArrayElemsValues &elems)
734 : : {
735 : : /* apparently outer attributes are allowed in "elements of array
736 : : * expressions" according to spec */
737 : 387 : maybe_strip_pointer_allow_strip (elems.get_values ());
738 : 387 : }
739 : : void
740 : 202 : CfgStrip::visit (AST::ArrayElemsCopied &elems)
741 : : {
742 : : /* apparently outer attributes are allowed in "elements of array
743 : : * expressions" according to spec. on the other hand, it would not
744 : : * make conceptual sense to be able to remove either expression. As
745 : : * such, not implementing. TODO clear up the ambiguity here */
746 : 202 : AST::DefaultASTVisitor::visit (elems);
747 : :
748 : : // only intend stripping for internal sub-expressions
749 : 202 : auto &copied_expr = elems.get_elem_to_copy ();
750 : 202 : if (copied_expr.is_marked_for_strip ())
751 : 0 : rust_error_at (copied_expr.get_locus (),
752 : : "cannot strip expression in this position - outer "
753 : : "attributes not allowed");
754 : :
755 : 202 : auto ©_count = elems.get_num_copies ();
756 : 202 : copy_count.accept_vis (*this);
757 : 202 : if (copy_count.is_marked_for_strip ())
758 : 0 : rust_error_at (copy_count.get_locus (),
759 : : "cannot strip expression in this position - outer "
760 : : "attributes not allowed");
761 : 202 : }
762 : : void
763 : 589 : CfgStrip::visit (AST::ArrayExpr &expr)
764 : : {
765 : : // initial strip test based on outer attrs
766 : 589 : expand_cfg_attrs (expr.get_outer_attrs ());
767 : 589 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
768 : : {
769 : 0 : expr.mark_for_strip ();
770 : 0 : return;
771 : : }
772 : :
773 : : /* strip test based on inner attrs - spec says there are separate
774 : : * inner attributes, not just outer attributes of inner exprs */
775 : 589 : expand_cfg_attrs (expr.get_inner_attrs ());
776 : 589 : if (fails_cfg_with_expand (expr.get_inner_attrs ()))
777 : : {
778 : 0 : expr.mark_for_strip ();
779 : 0 : return;
780 : : }
781 : :
782 : : /* assuming you can't strip away the ArrayElems type, but can strip
783 : : * internal expressions and whatever */
784 : 589 : AST::DefaultASTVisitor::visit (expr);
785 : : }
786 : :
787 : : void
788 : 1425 : CfgStrip::visit (AST::ArrayIndexExpr &expr)
789 : : {
790 : : /* it is unclear whether outer attributes are supposed to be
791 : : * allowed, but conceptually it wouldn't make much sense, but
792 : : * having expansion code anyway. TODO */
793 : : // initial strip test based on outer attrs
794 : 1425 : expand_cfg_attrs (expr.get_outer_attrs ());
795 : 1425 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
796 : : {
797 : 0 : expr.mark_for_strip ();
798 : 0 : return;
799 : : }
800 : :
801 : : /* strip any internal sub-expressions - expression itself isn't
802 : : * allowed to have external attributes in this position so can't be
803 : : * stripped. */
804 : 1425 : AST::DefaultASTVisitor::visit (expr);
805 : :
806 : 1425 : const auto &array_expr = expr.get_array_expr ();
807 : 1425 : if (array_expr.is_marked_for_strip ())
808 : 0 : rust_error_at (array_expr.get_locus (),
809 : : "cannot strip expression in this position - outer "
810 : : "attributes not allowed");
811 : :
812 : 1425 : const auto &index_expr = expr.get_index_expr ();
813 : 1425 : if (index_expr.is_marked_for_strip ())
814 : 0 : rust_error_at (index_expr.get_locus (),
815 : : "cannot strip expression in this position - outer "
816 : : "attributes not allowed");
817 : : }
818 : : void
819 : 783 : CfgStrip::visit (AST::TupleExpr &expr)
820 : : {
821 : : /* according to spec, outer attributes are allowed on "elements of
822 : : * tuple expressions" */
823 : :
824 : : // initial strip test based on outer attrs
825 : 783 : expand_cfg_attrs (expr.get_outer_attrs ());
826 : 783 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
827 : : {
828 : 0 : expr.mark_for_strip ();
829 : 0 : return;
830 : : }
831 : :
832 : : /* strip test based on inner attrs - spec says these are inner
833 : : * attributes, not outer attributes of inner expr */
834 : 783 : expand_cfg_attrs (expr.get_inner_attrs ());
835 : 783 : if (fails_cfg_with_expand (expr.get_inner_attrs ()))
836 : : {
837 : 0 : expr.mark_for_strip ();
838 : 0 : return;
839 : : }
840 : :
841 : : /* apparently outer attributes are allowed in "elements of tuple
842 : : * expressions" according to spec */
843 : 783 : maybe_strip_pointer_allow_strip (expr.get_tuple_elems ());
844 : : }
845 : : void
846 : 2403 : CfgStrip::visit (AST::TupleIndexExpr &expr)
847 : : {
848 : : // initial strip test based on outer attrs
849 : 2403 : expand_cfg_attrs (expr.get_outer_attrs ());
850 : 2403 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
851 : : {
852 : 0 : expr.mark_for_strip ();
853 : 0 : return;
854 : : }
855 : :
856 : 2403 : AST::DefaultASTVisitor::visit (expr);
857 : : /* wouldn't strip this directly (as outer attrs should be
858 : : * associated with this level), but any sub-expressions would be
859 : : * stripped. Thus, no need to erase when strip check called. */
860 : 2403 : auto &tuple_expr = expr.get_tuple_expr ();
861 : 2403 : if (tuple_expr.is_marked_for_strip ())
862 : 0 : rust_error_at (tuple_expr.get_locus (),
863 : : "cannot strip expression in this position - outer "
864 : : "attributes not allowed");
865 : : }
866 : :
867 : : void
868 : 100 : CfgStrip::visit (AST::StructExprStruct &expr)
869 : : {
870 : : // initial strip test based on outer attrs
871 : 100 : expand_cfg_attrs (expr.get_outer_attrs ());
872 : 100 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
873 : : {
874 : 0 : expr.mark_for_strip ();
875 : 0 : return;
876 : : }
877 : :
878 : : /* strip test based on inner attrs - spec says these are inner
879 : : * attributes, not outer attributes of inner expr */
880 : 100 : expand_cfg_attrs (expr.get_inner_attrs ());
881 : 100 : if (fails_cfg_with_expand (expr.get_inner_attrs ()))
882 : : {
883 : 0 : expr.mark_for_strip ();
884 : 0 : return;
885 : : }
886 : :
887 : : // strip sub-exprs of path
888 : 100 : auto &struct_name = expr.get_struct_name ();
889 : 100 : visit (struct_name);
890 : 100 : if (struct_name.is_marked_for_strip ())
891 : 0 : rust_error_at (struct_name.get_locus (),
892 : : "cannot strip path in this position");
893 : : }
894 : :
895 : : void
896 : 2583 : CfgStrip::visit (AST::StructExprFieldIdentifierValue &field)
897 : : {
898 : : /* as no attrs possible (at moment, at least), only sub-expression
899 : : * stripping is possible */
900 : 2583 : AST::DefaultASTVisitor::visit (field);
901 : :
902 : 2583 : auto &value = field.get_value ();
903 : 2583 : if (value.is_marked_for_strip ())
904 : 0 : rust_error_at (value.get_locus (),
905 : : "cannot strip expression in this position - outer "
906 : : "attributes not allowed");
907 : 2583 : }
908 : : void
909 : 88 : CfgStrip::visit (AST::StructExprFieldIndexValue &field)
910 : : {
911 : : /* as no attrs possible (at moment, at least), only sub-expression
912 : : * stripping is possible */
913 : 88 : AST::DefaultASTVisitor::visit (field);
914 : :
915 : 88 : auto &value = field.get_value ();
916 : 88 : if (value.is_marked_for_strip ())
917 : 0 : rust_error_at (value.get_locus (),
918 : : "cannot strip expression in this position - outer "
919 : : "attributes not allowed");
920 : 88 : }
921 : : void
922 : 1554 : CfgStrip::visit (AST::StructExprStructFields &expr)
923 : : {
924 : : // initial strip test based on outer attrs
925 : 1554 : expand_cfg_attrs (expr.get_outer_attrs ());
926 : 1554 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
927 : : {
928 : 0 : expr.mark_for_strip ();
929 : 0 : return;
930 : : }
931 : :
932 : : /* strip test based on inner attrs - spec says these are inner
933 : : * attributes, not outer attributes of inner expr */
934 : 1554 : expand_cfg_attrs (expr.get_inner_attrs ());
935 : 1554 : if (fails_cfg_with_expand (expr.get_inner_attrs ()))
936 : : {
937 : 0 : expr.mark_for_strip ();
938 : 0 : return;
939 : : }
940 : :
941 : : // strip sub-exprs of path
942 : 1554 : auto &struct_name = expr.get_struct_name ();
943 : 1554 : visit (struct_name);
944 : 1554 : if (struct_name.is_marked_for_strip ())
945 : 0 : rust_error_at (struct_name.get_locus (),
946 : : "cannot strip path in this position");
947 : :
948 : : /* spec does not specify whether expressions are allowed to be
949 : : * stripped at top level of struct fields, but I wouldn't think
950 : : * that they would be, so operating under the assumption that only
951 : : * sub-expressions can be stripped. */
952 : 1554 : AST::DefaultASTVisitor::visit (expr);
953 : :
954 : : /* struct base presumably can't be stripped, as the '..' is before
955 : : * the expression. as such, can only strip sub-expressions. */
956 : 1554 : if (expr.has_struct_base ())
957 : : {
958 : 126 : auto &base_struct_expr = expr.get_struct_base ().get_base_struct ();
959 : 126 : base_struct_expr.accept_vis (*this);
960 : 126 : if (base_struct_expr.is_marked_for_strip ())
961 : 0 : rust_error_at (base_struct_expr.get_locus (),
962 : : "cannot strip expression in this position - outer "
963 : : "attributes not allowed");
964 : : }
965 : : }
966 : :
967 : : void
968 : 0 : CfgStrip::visit (AST::StructExprStructBase &expr)
969 : : {
970 : : // initial strip test based on outer attrs
971 : 0 : expand_cfg_attrs (expr.get_outer_attrs ());
972 : 0 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
973 : : {
974 : 0 : expr.mark_for_strip ();
975 : 0 : return;
976 : : }
977 : :
978 : : /* strip test based on inner attrs - spec says these are inner
979 : : * attributes, not outer attributes of inner expr */
980 : 0 : expand_cfg_attrs (expr.get_inner_attrs ());
981 : 0 : if (fails_cfg_with_expand (expr.get_inner_attrs ()))
982 : : {
983 : 0 : expr.mark_for_strip ();
984 : 0 : return;
985 : : }
986 : :
987 : : // strip sub-exprs of path
988 : 0 : auto &struct_name = expr.get_struct_name ();
989 : 0 : visit (struct_name);
990 : 0 : if (struct_name.is_marked_for_strip ())
991 : 0 : rust_error_at (struct_name.get_locus (),
992 : : "cannot strip path in this position");
993 : :
994 : : /* struct base presumably can't be stripped, as the '..' is before
995 : : * the expression. as such, can only strip sub-expressions. */
996 : 0 : rust_assert (!expr.get_struct_base ().is_invalid ());
997 : 0 : auto &base_struct_expr = expr.get_struct_base ().get_base_struct ();
998 : 0 : base_struct_expr.accept_vis (*this);
999 : 0 : if (base_struct_expr.is_marked_for_strip ())
1000 : 0 : rust_error_at (base_struct_expr.get_locus (),
1001 : : "cannot strip expression in this position - outer "
1002 : : "attributes not allowed");
1003 : : }
1004 : : void
1005 : 21554 : CfgStrip::visit (AST::CallExpr &expr)
1006 : : {
1007 : : // initial strip test based on outer attrs
1008 : 21554 : expand_cfg_attrs (expr.get_outer_attrs ());
1009 : 21554 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1010 : : {
1011 : 0 : expr.mark_for_strip ();
1012 : 0 : return;
1013 : : }
1014 : :
1015 : : /* should not be outer attrs on "function" expression - outer attrs
1016 : : * should be associated with call expr as a whole. only sub-expr
1017 : : * expansion is possible. */
1018 : 21554 : AST::DefaultASTVisitor::visit (expr);
1019 : :
1020 : 21554 : auto &function = expr.get_function_expr ();
1021 : 21554 : if (function.is_marked_for_strip ())
1022 : 0 : rust_error_at (function.get_locus (),
1023 : : "cannot strip expression in this position - outer "
1024 : : "attributes not allowed");
1025 : :
1026 : : /* spec says outer attributes are specifically allowed for elements
1027 : : * of call expressions, so full stripping possible */
1028 : : // FIXME: Arthur: Figure out how to refactor this - This is similar to
1029 : : // expanding items in the crate or stmts in blocks
1030 : 21554 : maybe_strip_pointer_allow_strip (expr.get_params ());
1031 : : }
1032 : : void
1033 : 3132 : CfgStrip::visit (AST::MethodCallExpr &expr)
1034 : : {
1035 : : // initial strip test based on outer attrs
1036 : 3132 : expand_cfg_attrs (expr.get_outer_attrs ());
1037 : 3132 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1038 : : {
1039 : 0 : expr.mark_for_strip ();
1040 : 0 : return;
1041 : : }
1042 : :
1043 : : /* should not be outer attrs on "receiver" expression - outer attrs
1044 : : * should be associated with call expr as a whole. only sub-expr
1045 : : * expansion is possible. */
1046 : 3132 : AST::DefaultASTVisitor::visit (expr);
1047 : :
1048 : 3132 : auto &receiver = expr.get_receiver_expr ();
1049 : 3132 : if (receiver.is_marked_for_strip ())
1050 : 0 : rust_error_at (receiver.get_locus (),
1051 : : "cannot strip expression in this position - outer "
1052 : : "attributes not allowed");
1053 : :
1054 : 3132 : auto &method_name = expr.get_method_name ();
1055 : 3132 : if (method_name.has_generic_args ())
1056 : 44 : maybe_strip_generic_args (method_name.get_generic_args ());
1057 : :
1058 : : /* spec says outer attributes are specifically allowed for elements
1059 : : * of method call expressions, so full stripping possible */
1060 : 3132 : maybe_strip_pointer_allow_strip (expr.get_params ());
1061 : : }
1062 : : void
1063 : 3668 : CfgStrip::visit (AST::FieldAccessExpr &expr)
1064 : : {
1065 : : // initial strip test based on outer attrs
1066 : 3668 : expand_cfg_attrs (expr.get_outer_attrs ());
1067 : 3668 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1068 : : {
1069 : 0 : expr.mark_for_strip ();
1070 : 0 : return;
1071 : : }
1072 : :
1073 : : /* should not be outer attrs on "receiver" expression - outer attrs
1074 : : * should be associated with field expr as a whole. only sub-expr
1075 : : * expansion is possible. */
1076 : 3668 : AST::DefaultASTVisitor::visit (expr);
1077 : :
1078 : 3668 : auto &receiver = expr.get_receiver_expr ();
1079 : 3668 : if (receiver.is_marked_for_strip ())
1080 : 0 : rust_error_at (receiver.get_locus (),
1081 : : "cannot strip expression in this position - outer "
1082 : : "attributes not allowed");
1083 : : }
1084 : : void
1085 : 43 : CfgStrip::visit (AST::ClosureExprInner &expr)
1086 : : {
1087 : : // initial strip test based on outer attrs
1088 : 43 : expand_cfg_attrs (expr.get_outer_attrs ());
1089 : 43 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1090 : : {
1091 : 0 : expr.mark_for_strip ();
1092 : 0 : return;
1093 : : }
1094 : :
1095 : : /* strip closure parameters if required - this is specifically
1096 : : * allowed by spec */
1097 : 43 : maybe_strip_closure_params (expr.get_params ());
1098 : :
1099 : 43 : AST::DefaultASTVisitor::visit (expr);
1100 : :
1101 : : // can't strip expression itself, but can strip sub-expressions
1102 : 43 : auto &definition_expr = expr.get_definition_expr ();
1103 : 43 : if (definition_expr.is_marked_for_strip ())
1104 : 0 : rust_error_at (definition_expr.get_locus (),
1105 : : "cannot strip expression in this position - outer "
1106 : : "attributes not allowed");
1107 : : }
1108 : :
1109 : : void
1110 : 25908 : CfgStrip::visit (AST::BlockExpr &expr)
1111 : : {
1112 : : // initial strip test based on outer attrs
1113 : 25908 : expand_cfg_attrs (expr.get_outer_attrs ());
1114 : 25908 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1115 : : {
1116 : 11 : expr.mark_for_strip ();
1117 : 11 : return;
1118 : : }
1119 : :
1120 : : /* strip test based on inner attrs - spec says there are inner
1121 : : * attributes, not just outer attributes of inner stmts */
1122 : 25897 : expand_cfg_attrs (expr.get_inner_attrs ());
1123 : 25897 : if (fails_cfg_with_expand (expr.get_inner_attrs ()))
1124 : : {
1125 : 0 : expr.mark_for_strip ();
1126 : 0 : return;
1127 : : }
1128 : :
1129 : 25897 : maybe_strip_pointer_allow_strip (expr.get_statements ());
1130 : :
1131 : 25897 : AST::DefaultASTVisitor::visit (expr);
1132 : :
1133 : : // strip tail expression if exists - can actually fully remove it
1134 : 25897 : if (expr.has_tail_expr ())
1135 : : {
1136 : 18968 : auto &tail_expr = expr.get_tail_expr ();
1137 : :
1138 : 18968 : if (tail_expr.is_marked_for_strip ())
1139 : 15 : expr.strip_tail_expr ();
1140 : : }
1141 : : }
1142 : :
1143 : : void
1144 : 60 : CfgStrip::visit (AST::ClosureExprInnerTyped &expr)
1145 : : {
1146 : : // initial strip test based on outer attrs
1147 : 60 : expand_cfg_attrs (expr.get_outer_attrs ());
1148 : 60 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1149 : : {
1150 : 0 : expr.mark_for_strip ();
1151 : 0 : return;
1152 : : }
1153 : :
1154 : : /* strip closure parameters if required - this is specifically
1155 : : * allowed by spec */
1156 : 60 : maybe_strip_closure_params (expr.get_params ());
1157 : :
1158 : 60 : AST::DefaultASTVisitor::visit (expr);
1159 : :
1160 : : // can't strip return type, but can strip sub-types
1161 : 60 : auto &type = expr.get_return_type ();
1162 : :
1163 : 60 : if (type.is_marked_for_strip ())
1164 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
1165 : :
1166 : : // can't strip expression itself, but can strip sub-expressions
1167 : 60 : auto &definition_block = expr.get_definition_block ();
1168 : 60 : definition_block.accept_vis (*this);
1169 : 60 : if (definition_block.is_marked_for_strip ())
1170 : 0 : rust_error_at (definition_block.get_locus (),
1171 : : "cannot strip block expression in this position - outer "
1172 : : "attributes not allowed");
1173 : : }
1174 : : void
1175 : 64 : CfgStrip::visit (AST::ContinueExpr &expr)
1176 : : {
1177 : : // initial strip test based on outer attrs
1178 : 64 : expand_cfg_attrs (expr.get_outer_attrs ());
1179 : 64 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1180 : : {
1181 : 0 : expr.mark_for_strip ();
1182 : 0 : return;
1183 : : }
1184 : : }
1185 : : void
1186 : 302 : CfgStrip::visit (AST::BreakExpr &expr)
1187 : : {
1188 : : // initial strip test based on outer attrs
1189 : 302 : expand_cfg_attrs (expr.get_outer_attrs ());
1190 : 302 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1191 : : {
1192 : 0 : expr.mark_for_strip ();
1193 : 0 : return;
1194 : : }
1195 : 302 : AST::DefaultASTVisitor::visit (expr);
1196 : :
1197 : : /* spec does not say that you can have outer attributes on
1198 : : * expression, so assuming you can't. stripping for sub-expressions
1199 : : * is the only thing that can be done */
1200 : 302 : if (expr.has_break_expr ())
1201 : : {
1202 : 106 : auto &break_expr = expr.get_break_expr ();
1203 : :
1204 : 106 : if (break_expr.is_marked_for_strip ())
1205 : 0 : rust_error_at (break_expr.get_locus (),
1206 : : "cannot strip expression in this position - outer "
1207 : : "attributes not allowed");
1208 : : }
1209 : : }
1210 : : void
1211 : 132 : CfgStrip::visit (AST::RangeFromToExpr &expr)
1212 : : {
1213 : : /* outer attributes never allowed before these. while cannot strip
1214 : : * two direct descendant expressions, can strip ones below that */
1215 : 132 : AST::DefaultASTVisitor::visit (expr);
1216 : :
1217 : : // ensure that they are not marked for strip
1218 : 132 : if (expr.get_from_expr ().is_marked_for_strip ())
1219 : 0 : rust_error_at (expr.get_from_expr ().get_locus (),
1220 : : "cannot strip expression in this position - outer "
1221 : : "attributes are never allowed "
1222 : : "before range exprs");
1223 : 132 : if (expr.get_to_expr ().is_marked_for_strip ())
1224 : 0 : rust_error_at (expr.get_to_expr ().get_locus (),
1225 : : "cannot strip expression in this position - outer "
1226 : : "attributes not allowed");
1227 : 132 : }
1228 : : void
1229 : 14 : CfgStrip::visit (AST::RangeFromExpr &expr)
1230 : : {
1231 : : /* outer attributes never allowed before these. while cannot strip
1232 : : * direct descendant expression, can strip ones below that */
1233 : :
1234 : 14 : AST::DefaultASTVisitor::visit (expr);
1235 : : /* should have no possibility for outer attrs as would be parsed
1236 : : * with outer expr */
1237 : 14 : auto &from_expr = expr.get_from_expr ();
1238 : 14 : if (from_expr.is_marked_for_strip ())
1239 : 0 : rust_error_at (from_expr.get_locus (),
1240 : : "cannot strip expression in this position - outer "
1241 : : "attributes are never allowed before range exprs");
1242 : 14 : }
1243 : : void
1244 : 14 : CfgStrip::visit (AST::RangeToExpr &expr)
1245 : : {
1246 : : /* outer attributes never allowed before these. while cannot strip
1247 : : * direct descendant expression, can strip ones below that */
1248 : :
1249 : 14 : AST::DefaultASTVisitor::visit (expr);
1250 : : /* should syntactically not have outer attributes, though this may
1251 : : * not have worked in practice */
1252 : 14 : auto &to_expr = expr.get_to_expr ();
1253 : 14 : if (to_expr.is_marked_for_strip ())
1254 : 0 : rust_error_at (to_expr.get_locus (),
1255 : : "cannot strip expression in this position - outer "
1256 : : "attributes not allowed");
1257 : 14 : }
1258 : :
1259 : : void
1260 : 14 : CfgStrip::visit (AST::RangeFromToInclExpr &expr)
1261 : : {
1262 : : /* outer attributes never allowed before these. while cannot strip
1263 : : * two direct descendant expressions, can strip ones below that */
1264 : :
1265 : 14 : AST::DefaultASTVisitor::visit (expr);
1266 : :
1267 : : // ensure that they are not marked for strip
1268 : 14 : if (expr.get_from_expr ().is_marked_for_strip ())
1269 : 0 : rust_error_at (expr.get_from_expr ().get_locus (),
1270 : : "cannot strip expression in this position - outer "
1271 : : "attributes are never allowed "
1272 : : "before range exprs");
1273 : 14 : if (expr.get_to_expr ().is_marked_for_strip ())
1274 : 0 : rust_error_at (expr.get_to_expr ().get_locus (),
1275 : : "cannot strip expression in this position - outer "
1276 : : "attributes not allowed");
1277 : 14 : }
1278 : : void
1279 : 0 : CfgStrip::visit (AST::RangeToInclExpr &expr)
1280 : : {
1281 : : /* outer attributes never allowed before these. while cannot strip
1282 : : * direct descendant expression, can strip ones below that */
1283 : :
1284 : 0 : AST::DefaultASTVisitor::visit (expr);
1285 : : /* should syntactically not have outer attributes, though this may
1286 : : * not have worked in practice */
1287 : 0 : auto &to_expr = expr.get_to_expr ();
1288 : 0 : if (to_expr.is_marked_for_strip ())
1289 : 0 : rust_error_at (to_expr.get_locus (),
1290 : : "cannot strip expression in this position - outer "
1291 : : "attributes not allowed");
1292 : 0 : }
1293 : : void
1294 : 817 : CfgStrip::visit (AST::ReturnExpr &expr)
1295 : : {
1296 : : // initial strip test based on outer attrs
1297 : 817 : expand_cfg_attrs (expr.get_outer_attrs ());
1298 : 817 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1299 : : {
1300 : 0 : expr.mark_for_strip ();
1301 : 0 : return;
1302 : : }
1303 : :
1304 : 817 : AST::DefaultASTVisitor::visit (expr);
1305 : :
1306 : : /* spec does not say that you can have outer attributes on
1307 : : * expression, so assuming you can't. stripping for sub-expressions
1308 : : * is the only thing that can be done */
1309 : 817 : if (expr.has_returned_expr ())
1310 : : {
1311 : 779 : auto &returned_expr = expr.get_returned_expr ();
1312 : 779 : if (returned_expr.is_marked_for_strip ())
1313 : 0 : rust_error_at (returned_expr.get_locus (),
1314 : : "cannot strip expression in this position - outer "
1315 : : "attributes not allowed");
1316 : : }
1317 : : /* TODO: conceptually, you would maybe be able to remove a returned
1318 : : * expr - e.g. if you had conditional compilation returning void or
1319 : : * returning a type. On the other hand, I think that function
1320 : : * return type cannot be conditionally compiled, so I assumed you
1321 : : * can't do this either. */
1322 : : }
1323 : : void
1324 : 5757 : CfgStrip::visit (AST::UnsafeBlockExpr &expr)
1325 : : {
1326 : : // initial strip test based on outer attrs
1327 : 5757 : expand_cfg_attrs (expr.get_outer_attrs ());
1328 : 5757 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1329 : : {
1330 : 7 : expr.mark_for_strip ();
1331 : 7 : return;
1332 : : }
1333 : :
1334 : 5750 : AST::DefaultASTVisitor::visit (expr);
1335 : :
1336 : : // can't strip block itself, but can strip sub-expressions
1337 : 5750 : auto &block_expr = expr.get_block_expr ();
1338 : 5750 : if (block_expr.is_marked_for_strip ())
1339 : 0 : rust_error_at (block_expr.get_locus (),
1340 : : "cannot strip block expression in this position - outer "
1341 : : "attributes not allowed");
1342 : : }
1343 : : void
1344 : 163 : CfgStrip::visit (AST::LoopExpr &expr)
1345 : : {
1346 : : // initial strip test based on outer attrs
1347 : 163 : expand_cfg_attrs (expr.get_outer_attrs ());
1348 : 163 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1349 : : {
1350 : 0 : expr.mark_for_strip ();
1351 : 0 : return;
1352 : : }
1353 : :
1354 : 163 : AST::DefaultASTVisitor::visit (expr);
1355 : :
1356 : : // can't strip block itself, but can strip sub-expressions
1357 : 163 : auto &loop_block = expr.get_loop_block ();
1358 : 163 : if (loop_block.is_marked_for_strip ())
1359 : 0 : rust_error_at (loop_block.get_locus (),
1360 : : "cannot strip block expression in this position - outer "
1361 : : "attributes not allowed");
1362 : : }
1363 : : void
1364 : 88 : CfgStrip::visit (AST::WhileLoopExpr &expr)
1365 : : {
1366 : : // initial strip test based on outer attrs
1367 : 88 : expand_cfg_attrs (expr.get_outer_attrs ());
1368 : 88 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1369 : : {
1370 : 0 : expr.mark_for_strip ();
1371 : 0 : return;
1372 : : }
1373 : :
1374 : 88 : AST::DefaultASTVisitor::visit (expr);
1375 : : // can't strip predicate expr itself, but can strip sub-expressions
1376 : 88 : auto &predicate_expr = expr.get_predicate_expr ();
1377 : 88 : if (predicate_expr.is_marked_for_strip ())
1378 : 0 : rust_error_at (predicate_expr.get_locus (),
1379 : : "cannot strip expression in this position - outer "
1380 : : "attributes not allowed");
1381 : :
1382 : : // can't strip block itself, but can strip sub-expressions
1383 : 88 : auto &loop_block = expr.get_loop_block ();
1384 : 88 : if (loop_block.is_marked_for_strip ())
1385 : 0 : rust_error_at (loop_block.get_locus (),
1386 : : "cannot strip block expression in this position - outer "
1387 : : "attributes not allowed");
1388 : : }
1389 : : void
1390 : 0 : CfgStrip::visit (AST::WhileLetLoopExpr &expr)
1391 : : {
1392 : : // initial strip test based on outer attrs
1393 : 0 : expand_cfg_attrs (expr.get_outer_attrs ());
1394 : 0 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1395 : : {
1396 : 0 : expr.mark_for_strip ();
1397 : 0 : return;
1398 : : }
1399 : :
1400 : 0 : AST::DefaultASTVisitor::visit (expr);
1401 : :
1402 : 0 : for (auto &pattern : expr.get_patterns ())
1403 : 0 : if (pattern->is_marked_for_strip ())
1404 : 0 : rust_error_at (pattern->get_locus (),
1405 : : "cannot strip pattern in this position");
1406 : :
1407 : : // can't strip scrutinee expr itself, but can strip sub-expressions
1408 : 0 : auto &scrutinee_expr = expr.get_scrutinee_expr ();
1409 : 0 : if (scrutinee_expr.is_marked_for_strip ())
1410 : 0 : rust_error_at (scrutinee_expr.get_locus (),
1411 : : "cannot strip expression in this position - outer "
1412 : : "attributes not allowed");
1413 : :
1414 : : // can't strip block itself, but can strip sub-expressions
1415 : 0 : auto &loop_block = expr.get_loop_block ();
1416 : 0 : if (loop_block.is_marked_for_strip ())
1417 : 0 : rust_error_at (loop_block.get_locus (),
1418 : : "cannot strip block expression in this position - outer "
1419 : : "attributes not allowed");
1420 : : }
1421 : : void
1422 : 0 : CfgStrip::visit (AST::ForLoopExpr &expr)
1423 : : {
1424 : : // initial strip test based on outer attrs
1425 : 0 : expand_cfg_attrs (expr.get_outer_attrs ());
1426 : 0 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1427 : : {
1428 : 0 : expr.mark_for_strip ();
1429 : 0 : return;
1430 : : }
1431 : :
1432 : 0 : AST::DefaultASTVisitor::visit (expr);
1433 : : // strip sub-patterns of pattern
1434 : 0 : auto &pattern = expr.get_pattern ();
1435 : 0 : if (pattern.is_marked_for_strip ())
1436 : 0 : rust_error_at (pattern.get_locus (),
1437 : : "cannot strip pattern in this position");
1438 : :
1439 : : // can't strip scrutinee expr itself, but can strip sub-expressions
1440 : 0 : auto &iterator_expr = expr.get_iterator_expr ();
1441 : 0 : if (iterator_expr.is_marked_for_strip ())
1442 : 0 : rust_error_at (iterator_expr.get_locus (),
1443 : : "cannot strip expression in this position - outer "
1444 : : "attributes not allowed");
1445 : :
1446 : : // can't strip block itself, but can strip sub-expressions
1447 : 0 : auto &loop_block = expr.get_loop_block ();
1448 : 0 : if (loop_block.is_marked_for_strip ())
1449 : 0 : rust_error_at (loop_block.get_locus (),
1450 : : "cannot strip block expression in this position - outer "
1451 : : "attributes not allowed");
1452 : : }
1453 : : void
1454 : 1466 : CfgStrip::visit (AST::IfExpr &expr)
1455 : : {
1456 : : // rust playground test shows that IfExpr does support outer attrs, at least
1457 : : // when used as statement
1458 : :
1459 : : // initial strip test based on outer attrs
1460 : 1466 : expand_cfg_attrs (expr.get_outer_attrs ());
1461 : 1466 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1462 : : {
1463 : 0 : expr.mark_for_strip ();
1464 : 0 : return;
1465 : : }
1466 : :
1467 : 1466 : AST::DefaultASTVisitor::visit (expr);
1468 : :
1469 : : // can't strip condition expr itself, but can strip sub-expressions
1470 : 1466 : auto &condition_expr = expr.get_condition_expr ();
1471 : 1466 : if (condition_expr.is_marked_for_strip ())
1472 : 0 : rust_error_at (condition_expr.get_locus (),
1473 : : "cannot strip expression in this position - outer "
1474 : : "attributes not allowed");
1475 : :
1476 : : // can't strip if block itself, but can strip sub-expressions
1477 : 1466 : auto &if_block = expr.get_if_block ();
1478 : 1466 : if (if_block.is_marked_for_strip ())
1479 : 0 : rust_error_at (if_block.get_locus (),
1480 : : "cannot strip block expression in this position - outer "
1481 : : "attributes not allowed");
1482 : : }
1483 : :
1484 : : void
1485 : 754 : CfgStrip::visit (AST::IfExprConseqElse &expr)
1486 : : {
1487 : : // initial strip test based on outer attrs
1488 : 754 : expand_cfg_attrs (expr.get_outer_attrs ());
1489 : 754 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1490 : : {
1491 : 0 : expr.mark_for_strip ();
1492 : 0 : return;
1493 : : }
1494 : :
1495 : 754 : AST::DefaultASTVisitor::visit (expr);
1496 : :
1497 : : // can't strip condition expr itself, but can strip sub-expressions
1498 : 754 : auto &condition_expr = expr.get_condition_expr ();
1499 : 754 : if (condition_expr.is_marked_for_strip ())
1500 : 0 : rust_error_at (condition_expr.get_locus (),
1501 : : "cannot strip expression in this position - outer "
1502 : : "attributes not allowed");
1503 : :
1504 : : // can't strip if block itself, but can strip sub-expressions
1505 : 754 : auto &if_block = expr.get_if_block ();
1506 : 754 : if (if_block.is_marked_for_strip ())
1507 : 0 : rust_error_at (if_block.get_locus (),
1508 : : "cannot strip block expression in this position - outer "
1509 : : "attributes not allowed");
1510 : :
1511 : : // can't strip else block itself, but can strip sub-expressions
1512 : 754 : auto &else_block = expr.get_else_block ();
1513 : 754 : if (else_block.is_marked_for_strip ())
1514 : 0 : rust_error_at (else_block.get_locus (),
1515 : : "cannot strip block expression in this position - outer "
1516 : : "attributes not allowed");
1517 : : }
1518 : :
1519 : : void
1520 : 6 : CfgStrip::visit (AST::IfLetExpr &expr)
1521 : : {
1522 : : // initial strip test based on outer attrs
1523 : 6 : expand_cfg_attrs (expr.get_outer_attrs ());
1524 : 6 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1525 : : {
1526 : 0 : expr.mark_for_strip ();
1527 : 0 : return;
1528 : : }
1529 : :
1530 : 6 : AST::DefaultASTVisitor::visit (expr);
1531 : :
1532 : 12 : for (auto &pattern : expr.get_patterns ())
1533 : 6 : if (pattern->is_marked_for_strip ())
1534 : 0 : rust_error_at (pattern->get_locus (),
1535 : : "cannot strip pattern in this position");
1536 : :
1537 : : // can't strip value expr itself, but can strip sub-expressions
1538 : 6 : auto &value_expr = expr.get_value_expr ();
1539 : 6 : if (value_expr.is_marked_for_strip ())
1540 : 0 : rust_error_at (value_expr.get_locus (),
1541 : : "cannot strip expression in this position - outer "
1542 : : "attributes not allowed");
1543 : :
1544 : : // can't strip if block itself, but can strip sub-expressions
1545 : 6 : auto &if_block = expr.get_if_block ();
1546 : 6 : if (if_block.is_marked_for_strip ())
1547 : 0 : rust_error_at (if_block.get_locus (),
1548 : : "cannot strip block expression in this position - outer "
1549 : : "attributes not allowed");
1550 : : }
1551 : : void
1552 : 4 : CfgStrip::visit (AST::IfLetExprConseqElse &expr)
1553 : : {
1554 : : // initial strip test based on outer attrs
1555 : 4 : expand_cfg_attrs (expr.get_outer_attrs ());
1556 : 4 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1557 : : {
1558 : 0 : expr.mark_for_strip ();
1559 : 0 : return;
1560 : : }
1561 : :
1562 : 4 : AST::DefaultASTVisitor::visit (expr);
1563 : :
1564 : 8 : for (auto &pattern : expr.get_patterns ())
1565 : 4 : if (pattern->is_marked_for_strip ())
1566 : 0 : rust_error_at (pattern->get_locus (),
1567 : : "cannot strip pattern in this position");
1568 : :
1569 : : // can't strip value expr itself, but can strip sub-expressions
1570 : 4 : auto &value_expr = expr.get_value_expr ();
1571 : 4 : if (value_expr.is_marked_for_strip ())
1572 : 0 : rust_error_at (value_expr.get_locus (),
1573 : : "cannot strip expression in this position - outer "
1574 : : "attributes not allowed");
1575 : :
1576 : : // can't strip if block itself, but can strip sub-expressions
1577 : 4 : auto &if_block = expr.get_if_block ();
1578 : 4 : if (if_block.is_marked_for_strip ())
1579 : 0 : rust_error_at (if_block.get_locus (),
1580 : : "cannot strip block expression in this position - outer "
1581 : : "attributes not allowed");
1582 : :
1583 : : // can't strip else block itself, but can strip sub-expressions
1584 : 4 : auto &else_block = expr.get_else_block ();
1585 : 4 : if (else_block.is_marked_for_strip ())
1586 : 0 : rust_error_at (else_block.get_locus (),
1587 : : "cannot strip block expression in this position - outer "
1588 : : "attributes not allowed");
1589 : : }
1590 : : void
1591 : 338 : CfgStrip::visit (AST::MatchExpr &expr)
1592 : : {
1593 : : // initial strip test based on outer attrs
1594 : 338 : expand_cfg_attrs (expr.get_outer_attrs ());
1595 : 338 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1596 : : {
1597 : 0 : expr.mark_for_strip ();
1598 : 0 : return;
1599 : : }
1600 : :
1601 : : // inner attr strip test
1602 : 338 : expand_cfg_attrs (expr.get_inner_attrs ());
1603 : 338 : if (fails_cfg_with_expand (expr.get_inner_attrs ()))
1604 : : {
1605 : 0 : expr.mark_for_strip ();
1606 : 0 : return;
1607 : : }
1608 : :
1609 : 338 : AST::DefaultASTVisitor::visit (expr);
1610 : :
1611 : : // can't strip scrutinee expr itself, but can strip sub-expressions
1612 : 338 : auto &scrutinee_expr = expr.get_scrutinee_expr ();
1613 : 338 : if (scrutinee_expr.is_marked_for_strip ())
1614 : 0 : rust_error_at (scrutinee_expr.get_locus (),
1615 : : "cannot strip expression in this position - outer "
1616 : : "attributes not allowed");
1617 : :
1618 : : // strip match cases
1619 : 338 : auto &match_cases = expr.get_match_cases ();
1620 : 1127 : for (auto it = match_cases.begin (); it != match_cases.end ();)
1621 : : {
1622 : 789 : auto &match_case = *it;
1623 : :
1624 : : // strip match case based on outer attributes in match arm
1625 : 789 : auto &match_arm = match_case.get_arm ();
1626 : 789 : expand_cfg_attrs (match_arm.get_outer_attrs ());
1627 : 789 : if (fails_cfg_with_expand (match_arm.get_outer_attrs ()))
1628 : : {
1629 : : // strip match case
1630 : 0 : it = match_cases.erase (it);
1631 : 0 : continue;
1632 : : }
1633 : :
1634 : 1578 : for (auto &pattern : match_arm.get_patterns ())
1635 : 789 : if (pattern->is_marked_for_strip ())
1636 : 0 : rust_error_at (pattern->get_locus (),
1637 : : "cannot strip pattern in this position");
1638 : :
1639 : : /* assuming that guard expression cannot be stripped as
1640 : : * strictly speaking you would have to strip the whole guard to
1641 : : * make syntactical sense, which you can't do. as such, only
1642 : : * strip sub-expressions */
1643 : 789 : if (match_arm.has_match_arm_guard ())
1644 : : {
1645 : 2 : auto &guard_expr = match_arm.get_guard_expr ();
1646 : 2 : if (guard_expr.is_marked_for_strip ())
1647 : 0 : rust_error_at (guard_expr.get_locus (),
1648 : : "cannot strip expression in this position - outer "
1649 : : "attributes not allowed");
1650 : : }
1651 : :
1652 : : // strip sub-expressions from match cases
1653 : 789 : auto &case_expr = match_case.get_expr ();
1654 : 789 : if (case_expr.is_marked_for_strip ())
1655 : 0 : rust_error_at (case_expr.get_locus (),
1656 : : "cannot strip expression in this position - outer "
1657 : : "attributes not allowed");
1658 : :
1659 : : // increment to next case if haven't continued
1660 : 789 : ++it;
1661 : : }
1662 : : }
1663 : :
1664 : : void
1665 : 0 : CfgStrip::visit (AST::AwaitExpr &expr)
1666 : : {
1667 : : // initial strip test based on outer attrs
1668 : 0 : expand_cfg_attrs (expr.get_outer_attrs ());
1669 : 0 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1670 : : {
1671 : 0 : expr.mark_for_strip ();
1672 : 0 : return;
1673 : : }
1674 : :
1675 : : /* can't strip awaited expr itself, but can strip sub-expressions
1676 : : * - this is because you can't have no expr to await */
1677 : 0 : auto &awaited_expr = expr.get_awaited_expr ();
1678 : 0 : awaited_expr->accept_vis (*this);
1679 : 0 : if (awaited_expr->is_marked_for_strip ())
1680 : 0 : rust_error_at (awaited_expr->get_locus (),
1681 : : "cannot strip expression in this position - outer "
1682 : : "attributes not allowed");
1683 : : }
1684 : :
1685 : : void
1686 : 0 : CfgStrip::visit (AST::AsyncBlockExpr &expr)
1687 : : {
1688 : : // initial strip test based on outer attrs
1689 : 0 : expand_cfg_attrs (expr.get_outer_attrs ());
1690 : 0 : if (fails_cfg_with_expand (expr.get_outer_attrs ()))
1691 : : {
1692 : 0 : expr.mark_for_strip ();
1693 : 0 : return;
1694 : : }
1695 : :
1696 : 0 : AST::DefaultASTVisitor::visit (expr);
1697 : :
1698 : : // can't strip block itself, but can strip sub-expressions
1699 : 0 : auto &block_expr = expr.get_block_expr ();
1700 : 0 : if (block_expr->is_marked_for_strip ())
1701 : 0 : rust_error_at (block_expr->get_locus (),
1702 : : "cannot strip block expression in this position - outer "
1703 : : "attributes not allowed");
1704 : : }
1705 : :
1706 : : void
1707 : 3607 : CfgStrip::visit (AST::TypeParam ¶m)
1708 : : {
1709 : : // outer attributes don't actually do anything, so ignore them
1710 : :
1711 : 3607 : AST::DefaultASTVisitor::visit (param);
1712 : :
1713 : 3607 : if (param.has_type () && param.get_type ().is_marked_for_strip ())
1714 : 0 : rust_error_at (param.get_type ().get_locus (),
1715 : : "cannot strip type in this position");
1716 : 3607 : }
1717 : :
1718 : : void
1719 : 113 : CfgStrip::visit (AST::TypeBoundWhereClauseItem &item)
1720 : : {
1721 : : // for lifetimes shouldn't require
1722 : 113 : AST::DefaultASTVisitor::visit (item);
1723 : :
1724 : 113 : auto &type = item.get_type ();
1725 : 113 : if (type.is_marked_for_strip ())
1726 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
1727 : 113 : }
1728 : :
1729 : : void
1730 : 742 : CfgStrip::visit (AST::Module &module)
1731 : : {
1732 : : // strip test based on outer attrs
1733 : 742 : expand_cfg_attrs (module.get_outer_attrs ());
1734 : 742 : if (fails_cfg_with_expand (module.get_outer_attrs ()))
1735 : : {
1736 : 0 : module.mark_for_strip ();
1737 : 0 : return;
1738 : : }
1739 : :
1740 : : // A loaded module might have inner attributes
1741 : 742 : if (module.get_kind () == AST::Module::ModuleKind::LOADED)
1742 : : {
1743 : : // strip test based on inner attrs
1744 : 680 : expand_cfg_attrs (module.get_inner_attrs ());
1745 : 680 : if (fails_cfg_with_expand (module.get_inner_attrs ()))
1746 : : {
1747 : 0 : module.mark_for_strip ();
1748 : 0 : return;
1749 : : }
1750 : : }
1751 : :
1752 : : // strip items if required
1753 : 742 : maybe_strip_pointer_allow_strip (module.get_items ());
1754 : : }
1755 : :
1756 : : void
1757 : 27 : CfgStrip::visit (AST::ExternCrate &extern_crate)
1758 : : {
1759 : : // strip test based on outer attrs
1760 : 27 : expand_cfg_attrs (extern_crate.get_outer_attrs ());
1761 : 27 : if (fails_cfg_with_expand (extern_crate.get_outer_attrs ()))
1762 : : {
1763 : 0 : extern_crate.mark_for_strip ();
1764 : 0 : return;
1765 : : }
1766 : :
1767 : 27 : if (!extern_crate.references_self ())
1768 : : {
1769 : 27 : Session &session = Session::get_instance ();
1770 : 27 : session.load_extern_crate (extern_crate.get_referenced_crate (),
1771 : : extern_crate.get_locus ());
1772 : : }
1773 : : }
1774 : :
1775 : : void
1776 : 195 : CfgStrip::visit (AST::UseDeclaration &use_decl)
1777 : : {
1778 : : // strip test based on outer attrs
1779 : 195 : expand_cfg_attrs (use_decl.get_outer_attrs ());
1780 : 195 : if (fails_cfg_with_expand (use_decl.get_outer_attrs ()))
1781 : : {
1782 : 0 : use_decl.mark_for_strip ();
1783 : 0 : return;
1784 : : }
1785 : : }
1786 : :
1787 : : void
1788 : 20695 : CfgStrip::visit (AST::Function &function)
1789 : : {
1790 : : // initial test based on outer attrs
1791 : 20695 : expand_cfg_attrs (function.get_outer_attrs ());
1792 : 20695 : if (fails_cfg_with_expand (function.get_outer_attrs ()))
1793 : : {
1794 : 27 : function.mark_for_strip ();
1795 : 27 : return;
1796 : : }
1797 : :
1798 : 20668 : AST::DefaultASTVisitor::visit (function);
1799 : :
1800 : : /* strip function parameters if required - this is specifically
1801 : : * allowed by spec */
1802 : 20668 : maybe_strip_function_params (function.get_function_params ());
1803 : :
1804 : 20668 : if (function.has_return_type ())
1805 : : {
1806 : 15248 : auto &return_type = function.get_return_type ();
1807 : 15248 : if (return_type.is_marked_for_strip ())
1808 : 0 : rust_error_at (return_type.get_locus (),
1809 : : "cannot strip type in this position");
1810 : : }
1811 : :
1812 : : /* body should always exist - if error state, should have returned
1813 : : * before now */
1814 : : // can't strip block itself, but can strip sub-expressions
1815 : 20668 : if (function.has_body ())
1816 : : {
1817 : 16284 : auto &block_expr = function.get_definition ();
1818 : 16284 : if (block_expr.value ()->is_marked_for_strip ())
1819 : 0 : rust_error_at (block_expr.value ()->get_locus (),
1820 : : "cannot strip block expression in this position - outer "
1821 : : "attributes not allowed");
1822 : : }
1823 : : }
1824 : :
1825 : : void
1826 : 2053 : CfgStrip::visit (AST::TypeAlias &type_alias)
1827 : : {
1828 : : // initial test based on outer attrs
1829 : 2053 : expand_cfg_attrs (type_alias.get_outer_attrs ());
1830 : 2053 : if (fails_cfg_with_expand (type_alias.get_outer_attrs ()))
1831 : : {
1832 : 0 : type_alias.mark_for_strip ();
1833 : 0 : return;
1834 : : }
1835 : :
1836 : 2053 : AST::DefaultASTVisitor::visit (type_alias);
1837 : :
1838 : 2053 : auto &type = type_alias.get_type_aliased ();
1839 : 2053 : if (type.is_marked_for_strip ())
1840 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
1841 : : }
1842 : :
1843 : : void
1844 : 1299 : CfgStrip::visit (AST::StructStruct &struct_item)
1845 : : {
1846 : : // initial test based on outer attrs
1847 : 1299 : expand_cfg_attrs (struct_item.get_outer_attrs ());
1848 : 1299 : if (fails_cfg_with_expand (struct_item.get_outer_attrs ()))
1849 : : {
1850 : 0 : struct_item.mark_for_strip ();
1851 : 0 : return;
1852 : : }
1853 : :
1854 : 1299 : AST::DefaultASTVisitor::visit (struct_item);
1855 : : }
1856 : : void
1857 : 936 : CfgStrip::visit (AST::TupleStruct &tuple_struct)
1858 : : {
1859 : : // initial test based on outer attrs
1860 : 936 : expand_cfg_attrs (tuple_struct.get_outer_attrs ());
1861 : 936 : if (fails_cfg_with_expand (tuple_struct.get_outer_attrs ()))
1862 : : {
1863 : 0 : tuple_struct.mark_for_strip ();
1864 : 0 : return;
1865 : : }
1866 : :
1867 : 936 : AST::DefaultASTVisitor::visit (tuple_struct);
1868 : :
1869 : : /* strip struct fields if required - this is presumably
1870 : : * allowed by spec */
1871 : 936 : maybe_strip_tuple_fields (tuple_struct.get_fields ());
1872 : : }
1873 : : void
1874 : 510 : CfgStrip::visit (AST::EnumItem &item)
1875 : : {
1876 : : // initial test based on outer attrs
1877 : 510 : expand_cfg_attrs (item.get_outer_attrs ());
1878 : 510 : if (fails_cfg_with_expand (item.get_outer_attrs ()))
1879 : : {
1880 : 0 : item.mark_for_strip ();
1881 : 0 : return;
1882 : : }
1883 : : }
1884 : :
1885 : : void
1886 : 498 : CfgStrip::visit (AST::EnumItemTuple &item)
1887 : : {
1888 : : // initial test based on outer attrs
1889 : 498 : expand_cfg_attrs (item.get_outer_attrs ());
1890 : 498 : if (fails_cfg_with_expand (item.get_outer_attrs ()))
1891 : : {
1892 : 0 : item.mark_for_strip ();
1893 : 0 : return;
1894 : : }
1895 : :
1896 : : /* strip item fields if required - this is presumably
1897 : : * allowed by spec */
1898 : 498 : maybe_strip_tuple_fields (item.get_tuple_fields ());
1899 : : }
1900 : :
1901 : : void
1902 : 112 : CfgStrip::visit (AST::EnumItemStruct &item)
1903 : : {
1904 : : // initial test based on outer attrs
1905 : 112 : expand_cfg_attrs (item.get_outer_attrs ());
1906 : 112 : if (fails_cfg_with_expand (item.get_outer_attrs ()))
1907 : : {
1908 : 0 : item.mark_for_strip ();
1909 : 0 : return;
1910 : : }
1911 : :
1912 : : /* strip item fields if required - this is presumably
1913 : : * allowed by spec */
1914 : 112 : maybe_strip_struct_fields (item.get_struct_fields ());
1915 : : }
1916 : :
1917 : : void
1918 : 32 : CfgStrip::visit (AST::EnumItemDiscriminant &item)
1919 : : {
1920 : : // initial test based on outer attrs
1921 : 32 : expand_cfg_attrs (item.get_outer_attrs ());
1922 : 32 : if (fails_cfg_with_expand (item.get_outer_attrs ()))
1923 : : {
1924 : 0 : item.mark_for_strip ();
1925 : 0 : return;
1926 : : }
1927 : :
1928 : 32 : AST::DefaultASTVisitor::visit (item);
1929 : : /* strip any internal sub-expressions - expression itself isn't
1930 : : * allowed to have external attributes in this position so can't be
1931 : : * stripped. */
1932 : 32 : auto &expr = item.get_expr ();
1933 : 32 : if (expr.is_marked_for_strip ())
1934 : 0 : rust_error_at (expr.get_locus (),
1935 : : "cannot strip expression in this position - outer "
1936 : : "attributes not allowed");
1937 : : }
1938 : : void
1939 : 236 : CfgStrip::visit (AST::Enum &enum_item)
1940 : : {
1941 : : // initial test based on outer attrs
1942 : 236 : expand_cfg_attrs (enum_item.get_outer_attrs ());
1943 : 236 : if (fails_cfg_with_expand (enum_item.get_outer_attrs ()))
1944 : : {
1945 : 0 : enum_item.mark_for_strip ();
1946 : 0 : return;
1947 : : }
1948 : :
1949 : 236 : AST::DefaultASTVisitor::visit (enum_item);
1950 : :
1951 : : /* strip enum fields if required - this is presumably
1952 : : * allowed by spec */
1953 : 236 : maybe_strip_pointer_allow_strip (enum_item.get_variants ());
1954 : : }
1955 : : void
1956 : 98 : CfgStrip::visit (AST::Union &union_item)
1957 : : {
1958 : : // initial test based on outer attrs
1959 : 98 : expand_cfg_attrs (union_item.get_outer_attrs ());
1960 : 98 : if (fails_cfg_with_expand (union_item.get_outer_attrs ()))
1961 : : {
1962 : 0 : union_item.mark_for_strip ();
1963 : 0 : return;
1964 : : }
1965 : :
1966 : 98 : AST::DefaultASTVisitor::visit (union_item);
1967 : :
1968 : : /* strip union fields if required - this is presumably
1969 : : * allowed by spec */
1970 : 98 : maybe_strip_struct_fields (union_item.get_variants ());
1971 : : }
1972 : : void
1973 : 573 : CfgStrip::visit (AST::ConstantItem &const_item)
1974 : : {
1975 : : // initial test based on outer attrs
1976 : 573 : expand_cfg_attrs (const_item.get_outer_attrs ());
1977 : 573 : if (fails_cfg_with_expand (const_item.get_outer_attrs ()))
1978 : : {
1979 : 0 : const_item.mark_for_strip ();
1980 : 0 : return;
1981 : : }
1982 : :
1983 : 573 : AST::DefaultASTVisitor::visit (const_item);
1984 : :
1985 : : // strip any sub-types
1986 : 573 : auto &type = const_item.get_type ();
1987 : 573 : if (type.is_marked_for_strip ())
1988 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
1989 : :
1990 : : /* strip any internal sub-expressions - expression itself isn't
1991 : : * allowed to have external attributes in this position so can't be
1992 : : * stripped. */
1993 : 573 : if (const_item.has_expr ())
1994 : : {
1995 : 571 : auto &expr = const_item.get_expr ();
1996 : 571 : if (expr.is_marked_for_strip ())
1997 : 0 : rust_error_at (expr.get_locus (),
1998 : : "cannot strip expression in this position - outer "
1999 : : "attributes not allowed");
2000 : : }
2001 : : }
2002 : : void
2003 : 45 : CfgStrip::visit (AST::StaticItem &static_item)
2004 : : {
2005 : : // initial test based on outer attrs
2006 : 45 : expand_cfg_attrs (static_item.get_outer_attrs ());
2007 : 45 : if (fails_cfg_with_expand (static_item.get_outer_attrs ()))
2008 : : {
2009 : 0 : static_item.mark_for_strip ();
2010 : 0 : return;
2011 : : }
2012 : :
2013 : 45 : AST::DefaultASTVisitor::visit (static_item);
2014 : :
2015 : : // strip any sub-types
2016 : 45 : auto &type = static_item.get_type ();
2017 : :
2018 : 45 : if (type.is_marked_for_strip ())
2019 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
2020 : :
2021 : : /* strip any internal sub-expressions - expression itself isn't
2022 : : * allowed to have external attributes in this position so can't be
2023 : : * stripped. */
2024 : 45 : auto &expr = static_item.get_expr ();
2025 : 45 : if (expr.is_marked_for_strip ())
2026 : 0 : rust_error_at (expr.get_locus (),
2027 : : "cannot strip expression in this position - outer "
2028 : : "attributes not allowed");
2029 : : }
2030 : :
2031 : : void
2032 : 88 : CfgStrip::visit (AST::TraitItemConst &item)
2033 : : {
2034 : : // initial test based on outer attrs
2035 : 88 : expand_cfg_attrs (item.get_outer_attrs ());
2036 : 88 : if (fails_cfg_with_expand (item.get_outer_attrs ()))
2037 : : {
2038 : 0 : item.mark_for_strip ();
2039 : 0 : return;
2040 : : }
2041 : :
2042 : 88 : AST::DefaultASTVisitor::visit (item);
2043 : :
2044 : : // strip any sub-types
2045 : 88 : auto &type = item.get_type ();
2046 : :
2047 : 88 : if (type.is_marked_for_strip ())
2048 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
2049 : :
2050 : : /* strip any internal sub-expressions - expression itself isn't
2051 : : * allowed to have external attributes in this position so can't be
2052 : : * stripped */
2053 : 88 : if (item.has_expression ())
2054 : : {
2055 : 20 : auto &expr = item.get_expr ();
2056 : 20 : if (expr.is_marked_for_strip ())
2057 : 0 : rust_error_at (expr.get_locus (),
2058 : : "cannot strip expression in this position - outer "
2059 : : "attributes not allowed");
2060 : : }
2061 : : }
2062 : :
2063 : : void
2064 : 1164 : CfgStrip::visit (AST::TraitItemType &item)
2065 : : {
2066 : : // initial test based on outer attrs
2067 : 1164 : expand_cfg_attrs (item.get_outer_attrs ());
2068 : 1164 : if (fails_cfg_with_expand (item.get_outer_attrs ()))
2069 : : {
2070 : 0 : item.mark_for_strip ();
2071 : 0 : return;
2072 : : }
2073 : :
2074 : 1164 : AST::DefaultASTVisitor::visit (item);
2075 : : }
2076 : :
2077 : : void
2078 : 2441 : CfgStrip::visit (AST::Trait &trait)
2079 : : {
2080 : : // initial strip test based on outer attrs
2081 : 2441 : expand_cfg_attrs (trait.get_outer_attrs ());
2082 : 2441 : if (fails_cfg_with_expand (trait.get_outer_attrs ()))
2083 : : {
2084 : 1 : trait.mark_for_strip ();
2085 : 1 : return;
2086 : : }
2087 : :
2088 : : // strip test based on inner attrs
2089 : 2440 : expand_cfg_attrs (trait.get_inner_attrs ());
2090 : 2440 : if (fails_cfg_with_expand (trait.get_inner_attrs ()))
2091 : : {
2092 : 0 : trait.mark_for_strip ();
2093 : 0 : return;
2094 : : }
2095 : :
2096 : 2440 : AST::DefaultASTVisitor::visit (trait);
2097 : :
2098 : 2440 : maybe_strip_pointer_allow_strip (trait.get_trait_items ());
2099 : : }
2100 : :
2101 : : void
2102 : 799 : CfgStrip::visit (AST::InherentImpl &impl)
2103 : : {
2104 : : // initial strip test based on outer attrs
2105 : 799 : expand_cfg_attrs (impl.get_outer_attrs ());
2106 : 799 : if (fails_cfg_with_expand (impl.get_outer_attrs ()))
2107 : : {
2108 : 1 : impl.mark_for_strip ();
2109 : 1 : return;
2110 : : }
2111 : :
2112 : : // strip test based on inner attrs
2113 : 798 : expand_cfg_attrs (impl.get_inner_attrs ());
2114 : 798 : if (fails_cfg_with_expand (impl.get_inner_attrs ()))
2115 : : {
2116 : 0 : impl.mark_for_strip ();
2117 : 0 : return;
2118 : : }
2119 : :
2120 : 798 : AST::DefaultASTVisitor::visit (impl);
2121 : :
2122 : 798 : auto &type = impl.get_type ();
2123 : :
2124 : 798 : if (type.is_marked_for_strip ())
2125 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
2126 : :
2127 : 798 : maybe_strip_pointer_allow_strip (impl.get_impl_items ());
2128 : : }
2129 : :
2130 : : void
2131 : 2866 : CfgStrip::visit (AST::TraitImpl &impl)
2132 : : {
2133 : : // initial strip test based on outer attrs
2134 : 2866 : expand_cfg_attrs (impl.get_outer_attrs ());
2135 : 2866 : if (fails_cfg_with_expand (impl.get_outer_attrs ()))
2136 : : {
2137 : 0 : impl.mark_for_strip ();
2138 : 0 : return;
2139 : : }
2140 : :
2141 : : // strip test based on inner attrs
2142 : 2866 : expand_cfg_attrs (impl.get_inner_attrs ());
2143 : 2866 : if (fails_cfg_with_expand (impl.get_inner_attrs ()))
2144 : : {
2145 : 0 : impl.mark_for_strip ();
2146 : 0 : return;
2147 : : }
2148 : :
2149 : 2866 : AST::DefaultASTVisitor::visit (impl);
2150 : :
2151 : 2866 : auto &type = impl.get_type ();
2152 : 2866 : if (type.is_marked_for_strip ())
2153 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
2154 : :
2155 : 2866 : auto &trait_path = impl.get_trait_path ();
2156 : 2866 : visit (trait_path);
2157 : 2866 : if (trait_path.is_marked_for_strip ())
2158 : 0 : rust_error_at (trait_path.get_locus (),
2159 : : "cannot strip typepath in this position");
2160 : :
2161 : 2866 : maybe_strip_pointer_allow_strip (impl.get_impl_items ());
2162 : : }
2163 : :
2164 : : void
2165 : 1 : CfgStrip::visit (AST::ExternalTypeItem &item)
2166 : : {
2167 : 1 : expand_cfg_attrs (item.get_outer_attrs ());
2168 : :
2169 : 1 : if (fails_cfg_with_expand (item.get_outer_attrs ()))
2170 : 0 : item.mark_for_strip ();
2171 : :
2172 : : // TODO: Can we do anything like expand a macro here?
2173 : : // extern "C" { type ffi_ty!(); }
2174 : : // ?
2175 : 1 : }
2176 : :
2177 : : void
2178 : 1 : CfgStrip::visit (AST::ExternalStaticItem &item)
2179 : : {
2180 : : // strip test based on outer attrs
2181 : 1 : expand_cfg_attrs (item.get_outer_attrs ());
2182 : 1 : if (fails_cfg_with_expand (item.get_outer_attrs ()))
2183 : : {
2184 : 0 : item.mark_for_strip ();
2185 : 0 : return;
2186 : : }
2187 : :
2188 : 1 : AST::DefaultASTVisitor::visit (item);
2189 : :
2190 : 1 : auto &type = item.get_type ();
2191 : 1 : if (type.is_marked_for_strip ())
2192 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
2193 : : }
2194 : :
2195 : : void
2196 : 1305 : CfgStrip::visit (AST::ExternBlock &block)
2197 : : {
2198 : : // initial strip test based on outer attrs
2199 : 1305 : expand_cfg_attrs (block.get_outer_attrs ());
2200 : 1305 : if (fails_cfg_with_expand (block.get_outer_attrs ()))
2201 : : {
2202 : 0 : block.mark_for_strip ();
2203 : 0 : return;
2204 : : }
2205 : :
2206 : : // strip test based on inner attrs
2207 : 1305 : expand_cfg_attrs (block.get_inner_attrs ());
2208 : 1305 : if (fails_cfg_with_expand (block.get_inner_attrs ()))
2209 : : {
2210 : 0 : block.mark_for_strip ();
2211 : 0 : return;
2212 : : }
2213 : :
2214 : 1305 : maybe_strip_pointer_allow_strip (block.get_extern_items ());
2215 : : }
2216 : :
2217 : : void
2218 : 2579 : CfgStrip::visit (AST::MacroRulesDefinition &rules_def)
2219 : : {
2220 : : // initial strip test based on outer attrs
2221 : 2579 : expand_cfg_attrs (rules_def.get_outer_attrs ());
2222 : 2579 : if (fails_cfg_with_expand (rules_def.get_outer_attrs ()))
2223 : : {
2224 : 0 : rules_def.mark_for_strip ();
2225 : 0 : return;
2226 : : }
2227 : : }
2228 : :
2229 : : void
2230 : 52446 : CfgStrip::visit (AST::IdentifierPattern &pattern)
2231 : : {
2232 : : // can only strip sub-patterns of the inner pattern to bind
2233 : 52446 : if (!pattern.has_pattern_to_bind ())
2234 : : return;
2235 : :
2236 : 0 : AST::DefaultASTVisitor::visit (pattern);
2237 : :
2238 : 0 : auto &sub_pattern = pattern.get_pattern_to_bind ();
2239 : 0 : if (sub_pattern.is_marked_for_strip ())
2240 : 0 : rust_error_at (sub_pattern.get_locus (),
2241 : : "cannot strip pattern in this position");
2242 : : }
2243 : :
2244 : : void
2245 : 21 : CfgStrip::visit (AST::RangePatternBoundPath &bound)
2246 : : {
2247 : : // can expand path, but not strip it directly
2248 : 21 : auto &path = bound.get_path ();
2249 : 21 : visit (path);
2250 : 21 : if (path.is_marked_for_strip ())
2251 : 0 : rust_error_at (path.get_locus (), "cannot strip path in this position");
2252 : 21 : }
2253 : :
2254 : : void
2255 : 0 : CfgStrip::visit (AST::RangePatternBoundQualPath &bound)
2256 : : {
2257 : : // can expand path, but not strip it directly
2258 : 0 : auto &path = bound.get_qualified_path ();
2259 : 0 : visit (path);
2260 : 0 : if (path.is_marked_for_strip ())
2261 : 0 : rust_error_at (path.get_locus (), "cannot strip path in this position");
2262 : 0 : }
2263 : :
2264 : : void
2265 : 84 : CfgStrip::visit (AST::ReferencePattern &pattern)
2266 : : {
2267 : 84 : AST::DefaultASTVisitor::visit (pattern);
2268 : :
2269 : 84 : auto &sub_pattern = pattern.get_referenced_pattern ();
2270 : 84 : if (sub_pattern.is_marked_for_strip ())
2271 : 0 : rust_error_at (sub_pattern.get_locus (),
2272 : : "cannot strip pattern in this position");
2273 : 84 : }
2274 : : void
2275 : 2 : CfgStrip::visit (AST::StructPatternFieldTuplePat &field)
2276 : : {
2277 : : // initial strip test based on outer attrs
2278 : 2 : expand_cfg_attrs (field.get_outer_attrs ());
2279 : 2 : if (fails_cfg_with_expand (field.get_outer_attrs ()))
2280 : : {
2281 : 0 : field.mark_for_strip ();
2282 : 0 : return;
2283 : : }
2284 : :
2285 : 2 : AST::DefaultASTVisitor::visit (field);
2286 : :
2287 : : // strip sub-patterns (can't strip top-level pattern)
2288 : 2 : auto &sub_pattern = field.get_index_pattern ();
2289 : 2 : if (sub_pattern.is_marked_for_strip ())
2290 : 0 : rust_error_at (sub_pattern.get_locus (),
2291 : : "cannot strip pattern in this position");
2292 : : }
2293 : :
2294 : : void
2295 : 2 : CfgStrip::visit (AST::StructPatternFieldIdentPat &field)
2296 : : {
2297 : : // initial strip test based on outer attrs
2298 : 2 : expand_cfg_attrs (field.get_outer_attrs ());
2299 : 2 : if (fails_cfg_with_expand (field.get_outer_attrs ()))
2300 : : {
2301 : 0 : field.mark_for_strip ();
2302 : 0 : return;
2303 : : }
2304 : :
2305 : 2 : AST::DefaultASTVisitor::visit (field);
2306 : : // strip sub-patterns (can't strip top-level pattern)
2307 : 2 : auto &sub_pattern = field.get_ident_pattern ();
2308 : 2 : if (sub_pattern.is_marked_for_strip ())
2309 : 0 : rust_error_at (sub_pattern.get_locus (),
2310 : : "cannot strip pattern in this position");
2311 : : }
2312 : : void
2313 : 63 : CfgStrip::visit (AST::StructPatternFieldIdent &field)
2314 : : {
2315 : : // initial strip test based on outer attrs
2316 : 63 : expand_cfg_attrs (field.get_outer_attrs ());
2317 : 63 : if (fails_cfg_with_expand (field.get_outer_attrs ()))
2318 : : {
2319 : 0 : field.mark_for_strip ();
2320 : 0 : return;
2321 : : }
2322 : : }
2323 : :
2324 : : void
2325 : 37 : CfgStrip::visit (AST::StructPattern &pattern)
2326 : : {
2327 : : // expand (but don't strip) path
2328 : 37 : auto &path = pattern.get_path ();
2329 : 37 : visit (path);
2330 : 37 : if (path.is_marked_for_strip ())
2331 : 0 : rust_error_at (path.get_locus (), "cannot strip path in this position");
2332 : :
2333 : : /* TODO: apparently struct pattern fields can have outer attrs. so can they
2334 : : * be stripped? */
2335 : 37 : if (!pattern.has_struct_pattern_elems ())
2336 : : return;
2337 : :
2338 : 37 : auto &elems = pattern.get_struct_pattern_elems ();
2339 : :
2340 : : // assuming you can strip struct pattern fields
2341 : 37 : maybe_strip_pointer_allow_strip (elems.get_struct_pattern_fields ());
2342 : :
2343 : : // assuming you can strip the ".." part
2344 : 37 : if (elems.has_etc ())
2345 : : {
2346 : 0 : expand_cfg_attrs (elems.get_etc_outer_attrs ());
2347 : 0 : if (fails_cfg_with_expand (elems.get_etc_outer_attrs ()))
2348 : 0 : elems.strip_etc ();
2349 : : }
2350 : : }
2351 : :
2352 : : void
2353 : 456 : CfgStrip::visit (AST::TupleStructItemsNoRange &tuple_items)
2354 : : {
2355 : 456 : AST::DefaultASTVisitor::visit (tuple_items);
2356 : : // can't strip individual patterns, only sub-patterns
2357 : 1024 : for (auto &pattern : tuple_items.get_patterns ())
2358 : : {
2359 : 568 : if (pattern->is_marked_for_strip ())
2360 : 0 : rust_error_at (pattern->get_locus (),
2361 : : "cannot strip pattern in this position");
2362 : : // TODO: quit stripping now? or keep going?
2363 : : }
2364 : 456 : }
2365 : : void
2366 : 0 : CfgStrip::visit (AST::TupleStructItemsRange &tuple_items)
2367 : : {
2368 : 0 : AST::DefaultASTVisitor::visit (tuple_items);
2369 : : // can't strip individual patterns, only sub-patterns
2370 : 0 : for (auto &lower_pattern : tuple_items.get_lower_patterns ())
2371 : : {
2372 : 0 : if (lower_pattern->is_marked_for_strip ())
2373 : 0 : rust_error_at (lower_pattern->get_locus (),
2374 : : "cannot strip pattern in this position");
2375 : : // TODO: quit stripping now? or keep going?
2376 : : }
2377 : 0 : for (auto &upper_pattern : tuple_items.get_upper_patterns ())
2378 : : {
2379 : 0 : if (upper_pattern->is_marked_for_strip ())
2380 : 0 : rust_error_at (upper_pattern->get_locus (),
2381 : : "cannot strip pattern in this position");
2382 : : // TODO: quit stripping now? or keep going?
2383 : : }
2384 : 0 : }
2385 : :
2386 : : void
2387 : 456 : CfgStrip::visit (AST::TupleStructPattern &pattern)
2388 : : {
2389 : : // expand (but don't strip) path
2390 : 456 : auto &path = pattern.get_path ();
2391 : 456 : visit (path);
2392 : 456 : if (path.is_marked_for_strip ())
2393 : 0 : rust_error_at (path.get_locus (), "cannot strip path in this position");
2394 : :
2395 : 456 : AST::DefaultASTVisitor::visit (pattern);
2396 : 456 : }
2397 : :
2398 : : void
2399 : 864 : CfgStrip::visit (AST::TuplePatternItemsMultiple &tuple_items)
2400 : : {
2401 : 864 : AST::DefaultASTVisitor::visit (tuple_items);
2402 : :
2403 : : // can't strip individual patterns, only sub-patterns
2404 : 2626 : for (auto &pattern : tuple_items.get_patterns ())
2405 : : {
2406 : 1762 : if (pattern->is_marked_for_strip ())
2407 : 0 : rust_error_at (pattern->get_locus (),
2408 : : "cannot strip pattern in this position");
2409 : : // TODO: quit stripping now? or keep going?
2410 : : }
2411 : 864 : }
2412 : :
2413 : : void
2414 : 0 : CfgStrip::visit (AST::TuplePatternItemsRanged &tuple_items)
2415 : : {
2416 : 0 : AST::DefaultASTVisitor::visit (tuple_items);
2417 : :
2418 : : // can't strip individual patterns, only sub-patterns
2419 : 0 : for (auto &lower_pattern : tuple_items.get_lower_patterns ())
2420 : : {
2421 : 0 : if (lower_pattern->is_marked_for_strip ())
2422 : 0 : rust_error_at (lower_pattern->get_locus (),
2423 : : "cannot strip pattern in this position");
2424 : : // TODO: quit stripping now? or keep going?
2425 : : }
2426 : 0 : for (auto &upper_pattern : tuple_items.get_upper_patterns ())
2427 : : {
2428 : 0 : if (upper_pattern->is_marked_for_strip ())
2429 : 0 : rust_error_at (upper_pattern->get_locus (),
2430 : : "cannot strip pattern in this position");
2431 : : // TODO: quit stripping now? or keep going?
2432 : : }
2433 : 0 : }
2434 : :
2435 : : void
2436 : 86 : CfgStrip::visit (AST::GroupedPattern &pattern)
2437 : : {
2438 : 86 : AST::DefaultASTVisitor::visit (pattern);
2439 : : // can't strip inner pattern, only sub-patterns
2440 : 86 : auto &pattern_in_parens = pattern.get_pattern_in_parens ();
2441 : :
2442 : 86 : if (pattern_in_parens.is_marked_for_strip ())
2443 : 0 : rust_error_at (pattern_in_parens.get_locus (),
2444 : : "cannot strip pattern in this position");
2445 : 86 : }
2446 : :
2447 : : void
2448 : 0 : CfgStrip::visit (AST::SlicePattern &pattern)
2449 : : {
2450 : 0 : AST::DefaultASTVisitor::visit (pattern);
2451 : : // can't strip individual patterns, only sub-patterns
2452 : 0 : for (auto &item : pattern.get_items ())
2453 : : {
2454 : 0 : if (item->is_marked_for_strip ())
2455 : 0 : rust_error_at (item->get_locus (),
2456 : : "cannot strip pattern in this position");
2457 : : // TODO: quit stripping now? or keep going?
2458 : : }
2459 : 0 : }
2460 : :
2461 : : void
2462 : 89 : CfgStrip::visit (AST::AltPattern &pattern)
2463 : : {
2464 : 89 : AST::DefaultASTVisitor::visit (pattern);
2465 : : // can't strip individual patterns, only sub-patterns
2466 : 296 : for (auto &alt : pattern.get_alts ())
2467 : : {
2468 : 207 : if (alt->is_marked_for_strip ())
2469 : 0 : rust_error_at (alt->get_locus (),
2470 : : "cannot strip pattern in this position");
2471 : : // TODO: quit stripping now? or keep going?
2472 : : }
2473 : 89 : }
2474 : :
2475 : : void
2476 : 30192 : CfgStrip::visit (AST::LetStmt &stmt)
2477 : : {
2478 : : // initial strip test based on outer attrs
2479 : 30192 : expand_cfg_attrs (stmt.get_outer_attrs ());
2480 : 30192 : if (fails_cfg_with_expand (stmt.get_outer_attrs ()))
2481 : : {
2482 : 0 : stmt.mark_for_strip ();
2483 : 0 : return;
2484 : : }
2485 : :
2486 : 30192 : AST::DefaultASTVisitor::visit (stmt);
2487 : : // can't strip pattern, but call for sub-patterns
2488 : 30192 : auto &pattern = stmt.get_pattern ();
2489 : 30192 : if (pattern.is_marked_for_strip ())
2490 : 0 : rust_error_at (pattern.get_locus (),
2491 : : "cannot strip pattern in this position");
2492 : :
2493 : : // similar for type
2494 : 30192 : if (stmt.has_type ())
2495 : : {
2496 : 3828 : auto &type = stmt.get_type ();
2497 : :
2498 : 3828 : if (type.is_marked_for_strip ())
2499 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
2500 : : }
2501 : :
2502 : : /* strip any internal sub-expressions - expression itself isn't
2503 : : * allowed to have external attributes in this position so can't be
2504 : : * stripped */
2505 : 30192 : if (stmt.has_init_expr ())
2506 : : {
2507 : 27886 : auto &init_expr = stmt.get_init_expr ();
2508 : :
2509 : 27886 : if (init_expr.is_marked_for_strip ())
2510 : 0 : rust_error_at (init_expr.get_locus (),
2511 : : "cannot strip expression in this position - outer "
2512 : : "attributes not allowed");
2513 : : }
2514 : : }
2515 : :
2516 : : void
2517 : 19091 : CfgStrip::visit (AST::ExprStmt &stmt)
2518 : : {
2519 : : // outer attributes associated with expr, so rely on expr
2520 : :
2521 : : // guard - should prevent null pointer expr
2522 : 19091 : if (stmt.is_marked_for_strip ())
2523 : : return;
2524 : :
2525 : 19091 : AST::DefaultASTVisitor::visit (stmt);
2526 : : // strip if expr is to be stripped
2527 : 19091 : auto &expr = stmt.get_expr ();
2528 : 19091 : if (expr.is_marked_for_strip ())
2529 : : {
2530 : 17 : stmt.mark_for_strip ();
2531 : 17 : return;
2532 : : }
2533 : : }
2534 : :
2535 : : void
2536 : 1042 : CfgStrip::visit (AST::TraitBound &bound)
2537 : : {
2538 : : // nothing in for lifetimes to strip
2539 : :
2540 : : // expand but don't strip type path
2541 : 1042 : auto &path = bound.get_type_path ();
2542 : 1042 : visit (path);
2543 : 1042 : if (path.is_marked_for_strip ())
2544 : 0 : rust_error_at (path.get_locus (),
2545 : : "cannot strip type path in this position");
2546 : 1042 : }
2547 : :
2548 : : void
2549 : 0 : CfgStrip::visit (AST::ParenthesisedType &type)
2550 : : {
2551 : 0 : AST::DefaultASTVisitor::visit (type);
2552 : : // expand but don't strip inner type
2553 : 0 : auto &inner_type = type.get_type_in_parens ();
2554 : 0 : if (inner_type->is_marked_for_strip ())
2555 : 0 : rust_error_at (inner_type->get_locus (),
2556 : : "cannot strip type in this position");
2557 : 0 : }
2558 : :
2559 : : void
2560 : 523 : CfgStrip::visit (AST::TupleType &type)
2561 : : {
2562 : 523 : AST::DefaultASTVisitor::visit (type);
2563 : : // TODO: assuming that types can't be stripped as types don't have outer
2564 : : // attributes
2565 : 1417 : for (auto &elem_type : type.get_elems ())
2566 : : {
2567 : 894 : if (elem_type->is_marked_for_strip ())
2568 : 0 : rust_error_at (elem_type->get_locus (),
2569 : : "cannot strip type in this position");
2570 : : }
2571 : 523 : }
2572 : :
2573 : : void
2574 : 17829 : CfgStrip::visit (AST::RawPointerType &type)
2575 : : {
2576 : 17829 : AST::DefaultASTVisitor::visit (type);
2577 : : // expand but don't strip type pointed to
2578 : 17829 : auto &pointed_type = type.get_type_pointed_to ();
2579 : 17829 : if (pointed_type.is_marked_for_strip ())
2580 : 0 : rust_error_at (pointed_type.get_locus (),
2581 : : "cannot strip type in this position");
2582 : 17829 : }
2583 : :
2584 : : void
2585 : 4856 : CfgStrip::visit (AST::ReferenceType &type)
2586 : : {
2587 : 4856 : AST::DefaultASTVisitor::visit (type);
2588 : : // expand but don't strip type referenced
2589 : 4856 : auto &referenced_type = type.get_type_referenced ();
2590 : 4856 : if (referenced_type.is_marked_for_strip ())
2591 : 0 : rust_error_at (referenced_type.get_locus (),
2592 : : "cannot strip type in this position");
2593 : 4856 : }
2594 : :
2595 : : void
2596 : 1388 : CfgStrip::visit (AST::ArrayType &type)
2597 : : {
2598 : 1388 : AST::DefaultASTVisitor::visit (type);
2599 : : // expand but don't strip type referenced
2600 : 1388 : auto &base_type = type.get_elem_type ();
2601 : 1388 : if (base_type.is_marked_for_strip ())
2602 : 0 : rust_error_at (base_type.get_locus (),
2603 : : "cannot strip type in this position");
2604 : :
2605 : : // same for expression
2606 : 1388 : auto &size_expr = type.get_size_expr ();
2607 : 1388 : if (size_expr.is_marked_for_strip ())
2608 : 0 : rust_error_at (size_expr.get_locus (),
2609 : : "cannot strip expression in this position");
2610 : 1388 : }
2611 : : void
2612 : 1612 : CfgStrip::visit (AST::SliceType &type)
2613 : : {
2614 : 1612 : AST::DefaultASTVisitor::visit (type);
2615 : : // expand but don't strip elem type
2616 : 1612 : auto &elem_type = type.get_elem_type ();
2617 : 1612 : if (elem_type.is_marked_for_strip ())
2618 : 0 : rust_error_at (elem_type.get_locus (),
2619 : : "cannot strip type in this position");
2620 : 1612 : }
2621 : :
2622 : : void
2623 : 74 : CfgStrip::visit (AST::BareFunctionType &type)
2624 : : {
2625 : : // seem to be no generics
2626 : 74 : AST::DefaultASTVisitor::visit (type);
2627 : :
2628 : : // presumably function params can be stripped
2629 : 74 : auto ¶ms = type.get_function_params ();
2630 : 152 : for (auto it = params.begin (); it != params.end ();)
2631 : : {
2632 : 78 : auto ¶m = *it;
2633 : :
2634 : 78 : auto ¶m_attrs = param.get_outer_attrs ();
2635 : 78 : expand_cfg_attrs (param_attrs);
2636 : 78 : if (fails_cfg_with_expand (param_attrs))
2637 : : {
2638 : 0 : it = params.erase (it);
2639 : 0 : continue;
2640 : : }
2641 : :
2642 : 78 : auto &type = param.get_type ();
2643 : 78 : if (type.is_marked_for_strip ())
2644 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
2645 : :
2646 : : // increment if nothing else happens
2647 : 78 : ++it;
2648 : : }
2649 : :
2650 : : /* TODO: assuming that variadic nature cannot be stripped. If this
2651 : : * is not true, then have code here to do so. */
2652 : :
2653 : 74 : if (type.has_return_type ())
2654 : : {
2655 : : // FIXME: Can we have type expansion in this position?
2656 : : // In that case, we need to handle AST::TypeNoBounds on top of just
2657 : : // AST::Types
2658 : 66 : auto &return_type = type.get_return_type ();
2659 : 66 : if (return_type.is_marked_for_strip ())
2660 : 0 : rust_error_at (return_type.get_locus (),
2661 : : "cannot strip type in this position");
2662 : : }
2663 : :
2664 : : // no where clause, apparently
2665 : 74 : }
2666 : :
2667 : : void
2668 : 17818 : CfgStrip::visit (AST::SelfParam ¶m)
2669 : : {
2670 : 17818 : AST::DefaultASTVisitor::visit (param);
2671 : :
2672 : 17818 : if (param.has_type ())
2673 : : {
2674 : 4 : auto &type = param.get_type ();
2675 : 4 : if (type.is_marked_for_strip ())
2676 : 0 : rust_error_at (type.get_locus (), "cannot strip type in this position");
2677 : : }
2678 : : /* TODO: maybe check for invariants being violated - e.g. both type and
2679 : : * lifetime? */
2680 : 17818 : }
2681 : :
2682 : : } // namespace Rust
|