]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/semantics.c
PR c++/61339 - add mismatch between struct and class [-Wmismatched-tags] to non-bugs
[thirdparty/gcc.git] / gcc / cp / semantics.c
1 /* Perform the semantic phase of parsing, i.e., the process of
2 building tree structure, checking semantic consistency, and
3 building RTL. These routines are used both during actual parsing
4 and during the instantiation of template functions.
5
6 Copyright (C) 1998-2019 Free Software Foundation, Inc.
7 Written by Mark Mitchell (mmitchell@usa.net) based on code found
8 formerly in parse.y and pt.c.
9
10 This file is part of GCC.
11
12 GCC is free software; you can redistribute it and/or modify it
13 under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3, or (at your option)
15 any later version.
16
17 GCC is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with GCC; see the file COPYING3. If not see
24 <http://www.gnu.org/licenses/>. */
25
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "target.h"
30 #include "bitmap.h"
31 #include "cp-tree.h"
32 #include "stringpool.h"
33 #include "cgraph.h"
34 #include "stmt.h"
35 #include "varasm.h"
36 #include "stor-layout.h"
37 #include "c-family/c-objc.h"
38 #include "tree-inline.h"
39 #include "intl.h"
40 #include "tree-iterator.h"
41 #include "omp-general.h"
42 #include "convert.h"
43 #include "stringpool.h"
44 #include "attribs.h"
45 #include "gomp-constants.h"
46 #include "predict.h"
47 #include "memmodel.h"
48
49 /* There routines provide a modular interface to perform many parsing
50 operations. They may therefore be used during actual parsing, or
51 during template instantiation, which may be regarded as a
52 degenerate form of parsing. */
53
54 static tree maybe_convert_cond (tree);
55 static tree finalize_nrv_r (tree *, int *, void *);
56 static tree capture_decltype (tree);
57
58 /* Used for OpenMP non-static data member privatization. */
59
60 static hash_map<tree, tree> *omp_private_member_map;
61 static vec<tree> omp_private_member_vec;
62 static bool omp_private_member_ignore_next;
63
64
65 /* Deferred Access Checking Overview
66 ---------------------------------
67
68 Most C++ expressions and declarations require access checking
69 to be performed during parsing. However, in several cases,
70 this has to be treated differently.
71
72 For member declarations, access checking has to be deferred
73 until more information about the declaration is known. For
74 example:
75
76 class A {
77 typedef int X;
78 public:
79 X f();
80 };
81
82 A::X A::f();
83 A::X g();
84
85 When we are parsing the function return type `A::X', we don't
86 really know if this is allowed until we parse the function name.
87
88 Furthermore, some contexts require that access checking is
89 never performed at all. These include class heads, and template
90 instantiations.
91
92 Typical use of access checking functions is described here:
93
94 1. When we enter a context that requires certain access checking
95 mode, the function `push_deferring_access_checks' is called with
96 DEFERRING argument specifying the desired mode. Access checking
97 may be performed immediately (dk_no_deferred), deferred
98 (dk_deferred), or not performed (dk_no_check).
99
100 2. When a declaration such as a type, or a variable, is encountered,
101 the function `perform_or_defer_access_check' is called. It
102 maintains a vector of all deferred checks.
103
104 3. The global `current_class_type' or `current_function_decl' is then
105 setup by the parser. `enforce_access' relies on these information
106 to check access.
107
108 4. Upon exiting the context mentioned in step 1,
109 `perform_deferred_access_checks' is called to check all declaration
110 stored in the vector. `pop_deferring_access_checks' is then
111 called to restore the previous access checking mode.
112
113 In case of parsing error, we simply call `pop_deferring_access_checks'
114 without `perform_deferred_access_checks'. */
115
116 struct GTY(()) deferred_access {
117 /* A vector representing name-lookups for which we have deferred
118 checking access controls. We cannot check the accessibility of
119 names used in a decl-specifier-seq until we know what is being
120 declared because code like:
121
122 class A {
123 class B {};
124 B* f();
125 }
126
127 A::B* A::f() { return 0; }
128
129 is valid, even though `A::B' is not generally accessible. */
130 vec<deferred_access_check, va_gc> * GTY(()) deferred_access_checks;
131
132 /* The current mode of access checks. */
133 enum deferring_kind deferring_access_checks_kind;
134
135 };
136
137 /* Data for deferred access checking. */
138 static GTY(()) vec<deferred_access, va_gc> *deferred_access_stack;
139 static GTY(()) unsigned deferred_access_no_check;
140
141 /* Save the current deferred access states and start deferred
142 access checking iff DEFER_P is true. */
143
144 void
145 push_deferring_access_checks (deferring_kind deferring)
146 {
147 /* For context like template instantiation, access checking
148 disabling applies to all nested context. */
149 if (deferred_access_no_check || deferring == dk_no_check)
150 deferred_access_no_check++;
151 else
152 {
153 deferred_access e = {NULL, deferring};
154 vec_safe_push (deferred_access_stack, e);
155 }
156 }
157
158 /* Save the current deferred access states and start deferred access
159 checking, continuing the set of deferred checks in CHECKS. */
160
161 void
162 reopen_deferring_access_checks (vec<deferred_access_check, va_gc> * checks)
163 {
164 push_deferring_access_checks (dk_deferred);
165 if (!deferred_access_no_check)
166 deferred_access_stack->last().deferred_access_checks = checks;
167 }
168
169 /* Resume deferring access checks again after we stopped doing
170 this previously. */
171
172 void
173 resume_deferring_access_checks (void)
174 {
175 if (!deferred_access_no_check)
176 deferred_access_stack->last().deferring_access_checks_kind = dk_deferred;
177 }
178
179 /* Stop deferring access checks. */
180
181 void
182 stop_deferring_access_checks (void)
183 {
184 if (!deferred_access_no_check)
185 deferred_access_stack->last().deferring_access_checks_kind = dk_no_deferred;
186 }
187
188 /* Discard the current deferred access checks and restore the
189 previous states. */
190
191 void
192 pop_deferring_access_checks (void)
193 {
194 if (deferred_access_no_check)
195 deferred_access_no_check--;
196 else
197 deferred_access_stack->pop ();
198 }
199
200 /* Returns a TREE_LIST representing the deferred checks.
201 The TREE_PURPOSE of each node is the type through which the
202 access occurred; the TREE_VALUE is the declaration named.
203 */
204
205 vec<deferred_access_check, va_gc> *
206 get_deferred_access_checks (void)
207 {
208 if (deferred_access_no_check)
209 return NULL;
210 else
211 return (deferred_access_stack->last().deferred_access_checks);
212 }
213
214 /* Take current deferred checks and combine with the
215 previous states if we also defer checks previously.
216 Otherwise perform checks now. */
217
218 void
219 pop_to_parent_deferring_access_checks (void)
220 {
221 if (deferred_access_no_check)
222 deferred_access_no_check--;
223 else
224 {
225 vec<deferred_access_check, va_gc> *checks;
226 deferred_access *ptr;
227
228 checks = (deferred_access_stack->last ().deferred_access_checks);
229
230 deferred_access_stack->pop ();
231 ptr = &deferred_access_stack->last ();
232 if (ptr->deferring_access_checks_kind == dk_no_deferred)
233 {
234 /* Check access. */
235 perform_access_checks (checks, tf_warning_or_error);
236 }
237 else
238 {
239 /* Merge with parent. */
240 int i, j;
241 deferred_access_check *chk, *probe;
242
243 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
244 {
245 FOR_EACH_VEC_SAFE_ELT (ptr->deferred_access_checks, j, probe)
246 {
247 if (probe->binfo == chk->binfo &&
248 probe->decl == chk->decl &&
249 probe->diag_decl == chk->diag_decl)
250 goto found;
251 }
252 /* Insert into parent's checks. */
253 vec_safe_push (ptr->deferred_access_checks, *chk);
254 found:;
255 }
256 }
257 }
258 }
259
260 /* Perform the access checks in CHECKS. The TREE_PURPOSE of each node
261 is the BINFO indicating the qualifying scope used to access the
262 DECL node stored in the TREE_VALUE of the node. If CHECKS is empty
263 or we aren't in SFINAE context or all the checks succeed return TRUE,
264 otherwise FALSE. */
265
266 bool
267 perform_access_checks (vec<deferred_access_check, va_gc> *checks,
268 tsubst_flags_t complain)
269 {
270 int i;
271 deferred_access_check *chk;
272 location_t loc = input_location;
273 bool ok = true;
274
275 if (!checks)
276 return true;
277
278 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
279 {
280 input_location = chk->loc;
281 ok &= enforce_access (chk->binfo, chk->decl, chk->diag_decl, complain);
282 }
283
284 input_location = loc;
285 return (complain & tf_error) ? true : ok;
286 }
287
288 /* Perform the deferred access checks.
289
290 After performing the checks, we still have to keep the list
291 `deferred_access_stack->deferred_access_checks' since we may want
292 to check access for them again later in a different context.
293 For example:
294
295 class A {
296 typedef int X;
297 static X a;
298 };
299 A::X A::a, x; // No error for `A::a', error for `x'
300
301 We have to perform deferred access of `A::X', first with `A::a',
302 next with `x'. Return value like perform_access_checks above. */
303
304 bool
305 perform_deferred_access_checks (tsubst_flags_t complain)
306 {
307 return perform_access_checks (get_deferred_access_checks (), complain);
308 }
309
310 /* Defer checking the accessibility of DECL, when looked up in
311 BINFO. DIAG_DECL is the declaration to use to print diagnostics.
312 Return value like perform_access_checks above.
313 If non-NULL, report failures to AFI. */
314
315 bool
316 perform_or_defer_access_check (tree binfo, tree decl, tree diag_decl,
317 tsubst_flags_t complain,
318 access_failure_info *afi)
319 {
320 int i;
321 deferred_access *ptr;
322 deferred_access_check *chk;
323
324
325 /* Exit if we are in a context that no access checking is performed.
326 */
327 if (deferred_access_no_check)
328 return true;
329
330 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
331
332 ptr = &deferred_access_stack->last ();
333
334 /* If we are not supposed to defer access checks, just check now. */
335 if (ptr->deferring_access_checks_kind == dk_no_deferred)
336 {
337 bool ok = enforce_access (binfo, decl, diag_decl, complain, afi);
338 return (complain & tf_error) ? true : ok;
339 }
340
341 /* See if we are already going to perform this check. */
342 FOR_EACH_VEC_SAFE_ELT (ptr->deferred_access_checks, i, chk)
343 {
344 if (chk->decl == decl && chk->binfo == binfo &&
345 chk->diag_decl == diag_decl)
346 {
347 return true;
348 }
349 }
350 /* If not, record the check. */
351 deferred_access_check new_access = {binfo, decl, diag_decl, input_location};
352 vec_safe_push (ptr->deferred_access_checks, new_access);
353
354 return true;
355 }
356
357 /* Returns nonzero if the current statement is a full expression,
358 i.e. temporaries created during that statement should be destroyed
359 at the end of the statement. */
360
361 int
362 stmts_are_full_exprs_p (void)
363 {
364 return current_stmt_tree ()->stmts_are_full_exprs_p;
365 }
366
367 /* T is a statement. Add it to the statement-tree. This is the C++
368 version. The C/ObjC frontends have a slightly different version of
369 this function. */
370
371 tree
372 add_stmt (tree t)
373 {
374 enum tree_code code = TREE_CODE (t);
375
376 if (EXPR_P (t) && code != LABEL_EXPR)
377 {
378 if (!EXPR_HAS_LOCATION (t))
379 SET_EXPR_LOCATION (t, input_location);
380
381 /* When we expand a statement-tree, we must know whether or not the
382 statements are full-expressions. We record that fact here. */
383 STMT_IS_FULL_EXPR_P (t) = stmts_are_full_exprs_p ();
384 }
385
386 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
387 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
388
389 /* Add T to the statement-tree. Non-side-effect statements need to be
390 recorded during statement expressions. */
391 gcc_checking_assert (!stmt_list_stack->is_empty ());
392 append_to_statement_list_force (t, &cur_stmt_list);
393
394 return t;
395 }
396
397 /* Returns the stmt_tree to which statements are currently being added. */
398
399 stmt_tree
400 current_stmt_tree (void)
401 {
402 return (cfun
403 ? &cfun->language->base.x_stmt_tree
404 : &scope_chain->x_stmt_tree);
405 }
406
407 /* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR. */
408
409 static tree
410 maybe_cleanup_point_expr (tree expr)
411 {
412 if (!processing_template_decl && stmts_are_full_exprs_p ())
413 expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
414 return expr;
415 }
416
417 /* Like maybe_cleanup_point_expr except have the type of the new expression be
418 void so we don't need to create a temporary variable to hold the inner
419 expression. The reason why we do this is because the original type might be
420 an aggregate and we cannot create a temporary variable for that type. */
421
422 tree
423 maybe_cleanup_point_expr_void (tree expr)
424 {
425 if (!processing_template_decl && stmts_are_full_exprs_p ())
426 expr = fold_build_cleanup_point_expr (void_type_node, expr);
427 return expr;
428 }
429
430
431
432 /* Create a declaration statement for the declaration given by the DECL. */
433
434 void
435 add_decl_expr (tree decl)
436 {
437 tree r = build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl);
438 if (DECL_INITIAL (decl)
439 || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
440 r = maybe_cleanup_point_expr_void (r);
441 add_stmt (r);
442 }
443
444 /* Finish a scope. */
445
446 tree
447 do_poplevel (tree stmt_list)
448 {
449 tree block = NULL;
450
451 if (stmts_are_full_exprs_p ())
452 block = poplevel (kept_level_p (), 1, 0);
453
454 stmt_list = pop_stmt_list (stmt_list);
455
456 if (!processing_template_decl)
457 {
458 stmt_list = c_build_bind_expr (input_location, block, stmt_list);
459 /* ??? See c_end_compound_stmt re statement expressions. */
460 }
461
462 return stmt_list;
463 }
464
465 /* Begin a new scope. */
466
467 static tree
468 do_pushlevel (scope_kind sk)
469 {
470 tree ret = push_stmt_list ();
471 if (stmts_are_full_exprs_p ())
472 begin_scope (sk, NULL);
473 return ret;
474 }
475
476 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
477 when the current scope is exited. EH_ONLY is true when this is not
478 meant to apply to normal control flow transfer. */
479
480 void
481 push_cleanup (tree decl, tree cleanup, bool eh_only)
482 {
483 tree stmt = build_stmt (input_location, CLEANUP_STMT, NULL, cleanup, decl);
484 CLEANUP_EH_ONLY (stmt) = eh_only;
485 add_stmt (stmt);
486 CLEANUP_BODY (stmt) = push_stmt_list ();
487 }
488
489 /* Simple infinite loop tracking for -Wreturn-type. We keep a stack of all
490 the current loops, represented by 'NULL_TREE' if we've seen a possible
491 exit, and 'error_mark_node' if not. This is currently used only to
492 suppress the warning about a function with no return statements, and
493 therefore we don't bother noting returns as possible exits. We also
494 don't bother with gotos. */
495
496 static void
497 begin_maybe_infinite_loop (tree cond)
498 {
499 /* Only track this while parsing a function, not during instantiation. */
500 if (!cfun || (DECL_TEMPLATE_INSTANTIATION (current_function_decl)
501 && !processing_template_decl))
502 return;
503 bool maybe_infinite = true;
504 if (cond)
505 {
506 cond = fold_non_dependent_expr (cond);
507 maybe_infinite = integer_nonzerop (cond);
508 }
509 vec_safe_push (cp_function_chain->infinite_loops,
510 maybe_infinite ? error_mark_node : NULL_TREE);
511
512 }
513
514 /* A break is a possible exit for the current loop. */
515
516 void
517 break_maybe_infinite_loop (void)
518 {
519 if (!cfun)
520 return;
521 cp_function_chain->infinite_loops->last() = NULL_TREE;
522 }
523
524 /* If we reach the end of the loop without seeing a possible exit, we have
525 an infinite loop. */
526
527 static void
528 end_maybe_infinite_loop (tree cond)
529 {
530 if (!cfun || (DECL_TEMPLATE_INSTANTIATION (current_function_decl)
531 && !processing_template_decl))
532 return;
533 tree current = cp_function_chain->infinite_loops->pop();
534 if (current != NULL_TREE)
535 {
536 cond = fold_non_dependent_expr (cond);
537 if (integer_nonzerop (cond))
538 current_function_infinite_loop = 1;
539 }
540 }
541
542
543 /* Begin a conditional that might contain a declaration. When generating
544 normal code, we want the declaration to appear before the statement
545 containing the conditional. When generating template code, we want the
546 conditional to be rendered as the raw DECL_EXPR. */
547
548 static void
549 begin_cond (tree *cond_p)
550 {
551 if (processing_template_decl)
552 *cond_p = push_stmt_list ();
553 }
554
555 /* Finish such a conditional. */
556
557 static void
558 finish_cond (tree *cond_p, tree expr)
559 {
560 if (processing_template_decl)
561 {
562 tree cond = pop_stmt_list (*cond_p);
563
564 if (expr == NULL_TREE)
565 /* Empty condition in 'for'. */
566 gcc_assert (empty_expr_stmt_p (cond));
567 else if (check_for_bare_parameter_packs (expr))
568 expr = error_mark_node;
569 else if (!empty_expr_stmt_p (cond))
570 expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr), cond, expr);
571 }
572 *cond_p = expr;
573 }
574
575 /* If *COND_P specifies a conditional with a declaration, transform the
576 loop such that
577 while (A x = 42) { }
578 for (; A x = 42;) { }
579 becomes
580 while (true) { A x = 42; if (!x) break; }
581 for (;;) { A x = 42; if (!x) break; }
582 The statement list for BODY will be empty if the conditional did
583 not declare anything. */
584
585 static void
586 simplify_loop_decl_cond (tree *cond_p, tree body)
587 {
588 tree cond, if_stmt;
589
590 if (!TREE_SIDE_EFFECTS (body))
591 return;
592
593 cond = *cond_p;
594 *cond_p = boolean_true_node;
595
596 if_stmt = begin_if_stmt ();
597 cond = cp_build_unary_op (TRUTH_NOT_EXPR, cond, false, tf_warning_or_error);
598 finish_if_stmt_cond (cond, if_stmt);
599 finish_break_stmt ();
600 finish_then_clause (if_stmt);
601 finish_if_stmt (if_stmt);
602 }
603
604 /* Finish a goto-statement. */
605
606 tree
607 finish_goto_stmt (tree destination)
608 {
609 if (identifier_p (destination))
610 destination = lookup_label (destination);
611
612 /* We warn about unused labels with -Wunused. That means we have to
613 mark the used labels as used. */
614 if (TREE_CODE (destination) == LABEL_DECL)
615 TREE_USED (destination) = 1;
616 else
617 {
618 destination = mark_rvalue_use (destination);
619 if (!processing_template_decl)
620 {
621 destination = cp_convert (ptr_type_node, destination,
622 tf_warning_or_error);
623 if (error_operand_p (destination))
624 return NULL_TREE;
625 destination
626 = fold_build_cleanup_point_expr (TREE_TYPE (destination),
627 destination);
628 }
629 }
630
631 check_goto (destination);
632
633 add_stmt (build_predict_expr (PRED_GOTO, NOT_TAKEN));
634 return add_stmt (build_stmt (input_location, GOTO_EXPR, destination));
635 }
636
637 /* COND is the condition-expression for an if, while, etc.,
638 statement. Convert it to a boolean value, if appropriate.
639 In addition, verify sequence points if -Wsequence-point is enabled. */
640
641 static tree
642 maybe_convert_cond (tree cond)
643 {
644 /* Empty conditions remain empty. */
645 if (!cond)
646 return NULL_TREE;
647
648 /* Wait until we instantiate templates before doing conversion. */
649 if (type_dependent_expression_p (cond))
650 return cond;
651
652 if (warn_sequence_point && !processing_template_decl)
653 verify_sequence_points (cond);
654
655 /* Do the conversion. */
656 cond = convert_from_reference (cond);
657
658 if (TREE_CODE (cond) == MODIFY_EXPR
659 && !TREE_NO_WARNING (cond)
660 && warn_parentheses
661 && warning_at (cp_expr_loc_or_loc (cond, input_location),
662 OPT_Wparentheses, "suggest parentheses around "
663 "assignment used as truth value"))
664 TREE_NO_WARNING (cond) = 1;
665
666 return condition_conversion (cond);
667 }
668
669 /* Finish an expression-statement, whose EXPRESSION is as indicated. */
670
671 tree
672 finish_expr_stmt (tree expr)
673 {
674 tree r = NULL_TREE;
675 location_t loc = EXPR_LOCATION (expr);
676
677 if (expr != NULL_TREE)
678 {
679 /* If we ran into a problem, make sure we complained. */
680 gcc_assert (expr != error_mark_node || seen_error ());
681
682 if (!processing_template_decl)
683 {
684 if (warn_sequence_point)
685 verify_sequence_points (expr);
686 expr = convert_to_void (expr, ICV_STATEMENT, tf_warning_or_error);
687 }
688 else if (!type_dependent_expression_p (expr))
689 convert_to_void (build_non_dependent_expr (expr), ICV_STATEMENT,
690 tf_warning_or_error);
691
692 if (check_for_bare_parameter_packs (expr))
693 expr = error_mark_node;
694
695 /* Simplification of inner statement expressions, compound exprs,
696 etc can result in us already having an EXPR_STMT. */
697 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
698 {
699 if (TREE_CODE (expr) != EXPR_STMT)
700 expr = build_stmt (loc, EXPR_STMT, expr);
701 expr = maybe_cleanup_point_expr_void (expr);
702 }
703
704 r = add_stmt (expr);
705 }
706
707 return r;
708 }
709
710
711 /* Begin an if-statement. Returns a newly created IF_STMT if
712 appropriate. */
713
714 tree
715 begin_if_stmt (void)
716 {
717 tree r, scope;
718 scope = do_pushlevel (sk_cond);
719 r = build_stmt (input_location, IF_STMT, NULL_TREE,
720 NULL_TREE, NULL_TREE, scope);
721 current_binding_level->this_entity = r;
722 begin_cond (&IF_COND (r));
723 return r;
724 }
725
726 /* Process the COND of an if-statement, which may be given by
727 IF_STMT. */
728
729 tree
730 finish_if_stmt_cond (tree cond, tree if_stmt)
731 {
732 cond = maybe_convert_cond (cond);
733 if (IF_STMT_CONSTEXPR_P (if_stmt)
734 && !type_dependent_expression_p (cond)
735 && require_constant_expression (cond)
736 && !instantiation_dependent_expression_p (cond)
737 /* Wait until instantiation time, since only then COND has been
738 converted to bool. */
739 && TYPE_MAIN_VARIANT (TREE_TYPE (cond)) == boolean_type_node)
740 {
741 cond = instantiate_non_dependent_expr (cond);
742 cond = cxx_constant_value (cond, NULL_TREE);
743 }
744 finish_cond (&IF_COND (if_stmt), cond);
745 add_stmt (if_stmt);
746 THEN_CLAUSE (if_stmt) = push_stmt_list ();
747 return cond;
748 }
749
750 /* Finish the then-clause of an if-statement, which may be given by
751 IF_STMT. */
752
753 tree
754 finish_then_clause (tree if_stmt)
755 {
756 THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
757 return if_stmt;
758 }
759
760 /* Begin the else-clause of an if-statement. */
761
762 void
763 begin_else_clause (tree if_stmt)
764 {
765 ELSE_CLAUSE (if_stmt) = push_stmt_list ();
766 }
767
768 /* Finish the else-clause of an if-statement, which may be given by
769 IF_STMT. */
770
771 void
772 finish_else_clause (tree if_stmt)
773 {
774 ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
775 }
776
777 /* Finish an if-statement. */
778
779 void
780 finish_if_stmt (tree if_stmt)
781 {
782 tree scope = IF_SCOPE (if_stmt);
783 IF_SCOPE (if_stmt) = NULL;
784 add_stmt (do_poplevel (scope));
785 }
786
787 /* Begin a while-statement. Returns a newly created WHILE_STMT if
788 appropriate. */
789
790 tree
791 begin_while_stmt (void)
792 {
793 tree r;
794 r = build_stmt (input_location, WHILE_STMT, NULL_TREE, NULL_TREE);
795 add_stmt (r);
796 WHILE_BODY (r) = do_pushlevel (sk_block);
797 begin_cond (&WHILE_COND (r));
798 return r;
799 }
800
801 /* Process the COND of a while-statement, which may be given by
802 WHILE_STMT. */
803
804 void
805 finish_while_stmt_cond (tree cond, tree while_stmt, bool ivdep,
806 unsigned short unroll)
807 {
808 cond = maybe_convert_cond (cond);
809 finish_cond (&WHILE_COND (while_stmt), cond);
810 begin_maybe_infinite_loop (cond);
811 if (ivdep && cond != error_mark_node)
812 WHILE_COND (while_stmt) = build3 (ANNOTATE_EXPR,
813 TREE_TYPE (WHILE_COND (while_stmt)),
814 WHILE_COND (while_stmt),
815 build_int_cst (integer_type_node,
816 annot_expr_ivdep_kind),
817 integer_zero_node);
818 if (unroll && cond != error_mark_node)
819 WHILE_COND (while_stmt) = build3 (ANNOTATE_EXPR,
820 TREE_TYPE (WHILE_COND (while_stmt)),
821 WHILE_COND (while_stmt),
822 build_int_cst (integer_type_node,
823 annot_expr_unroll_kind),
824 build_int_cst (integer_type_node,
825 unroll));
826 simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
827 }
828
829 /* Finish a while-statement, which may be given by WHILE_STMT. */
830
831 void
832 finish_while_stmt (tree while_stmt)
833 {
834 end_maybe_infinite_loop (boolean_true_node);
835 WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
836 }
837
838 /* Begin a do-statement. Returns a newly created DO_STMT if
839 appropriate. */
840
841 tree
842 begin_do_stmt (void)
843 {
844 tree r = build_stmt (input_location, DO_STMT, NULL_TREE, NULL_TREE);
845 begin_maybe_infinite_loop (boolean_true_node);
846 add_stmt (r);
847 DO_BODY (r) = push_stmt_list ();
848 return r;
849 }
850
851 /* Finish the body of a do-statement, which may be given by DO_STMT. */
852
853 void
854 finish_do_body (tree do_stmt)
855 {
856 tree body = DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
857
858 if (TREE_CODE (body) == STATEMENT_LIST && STATEMENT_LIST_TAIL (body))
859 body = STATEMENT_LIST_TAIL (body)->stmt;
860
861 if (IS_EMPTY_STMT (body))
862 warning (OPT_Wempty_body,
863 "suggest explicit braces around empty body in %<do%> statement");
864 }
865
866 /* Finish a do-statement, which may be given by DO_STMT, and whose
867 COND is as indicated. */
868
869 void
870 finish_do_stmt (tree cond, tree do_stmt, bool ivdep, unsigned short unroll)
871 {
872 cond = maybe_convert_cond (cond);
873 end_maybe_infinite_loop (cond);
874 if (ivdep && cond != error_mark_node)
875 cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
876 build_int_cst (integer_type_node, annot_expr_ivdep_kind),
877 integer_zero_node);
878 if (unroll && cond != error_mark_node)
879 cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
880 build_int_cst (integer_type_node, annot_expr_unroll_kind),
881 build_int_cst (integer_type_node, unroll));
882 DO_COND (do_stmt) = cond;
883 }
884
885 /* Finish a return-statement. The EXPRESSION returned, if any, is as
886 indicated. */
887
888 tree
889 finish_return_stmt (tree expr)
890 {
891 tree r;
892 bool no_warning;
893
894 expr = check_return_expr (expr, &no_warning);
895
896 if (error_operand_p (expr)
897 || (flag_openmp && !check_omp_return ()))
898 {
899 /* Suppress -Wreturn-type for this function. */
900 if (warn_return_type)
901 TREE_NO_WARNING (current_function_decl) = true;
902 return error_mark_node;
903 }
904
905 if (!processing_template_decl)
906 {
907 if (warn_sequence_point)
908 verify_sequence_points (expr);
909
910 if (DECL_DESTRUCTOR_P (current_function_decl)
911 || (DECL_CONSTRUCTOR_P (current_function_decl)
912 && targetm.cxx.cdtor_returns_this ()))
913 {
914 /* Similarly, all destructors must run destructors for
915 base-classes before returning. So, all returns in a
916 destructor get sent to the DTOR_LABEL; finish_function emits
917 code to return a value there. */
918 return finish_goto_stmt (cdtor_label);
919 }
920 }
921
922 r = build_stmt (input_location, RETURN_EXPR, expr);
923 TREE_NO_WARNING (r) |= no_warning;
924 r = maybe_cleanup_point_expr_void (r);
925 r = add_stmt (r);
926
927 return r;
928 }
929
930 /* Begin the scope of a for-statement or a range-for-statement.
931 Both the returned trees are to be used in a call to
932 begin_for_stmt or begin_range_for_stmt. */
933
934 tree
935 begin_for_scope (tree *init)
936 {
937 tree scope = do_pushlevel (sk_for);
938
939 if (processing_template_decl)
940 *init = push_stmt_list ();
941 else
942 *init = NULL_TREE;
943
944 return scope;
945 }
946
947 /* Begin a for-statement. Returns a new FOR_STMT.
948 SCOPE and INIT should be the return of begin_for_scope,
949 or both NULL_TREE */
950
951 tree
952 begin_for_stmt (tree scope, tree init)
953 {
954 tree r;
955
956 r = build_stmt (input_location, FOR_STMT, NULL_TREE, NULL_TREE,
957 NULL_TREE, NULL_TREE, NULL_TREE);
958
959 if (scope == NULL_TREE)
960 {
961 gcc_assert (!init);
962 scope = begin_for_scope (&init);
963 }
964
965 FOR_INIT_STMT (r) = init;
966 FOR_SCOPE (r) = scope;
967
968 return r;
969 }
970
971 /* Finish the init-statement of a for-statement, which may be
972 given by FOR_STMT. */
973
974 void
975 finish_init_stmt (tree for_stmt)
976 {
977 if (processing_template_decl)
978 FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
979 add_stmt (for_stmt);
980 FOR_BODY (for_stmt) = do_pushlevel (sk_block);
981 begin_cond (&FOR_COND (for_stmt));
982 }
983
984 /* Finish the COND of a for-statement, which may be given by
985 FOR_STMT. */
986
987 void
988 finish_for_cond (tree cond, tree for_stmt, bool ivdep, unsigned short unroll)
989 {
990 cond = maybe_convert_cond (cond);
991 finish_cond (&FOR_COND (for_stmt), cond);
992 begin_maybe_infinite_loop (cond);
993 if (ivdep && cond != error_mark_node)
994 FOR_COND (for_stmt) = build3 (ANNOTATE_EXPR,
995 TREE_TYPE (FOR_COND (for_stmt)),
996 FOR_COND (for_stmt),
997 build_int_cst (integer_type_node,
998 annot_expr_ivdep_kind),
999 integer_zero_node);
1000 if (unroll && cond != error_mark_node)
1001 FOR_COND (for_stmt) = build3 (ANNOTATE_EXPR,
1002 TREE_TYPE (FOR_COND (for_stmt)),
1003 FOR_COND (for_stmt),
1004 build_int_cst (integer_type_node,
1005 annot_expr_unroll_kind),
1006 build_int_cst (integer_type_node,
1007 unroll));
1008 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
1009 }
1010
1011 /* Finish the increment-EXPRESSION in a for-statement, which may be
1012 given by FOR_STMT. */
1013
1014 void
1015 finish_for_expr (tree expr, tree for_stmt)
1016 {
1017 if (!expr)
1018 return;
1019 /* If EXPR is an overloaded function, issue an error; there is no
1020 context available to use to perform overload resolution. */
1021 if (type_unknown_p (expr))
1022 {
1023 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
1024 expr = error_mark_node;
1025 }
1026 if (!processing_template_decl)
1027 {
1028 if (warn_sequence_point)
1029 verify_sequence_points (expr);
1030 expr = convert_to_void (expr, ICV_THIRD_IN_FOR,
1031 tf_warning_or_error);
1032 }
1033 else if (!type_dependent_expression_p (expr))
1034 convert_to_void (build_non_dependent_expr (expr), ICV_THIRD_IN_FOR,
1035 tf_warning_or_error);
1036 expr = maybe_cleanup_point_expr_void (expr);
1037 if (check_for_bare_parameter_packs (expr))
1038 expr = error_mark_node;
1039 FOR_EXPR (for_stmt) = expr;
1040 }
1041
1042 /* Finish the body of a for-statement, which may be given by
1043 FOR_STMT. The increment-EXPR for the loop must be
1044 provided.
1045 It can also finish RANGE_FOR_STMT. */
1046
1047 void
1048 finish_for_stmt (tree for_stmt)
1049 {
1050 end_maybe_infinite_loop (boolean_true_node);
1051
1052 if (TREE_CODE (for_stmt) == RANGE_FOR_STMT)
1053 RANGE_FOR_BODY (for_stmt) = do_poplevel (RANGE_FOR_BODY (for_stmt));
1054 else
1055 FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
1056
1057 /* Pop the scope for the body of the loop. */
1058 tree *scope_ptr = (TREE_CODE (for_stmt) == RANGE_FOR_STMT
1059 ? &RANGE_FOR_SCOPE (for_stmt)
1060 : &FOR_SCOPE (for_stmt));
1061 tree scope = *scope_ptr;
1062 *scope_ptr = NULL;
1063
1064 /* During parsing of the body, range for uses "__for_{range,begin,end} "
1065 decl names to make those unaccessible by code in the body.
1066 Change it to ones with underscore instead of space, so that it can
1067 be inspected in the debugger. */
1068 tree range_for_decl[3] = { NULL_TREE, NULL_TREE, NULL_TREE };
1069 gcc_assert (CPTI_FOR_BEGIN__IDENTIFIER == CPTI_FOR_RANGE__IDENTIFIER + 1
1070 && CPTI_FOR_END__IDENTIFIER == CPTI_FOR_RANGE__IDENTIFIER + 2
1071 && CPTI_FOR_RANGE_IDENTIFIER == CPTI_FOR_RANGE__IDENTIFIER + 3
1072 && CPTI_FOR_BEGIN_IDENTIFIER == CPTI_FOR_BEGIN__IDENTIFIER + 3
1073 && CPTI_FOR_END_IDENTIFIER == CPTI_FOR_END__IDENTIFIER + 3);
1074 for (int i = 0; i < 3; i++)
1075 {
1076 tree id = cp_global_trees[CPTI_FOR_RANGE__IDENTIFIER + i];
1077 if (IDENTIFIER_BINDING (id)
1078 && IDENTIFIER_BINDING (id)->scope == current_binding_level)
1079 {
1080 range_for_decl[i] = IDENTIFIER_BINDING (id)->value;
1081 gcc_assert (VAR_P (range_for_decl[i])
1082 && DECL_ARTIFICIAL (range_for_decl[i]));
1083 }
1084 }
1085
1086 add_stmt (do_poplevel (scope));
1087
1088 for (int i = 0; i < 3; i++)
1089 if (range_for_decl[i])
1090 DECL_NAME (range_for_decl[i])
1091 = cp_global_trees[CPTI_FOR_RANGE_IDENTIFIER + i];
1092 }
1093
1094 /* Begin a range-for-statement. Returns a new RANGE_FOR_STMT.
1095 SCOPE and INIT should be the return of begin_for_scope,
1096 or both NULL_TREE .
1097 To finish it call finish_for_stmt(). */
1098
1099 tree
1100 begin_range_for_stmt (tree scope, tree init)
1101 {
1102 begin_maybe_infinite_loop (boolean_false_node);
1103
1104 tree r = build_stmt (input_location, RANGE_FOR_STMT, NULL_TREE, NULL_TREE,
1105 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE);
1106
1107 if (scope == NULL_TREE)
1108 {
1109 gcc_assert (!init);
1110 scope = begin_for_scope (&init);
1111 }
1112
1113 /* Since C++20, RANGE_FOR_STMTs can use the init tree, so save it. */
1114 RANGE_FOR_INIT_STMT (r) = init;
1115 RANGE_FOR_SCOPE (r) = scope;
1116
1117 return r;
1118 }
1119
1120 /* Finish the head of a range-based for statement, which may
1121 be given by RANGE_FOR_STMT. DECL must be the declaration
1122 and EXPR must be the loop expression. */
1123
1124 void
1125 finish_range_for_decl (tree range_for_stmt, tree decl, tree expr)
1126 {
1127 if (processing_template_decl)
1128 RANGE_FOR_INIT_STMT (range_for_stmt)
1129 = pop_stmt_list (RANGE_FOR_INIT_STMT (range_for_stmt));
1130 RANGE_FOR_DECL (range_for_stmt) = decl;
1131 RANGE_FOR_EXPR (range_for_stmt) = expr;
1132 add_stmt (range_for_stmt);
1133 RANGE_FOR_BODY (range_for_stmt) = do_pushlevel (sk_block);
1134 }
1135
1136 /* Finish a break-statement. */
1137
1138 tree
1139 finish_break_stmt (void)
1140 {
1141 /* In switch statements break is sometimes stylistically used after
1142 a return statement. This can lead to spurious warnings about
1143 control reaching the end of a non-void function when it is
1144 inlined. Note that we are calling block_may_fallthru with
1145 language specific tree nodes; this works because
1146 block_may_fallthru returns true when given something it does not
1147 understand. */
1148 if (!block_may_fallthru (cur_stmt_list))
1149 return void_node;
1150 note_break_stmt ();
1151 return add_stmt (build_stmt (input_location, BREAK_STMT));
1152 }
1153
1154 /* Finish a continue-statement. */
1155
1156 tree
1157 finish_continue_stmt (void)
1158 {
1159 return add_stmt (build_stmt (input_location, CONTINUE_STMT));
1160 }
1161
1162 /* Begin a switch-statement. Returns a new SWITCH_STMT if
1163 appropriate. */
1164
1165 tree
1166 begin_switch_stmt (void)
1167 {
1168 tree r, scope;
1169
1170 scope = do_pushlevel (sk_cond);
1171 r = build_stmt (input_location, SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE, scope);
1172
1173 begin_cond (&SWITCH_STMT_COND (r));
1174
1175 return r;
1176 }
1177
1178 /* Finish the cond of a switch-statement. */
1179
1180 void
1181 finish_switch_cond (tree cond, tree switch_stmt)
1182 {
1183 tree orig_type = NULL;
1184
1185 if (!processing_template_decl)
1186 {
1187 /* Convert the condition to an integer or enumeration type. */
1188 cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
1189 if (cond == NULL_TREE)
1190 {
1191 error ("switch quantity not an integer");
1192 cond = error_mark_node;
1193 }
1194 /* We want unlowered type here to handle enum bit-fields. */
1195 orig_type = unlowered_expr_type (cond);
1196 if (TREE_CODE (orig_type) != ENUMERAL_TYPE)
1197 orig_type = TREE_TYPE (cond);
1198 if (cond != error_mark_node)
1199 {
1200 /* [stmt.switch]
1201
1202 Integral promotions are performed. */
1203 cond = perform_integral_promotions (cond);
1204 cond = maybe_cleanup_point_expr (cond);
1205 }
1206 }
1207 if (check_for_bare_parameter_packs (cond))
1208 cond = error_mark_node;
1209 else if (!processing_template_decl && warn_sequence_point)
1210 verify_sequence_points (cond);
1211
1212 finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
1213 SWITCH_STMT_TYPE (switch_stmt) = orig_type;
1214 add_stmt (switch_stmt);
1215 push_switch (switch_stmt);
1216 SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
1217 }
1218
1219 /* Finish the body of a switch-statement, which may be given by
1220 SWITCH_STMT. The COND to switch on is indicated. */
1221
1222 void
1223 finish_switch_stmt (tree switch_stmt)
1224 {
1225 tree scope;
1226
1227 SWITCH_STMT_BODY (switch_stmt) =
1228 pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
1229 pop_switch ();
1230
1231 scope = SWITCH_STMT_SCOPE (switch_stmt);
1232 SWITCH_STMT_SCOPE (switch_stmt) = NULL;
1233 add_stmt (do_poplevel (scope));
1234 }
1235
1236 /* Begin a try-block. Returns a newly-created TRY_BLOCK if
1237 appropriate. */
1238
1239 tree
1240 begin_try_block (void)
1241 {
1242 tree r = build_stmt (input_location, TRY_BLOCK, NULL_TREE, NULL_TREE);
1243 add_stmt (r);
1244 TRY_STMTS (r) = push_stmt_list ();
1245 return r;
1246 }
1247
1248 /* Likewise, for a function-try-block. The block returned in
1249 *COMPOUND_STMT is an artificial outer scope, containing the
1250 function-try-block. */
1251
1252 tree
1253 begin_function_try_block (tree *compound_stmt)
1254 {
1255 tree r;
1256 /* This outer scope does not exist in the C++ standard, but we need
1257 a place to put __FUNCTION__ and similar variables. */
1258 *compound_stmt = begin_compound_stmt (0);
1259 r = begin_try_block ();
1260 FN_TRY_BLOCK_P (r) = 1;
1261 return r;
1262 }
1263
1264 /* Finish a try-block, which may be given by TRY_BLOCK. */
1265
1266 void
1267 finish_try_block (tree try_block)
1268 {
1269 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1270 TRY_HANDLERS (try_block) = push_stmt_list ();
1271 }
1272
1273 /* Finish the body of a cleanup try-block, which may be given by
1274 TRY_BLOCK. */
1275
1276 void
1277 finish_cleanup_try_block (tree try_block)
1278 {
1279 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1280 }
1281
1282 /* Finish an implicitly generated try-block, with a cleanup is given
1283 by CLEANUP. */
1284
1285 void
1286 finish_cleanup (tree cleanup, tree try_block)
1287 {
1288 TRY_HANDLERS (try_block) = cleanup;
1289 CLEANUP_P (try_block) = 1;
1290 }
1291
1292 /* Likewise, for a function-try-block. */
1293
1294 void
1295 finish_function_try_block (tree try_block)
1296 {
1297 finish_try_block (try_block);
1298 /* FIXME : something queer about CTOR_INITIALIZER somehow following
1299 the try block, but moving it inside. */
1300 in_function_try_handler = 1;
1301 }
1302
1303 /* Finish a handler-sequence for a try-block, which may be given by
1304 TRY_BLOCK. */
1305
1306 void
1307 finish_handler_sequence (tree try_block)
1308 {
1309 TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
1310 check_handlers (TRY_HANDLERS (try_block));
1311 }
1312
1313 /* Finish the handler-seq for a function-try-block, given by
1314 TRY_BLOCK. COMPOUND_STMT is the outer block created by
1315 begin_function_try_block. */
1316
1317 void
1318 finish_function_handler_sequence (tree try_block, tree compound_stmt)
1319 {
1320 in_function_try_handler = 0;
1321 finish_handler_sequence (try_block);
1322 finish_compound_stmt (compound_stmt);
1323 }
1324
1325 /* Begin a handler. Returns a HANDLER if appropriate. */
1326
1327 tree
1328 begin_handler (void)
1329 {
1330 tree r;
1331
1332 r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE);
1333 add_stmt (r);
1334
1335 /* Create a binding level for the eh_info and the exception object
1336 cleanup. */
1337 HANDLER_BODY (r) = do_pushlevel (sk_catch);
1338
1339 return r;
1340 }
1341
1342 /* Finish the handler-parameters for a handler, which may be given by
1343 HANDLER. DECL is the declaration for the catch parameter, or NULL
1344 if this is a `catch (...)' clause. */
1345
1346 void
1347 finish_handler_parms (tree decl, tree handler)
1348 {
1349 tree type = NULL_TREE;
1350 if (processing_template_decl)
1351 {
1352 if (decl)
1353 {
1354 decl = pushdecl (decl);
1355 decl = push_template_decl (decl);
1356 HANDLER_PARMS (handler) = decl;
1357 type = TREE_TYPE (decl);
1358 }
1359 }
1360 else
1361 {
1362 type = expand_start_catch_block (decl);
1363 if (warn_catch_value
1364 && type != NULL_TREE
1365 && type != error_mark_node
1366 && !TYPE_REF_P (TREE_TYPE (decl)))
1367 {
1368 tree orig_type = TREE_TYPE (decl);
1369 if (CLASS_TYPE_P (orig_type))
1370 {
1371 if (TYPE_POLYMORPHIC_P (orig_type))
1372 warning (OPT_Wcatch_value_,
1373 "catching polymorphic type %q#T by value", orig_type);
1374 else if (warn_catch_value > 1)
1375 warning (OPT_Wcatch_value_,
1376 "catching type %q#T by value", orig_type);
1377 }
1378 else if (warn_catch_value > 2)
1379 warning (OPT_Wcatch_value_,
1380 "catching non-reference type %q#T", orig_type);
1381 }
1382 }
1383 HANDLER_TYPE (handler) = type;
1384 }
1385
1386 /* Finish a handler, which may be given by HANDLER. The BLOCKs are
1387 the return value from the matching call to finish_handler_parms. */
1388
1389 void
1390 finish_handler (tree handler)
1391 {
1392 if (!processing_template_decl)
1393 expand_end_catch_block ();
1394 HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
1395 }
1396
1397 /* Begin a compound statement. FLAGS contains some bits that control the
1398 behavior and context. If BCS_NO_SCOPE is set, the compound statement
1399 does not define a scope. If BCS_FN_BODY is set, this is the outermost
1400 block of a function. If BCS_TRY_BLOCK is set, this is the block
1401 created on behalf of a TRY statement. Returns a token to be passed to
1402 finish_compound_stmt. */
1403
1404 tree
1405 begin_compound_stmt (unsigned int flags)
1406 {
1407 tree r;
1408
1409 if (flags & BCS_NO_SCOPE)
1410 {
1411 r = push_stmt_list ();
1412 STATEMENT_LIST_NO_SCOPE (r) = 1;
1413
1414 /* Normally, we try hard to keep the BLOCK for a statement-expression.
1415 But, if it's a statement-expression with a scopeless block, there's
1416 nothing to keep, and we don't want to accidentally keep a block
1417 *inside* the scopeless block. */
1418 keep_next_level (false);
1419 }
1420 else
1421 {
1422 scope_kind sk = sk_block;
1423 if (flags & BCS_TRY_BLOCK)
1424 sk = sk_try;
1425 else if (flags & BCS_TRANSACTION)
1426 sk = sk_transaction;
1427 r = do_pushlevel (sk);
1428 }
1429
1430 /* When processing a template, we need to remember where the braces were,
1431 so that we can set up identical scopes when instantiating the template
1432 later. BIND_EXPR is a handy candidate for this.
1433 Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1434 result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1435 processing templates. */
1436 if (processing_template_decl)
1437 {
1438 r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
1439 BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1440 BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
1441 TREE_SIDE_EFFECTS (r) = 1;
1442 }
1443
1444 return r;
1445 }
1446
1447 /* Finish a compound-statement, which is given by STMT. */
1448
1449 void
1450 finish_compound_stmt (tree stmt)
1451 {
1452 if (TREE_CODE (stmt) == BIND_EXPR)
1453 {
1454 tree body = do_poplevel (BIND_EXPR_BODY (stmt));
1455 /* If the STATEMENT_LIST is empty and this BIND_EXPR isn't special,
1456 discard the BIND_EXPR so it can be merged with the containing
1457 STATEMENT_LIST. */
1458 if (TREE_CODE (body) == STATEMENT_LIST
1459 && STATEMENT_LIST_HEAD (body) == NULL
1460 && !BIND_EXPR_BODY_BLOCK (stmt)
1461 && !BIND_EXPR_TRY_BLOCK (stmt))
1462 stmt = body;
1463 else
1464 BIND_EXPR_BODY (stmt) = body;
1465 }
1466 else if (STATEMENT_LIST_NO_SCOPE (stmt))
1467 stmt = pop_stmt_list (stmt);
1468 else
1469 {
1470 /* Destroy any ObjC "super" receivers that may have been
1471 created. */
1472 objc_clear_super_receiver ();
1473
1474 stmt = do_poplevel (stmt);
1475 }
1476
1477 /* ??? See c_end_compound_stmt wrt statement expressions. */
1478 add_stmt (stmt);
1479 }
1480
1481 /* Finish an asm-statement, whose components are a STRING, some
1482 OUTPUT_OPERANDS, some INPUT_OPERANDS, some CLOBBERS and some
1483 LABELS. Also note whether the asm-statement should be
1484 considered volatile, and whether it is asm inline. */
1485
1486 tree
1487 finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1488 tree input_operands, tree clobbers, tree labels, bool inline_p)
1489 {
1490 tree r;
1491 tree t;
1492 int ninputs = list_length (input_operands);
1493 int noutputs = list_length (output_operands);
1494
1495 if (!processing_template_decl)
1496 {
1497 const char *constraint;
1498 const char **oconstraints;
1499 bool allows_mem, allows_reg, is_inout;
1500 tree operand;
1501 int i;
1502
1503 oconstraints = XALLOCAVEC (const char *, noutputs);
1504
1505 string = resolve_asm_operand_names (string, output_operands,
1506 input_operands, labels);
1507
1508 for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
1509 {
1510 operand = TREE_VALUE (t);
1511
1512 /* ??? Really, this should not be here. Users should be using a
1513 proper lvalue, dammit. But there's a long history of using
1514 casts in the output operands. In cases like longlong.h, this
1515 becomes a primitive form of typechecking -- if the cast can be
1516 removed, then the output operand had a type of the proper width;
1517 otherwise we'll get an error. Gross, but ... */
1518 STRIP_NOPS (operand);
1519
1520 operand = mark_lvalue_use (operand);
1521
1522 if (!lvalue_or_else (operand, lv_asm, tf_warning_or_error))
1523 operand = error_mark_node;
1524
1525 if (operand != error_mark_node
1526 && (TREE_READONLY (operand)
1527 || CP_TYPE_CONST_P (TREE_TYPE (operand))
1528 /* Functions are not modifiable, even though they are
1529 lvalues. */
1530 || FUNC_OR_METHOD_TYPE_P (TREE_TYPE (operand))
1531 /* If it's an aggregate and any field is const, then it is
1532 effectively const. */
1533 || (CLASS_TYPE_P (TREE_TYPE (operand))
1534 && C_TYPE_FIELDS_READONLY (TREE_TYPE (operand)))))
1535 cxx_readonly_error (input_location, operand, lv_asm);
1536
1537 tree *op = &operand;
1538 while (TREE_CODE (*op) == COMPOUND_EXPR)
1539 op = &TREE_OPERAND (*op, 1);
1540 switch (TREE_CODE (*op))
1541 {
1542 case PREINCREMENT_EXPR:
1543 case PREDECREMENT_EXPR:
1544 case MODIFY_EXPR:
1545 *op = genericize_compound_lvalue (*op);
1546 op = &TREE_OPERAND (*op, 1);
1547 break;
1548 default:
1549 break;
1550 }
1551
1552 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1553 oconstraints[i] = constraint;
1554
1555 if (parse_output_constraint (&constraint, i, ninputs, noutputs,
1556 &allows_mem, &allows_reg, &is_inout))
1557 {
1558 /* If the operand is going to end up in memory,
1559 mark it addressable. */
1560 if (!allows_reg && !cxx_mark_addressable (*op))
1561 operand = error_mark_node;
1562 }
1563 else
1564 operand = error_mark_node;
1565
1566 TREE_VALUE (t) = operand;
1567 }
1568
1569 for (i = 0, t = input_operands; t; ++i, t = TREE_CHAIN (t))
1570 {
1571 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1572 bool constraint_parsed
1573 = parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
1574 oconstraints, &allows_mem, &allows_reg);
1575 /* If the operand is going to end up in memory, don't call
1576 decay_conversion. */
1577 if (constraint_parsed && !allows_reg && allows_mem)
1578 operand = mark_lvalue_use (TREE_VALUE (t));
1579 else
1580 operand = decay_conversion (TREE_VALUE (t), tf_warning_or_error);
1581
1582 /* If the type of the operand hasn't been determined (e.g.,
1583 because it involves an overloaded function), then issue
1584 an error message. There's no context available to
1585 resolve the overloading. */
1586 if (TREE_TYPE (operand) == unknown_type_node)
1587 {
1588 error ("type of %<asm%> operand %qE could not be determined",
1589 TREE_VALUE (t));
1590 operand = error_mark_node;
1591 }
1592
1593 if (constraint_parsed)
1594 {
1595 /* If the operand is going to end up in memory,
1596 mark it addressable. */
1597 if (!allows_reg && allows_mem)
1598 {
1599 /* Strip the nops as we allow this case. FIXME, this really
1600 should be rejected or made deprecated. */
1601 STRIP_NOPS (operand);
1602
1603 tree *op = &operand;
1604 while (TREE_CODE (*op) == COMPOUND_EXPR)
1605 op = &TREE_OPERAND (*op, 1);
1606 switch (TREE_CODE (*op))
1607 {
1608 case PREINCREMENT_EXPR:
1609 case PREDECREMENT_EXPR:
1610 case MODIFY_EXPR:
1611 *op = genericize_compound_lvalue (*op);
1612 op = &TREE_OPERAND (*op, 1);
1613 break;
1614 default:
1615 break;
1616 }
1617
1618 if (!cxx_mark_addressable (*op))
1619 operand = error_mark_node;
1620 }
1621 else if (!allows_reg && !allows_mem)
1622 {
1623 /* If constraint allows neither register nor memory,
1624 try harder to get a constant. */
1625 tree constop = maybe_constant_value (operand);
1626 if (TREE_CONSTANT (constop))
1627 operand = constop;
1628 }
1629 }
1630 else
1631 operand = error_mark_node;
1632
1633 TREE_VALUE (t) = operand;
1634 }
1635 }
1636
1637 r = build_stmt (input_location, ASM_EXPR, string,
1638 output_operands, input_operands,
1639 clobbers, labels);
1640 ASM_VOLATILE_P (r) = volatile_p || noutputs == 0;
1641 ASM_INLINE_P (r) = inline_p;
1642 r = maybe_cleanup_point_expr_void (r);
1643 return add_stmt (r);
1644 }
1645
1646 /* Finish a label with the indicated NAME. Returns the new label. */
1647
1648 tree
1649 finish_label_stmt (tree name)
1650 {
1651 tree decl = define_label (input_location, name);
1652
1653 if (decl == error_mark_node)
1654 return error_mark_node;
1655
1656 add_stmt (build_stmt (input_location, LABEL_EXPR, decl));
1657
1658 return decl;
1659 }
1660
1661 /* Finish a series of declarations for local labels. G++ allows users
1662 to declare "local" labels, i.e., labels with scope. This extension
1663 is useful when writing code involving statement-expressions. */
1664
1665 void
1666 finish_label_decl (tree name)
1667 {
1668 if (!at_function_scope_p ())
1669 {
1670 error ("%<__label__%> declarations are only allowed in function scopes");
1671 return;
1672 }
1673
1674 add_decl_expr (declare_local_label (name));
1675 }
1676
1677 /* When DECL goes out of scope, make sure that CLEANUP is executed. */
1678
1679 void
1680 finish_decl_cleanup (tree decl, tree cleanup)
1681 {
1682 push_cleanup (decl, cleanup, false);
1683 }
1684
1685 /* If the current scope exits with an exception, run CLEANUP. */
1686
1687 void
1688 finish_eh_cleanup (tree cleanup)
1689 {
1690 push_cleanup (NULL, cleanup, true);
1691 }
1692
1693 /* The MEM_INITS is a list of mem-initializers, in reverse of the
1694 order they were written by the user. Each node is as for
1695 emit_mem_initializers. */
1696
1697 void
1698 finish_mem_initializers (tree mem_inits)
1699 {
1700 /* Reorder the MEM_INITS so that they are in the order they appeared
1701 in the source program. */
1702 mem_inits = nreverse (mem_inits);
1703
1704 if (processing_template_decl)
1705 {
1706 tree mem;
1707
1708 for (mem = mem_inits; mem; mem = TREE_CHAIN (mem))
1709 {
1710 /* If the TREE_PURPOSE is a TYPE_PACK_EXPANSION, skip the
1711 check for bare parameter packs in the TREE_VALUE, because
1712 any parameter packs in the TREE_VALUE have already been
1713 bound as part of the TREE_PURPOSE. See
1714 make_pack_expansion for more information. */
1715 if (TREE_CODE (TREE_PURPOSE (mem)) != TYPE_PACK_EXPANSION
1716 && check_for_bare_parameter_packs (TREE_VALUE (mem)))
1717 TREE_VALUE (mem) = error_mark_node;
1718 }
1719
1720 add_stmt (build_min_nt_loc (UNKNOWN_LOCATION,
1721 CTOR_INITIALIZER, mem_inits));
1722 }
1723 else
1724 emit_mem_initializers (mem_inits);
1725 }
1726
1727 /* Obfuscate EXPR if it looks like an id-expression or member access so
1728 that the call to finish_decltype in do_auto_deduction will give the
1729 right result. */
1730
1731 tree
1732 force_paren_expr (tree expr)
1733 {
1734 /* This is only needed for decltype(auto) in C++14. */
1735 if (cxx_dialect < cxx14)
1736 return expr;
1737
1738 /* If we're in unevaluated context, we can't be deducing a
1739 return/initializer type, so we don't need to mess with this. */
1740 if (cp_unevaluated_operand)
1741 return expr;
1742
1743 if (!DECL_P (tree_strip_any_location_wrapper (expr))
1744 && TREE_CODE (expr) != COMPONENT_REF
1745 && TREE_CODE (expr) != SCOPE_REF)
1746 return expr;
1747
1748 if (TREE_CODE (expr) == COMPONENT_REF
1749 || TREE_CODE (expr) == SCOPE_REF)
1750 REF_PARENTHESIZED_P (expr) = true;
1751 else if (processing_template_decl)
1752 expr = build1 (PAREN_EXPR, TREE_TYPE (expr), expr);
1753 else
1754 {
1755 expr = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (expr), expr);
1756 REF_PARENTHESIZED_P (expr) = true;
1757 }
1758
1759 return expr;
1760 }
1761
1762 /* If T is an id-expression obfuscated by force_paren_expr, undo the
1763 obfuscation and return the underlying id-expression. Otherwise
1764 return T. */
1765
1766 tree
1767 maybe_undo_parenthesized_ref (tree t)
1768 {
1769 if (cxx_dialect < cxx14)
1770 return t;
1771
1772 if (INDIRECT_REF_P (t) && REF_PARENTHESIZED_P (t))
1773 {
1774 t = TREE_OPERAND (t, 0);
1775 while (TREE_CODE (t) == NON_LVALUE_EXPR
1776 || TREE_CODE (t) == NOP_EXPR)
1777 t = TREE_OPERAND (t, 0);
1778
1779 gcc_assert (TREE_CODE (t) == ADDR_EXPR
1780 || TREE_CODE (t) == STATIC_CAST_EXPR);
1781 t = TREE_OPERAND (t, 0);
1782 }
1783 else if (TREE_CODE (t) == PAREN_EXPR)
1784 t = TREE_OPERAND (t, 0);
1785 else if (TREE_CODE (t) == VIEW_CONVERT_EXPR
1786 && REF_PARENTHESIZED_P (t))
1787 t = TREE_OPERAND (t, 0);
1788
1789 return t;
1790 }
1791
1792 /* Finish a parenthesized expression EXPR. */
1793
1794 cp_expr
1795 finish_parenthesized_expr (cp_expr expr)
1796 {
1797 if (EXPR_P (expr))
1798 /* This inhibits warnings in c_common_truthvalue_conversion. */
1799 TREE_NO_WARNING (expr) = 1;
1800
1801 if (TREE_CODE (expr) == OFFSET_REF
1802 || TREE_CODE (expr) == SCOPE_REF)
1803 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1804 enclosed in parentheses. */
1805 PTRMEM_OK_P (expr) = 0;
1806
1807 tree stripped_expr = tree_strip_any_location_wrapper (expr);
1808 if (TREE_CODE (stripped_expr) == STRING_CST)
1809 PAREN_STRING_LITERAL_P (stripped_expr) = 1;
1810
1811 expr = cp_expr (force_paren_expr (expr), expr.get_location ());
1812
1813 return expr;
1814 }
1815
1816 /* Finish a reference to a non-static data member (DECL) that is not
1817 preceded by `.' or `->'. */
1818
1819 tree
1820 finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
1821 {
1822 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1823 bool try_omp_private = !object && omp_private_member_map;
1824 tree ret;
1825
1826 if (!object)
1827 {
1828 tree scope = qualifying_scope;
1829 if (scope == NULL_TREE)
1830 {
1831 scope = context_for_name_lookup (decl);
1832 if (!TYPE_P (scope))
1833 {
1834 /* Can happen during error recovery (c++/85014). */
1835 gcc_assert (seen_error ());
1836 return error_mark_node;
1837 }
1838 }
1839 object = maybe_dummy_object (scope, NULL);
1840 }
1841
1842 object = maybe_resolve_dummy (object, true);
1843 if (object == error_mark_node)
1844 return error_mark_node;
1845
1846 /* DR 613/850: Can use non-static data members without an associated
1847 object in sizeof/decltype/alignof. */
1848 if (is_dummy_object (object) && cp_unevaluated_operand == 0
1849 && (!processing_template_decl || !current_class_ref))
1850 {
1851 if (current_function_decl
1852 && DECL_STATIC_FUNCTION_P (current_function_decl))
1853 error ("invalid use of member %qD in static member function", decl);
1854 else
1855 error ("invalid use of non-static data member %qD", decl);
1856 inform (DECL_SOURCE_LOCATION (decl), "declared here");
1857
1858 return error_mark_node;
1859 }
1860
1861 if (current_class_ptr)
1862 TREE_USED (current_class_ptr) = 1;
1863 if (processing_template_decl)
1864 {
1865 tree type = TREE_TYPE (decl);
1866
1867 if (TYPE_REF_P (type))
1868 /* Quals on the object don't matter. */;
1869 else if (PACK_EXPANSION_P (type))
1870 /* Don't bother trying to represent this. */
1871 type = NULL_TREE;
1872 else
1873 {
1874 /* Set the cv qualifiers. */
1875 int quals = cp_type_quals (TREE_TYPE (object));
1876
1877 if (DECL_MUTABLE_P (decl))
1878 quals &= ~TYPE_QUAL_CONST;
1879
1880 quals |= cp_type_quals (TREE_TYPE (decl));
1881 type = cp_build_qualified_type (type, quals);
1882 }
1883
1884 if (qualifying_scope)
1885 /* Wrap this in a SCOPE_REF for now. */
1886 ret = build_qualified_name (type, qualifying_scope, decl,
1887 /*template_p=*/false);
1888 else
1889 ret = (convert_from_reference
1890 (build_min (COMPONENT_REF, type, object, decl, NULL_TREE)));
1891 }
1892 /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1893 QUALIFYING_SCOPE is also non-null. */
1894 else
1895 {
1896 tree access_type = TREE_TYPE (object);
1897
1898 perform_or_defer_access_check (TYPE_BINFO (access_type), decl,
1899 decl, tf_warning_or_error);
1900
1901 /* If the data member was named `C::M', convert `*this' to `C'
1902 first. */
1903 if (qualifying_scope)
1904 {
1905 tree binfo = NULL_TREE;
1906 object = build_scoped_ref (object, qualifying_scope,
1907 &binfo);
1908 }
1909
1910 ret = build_class_member_access_expr (object, decl,
1911 /*access_path=*/NULL_TREE,
1912 /*preserve_reference=*/false,
1913 tf_warning_or_error);
1914 }
1915 if (try_omp_private)
1916 {
1917 tree *v = omp_private_member_map->get (decl);
1918 if (v)
1919 ret = convert_from_reference (*v);
1920 }
1921 return ret;
1922 }
1923
1924 /* If we are currently parsing a template and we encountered a typedef
1925 TYPEDEF_DECL that is being accessed though CONTEXT, this function
1926 adds the typedef to a list tied to the current template.
1927 At template instantiation time, that list is walked and access check
1928 performed for each typedef.
1929 LOCATION is the location of the usage point of TYPEDEF_DECL. */
1930
1931 void
1932 add_typedef_to_current_template_for_access_check (tree typedef_decl,
1933 tree context,
1934 location_t location)
1935 {
1936 tree template_info = NULL;
1937 tree cs = current_scope ();
1938
1939 if (!is_typedef_decl (typedef_decl)
1940 || !context
1941 || !CLASS_TYPE_P (context)
1942 || !cs)
1943 return;
1944
1945 if (CLASS_TYPE_P (cs) || TREE_CODE (cs) == FUNCTION_DECL)
1946 template_info = get_template_info (cs);
1947
1948 if (template_info
1949 && TI_TEMPLATE (template_info)
1950 && !currently_open_class (context))
1951 append_type_to_template_for_access_check (cs, typedef_decl,
1952 context, location);
1953 }
1954
1955 /* DECL was the declaration to which a qualified-id resolved. Issue
1956 an error message if it is not accessible. If OBJECT_TYPE is
1957 non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1958 type of `*x', or `x', respectively. If the DECL was named as
1959 `A::B' then NESTED_NAME_SPECIFIER is `A'. */
1960
1961 void
1962 check_accessibility_of_qualified_id (tree decl,
1963 tree object_type,
1964 tree nested_name_specifier)
1965 {
1966 tree scope;
1967 tree qualifying_type = NULL_TREE;
1968
1969 /* If we are parsing a template declaration and if decl is a typedef,
1970 add it to a list tied to the template.
1971 At template instantiation time, that list will be walked and
1972 access check performed. */
1973 add_typedef_to_current_template_for_access_check (decl,
1974 nested_name_specifier
1975 ? nested_name_specifier
1976 : DECL_CONTEXT (decl),
1977 input_location);
1978
1979 /* If we're not checking, return immediately. */
1980 if (deferred_access_no_check)
1981 return;
1982
1983 /* Determine the SCOPE of DECL. */
1984 scope = context_for_name_lookup (decl);
1985 /* If the SCOPE is not a type, then DECL is not a member. */
1986 if (!TYPE_P (scope))
1987 return;
1988 /* Compute the scope through which DECL is being accessed. */
1989 if (object_type
1990 /* OBJECT_TYPE might not be a class type; consider:
1991
1992 class A { typedef int I; };
1993 I *p;
1994 p->A::I::~I();
1995
1996 In this case, we will have "A::I" as the DECL, but "I" as the
1997 OBJECT_TYPE. */
1998 && CLASS_TYPE_P (object_type)
1999 && DERIVED_FROM_P (scope, object_type))
2000 /* If we are processing a `->' or `.' expression, use the type of the
2001 left-hand side. */
2002 qualifying_type = object_type;
2003 else if (nested_name_specifier)
2004 {
2005 /* If the reference is to a non-static member of the
2006 current class, treat it as if it were referenced through
2007 `this'. */
2008 tree ct;
2009 if (DECL_NONSTATIC_MEMBER_P (decl)
2010 && current_class_ptr
2011 && DERIVED_FROM_P (scope, ct = current_nonlambda_class_type ()))
2012 qualifying_type = ct;
2013 /* Otherwise, use the type indicated by the
2014 nested-name-specifier. */
2015 else
2016 qualifying_type = nested_name_specifier;
2017 }
2018 else
2019 /* Otherwise, the name must be from the current class or one of
2020 its bases. */
2021 qualifying_type = currently_open_derived_class (scope);
2022
2023 if (qualifying_type
2024 /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
2025 or similar in a default argument value. */
2026 && CLASS_TYPE_P (qualifying_type)
2027 && !dependent_type_p (qualifying_type))
2028 perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl,
2029 decl, tf_warning_or_error);
2030 }
2031
2032 /* EXPR is the result of a qualified-id. The QUALIFYING_CLASS was the
2033 class named to the left of the "::" operator. DONE is true if this
2034 expression is a complete postfix-expression; it is false if this
2035 expression is followed by '->', '[', '(', etc. ADDRESS_P is true
2036 iff this expression is the operand of '&'. TEMPLATE_P is true iff
2037 the qualified-id was of the form "A::template B". TEMPLATE_ARG_P
2038 is true iff this qualified name appears as a template argument. */
2039
2040 tree
2041 finish_qualified_id_expr (tree qualifying_class,
2042 tree expr,
2043 bool done,
2044 bool address_p,
2045 bool template_p,
2046 bool template_arg_p,
2047 tsubst_flags_t complain)
2048 {
2049 gcc_assert (TYPE_P (qualifying_class));
2050
2051 if (error_operand_p (expr))
2052 return error_mark_node;
2053
2054 if ((DECL_P (expr) || BASELINK_P (expr))
2055 && !mark_used (expr, complain))
2056 return error_mark_node;
2057
2058 if (template_p)
2059 {
2060 if (TREE_CODE (expr) == UNBOUND_CLASS_TEMPLATE)
2061 {
2062 /* cp_parser_lookup_name thought we were looking for a type,
2063 but we're actually looking for a declaration. */
2064 qualifying_class = TYPE_CONTEXT (expr);
2065 expr = TYPE_IDENTIFIER (expr);
2066 }
2067 else
2068 check_template_keyword (expr);
2069 }
2070
2071 /* If EXPR occurs as the operand of '&', use special handling that
2072 permits a pointer-to-member. */
2073 if (address_p && done)
2074 {
2075 if (TREE_CODE (expr) == SCOPE_REF)
2076 expr = TREE_OPERAND (expr, 1);
2077 expr = build_offset_ref (qualifying_class, expr,
2078 /*address_p=*/true, complain);
2079 return expr;
2080 }
2081
2082 /* No need to check access within an enum. */
2083 if (TREE_CODE (qualifying_class) == ENUMERAL_TYPE
2084 && TREE_CODE (expr) != IDENTIFIER_NODE)
2085 return expr;
2086
2087 /* Within the scope of a class, turn references to non-static
2088 members into expression of the form "this->...". */
2089 if (template_arg_p)
2090 /* But, within a template argument, we do not want make the
2091 transformation, as there is no "this" pointer. */
2092 ;
2093 else if (TREE_CODE (expr) == FIELD_DECL)
2094 {
2095 push_deferring_access_checks (dk_no_check);
2096 expr = finish_non_static_data_member (expr, NULL_TREE,
2097 qualifying_class);
2098 pop_deferring_access_checks ();
2099 }
2100 else if (BASELINK_P (expr))
2101 {
2102 /* See if any of the functions are non-static members. */
2103 /* If so, the expression may be relative to 'this'. */
2104 if ((type_dependent_expression_p (expr)
2105 || !shared_member_p (expr))
2106 && current_class_ptr
2107 && DERIVED_FROM_P (qualifying_class,
2108 current_nonlambda_class_type ()))
2109 expr = (build_class_member_access_expr
2110 (maybe_dummy_object (qualifying_class, NULL),
2111 expr,
2112 BASELINK_ACCESS_BINFO (expr),
2113 /*preserve_reference=*/false,
2114 complain));
2115 else if (done)
2116 /* The expression is a qualified name whose address is not
2117 being taken. */
2118 expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false,
2119 complain);
2120 }
2121 else if (!template_p
2122 && TREE_CODE (expr) == TEMPLATE_DECL
2123 && !DECL_FUNCTION_TEMPLATE_P (expr))
2124 {
2125 if (complain & tf_error)
2126 error ("%qE missing template arguments", expr);
2127 return error_mark_node;
2128 }
2129 else
2130 {
2131 /* In a template, return a SCOPE_REF for most qualified-ids
2132 so that we can check access at instantiation time. But if
2133 we're looking at a member of the current instantiation, we
2134 know we have access and building up the SCOPE_REF confuses
2135 non-type template argument handling. */
2136 if (processing_template_decl
2137 && (!currently_open_class (qualifying_class)
2138 || TREE_CODE (expr) == IDENTIFIER_NODE
2139 || TREE_CODE (expr) == TEMPLATE_ID_EXPR
2140 || TREE_CODE (expr) == BIT_NOT_EXPR))
2141 expr = build_qualified_name (TREE_TYPE (expr),
2142 qualifying_class, expr,
2143 template_p);
2144 else if (tree wrap = maybe_get_tls_wrapper_call (expr))
2145 expr = wrap;
2146
2147 expr = convert_from_reference (expr);
2148 }
2149
2150 return expr;
2151 }
2152
2153 /* Begin a statement-expression. The value returned must be passed to
2154 finish_stmt_expr. */
2155
2156 tree
2157 begin_stmt_expr (void)
2158 {
2159 return push_stmt_list ();
2160 }
2161
2162 /* Process the final expression of a statement expression. EXPR can be
2163 NULL, if the final expression is empty. Return a STATEMENT_LIST
2164 containing all the statements in the statement-expression, or
2165 ERROR_MARK_NODE if there was an error. */
2166
2167 tree
2168 finish_stmt_expr_expr (tree expr, tree stmt_expr)
2169 {
2170 if (error_operand_p (expr))
2171 {
2172 /* The type of the statement-expression is the type of the last
2173 expression. */
2174 TREE_TYPE (stmt_expr) = error_mark_node;
2175 return error_mark_node;
2176 }
2177
2178 /* If the last statement does not have "void" type, then the value
2179 of the last statement is the value of the entire expression. */
2180 if (expr)
2181 {
2182 tree type = TREE_TYPE (expr);
2183
2184 if (type && type_unknown_p (type))
2185 {
2186 error ("a statement expression is an insufficient context"
2187 " for overload resolution");
2188 TREE_TYPE (stmt_expr) = error_mark_node;
2189 return error_mark_node;
2190 }
2191 else if (processing_template_decl)
2192 {
2193 expr = build_stmt (input_location, EXPR_STMT, expr);
2194 expr = add_stmt (expr);
2195 /* Mark the last statement so that we can recognize it as such at
2196 template-instantiation time. */
2197 EXPR_STMT_STMT_EXPR_RESULT (expr) = 1;
2198 }
2199 else if (VOID_TYPE_P (type))
2200 {
2201 /* Just treat this like an ordinary statement. */
2202 expr = finish_expr_stmt (expr);
2203 }
2204 else
2205 {
2206 /* It actually has a value we need to deal with. First, force it
2207 to be an rvalue so that we won't need to build up a copy
2208 constructor call later when we try to assign it to something. */
2209 expr = force_rvalue (expr, tf_warning_or_error);
2210 if (error_operand_p (expr))
2211 return error_mark_node;
2212
2213 /* Update for array-to-pointer decay. */
2214 type = TREE_TYPE (expr);
2215
2216 /* Wrap it in a CLEANUP_POINT_EXPR and add it to the list like a
2217 normal statement, but don't convert to void or actually add
2218 the EXPR_STMT. */
2219 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
2220 expr = maybe_cleanup_point_expr (expr);
2221 add_stmt (expr);
2222 }
2223
2224 /* The type of the statement-expression is the type of the last
2225 expression. */
2226 TREE_TYPE (stmt_expr) = type;
2227 }
2228
2229 return stmt_expr;
2230 }
2231
2232 /* Finish a statement-expression. EXPR should be the value returned
2233 by the previous begin_stmt_expr. Returns an expression
2234 representing the statement-expression. */
2235
2236 tree
2237 finish_stmt_expr (tree stmt_expr, bool has_no_scope)
2238 {
2239 tree type;
2240 tree result;
2241
2242 if (error_operand_p (stmt_expr))
2243 {
2244 pop_stmt_list (stmt_expr);
2245 return error_mark_node;
2246 }
2247
2248 gcc_assert (TREE_CODE (stmt_expr) == STATEMENT_LIST);
2249
2250 type = TREE_TYPE (stmt_expr);
2251 result = pop_stmt_list (stmt_expr);
2252 TREE_TYPE (result) = type;
2253
2254 if (processing_template_decl)
2255 {
2256 result = build_min (STMT_EXPR, type, result);
2257 TREE_SIDE_EFFECTS (result) = 1;
2258 STMT_EXPR_NO_SCOPE (result) = has_no_scope;
2259 }
2260 else if (CLASS_TYPE_P (type))
2261 {
2262 /* Wrap the statement-expression in a TARGET_EXPR so that the
2263 temporary object created by the final expression is destroyed at
2264 the end of the full-expression containing the
2265 statement-expression. */
2266 result = force_target_expr (type, result, tf_warning_or_error);
2267 }
2268
2269 return result;
2270 }
2271
2272 /* Returns the expression which provides the value of STMT_EXPR. */
2273
2274 tree
2275 stmt_expr_value_expr (tree stmt_expr)
2276 {
2277 tree t = STMT_EXPR_STMT (stmt_expr);
2278
2279 if (TREE_CODE (t) == BIND_EXPR)
2280 t = BIND_EXPR_BODY (t);
2281
2282 if (TREE_CODE (t) == STATEMENT_LIST && STATEMENT_LIST_TAIL (t))
2283 t = STATEMENT_LIST_TAIL (t)->stmt;
2284
2285 if (TREE_CODE (t) == EXPR_STMT)
2286 t = EXPR_STMT_EXPR (t);
2287
2288 return t;
2289 }
2290
2291 /* Return TRUE iff EXPR_STMT is an empty list of
2292 expression statements. */
2293
2294 bool
2295 empty_expr_stmt_p (tree expr_stmt)
2296 {
2297 tree body = NULL_TREE;
2298
2299 if (expr_stmt == void_node)
2300 return true;
2301
2302 if (expr_stmt)
2303 {
2304 if (TREE_CODE (expr_stmt) == EXPR_STMT)
2305 body = EXPR_STMT_EXPR (expr_stmt);
2306 else if (TREE_CODE (expr_stmt) == STATEMENT_LIST)
2307 body = expr_stmt;
2308 }
2309
2310 if (body)
2311 {
2312 if (TREE_CODE (body) == STATEMENT_LIST)
2313 return tsi_end_p (tsi_start (body));
2314 else
2315 return empty_expr_stmt_p (body);
2316 }
2317 return false;
2318 }
2319
2320 /* Perform Koenig lookup. FN_EXPR is the postfix-expression representing
2321 the function (or functions) to call; ARGS are the arguments to the
2322 call. Returns the functions to be considered by overload resolution. */
2323
2324 cp_expr
2325 perform_koenig_lookup (cp_expr fn_expr, vec<tree, va_gc> *args,
2326 tsubst_flags_t complain)
2327 {
2328 tree identifier = NULL_TREE;
2329 tree functions = NULL_TREE;
2330 tree tmpl_args = NULL_TREE;
2331 bool template_id = false;
2332 location_t loc = fn_expr.get_location ();
2333 tree fn = fn_expr.get_value ();
2334
2335 STRIP_ANY_LOCATION_WRAPPER (fn);
2336
2337 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2338 {
2339 /* Use a separate flag to handle null args. */
2340 template_id = true;
2341 tmpl_args = TREE_OPERAND (fn, 1);
2342 fn = TREE_OPERAND (fn, 0);
2343 }
2344
2345 /* Find the name of the overloaded function. */
2346 if (identifier_p (fn))
2347 identifier = fn;
2348 else
2349 {
2350 functions = fn;
2351 identifier = OVL_NAME (functions);
2352 }
2353
2354 /* A call to a namespace-scope function using an unqualified name.
2355
2356 Do Koenig lookup -- unless any of the arguments are
2357 type-dependent. */
2358 if (!any_type_dependent_arguments_p (args)
2359 && !any_dependent_template_arguments_p (tmpl_args))
2360 {
2361 fn = lookup_arg_dependent (identifier, functions, args);
2362 if (!fn)
2363 {
2364 /* The unqualified name could not be resolved. */
2365 if (complain & tf_error)
2366 fn = unqualified_fn_lookup_error (cp_expr (identifier, loc));
2367 else
2368 fn = identifier;
2369 }
2370 }
2371
2372 if (fn && template_id && fn != error_mark_node)
2373 fn = build2 (TEMPLATE_ID_EXPR, unknown_type_node, fn, tmpl_args);
2374
2375 return cp_expr (fn, loc);
2376 }
2377
2378 /* Generate an expression for `FN (ARGS)'. This may change the
2379 contents of ARGS.
2380
2381 If DISALLOW_VIRTUAL is true, the call to FN will be not generated
2382 as a virtual call, even if FN is virtual. (This flag is set when
2383 encountering an expression where the function name is explicitly
2384 qualified. For example a call to `X::f' never generates a virtual
2385 call.)
2386
2387 Returns code for the call. */
2388
2389 tree
2390 finish_call_expr (tree fn, vec<tree, va_gc> **args, bool disallow_virtual,
2391 bool koenig_p, tsubst_flags_t complain)
2392 {
2393 tree result;
2394 tree orig_fn;
2395 vec<tree, va_gc> *orig_args = *args;
2396
2397 if (fn == error_mark_node)
2398 return error_mark_node;
2399
2400 gcc_assert (!TYPE_P (fn));
2401
2402 /* If FN may be a FUNCTION_DECL obfuscated by force_paren_expr, undo
2403 it so that we can tell this is a call to a known function. */
2404 fn = maybe_undo_parenthesized_ref (fn);
2405
2406 STRIP_ANY_LOCATION_WRAPPER (fn);
2407
2408 orig_fn = fn;
2409
2410 if (processing_template_decl)
2411 {
2412 /* If FN is a local extern declaration or set thereof, look them up
2413 again at instantiation time. */
2414 if (is_overloaded_fn (fn))
2415 {
2416 tree ifn = get_first_fn (fn);
2417 if (TREE_CODE (ifn) == FUNCTION_DECL
2418 && DECL_LOCAL_FUNCTION_P (ifn))
2419 orig_fn = DECL_NAME (ifn);
2420 }
2421
2422 /* If the call expression is dependent, build a CALL_EXPR node
2423 with no type; type_dependent_expression_p recognizes
2424 expressions with no type as being dependent. */
2425 if (type_dependent_expression_p (fn)
2426 || any_type_dependent_arguments_p (*args))
2427 {
2428 result = build_min_nt_call_vec (orig_fn, *args);
2429 SET_EXPR_LOCATION (result, cp_expr_loc_or_loc (fn, input_location));
2430 KOENIG_LOOKUP_P (result) = koenig_p;
2431 if (is_overloaded_fn (fn))
2432 fn = get_fns (fn);
2433
2434 if (cfun)
2435 {
2436 bool abnormal = true;
2437 for (lkp_iterator iter (fn); abnormal && iter; ++iter)
2438 {
2439 tree fndecl = *iter;
2440 if (TREE_CODE (fndecl) != FUNCTION_DECL
2441 || !TREE_THIS_VOLATILE (fndecl))
2442 abnormal = false;
2443 }
2444 /* FIXME: Stop warning about falling off end of non-void
2445 function. But this is wrong. Even if we only see
2446 no-return fns at this point, we could select a
2447 future-defined return fn during instantiation. Or
2448 vice-versa. */
2449 if (abnormal)
2450 current_function_returns_abnormally = 1;
2451 }
2452 return result;
2453 }
2454 orig_args = make_tree_vector_copy (*args);
2455 if (!BASELINK_P (fn)
2456 && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
2457 && TREE_TYPE (fn) != unknown_type_node)
2458 fn = build_non_dependent_expr (fn);
2459 make_args_non_dependent (*args);
2460 }
2461
2462 if (TREE_CODE (fn) == COMPONENT_REF)
2463 {
2464 tree member = TREE_OPERAND (fn, 1);
2465 if (BASELINK_P (member))
2466 {
2467 tree object = TREE_OPERAND (fn, 0);
2468 return build_new_method_call (object, member,
2469 args, NULL_TREE,
2470 (disallow_virtual
2471 ? LOOKUP_NORMAL | LOOKUP_NONVIRTUAL
2472 : LOOKUP_NORMAL),
2473 /*fn_p=*/NULL,
2474 complain);
2475 }
2476 }
2477
2478 /* Per 13.3.1.1, '(&f)(...)' is the same as '(f)(...)'. */
2479 if (TREE_CODE (fn) == ADDR_EXPR
2480 && TREE_CODE (TREE_OPERAND (fn, 0)) == OVERLOAD)
2481 fn = TREE_OPERAND (fn, 0);
2482
2483 if (is_overloaded_fn (fn))
2484 fn = baselink_for_fns (fn);
2485
2486 result = NULL_TREE;
2487 if (BASELINK_P (fn))
2488 {
2489 tree object;
2490
2491 /* A call to a member function. From [over.call.func]:
2492
2493 If the keyword this is in scope and refers to the class of
2494 that member function, or a derived class thereof, then the
2495 function call is transformed into a qualified function call
2496 using (*this) as the postfix-expression to the left of the
2497 . operator.... [Otherwise] a contrived object of type T
2498 becomes the implied object argument.
2499
2500 In this situation:
2501
2502 struct A { void f(); };
2503 struct B : public A {};
2504 struct C : public A { void g() { B::f(); }};
2505
2506 "the class of that member function" refers to `A'. But 11.2
2507 [class.access.base] says that we need to convert 'this' to B* as
2508 part of the access, so we pass 'B' to maybe_dummy_object. */
2509
2510 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (get_first_fn (fn)))
2511 {
2512 /* A constructor call always uses a dummy object. (This constructor
2513 call which has the form A::A () is actually invalid and we are
2514 going to reject it later in build_new_method_call.) */
2515 object = build_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)));
2516 }
2517 else
2518 object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
2519 NULL);
2520
2521 result = build_new_method_call (object, fn, args, NULL_TREE,
2522 (disallow_virtual
2523 ? LOOKUP_NORMAL|LOOKUP_NONVIRTUAL
2524 : LOOKUP_NORMAL),
2525 /*fn_p=*/NULL,
2526 complain);
2527 }
2528 else if (is_overloaded_fn (fn))
2529 {
2530 /* If the function is an overloaded builtin, resolve it. */
2531 if (TREE_CODE (fn) == FUNCTION_DECL
2532 && (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2533 || DECL_BUILT_IN_CLASS (fn) == BUILT_IN_MD))
2534 result = resolve_overloaded_builtin (input_location, fn, *args);
2535
2536 if (!result)
2537 {
2538 if (warn_sizeof_pointer_memaccess
2539 && (complain & tf_warning)
2540 && !vec_safe_is_empty (*args)
2541 && !processing_template_decl)
2542 {
2543 location_t sizeof_arg_loc[3];
2544 tree sizeof_arg[3];
2545 unsigned int i;
2546 for (i = 0; i < 3; i++)
2547 {
2548 tree t;
2549
2550 sizeof_arg_loc[i] = UNKNOWN_LOCATION;
2551 sizeof_arg[i] = NULL_TREE;
2552 if (i >= (*args)->length ())
2553 continue;
2554 t = (**args)[i];
2555 if (TREE_CODE (t) != SIZEOF_EXPR)
2556 continue;
2557 if (SIZEOF_EXPR_TYPE_P (t))
2558 sizeof_arg[i] = TREE_TYPE (TREE_OPERAND (t, 0));
2559 else
2560 sizeof_arg[i] = TREE_OPERAND (t, 0);
2561 sizeof_arg_loc[i] = EXPR_LOCATION (t);
2562 }
2563 sizeof_pointer_memaccess_warning
2564 (sizeof_arg_loc, fn, *args,
2565 sizeof_arg, same_type_ignoring_top_level_qualifiers_p);
2566 }
2567
2568 if ((complain & tf_warning)
2569 && TREE_CODE (fn) == FUNCTION_DECL
2570 && fndecl_built_in_p (fn, BUILT_IN_MEMSET)
2571 && vec_safe_length (*args) == 3
2572 && !any_type_dependent_arguments_p (*args))
2573 {
2574 tree arg0 = (*orig_args)[0];
2575 tree arg1 = (*orig_args)[1];
2576 tree arg2 = (*orig_args)[2];
2577 int literal_mask = ((literal_integer_zerop (arg1) << 1)
2578 | (literal_integer_zerop (arg2) << 2));
2579 arg2 = instantiate_non_dependent_expr (arg2);
2580 warn_for_memset (input_location, arg0, arg2, literal_mask);
2581 }
2582
2583 /* A call to a namespace-scope function. */
2584 result = build_new_function_call (fn, args, complain);
2585 }
2586 }
2587 else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
2588 {
2589 if (!vec_safe_is_empty (*args))
2590 error ("arguments to destructor are not allowed");
2591 /* Mark the pseudo-destructor call as having side-effects so
2592 that we do not issue warnings about its use. */
2593 result = build1 (NOP_EXPR,
2594 void_type_node,
2595 TREE_OPERAND (fn, 0));
2596 TREE_SIDE_EFFECTS (result) = 1;
2597 }
2598 else if (CLASS_TYPE_P (TREE_TYPE (fn)))
2599 /* If the "function" is really an object of class type, it might
2600 have an overloaded `operator ()'. */
2601 result = build_op_call (fn, args, complain);
2602
2603 if (!result)
2604 /* A call where the function is unknown. */
2605 result = cp_build_function_call_vec (fn, args, complain);
2606
2607 if (processing_template_decl && result != error_mark_node)
2608 {
2609 if (INDIRECT_REF_P (result))
2610 result = TREE_OPERAND (result, 0);
2611 result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
2612 SET_EXPR_LOCATION (result, input_location);
2613 KOENIG_LOOKUP_P (result) = koenig_p;
2614 release_tree_vector (orig_args);
2615 result = convert_from_reference (result);
2616 }
2617
2618 return result;
2619 }
2620
2621 /* Finish a call to a postfix increment or decrement or EXPR. (Which
2622 is indicated by CODE, which should be POSTINCREMENT_EXPR or
2623 POSTDECREMENT_EXPR.) */
2624
2625 cp_expr
2626 finish_increment_expr (cp_expr expr, enum tree_code code)
2627 {
2628 /* input_location holds the location of the trailing operator token.
2629 Build a location of the form:
2630 expr++
2631 ~~~~^~
2632 with the caret at the operator token, ranging from the start
2633 of EXPR to the end of the operator token. */
2634 location_t combined_loc = make_location (input_location,
2635 expr.get_start (),
2636 get_finish (input_location));
2637 cp_expr result = build_x_unary_op (combined_loc, code, expr,
2638 tf_warning_or_error);
2639 /* TODO: build_x_unary_op doesn't honor the location, so set it here. */
2640 result.set_location (combined_loc);
2641 return result;
2642 }
2643
2644 /* Finish a use of `this'. Returns an expression for `this'. */
2645
2646 tree
2647 finish_this_expr (void)
2648 {
2649 tree result = NULL_TREE;
2650
2651 if (current_class_ptr)
2652 {
2653 tree type = TREE_TYPE (current_class_ref);
2654
2655 /* In a lambda expression, 'this' refers to the captured 'this'. */
2656 if (LAMBDA_TYPE_P (type))
2657 result = lambda_expr_this_capture (CLASSTYPE_LAMBDA_EXPR (type), true);
2658 else
2659 result = current_class_ptr;
2660 }
2661
2662 if (result)
2663 /* The keyword 'this' is a prvalue expression. */
2664 return rvalue (result);
2665
2666 tree fn = current_nonlambda_function ();
2667 if (fn && DECL_STATIC_FUNCTION_P (fn))
2668 error ("%<this%> is unavailable for static member functions");
2669 else if (fn)
2670 error ("invalid use of %<this%> in non-member function");
2671 else
2672 error ("invalid use of %<this%> at top level");
2673 return error_mark_node;
2674 }
2675
2676 /* Finish a pseudo-destructor expression. If SCOPE is NULL, the
2677 expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
2678 the TYPE for the type given. If SCOPE is non-NULL, the expression
2679 was of the form `OBJECT.SCOPE::~DESTRUCTOR'. */
2680
2681 tree
2682 finish_pseudo_destructor_expr (tree object, tree scope, tree destructor,
2683 location_t loc)
2684 {
2685 if (object == error_mark_node || destructor == error_mark_node)
2686 return error_mark_node;
2687
2688 gcc_assert (TYPE_P (destructor));
2689
2690 if (!processing_template_decl)
2691 {
2692 if (scope == error_mark_node)
2693 {
2694 error_at (loc, "invalid qualifying scope in pseudo-destructor name");
2695 return error_mark_node;
2696 }
2697 if (is_auto (destructor))
2698 destructor = TREE_TYPE (object);
2699 if (scope && TYPE_P (scope) && !check_dtor_name (scope, destructor))
2700 {
2701 error_at (loc,
2702 "qualified type %qT does not match destructor name ~%qT",
2703 scope, destructor);
2704 return error_mark_node;
2705 }
2706
2707
2708 /* [expr.pseudo] says both:
2709
2710 The type designated by the pseudo-destructor-name shall be
2711 the same as the object type.
2712
2713 and:
2714
2715 The cv-unqualified versions of the object type and of the
2716 type designated by the pseudo-destructor-name shall be the
2717 same type.
2718
2719 We implement the more generous second sentence, since that is
2720 what most other compilers do. */
2721 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
2722 destructor))
2723 {
2724 error_at (loc, "%qE is not of type %qT", object, destructor);
2725 return error_mark_node;
2726 }
2727 }
2728
2729 return build3_loc (loc, PSEUDO_DTOR_EXPR, void_type_node, object,
2730 scope, destructor);
2731 }
2732
2733 /* Finish an expression of the form CODE EXPR. */
2734
2735 cp_expr
2736 finish_unary_op_expr (location_t op_loc, enum tree_code code, cp_expr expr,
2737 tsubst_flags_t complain)
2738 {
2739 /* Build a location of the form:
2740 ++expr
2741 ^~~~~~
2742 with the caret at the operator token, ranging from the start
2743 of the operator token to the end of EXPR. */
2744 location_t combined_loc = make_location (op_loc,
2745 op_loc, expr.get_finish ());
2746 cp_expr result = build_x_unary_op (combined_loc, code, expr, complain);
2747 /* TODO: build_x_unary_op doesn't always honor the location. */
2748 result.set_location (combined_loc);
2749
2750 if (result == error_mark_node)
2751 return result;
2752
2753 if (!(complain & tf_warning))
2754 return result;
2755
2756 tree result_ovl = result;
2757 tree expr_ovl = expr;
2758
2759 if (!processing_template_decl)
2760 expr_ovl = cp_fully_fold (expr_ovl);
2761
2762 if (!CONSTANT_CLASS_P (expr_ovl)
2763 || TREE_OVERFLOW_P (expr_ovl))
2764 return result;
2765
2766 if (!processing_template_decl)
2767 result_ovl = cp_fully_fold (result_ovl);
2768
2769 if (CONSTANT_CLASS_P (result_ovl) && TREE_OVERFLOW_P (result_ovl))
2770 overflow_warning (combined_loc, result_ovl);
2771
2772 return result;
2773 }
2774
2775 /* Finish a compound-literal expression or C++11 functional cast with aggregate
2776 initializer. TYPE is the type to which the CONSTRUCTOR in COMPOUND_LITERAL
2777 is being cast. */
2778
2779 tree
2780 finish_compound_literal (tree type, tree compound_literal,
2781 tsubst_flags_t complain,
2782 fcl_t fcl_context)
2783 {
2784 if (type == error_mark_node)
2785 return error_mark_node;
2786
2787 if (TYPE_REF_P (type))
2788 {
2789 compound_literal
2790 = finish_compound_literal (TREE_TYPE (type), compound_literal,
2791 complain, fcl_context);
2792 /* The prvalue is then used to direct-initialize the reference. */
2793 tree r = (perform_implicit_conversion_flags
2794 (type, compound_literal, complain, LOOKUP_NORMAL));
2795 return convert_from_reference (r);
2796 }
2797
2798 if (!TYPE_OBJ_P (type))
2799 {
2800 if (complain & tf_error)
2801 error ("compound literal of non-object type %qT", type);
2802 return error_mark_node;
2803 }
2804
2805 if (tree anode = type_uses_auto (type))
2806 if (CLASS_PLACEHOLDER_TEMPLATE (anode))
2807 {
2808 type = do_auto_deduction (type, compound_literal, anode, complain,
2809 adc_variable_type);
2810 if (type == error_mark_node)
2811 return error_mark_node;
2812 }
2813
2814 /* Used to hold a copy of the compound literal in a template. */
2815 tree orig_cl = NULL_TREE;
2816
2817 if (processing_template_decl)
2818 {
2819 const bool dependent_p
2820 = (instantiation_dependent_expression_p (compound_literal)
2821 || dependent_type_p (type));
2822 if (dependent_p)
2823 /* We're about to return, no need to copy. */
2824 orig_cl = compound_literal;
2825 else
2826 /* We're going to need a copy. */
2827 orig_cl = unshare_constructor (compound_literal);
2828 TREE_TYPE (orig_cl) = type;
2829 /* Mark the expression as a compound literal. */
2830 TREE_HAS_CONSTRUCTOR (orig_cl) = 1;
2831 /* And as instantiation-dependent. */
2832 CONSTRUCTOR_IS_DEPENDENT (orig_cl) = dependent_p;
2833 if (fcl_context == fcl_c99)
2834 CONSTRUCTOR_C99_COMPOUND_LITERAL (orig_cl) = 1;
2835 /* If the compound literal is dependent, we're done for now. */
2836 if (dependent_p)
2837 return orig_cl;
2838 /* Otherwise, do go on to e.g. check narrowing. */
2839 }
2840
2841 type = complete_type (type);
2842
2843 if (TYPE_NON_AGGREGATE_CLASS (type))
2844 {
2845 /* Trying to deal with a CONSTRUCTOR instead of a TREE_LIST
2846 everywhere that deals with function arguments would be a pain, so
2847 just wrap it in a TREE_LIST. The parser set a flag so we know
2848 that it came from T{} rather than T({}). */
2849 CONSTRUCTOR_IS_DIRECT_INIT (compound_literal) = 1;
2850 compound_literal = build_tree_list (NULL_TREE, compound_literal);
2851 return build_functional_cast (type, compound_literal, complain);
2852 }
2853
2854 if (TREE_CODE (type) == ARRAY_TYPE
2855 && check_array_initializer (NULL_TREE, type, compound_literal))
2856 return error_mark_node;
2857 compound_literal = reshape_init (type, compound_literal, complain);
2858 if (SCALAR_TYPE_P (type)
2859 && !BRACE_ENCLOSED_INITIALIZER_P (compound_literal))
2860 {
2861 tree t = instantiate_non_dependent_expr_sfinae (compound_literal,
2862 complain);
2863 if (!check_narrowing (type, t, complain))
2864 return error_mark_node;
2865 }
2866 if (TREE_CODE (type) == ARRAY_TYPE
2867 && TYPE_DOMAIN (type) == NULL_TREE)
2868 {
2869 cp_complete_array_type_or_error (&type, compound_literal,
2870 false, complain);
2871 if (type == error_mark_node)
2872 return error_mark_node;
2873 }
2874 compound_literal = digest_init_flags (type, compound_literal,
2875 LOOKUP_NORMAL | LOOKUP_NO_NARROWING,
2876 complain);
2877 if (compound_literal == error_mark_node)
2878 return error_mark_node;
2879
2880 /* If we're in a template, return the original compound literal. */
2881 if (orig_cl)
2882 {
2883 if (!VECTOR_TYPE_P (type))
2884 return get_target_expr_sfinae (orig_cl, complain);
2885 else
2886 return orig_cl;
2887 }
2888
2889 if (TREE_CODE (compound_literal) == CONSTRUCTOR)
2890 {
2891 TREE_HAS_CONSTRUCTOR (compound_literal) = true;
2892 if (fcl_context == fcl_c99)
2893 CONSTRUCTOR_C99_COMPOUND_LITERAL (compound_literal) = 1;
2894 }
2895
2896 /* Put static/constant array temporaries in static variables. */
2897 /* FIXME all C99 compound literals should be variables rather than C++
2898 temporaries, unless they are used as an aggregate initializer. */
2899 if ((!at_function_scope_p () || CP_TYPE_CONST_P (type))
2900 && fcl_context == fcl_c99
2901 && TREE_CODE (type) == ARRAY_TYPE
2902 && !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
2903 && initializer_constant_valid_p (compound_literal, type))
2904 {
2905 tree decl = create_temporary_var (type);
2906 DECL_INITIAL (decl) = compound_literal;
2907 TREE_STATIC (decl) = 1;
2908 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
2909 {
2910 /* 5.19 says that a constant expression can include an
2911 lvalue-rvalue conversion applied to "a glvalue of literal type
2912 that refers to a non-volatile temporary object initialized
2913 with a constant expression". Rather than try to communicate
2914 that this VAR_DECL is a temporary, just mark it constexpr. */
2915 DECL_DECLARED_CONSTEXPR_P (decl) = true;
2916 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
2917 TREE_CONSTANT (decl) = true;
2918 }
2919 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
2920 decl = pushdecl_top_level (decl);
2921 DECL_NAME (decl) = make_anon_name ();
2922 SET_DECL_ASSEMBLER_NAME (decl, DECL_NAME (decl));
2923 /* Make sure the destructor is callable. */
2924 tree clean = cxx_maybe_build_cleanup (decl, complain);
2925 if (clean == error_mark_node)
2926 return error_mark_node;
2927 return decl;
2928 }
2929
2930 /* Represent other compound literals with TARGET_EXPR so we produce
2931 an lvalue, but can elide copies. */
2932 if (!VECTOR_TYPE_P (type))
2933 compound_literal = get_target_expr_sfinae (compound_literal, complain);
2934
2935 return compound_literal;
2936 }
2937
2938 /* Return the declaration for the function-name variable indicated by
2939 ID. */
2940
2941 tree
2942 finish_fname (tree id)
2943 {
2944 tree decl;
2945
2946 decl = fname_decl (input_location, C_RID_CODE (id), id);
2947 if (processing_template_decl && current_function_decl
2948 && decl != error_mark_node)
2949 decl = DECL_NAME (decl);
2950 return decl;
2951 }
2952
2953 /* Finish a translation unit. */
2954
2955 void
2956 finish_translation_unit (void)
2957 {
2958 /* In case there were missing closebraces,
2959 get us back to the global binding level. */
2960 pop_everything ();
2961 while (current_namespace != global_namespace)
2962 pop_namespace ();
2963
2964 /* Do file scope __FUNCTION__ et al. */
2965 finish_fname_decls ();
2966 }
2967
2968 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
2969 Returns the parameter. */
2970
2971 tree
2972 finish_template_type_parm (tree aggr, tree identifier)
2973 {
2974 if (aggr != class_type_node)
2975 {
2976 permerror (input_location, "template type parameters must use the keyword %<class%> or %<typename%>");
2977 aggr = class_type_node;
2978 }
2979
2980 return build_tree_list (aggr, identifier);
2981 }
2982
2983 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
2984 Returns the parameter. */
2985
2986 tree
2987 finish_template_template_parm (tree aggr, tree identifier)
2988 {
2989 tree decl = build_decl (input_location,
2990 TYPE_DECL, identifier, NULL_TREE);
2991
2992 tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2993 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2994 DECL_TEMPLATE_RESULT (tmpl) = decl;
2995 DECL_ARTIFICIAL (decl) = 1;
2996
2997 // Associate the constraints with the underlying declaration,
2998 // not the template.
2999 tree reqs = TEMPLATE_PARMS_CONSTRAINTS (current_template_parms);
3000 tree constr = build_constraints (reqs, NULL_TREE);
3001 set_constraints (decl, constr);
3002
3003 end_template_decl ();
3004
3005 gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
3006
3007 check_default_tmpl_args (decl, DECL_TEMPLATE_PARMS (tmpl),
3008 /*is_primary=*/true, /*is_partial=*/false,
3009 /*is_friend=*/0);
3010
3011 return finish_template_type_parm (aggr, tmpl);
3012 }
3013
3014 /* ARGUMENT is the default-argument value for a template template
3015 parameter. If ARGUMENT is invalid, issue error messages and return
3016 the ERROR_MARK_NODE. Otherwise, ARGUMENT itself is returned. */
3017
3018 tree
3019 check_template_template_default_arg (tree argument)
3020 {
3021 if (TREE_CODE (argument) != TEMPLATE_DECL
3022 && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
3023 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
3024 {
3025 if (TREE_CODE (argument) == TYPE_DECL)
3026 error ("invalid use of type %qT as a default value for a template "
3027 "template-parameter", TREE_TYPE (argument));
3028 else
3029 error ("invalid default argument for a template template parameter");
3030 return error_mark_node;
3031 }
3032
3033 return argument;
3034 }
3035
3036 /* Begin a class definition, as indicated by T. */
3037
3038 tree
3039 begin_class_definition (tree t)
3040 {
3041 if (error_operand_p (t) || error_operand_p (TYPE_MAIN_DECL (t)))
3042 return error_mark_node;
3043
3044 if (processing_template_parmlist && !LAMBDA_TYPE_P (t))
3045 {
3046 error ("definition of %q#T inside template parameter list", t);
3047 return error_mark_node;
3048 }
3049
3050 /* According to the C++ ABI, decimal classes defined in ISO/IEC TR 24733
3051 are passed the same as decimal scalar types. */
3052 if (TREE_CODE (t) == RECORD_TYPE
3053 && !processing_template_decl)
3054 {
3055 tree ns = TYPE_CONTEXT (t);
3056 if (ns && TREE_CODE (ns) == NAMESPACE_DECL
3057 && DECL_CONTEXT (ns) == std_node
3058 && DECL_NAME (ns)
3059 && id_equal (DECL_NAME (ns), "decimal"))
3060 {
3061 const char *n = TYPE_NAME_STRING (t);
3062 if ((strcmp (n, "decimal32") == 0)
3063 || (strcmp (n, "decimal64") == 0)
3064 || (strcmp (n, "decimal128") == 0))
3065 TYPE_TRANSPARENT_AGGR (t) = 1;
3066 }
3067 }
3068
3069 /* A non-implicit typename comes from code like:
3070
3071 template <typename T> struct A {
3072 template <typename U> struct A<T>::B ...
3073
3074 This is erroneous. */
3075 else if (TREE_CODE (t) == TYPENAME_TYPE)
3076 {
3077 error ("invalid definition of qualified type %qT", t);
3078 t = error_mark_node;
3079 }
3080
3081 if (t == error_mark_node || ! MAYBE_CLASS_TYPE_P (t))
3082 {
3083 t = make_class_type (RECORD_TYPE);
3084 pushtag (make_anon_name (), t, /*tag_scope=*/ts_current);
3085 }
3086
3087 if (TYPE_BEING_DEFINED (t))
3088 {
3089 t = make_class_type (TREE_CODE (t));
3090 pushtag (TYPE_IDENTIFIER (t), t, /*tag_scope=*/ts_current);
3091 }
3092 maybe_process_partial_specialization (t);
3093 pushclass (t);
3094 TYPE_BEING_DEFINED (t) = 1;
3095 class_binding_level->defining_class_p = 1;
3096
3097 if (flag_pack_struct)
3098 {
3099 tree v;
3100 TYPE_PACKED (t) = 1;
3101 /* Even though the type is being defined for the first time
3102 here, there might have been a forward declaration, so there
3103 might be cv-qualified variants of T. */
3104 for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
3105 TYPE_PACKED (v) = 1;
3106 }
3107 /* Reset the interface data, at the earliest possible
3108 moment, as it might have been set via a class foo;
3109 before. */
3110 if (! TYPE_UNNAMED_P (t))
3111 {
3112 struct c_fileinfo *finfo = \
3113 get_fileinfo (LOCATION_FILE (input_location));
3114 CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
3115 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
3116 (t, finfo->interface_unknown);
3117 }
3118 reset_specialization();
3119
3120 /* Make a declaration for this class in its own scope. */
3121 build_self_reference ();
3122
3123 return t;
3124 }
3125
3126 /* Finish the member declaration given by DECL. */
3127
3128 void
3129 finish_member_declaration (tree decl)
3130 {
3131 if (decl == error_mark_node || decl == NULL_TREE)
3132 return;
3133
3134 if (decl == void_type_node)
3135 /* The COMPONENT was a friend, not a member, and so there's
3136 nothing for us to do. */
3137 return;
3138
3139 /* We should see only one DECL at a time. */
3140 gcc_assert (DECL_CHAIN (decl) == NULL_TREE);
3141
3142 /* Don't add decls after definition. */
3143 gcc_assert (TYPE_BEING_DEFINED (current_class_type)
3144 /* We can add lambda types when late parsing default
3145 arguments. */
3146 || LAMBDA_TYPE_P (TREE_TYPE (decl)));
3147
3148 /* Set up access control for DECL. */
3149 TREE_PRIVATE (decl)
3150 = (current_access_specifier == access_private_node);
3151 TREE_PROTECTED (decl)
3152 = (current_access_specifier == access_protected_node);
3153 if (TREE_CODE (decl) == TEMPLATE_DECL)
3154 {
3155 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
3156 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
3157 }
3158
3159 /* Mark the DECL as a member of the current class, unless it's
3160 a member of an enumeration. */
3161 if (TREE_CODE (decl) != CONST_DECL)
3162 DECL_CONTEXT (decl) = current_class_type;
3163
3164 if (TREE_CODE (decl) == USING_DECL)
3165 /* For now, ignore class-scope USING_DECLS, so that debugging
3166 backends do not see them. */
3167 DECL_IGNORED_P (decl) = 1;
3168
3169 /* Check for bare parameter packs in the non-static data member
3170 declaration. */
3171 if (TREE_CODE (decl) == FIELD_DECL)
3172 {
3173 if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
3174 TREE_TYPE (decl) = error_mark_node;
3175 if (check_for_bare_parameter_packs (DECL_ATTRIBUTES (decl)))
3176 DECL_ATTRIBUTES (decl) = NULL_TREE;
3177 }
3178
3179 /* [dcl.link]
3180
3181 A C language linkage is ignored for the names of class members
3182 and the member function type of class member functions. */
3183 if (DECL_LANG_SPECIFIC (decl))
3184 SET_DECL_LANGUAGE (decl, lang_cplusplus);
3185
3186 bool add = false;
3187
3188 /* Functions and non-functions are added differently. */
3189 if (DECL_DECLARES_FUNCTION_P (decl))
3190 add = add_method (current_class_type, decl, false);
3191 /* Enter the DECL into the scope of the class, if the class
3192 isn't a closure (whose fields are supposed to be unnamed). */
3193 else if (CLASSTYPE_LAMBDA_EXPR (current_class_type)
3194 || pushdecl_class_level (decl))
3195 add = true;
3196
3197 if (add)
3198 {
3199 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
3200 go at the beginning. The reason is that
3201 legacy_nonfn_member_lookup searches the list in order, and we
3202 want a field name to override a type name so that the "struct
3203 stat hack" will work. In particular:
3204
3205 struct S { enum E { }; static const int E = 5; int ary[S::E]; } s;
3206
3207 is valid. */
3208
3209 if (TREE_CODE (decl) == TYPE_DECL)
3210 TYPE_FIELDS (current_class_type)
3211 = chainon (TYPE_FIELDS (current_class_type), decl);
3212 else
3213 {
3214 DECL_CHAIN (decl) = TYPE_FIELDS (current_class_type);
3215 TYPE_FIELDS (current_class_type) = decl;
3216 }
3217
3218 maybe_add_class_template_decl_list (current_class_type, decl,
3219 /*friend_p=*/0);
3220 }
3221 }
3222
3223 /* Finish processing a complete template declaration. The PARMS are
3224 the template parameters. */
3225
3226 void
3227 finish_template_decl (tree parms)
3228 {
3229 if (parms)
3230 end_template_decl ();
3231 else
3232 end_specialization ();
3233 }
3234
3235 // Returns the template type of the class scope being entered. If we're
3236 // entering a constrained class scope. TYPE is the class template
3237 // scope being entered and we may need to match the intended type with
3238 // a constrained specialization. For example:
3239 //
3240 // template<Object T>
3241 // struct S { void f(); }; #1
3242 //
3243 // template<Object T>
3244 // void S<T>::f() { } #2
3245 //
3246 // We check, in #2, that S<T> refers precisely to the type declared by
3247 // #1 (i.e., that the constraints match). Note that the following should
3248 // be an error since there is no specialization of S<T> that is
3249 // unconstrained, but this is not diagnosed here.
3250 //
3251 // template<typename T>
3252 // void S<T>::f() { }
3253 //
3254 // We cannot diagnose this problem here since this function also matches
3255 // qualified template names that are not part of a definition. For example:
3256 //
3257 // template<Integral T, Floating_point U>
3258 // typename pair<T, U>::first_type void f(T, U);
3259 //
3260 // Here, it is unlikely that there is a partial specialization of
3261 // pair constrained for for Integral and Floating_point arguments.
3262 //
3263 // The general rule is: if a constrained specialization with matching
3264 // constraints is found return that type. Also note that if TYPE is not a
3265 // class-type (e.g. a typename type), then no fixup is needed.
3266
3267 static tree
3268 fixup_template_type (tree type)
3269 {
3270 // Find the template parameter list at the a depth appropriate to
3271 // the scope we're trying to enter.
3272 tree parms = current_template_parms;
3273 int depth = template_class_depth (type);
3274 for (int n = processing_template_decl; n > depth && parms; --n)
3275 parms = TREE_CHAIN (parms);
3276 if (!parms)
3277 return type;
3278 tree cur_reqs = TEMPLATE_PARMS_CONSTRAINTS (parms);
3279 tree cur_constr = build_constraints (cur_reqs, NULL_TREE);
3280
3281 // Search for a specialization whose type and constraints match.
3282 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
3283 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
3284 while (specs)
3285 {
3286 tree spec_constr = get_constraints (TREE_VALUE (specs));
3287
3288 // If the type and constraints match a specialization, then we
3289 // are entering that type.
3290 if (same_type_p (type, TREE_TYPE (specs))
3291 && equivalent_constraints (cur_constr, spec_constr))
3292 return TREE_TYPE (specs);
3293 specs = TREE_CHAIN (specs);
3294 }
3295
3296 // If no specialization matches, then must return the type
3297 // previously found.
3298 return type;
3299 }
3300
3301 /* Finish processing a template-id (which names a type) of the form
3302 NAME < ARGS >. Return the TYPE_DECL for the type named by the
3303 template-id. If ENTERING_SCOPE is nonzero we are about to enter
3304 the scope of template-id indicated. */
3305
3306 tree
3307 finish_template_type (tree name, tree args, int entering_scope)
3308 {
3309 tree type;
3310
3311 type = lookup_template_class (name, args,
3312 NULL_TREE, NULL_TREE, entering_scope,
3313 tf_warning_or_error | tf_user);
3314
3315 /* If we might be entering the scope of a partial specialization,
3316 find the one with the right constraints. */
3317 if (flag_concepts
3318 && entering_scope
3319 && CLASS_TYPE_P (type)
3320 && CLASSTYPE_TEMPLATE_INFO (type)
3321 && dependent_type_p (type)
3322 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
3323 type = fixup_template_type (type);
3324
3325 if (type == error_mark_node)
3326 return type;
3327 else if (CLASS_TYPE_P (type) && !alias_type_or_template_p (type))
3328 return TYPE_STUB_DECL (type);
3329 else
3330 return TYPE_NAME (type);
3331 }
3332
3333 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
3334 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
3335 BASE_CLASS, or NULL_TREE if an error occurred. The
3336 ACCESS_SPECIFIER is one of
3337 access_{default,public,protected_private}_node. For a virtual base
3338 we set TREE_TYPE. */
3339
3340 tree
3341 finish_base_specifier (tree base, tree access, bool virtual_p)
3342 {
3343 tree result;
3344
3345 if (base == error_mark_node)
3346 {
3347 error ("invalid base-class specification");
3348 result = NULL_TREE;
3349 }
3350 else if (! MAYBE_CLASS_TYPE_P (base))
3351 {
3352 error ("%qT is not a class type", base);
3353 result = NULL_TREE;
3354 }
3355 else
3356 {
3357 if (cp_type_quals (base) != 0)
3358 {
3359 /* DR 484: Can a base-specifier name a cv-qualified
3360 class type? */
3361 base = TYPE_MAIN_VARIANT (base);
3362 }
3363 result = build_tree_list (access, base);
3364 if (virtual_p)
3365 TREE_TYPE (result) = integer_type_node;
3366 }
3367
3368 return result;
3369 }
3370
3371 /* If FNS is a member function, a set of member functions, or a
3372 template-id referring to one or more member functions, return a
3373 BASELINK for FNS, incorporating the current access context.
3374 Otherwise, return FNS unchanged. */
3375
3376 tree
3377 baselink_for_fns (tree fns)
3378 {
3379 tree scope;
3380 tree cl;
3381
3382 if (BASELINK_P (fns)
3383 || error_operand_p (fns))
3384 return fns;
3385
3386 scope = ovl_scope (fns);
3387 if (!CLASS_TYPE_P (scope))
3388 return fns;
3389
3390 cl = currently_open_derived_class (scope);
3391 if (!cl)
3392 cl = scope;
3393 cl = TYPE_BINFO (cl);
3394 return build_baselink (cl, cl, fns, /*optype=*/NULL_TREE);
3395 }
3396
3397 /* Returns true iff DECL is a variable from a function outside
3398 the current one. */
3399
3400 static bool
3401 outer_var_p (tree decl)
3402 {
3403 return ((VAR_P (decl) || TREE_CODE (decl) == PARM_DECL)
3404 && DECL_FUNCTION_SCOPE_P (decl)
3405 /* Don't get confused by temporaries. */
3406 && DECL_NAME (decl)
3407 && (DECL_CONTEXT (decl) != current_function_decl
3408 || parsing_nsdmi ()));
3409 }
3410
3411 /* As above, but also checks that DECL is automatic. */
3412
3413 bool
3414 outer_automatic_var_p (tree decl)
3415 {
3416 return (outer_var_p (decl)
3417 && !TREE_STATIC (decl));
3418 }
3419
3420 /* DECL satisfies outer_automatic_var_p. Possibly complain about it or
3421 rewrite it for lambda capture.
3422
3423 If ODR_USE is true, we're being called from mark_use, and we complain about
3424 use of constant variables. If ODR_USE is false, we're being called for the
3425 id-expression, and we do lambda capture. */
3426
3427 tree
3428 process_outer_var_ref (tree decl, tsubst_flags_t complain, bool odr_use)
3429 {
3430 if (cp_unevaluated_operand)
3431 /* It's not a use (3.2) if we're in an unevaluated context. */
3432 return decl;
3433 if (decl == error_mark_node)
3434 return decl;
3435
3436 tree context = DECL_CONTEXT (decl);
3437 tree containing_function = current_function_decl;
3438 tree lambda_stack = NULL_TREE;
3439 tree lambda_expr = NULL_TREE;
3440 tree initializer = convert_from_reference (decl);
3441
3442 /* Mark it as used now even if the use is ill-formed. */
3443 if (!mark_used (decl, complain))
3444 return error_mark_node;
3445
3446 if (parsing_nsdmi ())
3447 containing_function = NULL_TREE;
3448
3449 if (containing_function && LAMBDA_FUNCTION_P (containing_function))
3450 {
3451 /* Check whether we've already built a proxy. */
3452 tree var = decl;
3453 while (is_normal_capture_proxy (var))
3454 var = DECL_CAPTURED_VARIABLE (var);
3455 tree d = retrieve_local_specialization (var);
3456
3457 if (d && d != decl && is_capture_proxy (d))
3458 {
3459 if (DECL_CONTEXT (d) == containing_function)
3460 /* We already have an inner proxy. */
3461 return d;
3462 else
3463 /* We need to capture an outer proxy. */
3464 return process_outer_var_ref (d, complain, odr_use);
3465 }
3466 }
3467
3468 /* If we are in a lambda function, we can move out until we hit
3469 1. the context,
3470 2. a non-lambda function, or
3471 3. a non-default capturing lambda function. */
3472 while (context != containing_function
3473 /* containing_function can be null with invalid generic lambdas. */
3474 && containing_function
3475 && LAMBDA_FUNCTION_P (containing_function))
3476 {
3477 tree closure = DECL_CONTEXT (containing_function);
3478 lambda_expr = CLASSTYPE_LAMBDA_EXPR (closure);
3479
3480 if (TYPE_CLASS_SCOPE_P (closure))
3481 /* A lambda in an NSDMI (c++/64496). */
3482 break;
3483
3484 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_NONE)
3485 break;
3486
3487 lambda_stack = tree_cons (NULL_TREE, lambda_expr, lambda_stack);
3488
3489 containing_function = decl_function_context (containing_function);
3490 }
3491
3492 /* In a lambda within a template, wait until instantiation time to implicitly
3493 capture a parameter pack. We want to wait because we don't know if we're
3494 capturing the whole pack or a single element, and it's OK to wait because
3495 find_parameter_packs_r walks into the lambda body. */
3496 if (context == containing_function
3497 && DECL_PACK_P (decl))
3498 return decl;
3499
3500 if (lambda_expr && VAR_P (decl) && DECL_ANON_UNION_VAR_P (decl))
3501 {
3502 if (complain & tf_error)
3503 error ("cannot capture member %qD of anonymous union", decl);
3504 return error_mark_node;
3505 }
3506 /* Do lambda capture when processing the id-expression, not when
3507 odr-using a variable. */
3508 if (!odr_use && context == containing_function)
3509 decl = add_default_capture (lambda_stack,
3510 /*id=*/DECL_NAME (decl), initializer);
3511 /* Only an odr-use of an outer automatic variable causes an
3512 error, and a constant variable can decay to a prvalue
3513 constant without odr-use. So don't complain yet. */
3514 else if (!odr_use && decl_constant_var_p (decl))
3515 return decl;
3516 else if (lambda_expr)
3517 {
3518 if (complain & tf_error)
3519 {
3520 error ("%qD is not captured", decl);
3521 tree closure = LAMBDA_EXPR_CLOSURE (lambda_expr);
3522 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr) == CPLD_NONE)
3523 inform (location_of (closure),
3524 "the lambda has no capture-default");
3525 else if (TYPE_CLASS_SCOPE_P (closure))
3526 inform (UNKNOWN_LOCATION, "lambda in local class %q+T cannot "
3527 "capture variables from the enclosing context",
3528 TYPE_CONTEXT (closure));
3529 inform (DECL_SOURCE_LOCATION (decl), "%q#D declared here", decl);
3530 }
3531 return error_mark_node;
3532 }
3533 else
3534 {
3535 if (complain & tf_error)
3536 {
3537 error (VAR_P (decl)
3538 ? G_("use of local variable with automatic storage from "
3539 "containing function")
3540 : G_("use of parameter from containing function"));
3541 inform (DECL_SOURCE_LOCATION (decl), "%q#D declared here", decl);
3542 }
3543 return error_mark_node;
3544 }
3545 return decl;
3546 }
3547
3548 /* ID_EXPRESSION is a representation of parsed, but unprocessed,
3549 id-expression. (See cp_parser_id_expression for details.) SCOPE,
3550 if non-NULL, is the type or namespace used to explicitly qualify
3551 ID_EXPRESSION. DECL is the entity to which that name has been
3552 resolved.
3553
3554 *CONSTANT_EXPRESSION_P is true if we are presently parsing a
3555 constant-expression. In that case, *NON_CONSTANT_EXPRESSION_P will
3556 be set to true if this expression isn't permitted in a
3557 constant-expression, but it is otherwise not set by this function.
3558 *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
3559 constant-expression, but a non-constant expression is also
3560 permissible.
3561
3562 DONE is true if this expression is a complete postfix-expression;
3563 it is false if this expression is followed by '->', '[', '(', etc.
3564 ADDRESS_P is true iff this expression is the operand of '&'.
3565 TEMPLATE_P is true iff the qualified-id was of the form
3566 "A::template B". TEMPLATE_ARG_P is true iff this qualified name
3567 appears as a template argument.
3568
3569 If an error occurs, and it is the kind of error that might cause
3570 the parser to abort a tentative parse, *ERROR_MSG is filled in. It
3571 is the caller's responsibility to issue the message. *ERROR_MSG
3572 will be a string with static storage duration, so the caller need
3573 not "free" it.
3574
3575 Return an expression for the entity, after issuing appropriate
3576 diagnostics. This function is also responsible for transforming a
3577 reference to a non-static member into a COMPONENT_REF that makes
3578 the use of "this" explicit.
3579
3580 Upon return, *IDK will be filled in appropriately. */
3581 static cp_expr
3582 finish_id_expression_1 (tree id_expression,
3583 tree decl,
3584 tree scope,
3585 cp_id_kind *idk,
3586 bool integral_constant_expression_p,
3587 bool allow_non_integral_constant_expression_p,
3588 bool *non_integral_constant_expression_p,
3589 bool template_p,
3590 bool done,
3591 bool address_p,
3592 bool template_arg_p,
3593 const char **error_msg,
3594 location_t location)
3595 {
3596 decl = strip_using_decl (decl);
3597
3598 /* Initialize the output parameters. */
3599 *idk = CP_ID_KIND_NONE;
3600 *error_msg = NULL;
3601
3602 if (id_expression == error_mark_node)
3603 return error_mark_node;
3604 /* If we have a template-id, then no further lookup is
3605 required. If the template-id was for a template-class, we
3606 will sometimes have a TYPE_DECL at this point. */
3607 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3608 || TREE_CODE (decl) == TYPE_DECL)
3609 ;
3610 /* Look up the name. */
3611 else
3612 {
3613 if (decl == error_mark_node)
3614 {
3615 /* Name lookup failed. */
3616 if (scope
3617 && (!TYPE_P (scope)
3618 || (!dependent_type_p (scope)
3619 && !(identifier_p (id_expression)
3620 && IDENTIFIER_CONV_OP_P (id_expression)
3621 && dependent_type_p (TREE_TYPE (id_expression))))))
3622 {
3623 /* If the qualifying type is non-dependent (and the name
3624 does not name a conversion operator to a dependent
3625 type), issue an error. */
3626 qualified_name_lookup_error (scope, id_expression, decl, location);
3627 return error_mark_node;
3628 }
3629 else if (!scope)
3630 {
3631 /* It may be resolved via Koenig lookup. */
3632 *idk = CP_ID_KIND_UNQUALIFIED;
3633 return id_expression;
3634 }
3635 else
3636 decl = id_expression;
3637 }
3638
3639 /* Remember that the name was used in the definition of
3640 the current class so that we can check later to see if
3641 the meaning would have been different after the class
3642 was entirely defined. */
3643 if (!scope && decl != error_mark_node && identifier_p (id_expression))
3644 maybe_note_name_used_in_class (id_expression, decl);
3645
3646 /* A use in unevaluated operand might not be instantiated appropriately
3647 if tsubst_copy builds a dummy parm, or if we never instantiate a
3648 generic lambda, so mark it now. */
3649 if (processing_template_decl && cp_unevaluated_operand)
3650 mark_type_use (decl);
3651
3652 /* Disallow uses of local variables from containing functions, except
3653 within lambda-expressions. */
3654 if (outer_automatic_var_p (decl))
3655 {
3656 decl = process_outer_var_ref (decl, tf_warning_or_error);
3657 if (decl == error_mark_node)
3658 return error_mark_node;
3659 }
3660
3661 /* Also disallow uses of function parameters outside the function
3662 body, except inside an unevaluated context (i.e. decltype). */
3663 if (TREE_CODE (decl) == PARM_DECL
3664 && DECL_CONTEXT (decl) == NULL_TREE
3665 && !cp_unevaluated_operand)
3666 {
3667 *error_msg = G_("use of parameter outside function body");
3668 return error_mark_node;
3669 }
3670 }
3671
3672 /* If we didn't find anything, or what we found was a type,
3673 then this wasn't really an id-expression. */
3674 if (TREE_CODE (decl) == TEMPLATE_DECL
3675 && !DECL_FUNCTION_TEMPLATE_P (decl))
3676 {
3677 *error_msg = G_("missing template arguments");
3678 return error_mark_node;
3679 }
3680 else if (TREE_CODE (decl) == TYPE_DECL
3681 || TREE_CODE (decl) == NAMESPACE_DECL)
3682 {
3683 *error_msg = G_("expected primary-expression");
3684 return error_mark_node;
3685 }
3686
3687 /* If the name resolved to a template parameter, there is no
3688 need to look it up again later. */
3689 if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
3690 || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3691 {
3692 tree r;
3693
3694 *idk = CP_ID_KIND_NONE;
3695 if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3696 decl = TEMPLATE_PARM_DECL (decl);
3697 r = DECL_INITIAL (decl);
3698 if (CLASS_TYPE_P (TREE_TYPE (r)) && !CP_TYPE_CONST_P (TREE_TYPE (r)))
3699 {
3700 /* If the entity is a template parameter object for a template
3701 parameter of type T, the type of the expression is const T. */
3702 tree ctype = TREE_TYPE (r);
3703 ctype = cp_build_qualified_type (ctype, (cp_type_quals (ctype)
3704 | TYPE_QUAL_CONST));
3705 r = build1 (VIEW_CONVERT_EXPR, ctype, r);
3706 }
3707 r = convert_from_reference (r);
3708 if (integral_constant_expression_p
3709 && !dependent_type_p (TREE_TYPE (decl))
3710 && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r))))
3711 {
3712 if (!allow_non_integral_constant_expression_p)
3713 error ("template parameter %qD of type %qT is not allowed in "
3714 "an integral constant expression because it is not of "
3715 "integral or enumeration type", decl, TREE_TYPE (decl));
3716 *non_integral_constant_expression_p = true;
3717 }
3718 return r;
3719 }
3720 else
3721 {
3722 bool dependent_p = type_dependent_expression_p (decl);
3723
3724 /* If the declaration was explicitly qualified indicate
3725 that. The semantics of `A::f(3)' are different than
3726 `f(3)' if `f' is virtual. */
3727 *idk = (scope
3728 ? CP_ID_KIND_QUALIFIED
3729 : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3730 ? CP_ID_KIND_TEMPLATE_ID
3731 : (dependent_p
3732 ? CP_ID_KIND_UNQUALIFIED_DEPENDENT
3733 : CP_ID_KIND_UNQUALIFIED)));
3734
3735 if (dependent_p
3736 && DECL_P (decl)
3737 && any_dependent_type_attributes_p (DECL_ATTRIBUTES (decl)))
3738 /* Dependent type attributes on the decl mean that the TREE_TYPE is
3739 wrong, so just return the identifier. */
3740 return id_expression;
3741
3742 if (DECL_CLASS_TEMPLATE_P (decl))
3743 {
3744 error ("use of class template %qT as expression", decl);
3745 return error_mark_node;
3746 }
3747
3748 if (TREE_CODE (decl) == TREE_LIST)
3749 {
3750 /* Ambiguous reference to base members. */
3751 error ("request for member %qD is ambiguous in "
3752 "multiple inheritance lattice", id_expression);
3753 print_candidates (decl);
3754 return error_mark_node;
3755 }
3756
3757 /* Mark variable-like entities as used. Functions are similarly
3758 marked either below or after overload resolution. */
3759 if ((VAR_P (decl)
3760 || TREE_CODE (decl) == PARM_DECL
3761 || TREE_CODE (decl) == CONST_DECL
3762 || TREE_CODE (decl) == RESULT_DECL)
3763 && !mark_used (decl))
3764 return error_mark_node;
3765
3766 /* Only certain kinds of names are allowed in constant
3767 expression. Template parameters have already
3768 been handled above. */
3769 if (! error_operand_p (decl)
3770 && !dependent_p
3771 && integral_constant_expression_p
3772 && ! decl_constant_var_p (decl)
3773 && TREE_CODE (decl) != CONST_DECL
3774 && ! builtin_valid_in_constant_expr_p (decl))
3775 {
3776 if (!allow_non_integral_constant_expression_p)
3777 {
3778 error ("%qD cannot appear in a constant-expression", decl);
3779 return error_mark_node;
3780 }
3781 *non_integral_constant_expression_p = true;
3782 }
3783
3784 if (tree wrap = maybe_get_tls_wrapper_call (decl))
3785 /* Replace an evaluated use of the thread_local variable with
3786 a call to its wrapper. */
3787 decl = wrap;
3788 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3789 && !dependent_p
3790 && variable_template_p (TREE_OPERAND (decl, 0)))
3791 {
3792 decl = finish_template_variable (decl);
3793 mark_used (decl);
3794 decl = convert_from_reference (decl);
3795 }
3796 else if (scope)
3797 {
3798 if (TREE_CODE (decl) == SCOPE_REF)
3799 {
3800 gcc_assert (same_type_p (scope, TREE_OPERAND (decl, 0)));
3801 decl = TREE_OPERAND (decl, 1);
3802 }
3803
3804 decl = (adjust_result_of_qualified_name_lookup
3805 (decl, scope, current_nonlambda_class_type()));
3806
3807 if (TREE_CODE (decl) == FUNCTION_DECL)
3808 mark_used (decl);
3809
3810 if (TYPE_P (scope))
3811 decl = finish_qualified_id_expr (scope,
3812 decl,
3813 done,
3814 address_p,
3815 template_p,
3816 template_arg_p,
3817 tf_warning_or_error);
3818 else
3819 decl = convert_from_reference (decl);
3820 }
3821 else if (TREE_CODE (decl) == FIELD_DECL)
3822 {
3823 /* Since SCOPE is NULL here, this is an unqualified name.
3824 Access checking has been performed during name lookup
3825 already. Turn off checking to avoid duplicate errors. */
3826 push_deferring_access_checks (dk_no_check);
3827 decl = finish_non_static_data_member (decl, NULL_TREE,
3828 /*qualifying_scope=*/NULL_TREE);
3829 pop_deferring_access_checks ();
3830 }
3831 else if (is_overloaded_fn (decl))
3832 {
3833 /* We only need to look at the first function,
3834 because all the fns share the attribute we're
3835 concerned with (all member fns or all non-members). */
3836 tree first_fn = get_first_fn (decl);
3837 first_fn = STRIP_TEMPLATE (first_fn);
3838
3839 /* [basic.def.odr]: "A function whose name appears as a
3840 potentially-evaluated expression is odr-used if it is the unique
3841 lookup result".
3842
3843 But only mark it if it's a complete postfix-expression; in a call,
3844 ADL might select a different function, and we'll call mark_used in
3845 build_over_call. */
3846 if (done
3847 && !really_overloaded_fn (decl)
3848 && !mark_used (first_fn))
3849 return error_mark_node;
3850
3851 if (!template_arg_p
3852 && (TREE_CODE (first_fn) == USING_DECL
3853 || (TREE_CODE (first_fn) == FUNCTION_DECL
3854 && DECL_FUNCTION_MEMBER_P (first_fn)
3855 && !shared_member_p (decl))))
3856 {
3857 /* A set of member functions. */
3858 decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
3859 return finish_class_member_access_expr (decl, id_expression,
3860 /*template_p=*/false,
3861 tf_warning_or_error);
3862 }
3863
3864 decl = baselink_for_fns (decl);
3865 }
3866 else
3867 {
3868 if (DECL_P (decl) && DECL_NONLOCAL (decl)
3869 && DECL_CLASS_SCOPE_P (decl))
3870 {
3871 tree context = context_for_name_lookup (decl);
3872 if (context != current_class_type)
3873 {
3874 tree path = currently_open_derived_class (context);
3875 perform_or_defer_access_check (TYPE_BINFO (path),
3876 decl, decl,
3877 tf_warning_or_error);
3878 }
3879 }
3880
3881 decl = convert_from_reference (decl);
3882 }
3883 }
3884
3885 return cp_expr (decl, location);
3886 }
3887
3888 /* As per finish_id_expression_1, but adding a wrapper node
3889 around the result if needed to express LOCATION. */
3890
3891 cp_expr
3892 finish_id_expression (tree id_expression,
3893 tree decl,
3894 tree scope,
3895 cp_id_kind *idk,
3896 bool integral_constant_expression_p,
3897 bool allow_non_integral_constant_expression_p,
3898 bool *non_integral_constant_expression_p,
3899 bool template_p,
3900 bool done,
3901 bool address_p,
3902 bool template_arg_p,
3903 const char **error_msg,
3904 location_t location)
3905 {
3906 cp_expr result
3907 = finish_id_expression_1 (id_expression, decl, scope, idk,
3908 integral_constant_expression_p,
3909 allow_non_integral_constant_expression_p,
3910 non_integral_constant_expression_p,
3911 template_p, done, address_p, template_arg_p,
3912 error_msg, location);
3913 return result.maybe_add_location_wrapper ();
3914 }
3915
3916 /* Implement the __typeof keyword: Return the type of EXPR, suitable for
3917 use as a type-specifier. */
3918
3919 tree
3920 finish_typeof (tree expr)
3921 {
3922 tree type;
3923
3924 if (type_dependent_expression_p (expr))
3925 {
3926 type = cxx_make_type (TYPEOF_TYPE);
3927 TYPEOF_TYPE_EXPR (type) = expr;
3928 SET_TYPE_STRUCTURAL_EQUALITY (type);
3929
3930 return type;
3931 }
3932
3933 expr = mark_type_use (expr);
3934
3935 type = unlowered_expr_type (expr);
3936
3937 if (!type || type == unknown_type_node)
3938 {
3939 error ("type of %qE is unknown", expr);
3940 return error_mark_node;
3941 }
3942
3943 return type;
3944 }
3945
3946 /* Implement the __underlying_type keyword: Return the underlying
3947 type of TYPE, suitable for use as a type-specifier. */
3948
3949 tree
3950 finish_underlying_type (tree type)
3951 {
3952 tree underlying_type;
3953
3954 if (processing_template_decl)
3955 {
3956 underlying_type = cxx_make_type (UNDERLYING_TYPE);
3957 UNDERLYING_TYPE_TYPE (underlying_type) = type;
3958 SET_TYPE_STRUCTURAL_EQUALITY (underlying_type);
3959
3960 return underlying_type;
3961 }
3962
3963 if (!complete_type_or_else (type, NULL_TREE))
3964 return error_mark_node;
3965
3966 if (TREE_CODE (type) != ENUMERAL_TYPE)
3967 {
3968 error ("%qT is not an enumeration type", type);
3969 return error_mark_node;
3970 }
3971
3972 underlying_type = ENUM_UNDERLYING_TYPE (type);
3973
3974 /* Fixup necessary in this case because ENUM_UNDERLYING_TYPE
3975 includes TYPE_MIN_VALUE and TYPE_MAX_VALUE information.
3976 See finish_enum_value_list for details. */
3977 if (!ENUM_FIXED_UNDERLYING_TYPE_P (type))
3978 underlying_type
3979 = c_common_type_for_mode (TYPE_MODE (underlying_type),
3980 TYPE_UNSIGNED (underlying_type));
3981
3982 return underlying_type;
3983 }
3984
3985 /* Implement the __direct_bases keyword: Return the direct base classes
3986 of type. */
3987
3988 tree
3989 calculate_direct_bases (tree type, tsubst_flags_t complain)
3990 {
3991 if (!complete_type_or_maybe_complain (type, NULL_TREE, complain)
3992 || !NON_UNION_CLASS_TYPE_P (type))
3993 return make_tree_vec (0);
3994
3995 releasing_vec vector;
3996 vec<tree, va_gc> *base_binfos = BINFO_BASE_BINFOS (TYPE_BINFO (type));
3997 tree binfo;
3998 unsigned i;
3999
4000 /* Virtual bases are initialized first */
4001 for (i = 0; base_binfos->iterate (i, &binfo); i++)
4002 if (BINFO_VIRTUAL_P (binfo))
4003 vec_safe_push (vector, binfo);
4004
4005 /* Now non-virtuals */
4006 for (i = 0; base_binfos->iterate (i, &binfo); i++)
4007 if (!BINFO_VIRTUAL_P (binfo))
4008 vec_safe_push (vector, binfo);
4009
4010 tree bases_vec = make_tree_vec (vector->length ());
4011
4012 for (i = 0; i < vector->length (); ++i)
4013 TREE_VEC_ELT (bases_vec, i) = BINFO_TYPE ((*vector)[i]);
4014
4015 return bases_vec;
4016 }
4017
4018 /* Implement the __bases keyword: Return the base classes
4019 of type */
4020
4021 /* Find morally non-virtual base classes by walking binfo hierarchy */
4022 /* Virtual base classes are handled separately in finish_bases */
4023
4024 static tree
4025 dfs_calculate_bases_pre (tree binfo, void * /*data_*/)
4026 {
4027 /* Don't walk bases of virtual bases */
4028 return BINFO_VIRTUAL_P (binfo) ? dfs_skip_bases : NULL_TREE;
4029 }
4030
4031 static tree
4032 dfs_calculate_bases_post (tree binfo, void *data_)
4033 {
4034 vec<tree, va_gc> **data = ((vec<tree, va_gc> **) data_);
4035 if (!BINFO_VIRTUAL_P (binfo))
4036 vec_safe_push (*data, BINFO_TYPE (binfo));
4037 return NULL_TREE;
4038 }
4039
4040 /* Calculates the morally non-virtual base classes of a class */
4041 static vec<tree, va_gc> *
4042 calculate_bases_helper (tree type)
4043 {
4044 vec<tree, va_gc> *vector = make_tree_vector ();
4045
4046 /* Now add non-virtual base classes in order of construction */
4047 if (TYPE_BINFO (type))
4048 dfs_walk_all (TYPE_BINFO (type),
4049 dfs_calculate_bases_pre, dfs_calculate_bases_post, &vector);
4050 return vector;
4051 }
4052
4053 tree
4054 calculate_bases (tree type, tsubst_flags_t complain)
4055 {
4056 if (!complete_type_or_maybe_complain (type, NULL_TREE, complain)
4057 || !NON_UNION_CLASS_TYPE_P (type))
4058 return make_tree_vec (0);
4059
4060 releasing_vec vector;
4061 tree bases_vec = NULL_TREE;
4062 unsigned i;
4063 vec<tree, va_gc> *vbases;
4064 tree binfo;
4065
4066 /* First go through virtual base classes */
4067 for (vbases = CLASSTYPE_VBASECLASSES (type), i = 0;
4068 vec_safe_iterate (vbases, i, &binfo); i++)
4069 {
4070 releasing_vec vbase_bases
4071 = calculate_bases_helper (BINFO_TYPE (binfo));
4072 vec_safe_splice (vector, vbase_bases);
4073 }
4074
4075 /* Now for the non-virtual bases */
4076 releasing_vec nonvbases = calculate_bases_helper (type);
4077 vec_safe_splice (vector, nonvbases);
4078
4079 /* Note that during error recovery vector->length can even be zero. */
4080 if (vector->length () > 1)
4081 {
4082 /* Last element is entire class, so don't copy */
4083 bases_vec = make_tree_vec (vector->length () - 1);
4084
4085 for (i = 0; i < vector->length () - 1; ++i)
4086 TREE_VEC_ELT (bases_vec, i) = (*vector)[i];
4087 }
4088 else
4089 bases_vec = make_tree_vec (0);
4090
4091 return bases_vec;
4092 }
4093
4094 tree
4095 finish_bases (tree type, bool direct)
4096 {
4097 tree bases = NULL_TREE;
4098
4099 if (!processing_template_decl)
4100 {
4101 /* Parameter packs can only be used in templates */
4102 error ("parameter pack %<__bases%> only valid in template declaration");
4103 return error_mark_node;
4104 }
4105
4106 bases = cxx_make_type (BASES);
4107 BASES_TYPE (bases) = type;
4108 BASES_DIRECT (bases) = direct;
4109 SET_TYPE_STRUCTURAL_EQUALITY (bases);
4110
4111 return bases;
4112 }
4113
4114 /* Perform C++-specific checks for __builtin_offsetof before calling
4115 fold_offsetof. */
4116
4117 tree
4118 finish_offsetof (tree object_ptr, tree expr, location_t loc)
4119 {
4120 /* If we're processing a template, we can't finish the semantics yet.
4121 Otherwise we can fold the entire expression now. */
4122 if (processing_template_decl)
4123 {
4124 expr = build2 (OFFSETOF_EXPR, size_type_node, expr, object_ptr);
4125 SET_EXPR_LOCATION (expr, loc);
4126 return expr;
4127 }
4128
4129 if (expr == error_mark_node)
4130 return error_mark_node;
4131
4132 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
4133 {
4134 error ("cannot apply %<offsetof%> to destructor %<~%T%>",
4135 TREE_OPERAND (expr, 2));
4136 return error_mark_node;
4137 }
4138 if (FUNC_OR_METHOD_TYPE_P (TREE_TYPE (expr))
4139 || TREE_TYPE (expr) == unknown_type_node)
4140 {
4141 while (TREE_CODE (expr) == COMPONENT_REF
4142 || TREE_CODE (expr) == COMPOUND_EXPR)
4143 expr = TREE_OPERAND (expr, 1);
4144
4145 if (DECL_P (expr))
4146 {
4147 error ("cannot apply %<offsetof%> to member function %qD", expr);
4148 inform (DECL_SOURCE_LOCATION (expr), "declared here");
4149 }
4150 else
4151 error ("cannot apply %<offsetof%> to member function");
4152 return error_mark_node;
4153 }
4154 if (TREE_CODE (expr) == CONST_DECL)
4155 {
4156 error ("cannot apply %<offsetof%> to an enumerator %qD", expr);
4157 return error_mark_node;
4158 }
4159 if (REFERENCE_REF_P (expr))
4160 expr = TREE_OPERAND (expr, 0);
4161 if (!complete_type_or_else (TREE_TYPE (TREE_TYPE (object_ptr)), object_ptr))
4162 return error_mark_node;
4163 if (warn_invalid_offsetof
4164 && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (object_ptr)))
4165 && CLASSTYPE_NON_STD_LAYOUT (TREE_TYPE (TREE_TYPE (object_ptr)))
4166 && cp_unevaluated_operand == 0)
4167 warning_at (loc, OPT_Winvalid_offsetof, "%<offsetof%> within "
4168 "non-standard-layout type %qT is conditionally-supported",
4169 TREE_TYPE (TREE_TYPE (object_ptr)));
4170 return fold_offsetof (expr);
4171 }
4172
4173 /* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR. This
4174 function is broken out from the above for the benefit of the tree-ssa
4175 project. */
4176
4177 void
4178 simplify_aggr_init_expr (tree *tp)
4179 {
4180 tree aggr_init_expr = *tp;
4181
4182 /* Form an appropriate CALL_EXPR. */
4183 tree fn = AGGR_INIT_EXPR_FN (aggr_init_expr);
4184 tree slot = AGGR_INIT_EXPR_SLOT (aggr_init_expr);
4185 tree type = TREE_TYPE (slot);
4186
4187 tree call_expr;
4188 enum style_t { ctor, arg, pcc } style;
4189
4190 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
4191 style = ctor;
4192 #ifdef PCC_STATIC_STRUCT_RETURN
4193 else if (1)
4194 style = pcc;
4195 #endif
4196 else
4197 {
4198 gcc_assert (TREE_ADDRESSABLE (type));
4199 style = arg;
4200 }
4201
4202 call_expr = build_call_array_loc (input_location,
4203 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
4204 fn,
4205 aggr_init_expr_nargs (aggr_init_expr),
4206 AGGR_INIT_EXPR_ARGP (aggr_init_expr));
4207 TREE_NOTHROW (call_expr) = TREE_NOTHROW (aggr_init_expr);
4208 CALL_FROM_THUNK_P (call_expr) = AGGR_INIT_FROM_THUNK_P (aggr_init_expr);
4209 CALL_EXPR_OPERATOR_SYNTAX (call_expr)
4210 = CALL_EXPR_OPERATOR_SYNTAX (aggr_init_expr);
4211 CALL_EXPR_ORDERED_ARGS (call_expr) = CALL_EXPR_ORDERED_ARGS (aggr_init_expr);
4212 CALL_EXPR_REVERSE_ARGS (call_expr) = CALL_EXPR_REVERSE_ARGS (aggr_init_expr);
4213
4214 if (style == ctor)
4215 {
4216 /* Replace the first argument to the ctor with the address of the
4217 slot. */
4218 cxx_mark_addressable (slot);
4219 CALL_EXPR_ARG (call_expr, 0) =
4220 build1 (ADDR_EXPR, build_pointer_type (type), slot);
4221 }
4222 else if (style == arg)
4223 {
4224 /* Just mark it addressable here, and leave the rest to
4225 expand_call{,_inline}. */
4226 cxx_mark_addressable (slot);
4227 CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true;
4228 call_expr = build2 (INIT_EXPR, TREE_TYPE (call_expr), slot, call_expr);
4229 }
4230 else if (style == pcc)
4231 {
4232 /* If we're using the non-reentrant PCC calling convention, then we
4233 need to copy the returned value out of the static buffer into the
4234 SLOT. */
4235 push_deferring_access_checks (dk_no_check);
4236 call_expr = build_aggr_init (slot, call_expr,
4237 DIRECT_BIND | LOOKUP_ONLYCONVERTING,
4238 tf_warning_or_error);
4239 pop_deferring_access_checks ();
4240 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot);
4241 }
4242
4243 if (AGGR_INIT_ZERO_FIRST (aggr_init_expr))
4244 {
4245 tree init = build_zero_init (type, NULL_TREE,
4246 /*static_storage_p=*/false);
4247 init = build2 (INIT_EXPR, void_type_node, slot, init);
4248 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (call_expr),
4249 init, call_expr);
4250 }
4251
4252 *tp = call_expr;
4253 }
4254
4255 /* Emit all thunks to FN that should be emitted when FN is emitted. */
4256
4257 void
4258 emit_associated_thunks (tree fn)
4259 {
4260 /* When we use vcall offsets, we emit thunks with the virtual
4261 functions to which they thunk. The whole point of vcall offsets
4262 is so that you can know statically the entire set of thunks that
4263 will ever be needed for a given virtual function, thereby
4264 enabling you to output all the thunks with the function itself. */
4265 if (DECL_VIRTUAL_P (fn)
4266 /* Do not emit thunks for extern template instantiations. */
4267 && ! DECL_REALLY_EXTERN (fn))
4268 {
4269 tree thunk;
4270
4271 for (thunk = DECL_THUNKS (fn); thunk; thunk = DECL_CHAIN (thunk))
4272 {
4273 if (!THUNK_ALIAS (thunk))
4274 {
4275 use_thunk (thunk, /*emit_p=*/1);
4276 if (DECL_RESULT_THUNK_P (thunk))
4277 {
4278 tree probe;
4279
4280 for (probe = DECL_THUNKS (thunk);
4281 probe; probe = DECL_CHAIN (probe))
4282 use_thunk (probe, /*emit_p=*/1);
4283 }
4284 }
4285 else
4286 gcc_assert (!DECL_THUNKS (thunk));
4287 }
4288 }
4289 }
4290
4291 /* Generate RTL for FN. */
4292
4293 bool
4294 expand_or_defer_fn_1 (tree fn)
4295 {
4296 /* When the parser calls us after finishing the body of a template
4297 function, we don't really want to expand the body. */
4298 if (processing_template_decl)
4299 {
4300 /* Normally, collection only occurs in rest_of_compilation. So,
4301 if we don't collect here, we never collect junk generated
4302 during the processing of templates until we hit a
4303 non-template function. It's not safe to do this inside a
4304 nested class, though, as the parser may have local state that
4305 is not a GC root. */
4306 if (!function_depth)
4307 ggc_collect ();
4308 return false;
4309 }
4310
4311 gcc_assert (DECL_SAVED_TREE (fn));
4312
4313 /* We make a decision about linkage for these functions at the end
4314 of the compilation. Until that point, we do not want the back
4315 end to output them -- but we do want it to see the bodies of
4316 these functions so that it can inline them as appropriate. */
4317 if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
4318 {
4319 if (DECL_INTERFACE_KNOWN (fn))
4320 /* We've already made a decision as to how this function will
4321 be handled. */;
4322 else if (!at_eof)
4323 tentative_decl_linkage (fn);
4324 else
4325 import_export_decl (fn);
4326
4327 /* If the user wants us to keep all inline functions, then mark
4328 this function as needed so that finish_file will make sure to
4329 output it later. Similarly, all dllexport'd functions must
4330 be emitted; there may be callers in other DLLs. */
4331 if (DECL_DECLARED_INLINE_P (fn)
4332 && !DECL_REALLY_EXTERN (fn)
4333 && (flag_keep_inline_functions
4334 || (flag_keep_inline_dllexport
4335 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (fn)))))
4336 {
4337 mark_needed (fn);
4338 DECL_EXTERNAL (fn) = 0;
4339 }
4340 }
4341
4342 /* If this is a constructor or destructor body, we have to clone
4343 it. */
4344 if (maybe_clone_body (fn))
4345 {
4346 /* We don't want to process FN again, so pretend we've written
4347 it out, even though we haven't. */
4348 TREE_ASM_WRITTEN (fn) = 1;
4349 /* If this is a constexpr function, keep DECL_SAVED_TREE. */
4350 if (!DECL_DECLARED_CONSTEXPR_P (fn))
4351 DECL_SAVED_TREE (fn) = NULL_TREE;
4352 return false;
4353 }
4354
4355 /* There's no reason to do any of the work here if we're only doing
4356 semantic analysis; this code just generates RTL. */
4357 if (flag_syntax_only)
4358 {
4359 /* Pretend that this function has been written out so that we don't try
4360 to expand it again. */
4361 TREE_ASM_WRITTEN (fn) = 1;
4362 return false;
4363 }
4364
4365 return true;
4366 }
4367
4368 void
4369 expand_or_defer_fn (tree fn)
4370 {
4371 if (expand_or_defer_fn_1 (fn))
4372 {
4373 function_depth++;
4374
4375 /* Expand or defer, at the whim of the compilation unit manager. */
4376 cgraph_node::finalize_function (fn, function_depth > 1);
4377 emit_associated_thunks (fn);
4378
4379 function_depth--;
4380 }
4381 }
4382
4383 class nrv_data
4384 {
4385 public:
4386 nrv_data () : visited (37) {}
4387
4388 tree var;
4389 tree result;
4390 hash_table<nofree_ptr_hash <tree_node> > visited;
4391 };
4392
4393 /* Helper function for walk_tree, used by finalize_nrv below. */
4394
4395 static tree
4396 finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
4397 {
4398 struct nrv_data *dp = (struct nrv_data *)data;
4399 tree_node **slot;
4400
4401 /* No need to walk into types. There wouldn't be any need to walk into
4402 non-statements, except that we have to consider STMT_EXPRs. */
4403 if (TYPE_P (*tp))
4404 *walk_subtrees = 0;
4405 /* Change all returns to just refer to the RESULT_DECL; this is a nop,
4406 but differs from using NULL_TREE in that it indicates that we care
4407 about the value of the RESULT_DECL. */
4408 else if (TREE_CODE (*tp) == RETURN_EXPR)
4409 TREE_OPERAND (*tp, 0) = dp->result;
4410 /* Change all cleanups for the NRV to only run when an exception is
4411 thrown. */
4412 else if (TREE_CODE (*tp) == CLEANUP_STMT
4413 && CLEANUP_DECL (*tp) == dp->var)
4414 CLEANUP_EH_ONLY (*tp) = 1;
4415 /* Replace the DECL_EXPR for the NRV with an initialization of the
4416 RESULT_DECL, if needed. */
4417 else if (TREE_CODE (*tp) == DECL_EXPR
4418 && DECL_EXPR_DECL (*tp) == dp->var)
4419 {
4420 tree init;
4421 if (DECL_INITIAL (dp->var)
4422 && DECL_INITIAL (dp->var) != error_mark_node)
4423 init = build2 (INIT_EXPR, void_type_node, dp->result,
4424 DECL_INITIAL (dp->var));
4425 else
4426 init = build_empty_stmt (EXPR_LOCATION (*tp));
4427 DECL_INITIAL (dp->var) = NULL_TREE;
4428 SET_EXPR_LOCATION (init, EXPR_LOCATION (*tp));
4429 *tp = init;
4430 }
4431 /* And replace all uses of the NRV with the RESULT_DECL. */
4432 else if (*tp == dp->var)
4433 *tp = dp->result;
4434
4435 /* Avoid walking into the same tree more than once. Unfortunately, we
4436 can't just use walk_tree_without duplicates because it would only call
4437 us for the first occurrence of dp->var in the function body. */
4438 slot = dp->visited.find_slot (*tp, INSERT);
4439 if (*slot)
4440 *walk_subtrees = 0;
4441 else
4442 *slot = *tp;
4443
4444 /* Keep iterating. */
4445 return NULL_TREE;
4446 }
4447
4448 /* Called from finish_function to implement the named return value
4449 optimization by overriding all the RETURN_EXPRs and pertinent
4450 CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
4451 RESULT_DECL for the function. */
4452
4453 void
4454 finalize_nrv (tree *tp, tree var, tree result)
4455 {
4456 struct nrv_data data;
4457
4458 /* Copy name from VAR to RESULT. */
4459 DECL_NAME (result) = DECL_NAME (var);
4460 /* Don't forget that we take its address. */
4461 TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
4462 /* Finally set DECL_VALUE_EXPR to avoid assigning
4463 a stack slot at -O0 for the original var and debug info
4464 uses RESULT location for VAR. */
4465 SET_DECL_VALUE_EXPR (var, result);
4466 DECL_HAS_VALUE_EXPR_P (var) = 1;
4467
4468 data.var = var;
4469 data.result = result;
4470 cp_walk_tree (tp, finalize_nrv_r, &data, 0);
4471 }
4472 \f
4473 /* Create CP_OMP_CLAUSE_INFO for clause C. Returns true if it is invalid. */
4474
4475 bool
4476 cxx_omp_create_clause_info (tree c, tree type, bool need_default_ctor,
4477 bool need_copy_ctor, bool need_copy_assignment,
4478 bool need_dtor)
4479 {
4480 int save_errorcount = errorcount;
4481 tree info, t;
4482
4483 /* Always allocate 3 elements for simplicity. These are the
4484 function decls for the ctor, dtor, and assignment op.
4485 This layout is known to the three lang hooks,
4486 cxx_omp_clause_default_init, cxx_omp_clause_copy_init,
4487 and cxx_omp_clause_assign_op. */
4488 info = make_tree_vec (3);
4489 CP_OMP_CLAUSE_INFO (c) = info;
4490
4491 if (need_default_ctor || need_copy_ctor)
4492 {
4493 if (need_default_ctor)
4494 t = get_default_ctor (type);
4495 else
4496 t = get_copy_ctor (type, tf_warning_or_error);
4497
4498 if (t && !trivial_fn_p (t))
4499 TREE_VEC_ELT (info, 0) = t;
4500 }
4501
4502 if (need_dtor && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4503 TREE_VEC_ELT (info, 1) = get_dtor (type, tf_warning_or_error);
4504
4505 if (need_copy_assignment)
4506 {
4507 t = get_copy_assign (type);
4508
4509 if (t && !trivial_fn_p (t))
4510 TREE_VEC_ELT (info, 2) = t;
4511 }
4512
4513 return errorcount != save_errorcount;
4514 }
4515
4516 /* If DECL is DECL_OMP_PRIVATIZED_MEMBER, return corresponding
4517 FIELD_DECL, otherwise return DECL itself. */
4518
4519 static tree
4520 omp_clause_decl_field (tree decl)
4521 {
4522 if (VAR_P (decl)
4523 && DECL_HAS_VALUE_EXPR_P (decl)
4524 && DECL_ARTIFICIAL (decl)
4525 && DECL_LANG_SPECIFIC (decl)
4526 && DECL_OMP_PRIVATIZED_MEMBER (decl))
4527 {
4528 tree f = DECL_VALUE_EXPR (decl);
4529 if (INDIRECT_REF_P (f))
4530 f = TREE_OPERAND (f, 0);
4531 if (TREE_CODE (f) == COMPONENT_REF)
4532 {
4533 f = TREE_OPERAND (f, 1);
4534 gcc_assert (TREE_CODE (f) == FIELD_DECL);
4535 return f;
4536 }
4537 }
4538 return NULL_TREE;
4539 }
4540
4541 /* Adjust DECL if needed for printing using %qE. */
4542
4543 static tree
4544 omp_clause_printable_decl (tree decl)
4545 {
4546 tree t = omp_clause_decl_field (decl);
4547 if (t)
4548 return t;
4549 return decl;
4550 }
4551
4552 /* For a FIELD_DECL F and corresponding DECL_OMP_PRIVATIZED_MEMBER
4553 VAR_DECL T that doesn't need a DECL_EXPR added, record it for
4554 privatization. */
4555
4556 static void
4557 omp_note_field_privatization (tree f, tree t)
4558 {
4559 if (!omp_private_member_map)
4560 omp_private_member_map = new hash_map<tree, tree>;
4561 tree &v = omp_private_member_map->get_or_insert (f);
4562 if (v == NULL_TREE)
4563 {
4564 v = t;
4565 omp_private_member_vec.safe_push (f);
4566 /* Signal that we don't want to create DECL_EXPR for this dummy var. */
4567 omp_private_member_vec.safe_push (integer_zero_node);
4568 }
4569 }
4570
4571 /* Privatize FIELD_DECL T, return corresponding DECL_OMP_PRIVATIZED_MEMBER
4572 dummy VAR_DECL. */
4573
4574 tree
4575 omp_privatize_field (tree t, bool shared)
4576 {
4577 tree m = finish_non_static_data_member (t, NULL_TREE, NULL_TREE);
4578 if (m == error_mark_node)
4579 return error_mark_node;
4580 if (!omp_private_member_map && !shared)
4581 omp_private_member_map = new hash_map<tree, tree>;
4582 if (TYPE_REF_P (TREE_TYPE (t)))
4583 {
4584 gcc_assert (INDIRECT_REF_P (m));
4585 m = TREE_OPERAND (m, 0);
4586 }
4587 tree vb = NULL_TREE;
4588 tree &v = shared ? vb : omp_private_member_map->get_or_insert (t);
4589 if (v == NULL_TREE)
4590 {
4591 v = create_temporary_var (TREE_TYPE (m));
4592 retrofit_lang_decl (v);
4593 DECL_OMP_PRIVATIZED_MEMBER (v) = 1;
4594 SET_DECL_VALUE_EXPR (v, m);
4595 DECL_HAS_VALUE_EXPR_P (v) = 1;
4596 if (!shared)
4597 omp_private_member_vec.safe_push (t);
4598 }
4599 return v;
4600 }
4601
4602 /* Helper function for handle_omp_array_sections. Called recursively
4603 to handle multiple array-section-subscripts. C is the clause,
4604 T current expression (initially OMP_CLAUSE_DECL), which is either
4605 a TREE_LIST for array-section-subscript (TREE_PURPOSE is low-bound
4606 expression if specified, TREE_VALUE length expression if specified,
4607 TREE_CHAIN is what it has been specified after, or some decl.
4608 TYPES vector is populated with array section types, MAYBE_ZERO_LEN
4609 set to true if any of the array-section-subscript could have length
4610 of zero (explicit or implicit), FIRST_NON_ONE is the index of the
4611 first array-section-subscript which is known not to have length
4612 of one. Given say:
4613 map(a[:b][2:1][:c][:2][:d][e:f][2:5])
4614 FIRST_NON_ONE will be 3, array-section-subscript [:b], [2:1] and [:c]
4615 all are or may have length of 1, array-section-subscript [:2] is the
4616 first one known not to have length 1. For array-section-subscript
4617 <= FIRST_NON_ONE we diagnose non-contiguous arrays if low bound isn't
4618 0 or length isn't the array domain max + 1, for > FIRST_NON_ONE we
4619 can if MAYBE_ZERO_LEN is false. MAYBE_ZERO_LEN will be true in the above
4620 case though, as some lengths could be zero. */
4621
4622 static tree
4623 handle_omp_array_sections_1 (tree c, tree t, vec<tree> &types,
4624 bool &maybe_zero_len, unsigned int &first_non_one,
4625 enum c_omp_region_type ort)
4626 {
4627 tree ret, low_bound, length, type;
4628 if (TREE_CODE (t) != TREE_LIST)
4629 {
4630 if (error_operand_p (t))
4631 return error_mark_node;
4632 if (REFERENCE_REF_P (t)
4633 && TREE_CODE (TREE_OPERAND (t, 0)) == COMPONENT_REF)
4634 t = TREE_OPERAND (t, 0);
4635 ret = t;
4636 if (TREE_CODE (t) == COMPONENT_REF
4637 && ort == C_ORT_OMP
4638 && (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
4639 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_TO
4640 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FROM)
4641 && !type_dependent_expression_p (t))
4642 {
4643 if (TREE_CODE (TREE_OPERAND (t, 1)) == FIELD_DECL
4644 && DECL_BIT_FIELD (TREE_OPERAND (t, 1)))
4645 {
4646 error_at (OMP_CLAUSE_LOCATION (c),
4647 "bit-field %qE in %qs clause",
4648 t, omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4649 return error_mark_node;
4650 }
4651 while (TREE_CODE (t) == COMPONENT_REF)
4652 {
4653 if (TREE_TYPE (TREE_OPERAND (t, 0))
4654 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == UNION_TYPE)
4655 {
4656 error_at (OMP_CLAUSE_LOCATION (c),
4657 "%qE is a member of a union", t);
4658 return error_mark_node;
4659 }
4660 t = TREE_OPERAND (t, 0);
4661 }
4662 if (REFERENCE_REF_P (t))
4663 t = TREE_OPERAND (t, 0);
4664 }
4665 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL)
4666 {
4667 if (processing_template_decl && TREE_CODE (t) != OVERLOAD)
4668 return NULL_TREE;
4669 if (DECL_P (t))
4670 error_at (OMP_CLAUSE_LOCATION (c),
4671 "%qD is not a variable in %qs clause", t,
4672 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4673 else
4674 error_at (OMP_CLAUSE_LOCATION (c),
4675 "%qE is not a variable in %qs clause", t,
4676 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4677 return error_mark_node;
4678 }
4679 else if (ort == C_ORT_OMP
4680 && TREE_CODE (t) == PARM_DECL
4681 && DECL_ARTIFICIAL (t)
4682 && DECL_NAME (t) == this_identifier)
4683 {
4684 error_at (OMP_CLAUSE_LOCATION (c),
4685 "%<this%> allowed in OpenMP only in %<declare simd%>"
4686 " clauses");
4687 return error_mark_node;
4688 }
4689 else if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
4690 && VAR_P (t) && CP_DECL_THREAD_LOCAL_P (t))
4691 {
4692 error_at (OMP_CLAUSE_LOCATION (c),
4693 "%qD is threadprivate variable in %qs clause", t,
4694 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4695 return error_mark_node;
4696 }
4697 if (type_dependent_expression_p (ret))
4698 return NULL_TREE;
4699 ret = convert_from_reference (ret);
4700 return ret;
4701 }
4702
4703 if (ort == C_ORT_OMP
4704 && (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
4705 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IN_REDUCTION
4706 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_TASK_REDUCTION)
4707 && TREE_CODE (TREE_CHAIN (t)) == FIELD_DECL)
4708 TREE_CHAIN (t) = omp_privatize_field (TREE_CHAIN (t), false);
4709 ret = handle_omp_array_sections_1 (c, TREE_CHAIN (t), types,
4710 maybe_zero_len, first_non_one, ort);
4711 if (ret == error_mark_node || ret == NULL_TREE)
4712 return ret;
4713
4714 type = TREE_TYPE (ret);
4715 low_bound = TREE_PURPOSE (t);
4716 length = TREE_VALUE (t);
4717 if ((low_bound && type_dependent_expression_p (low_bound))
4718 || (length && type_dependent_expression_p (length)))
4719 return NULL_TREE;
4720
4721 if (low_bound == error_mark_node || length == error_mark_node)
4722 return error_mark_node;
4723
4724 if (low_bound && !INTEGRAL_TYPE_P (TREE_TYPE (low_bound)))
4725 {
4726 error_at (OMP_CLAUSE_LOCATION (c),
4727 "low bound %qE of array section does not have integral type",
4728 low_bound);
4729 return error_mark_node;
4730 }
4731 if (length && !INTEGRAL_TYPE_P (TREE_TYPE (length)))
4732 {
4733 error_at (OMP_CLAUSE_LOCATION (c),
4734 "length %qE of array section does not have integral type",
4735 length);
4736 return error_mark_node;
4737 }
4738 if (low_bound)
4739 low_bound = mark_rvalue_use (low_bound);
4740 if (length)
4741 length = mark_rvalue_use (length);
4742 /* We need to reduce to real constant-values for checks below. */
4743 if (length)
4744 length = fold_simple (length);
4745 if (low_bound)
4746 low_bound = fold_simple (low_bound);
4747 if (low_bound
4748 && TREE_CODE (low_bound) == INTEGER_CST
4749 && TYPE_PRECISION (TREE_TYPE (low_bound))
4750 > TYPE_PRECISION (sizetype))
4751 low_bound = fold_convert (sizetype, low_bound);
4752 if (length
4753 && TREE_CODE (length) == INTEGER_CST
4754 && TYPE_PRECISION (TREE_TYPE (length))
4755 > TYPE_PRECISION (sizetype))
4756 length = fold_convert (sizetype, length);
4757 if (low_bound == NULL_TREE)
4758 low_bound = integer_zero_node;
4759
4760 if (length != NULL_TREE)
4761 {
4762 if (!integer_nonzerop (length))
4763 {
4764 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND
4765 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
4766 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IN_REDUCTION
4767 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_TASK_REDUCTION)
4768 {
4769 if (integer_zerop (length))
4770 {
4771 error_at (OMP_CLAUSE_LOCATION (c),
4772 "zero length array section in %qs clause",
4773 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4774 return error_mark_node;
4775 }
4776 }
4777 else
4778 maybe_zero_len = true;
4779 }
4780 if (first_non_one == types.length ()
4781 && (TREE_CODE (length) != INTEGER_CST || integer_onep (length)))
4782 first_non_one++;
4783 }
4784 if (TREE_CODE (type) == ARRAY_TYPE)
4785 {
4786 if (length == NULL_TREE
4787 && (TYPE_DOMAIN (type) == NULL_TREE
4788 || TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE))
4789 {
4790 error_at (OMP_CLAUSE_LOCATION (c),
4791 "for unknown bound array type length expression must "
4792 "be specified");
4793 return error_mark_node;
4794 }
4795 if (TREE_CODE (low_bound) == INTEGER_CST
4796 && tree_int_cst_sgn (low_bound) == -1)
4797 {
4798 error_at (OMP_CLAUSE_LOCATION (c),
4799 "negative low bound in array section in %qs clause",
4800 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4801 return error_mark_node;
4802 }
4803 if (length != NULL_TREE
4804 && TREE_CODE (length) == INTEGER_CST
4805 && tree_int_cst_sgn (length) == -1)
4806 {
4807 error_at (OMP_CLAUSE_LOCATION (c),
4808 "negative length in array section in %qs clause",
4809 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4810 return error_mark_node;
4811 }
4812 if (TYPE_DOMAIN (type)
4813 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
4814 && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
4815 == INTEGER_CST)
4816 {
4817 tree size
4818 = fold_convert (sizetype, TYPE_MAX_VALUE (TYPE_DOMAIN (type)));
4819 size = size_binop (PLUS_EXPR, size, size_one_node);
4820 if (TREE_CODE (low_bound) == INTEGER_CST)
4821 {
4822 if (tree_int_cst_lt (size, low_bound))
4823 {
4824 error_at (OMP_CLAUSE_LOCATION (c),
4825 "low bound %qE above array section size "
4826 "in %qs clause", low_bound,
4827 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4828 return error_mark_node;
4829 }
4830 if (tree_int_cst_equal (size, low_bound))
4831 {
4832 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND
4833 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
4834 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IN_REDUCTION
4835 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_TASK_REDUCTION)
4836 {
4837 error_at (OMP_CLAUSE_LOCATION (c),
4838 "zero length array section in %qs clause",
4839 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4840 return error_mark_node;
4841 }
4842 maybe_zero_len = true;
4843 }
4844 else if (length == NULL_TREE
4845 && first_non_one == types.length ()
4846 && tree_int_cst_equal
4847 (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
4848 low_bound))
4849 first_non_one++;
4850 }
4851 else if (length == NULL_TREE)
4852 {
4853 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
4854 && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_REDUCTION
4855 && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_IN_REDUCTION
4856 && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_TASK_REDUCTION)
4857 maybe_zero_len = true;
4858 if (first_non_one == types.length ())
4859 first_non_one++;
4860 }
4861 if (length && TREE_CODE (length) == INTEGER_CST)
4862 {
4863 if (tree_int_cst_lt (size, length))
4864 {
4865 error_at (OMP_CLAUSE_LOCATION (c),
4866 "length %qE above array section size "
4867 "in %qs clause", length,
4868 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4869 return error_mark_node;
4870 }
4871 if (TREE_CODE (low_bound) == INTEGER_CST)
4872 {
4873 tree lbpluslen
4874 = size_binop (PLUS_EXPR,
4875 fold_convert (sizetype, low_bound),
4876 fold_convert (sizetype, length));
4877 if (TREE_CODE (lbpluslen) == INTEGER_CST
4878 && tree_int_cst_lt (size, lbpluslen))
4879 {
4880 error_at (OMP_CLAUSE_LOCATION (c),
4881 "high bound %qE above array section size "
4882 "in %qs clause", lbpluslen,
4883 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4884 return error_mark_node;
4885 }
4886 }
4887 }
4888 }
4889 else if (length == NULL_TREE)
4890 {
4891 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
4892 && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_REDUCTION
4893 && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_IN_REDUCTION
4894 && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_TASK_REDUCTION)
4895 maybe_zero_len = true;
4896 if (first_non_one == types.length ())
4897 first_non_one++;
4898 }
4899
4900 /* For [lb:] we will need to evaluate lb more than once. */
4901 if (length == NULL_TREE && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND)
4902 {
4903 tree lb = cp_save_expr (low_bound);
4904 if (lb != low_bound)
4905 {
4906 TREE_PURPOSE (t) = lb;
4907 low_bound = lb;
4908 }
4909 }
4910 }
4911 else if (TYPE_PTR_P (type))
4912 {
4913 if (length == NULL_TREE)
4914 {
4915 error_at (OMP_CLAUSE_LOCATION (c),
4916 "for pointer type length expression must be specified");
4917 return error_mark_node;
4918 }
4919 if (length != NULL_TREE
4920 && TREE_CODE (length) == INTEGER_CST
4921 && tree_int_cst_sgn (length) == -1)
4922 {
4923 error_at (OMP_CLAUSE_LOCATION (c),
4924 "negative length in array section in %qs clause",
4925 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4926 return error_mark_node;
4927 }
4928 /* If there is a pointer type anywhere but in the very first
4929 array-section-subscript, the array section can't be contiguous. */
4930 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
4931 && TREE_CODE (TREE_CHAIN (t)) == TREE_LIST)
4932 {
4933 error_at (OMP_CLAUSE_LOCATION (c),
4934 "array section is not contiguous in %qs clause",
4935 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4936 return error_mark_node;
4937 }
4938 }
4939 else
4940 {
4941 error_at (OMP_CLAUSE_LOCATION (c),
4942 "%qE does not have pointer or array type", ret);
4943 return error_mark_node;
4944 }
4945 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND)
4946 types.safe_push (TREE_TYPE (ret));
4947 /* We will need to evaluate lb more than once. */
4948 tree lb = cp_save_expr (low_bound);
4949 if (lb != low_bound)
4950 {
4951 TREE_PURPOSE (t) = lb;
4952 low_bound = lb;
4953 }
4954 ret = grok_array_decl (OMP_CLAUSE_LOCATION (c), ret, low_bound, false);
4955 return ret;
4956 }
4957
4958 /* Handle array sections for clause C. */
4959
4960 static bool
4961 handle_omp_array_sections (tree c, enum c_omp_region_type ort)
4962 {
4963 bool maybe_zero_len = false;
4964 unsigned int first_non_one = 0;
4965 auto_vec<tree, 10> types;
4966 tree *tp = &OMP_CLAUSE_DECL (c);
4967 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND
4968 && TREE_CODE (*tp) == TREE_LIST
4969 && TREE_PURPOSE (*tp)
4970 && TREE_CODE (TREE_PURPOSE (*tp)) == TREE_VEC)
4971 tp = &TREE_VALUE (*tp);
4972 tree first = handle_omp_array_sections_1 (c, *tp, types,
4973 maybe_zero_len, first_non_one,
4974 ort);
4975 if (first == error_mark_node)
4976 return true;
4977 if (first == NULL_TREE)
4978 return false;
4979 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND)
4980 {
4981 tree t = *tp;
4982 tree tem = NULL_TREE;
4983 if (processing_template_decl)
4984 return false;
4985 /* Need to evaluate side effects in the length expressions
4986 if any. */
4987 while (TREE_CODE (t) == TREE_LIST)
4988 {
4989 if (TREE_VALUE (t) && TREE_SIDE_EFFECTS (TREE_VALUE (t)))
4990 {
4991 if (tem == NULL_TREE)
4992 tem = TREE_VALUE (t);
4993 else
4994 tem = build2 (COMPOUND_EXPR, TREE_TYPE (tem),
4995 TREE_VALUE (t), tem);
4996 }
4997 t = TREE_CHAIN (t);
4998 }
4999 if (tem)
5000 first = build2 (COMPOUND_EXPR, TREE_TYPE (first), tem, first);
5001 *tp = first;
5002 }
5003 else
5004 {
5005 unsigned int num = types.length (), i;
5006 tree t, side_effects = NULL_TREE, size = NULL_TREE;
5007 tree condition = NULL_TREE;
5008
5009 if (int_size_in_bytes (TREE_TYPE (first)) <= 0)
5010 maybe_zero_len = true;
5011 if (processing_template_decl && maybe_zero_len)
5012 return false;
5013
5014 for (i = num, t = OMP_CLAUSE_DECL (c); i > 0;
5015 t = TREE_CHAIN (t))
5016 {
5017 tree low_bound = TREE_PURPOSE (t);
5018 tree length = TREE_VALUE (t);
5019
5020 i--;
5021 if (low_bound
5022 && TREE_CODE (low_bound) == INTEGER_CST
5023 && TYPE_PRECISION (TREE_TYPE (low_bound))
5024 > TYPE_PRECISION (sizetype))
5025 low_bound = fold_convert (sizetype, low_bound);
5026 if (length
5027 && TREE_CODE (length) == INTEGER_CST
5028 && TYPE_PRECISION (TREE_TYPE (length))
5029 > TYPE_PRECISION (sizetype))
5030 length = fold_convert (sizetype, length);
5031 if (low_bound == NULL_TREE)
5032 low_bound = integer_zero_node;
5033 if (!maybe_zero_len && i > first_non_one)
5034 {
5035 if (integer_nonzerop (low_bound))
5036 goto do_warn_noncontiguous;
5037 if (length != NULL_TREE
5038 && TREE_CODE (length) == INTEGER_CST
5039 && TYPE_DOMAIN (types[i])
5040 && TYPE_MAX_VALUE (TYPE_DOMAIN (types[i]))
5041 && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])))
5042 == INTEGER_CST)
5043 {
5044 tree size;
5045 size = size_binop (PLUS_EXPR,
5046 TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])),
5047 size_one_node);
5048 if (!tree_int_cst_equal (length, size))
5049 {
5050 do_warn_noncontiguous:
5051 error_at (OMP_CLAUSE_LOCATION (c),
5052 "array section is not contiguous in %qs "
5053 "clause",
5054 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5055 return true;
5056 }
5057 }
5058 if (!processing_template_decl
5059 && length != NULL_TREE
5060 && TREE_SIDE_EFFECTS (length))
5061 {
5062 if (side_effects == NULL_TREE)
5063 side_effects = length;
5064 else
5065 side_effects = build2 (COMPOUND_EXPR,
5066 TREE_TYPE (side_effects),
5067 length, side_effects);
5068 }
5069 }
5070 else if (processing_template_decl)
5071 continue;
5072 else
5073 {
5074 tree l;
5075
5076 if (i > first_non_one
5077 && ((length && integer_nonzerop (length))
5078 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
5079 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IN_REDUCTION
5080 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_TASK_REDUCTION))
5081 continue;
5082 if (length)
5083 l = fold_convert (sizetype, length);
5084 else
5085 {
5086 l = size_binop (PLUS_EXPR,
5087 TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])),
5088 size_one_node);
5089 l = size_binop (MINUS_EXPR, l,
5090 fold_convert (sizetype, low_bound));
5091 }
5092 if (i > first_non_one)
5093 {
5094 l = fold_build2 (NE_EXPR, boolean_type_node, l,
5095 size_zero_node);
5096 if (condition == NULL_TREE)
5097 condition = l;
5098 else
5099 condition = fold_build2 (BIT_AND_EXPR, boolean_type_node,
5100 l, condition);
5101 }
5102 else if (size == NULL_TREE)
5103 {
5104 size = size_in_bytes (TREE_TYPE (types[i]));
5105 tree eltype = TREE_TYPE (types[num - 1]);
5106 while (TREE_CODE (eltype) == ARRAY_TYPE)
5107 eltype = TREE_TYPE (eltype);
5108 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
5109 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IN_REDUCTION
5110 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_TASK_REDUCTION)
5111 size = size_binop (EXACT_DIV_EXPR, size,
5112 size_in_bytes (eltype));
5113 size = size_binop (MULT_EXPR, size, l);
5114 if (condition)
5115 size = fold_build3 (COND_EXPR, sizetype, condition,
5116 size, size_zero_node);
5117 }
5118 else
5119 size = size_binop (MULT_EXPR, size, l);
5120 }
5121 }
5122 if (!processing_template_decl)
5123 {
5124 if (side_effects)
5125 size = build2 (COMPOUND_EXPR, sizetype, side_effects, size);
5126 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
5127 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IN_REDUCTION
5128 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_TASK_REDUCTION)
5129 {
5130 size = size_binop (MINUS_EXPR, size, size_one_node);
5131 size = save_expr (size);
5132 tree index_type = build_index_type (size);
5133 tree eltype = TREE_TYPE (first);
5134 while (TREE_CODE (eltype) == ARRAY_TYPE)
5135 eltype = TREE_TYPE (eltype);
5136 tree type = build_array_type (eltype, index_type);
5137 tree ptype = build_pointer_type (eltype);
5138 if (TYPE_REF_P (TREE_TYPE (t))
5139 && INDIRECT_TYPE_P (TREE_TYPE (TREE_TYPE (t))))
5140 t = convert_from_reference (t);
5141 else if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5142 t = build_fold_addr_expr (t);
5143 tree t2 = build_fold_addr_expr (first);
5144 t2 = fold_convert_loc (OMP_CLAUSE_LOCATION (c),
5145 ptrdiff_type_node, t2);
5146 t2 = fold_build2_loc (OMP_CLAUSE_LOCATION (c), MINUS_EXPR,
5147 ptrdiff_type_node, t2,
5148 fold_convert_loc (OMP_CLAUSE_LOCATION (c),
5149 ptrdiff_type_node, t));
5150 if (tree_fits_shwi_p (t2))
5151 t = build2 (MEM_REF, type, t,
5152 build_int_cst (ptype, tree_to_shwi (t2)));
5153 else
5154 {
5155 t2 = fold_convert_loc (OMP_CLAUSE_LOCATION (c),
5156 sizetype, t2);
5157 t = build2_loc (OMP_CLAUSE_LOCATION (c), POINTER_PLUS_EXPR,
5158 TREE_TYPE (t), t, t2);
5159 t = build2 (MEM_REF, type, t, build_int_cst (ptype, 0));
5160 }
5161 OMP_CLAUSE_DECL (c) = t;
5162 return false;
5163 }
5164 OMP_CLAUSE_DECL (c) = first;
5165 OMP_CLAUSE_SIZE (c) = size;
5166 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP
5167 || (TREE_CODE (t) == COMPONENT_REF
5168 && TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE))
5169 return false;
5170 if (ort == C_ORT_OMP || ort == C_ORT_ACC)
5171 switch (OMP_CLAUSE_MAP_KIND (c))
5172 {
5173 case GOMP_MAP_ALLOC:
5174 case GOMP_MAP_TO:
5175 case GOMP_MAP_FROM:
5176 case GOMP_MAP_TOFROM:
5177 case GOMP_MAP_ALWAYS_TO:
5178 case GOMP_MAP_ALWAYS_FROM:
5179 case GOMP_MAP_ALWAYS_TOFROM:
5180 case GOMP_MAP_RELEASE:
5181 case GOMP_MAP_DELETE:
5182 case GOMP_MAP_FORCE_TO:
5183 case GOMP_MAP_FORCE_FROM:
5184 case GOMP_MAP_FORCE_TOFROM:
5185 case GOMP_MAP_FORCE_PRESENT:
5186 OMP_CLAUSE_MAP_MAYBE_ZERO_LENGTH_ARRAY_SECTION (c) = 1;
5187 break;
5188 default:
5189 break;
5190 }
5191 tree c2 = build_omp_clause (OMP_CLAUSE_LOCATION (c),
5192 OMP_CLAUSE_MAP);
5193 if ((ort & C_ORT_OMP_DECLARE_SIMD) != C_ORT_OMP && ort != C_ORT_ACC)
5194 OMP_CLAUSE_SET_MAP_KIND (c2, GOMP_MAP_POINTER);
5195 else if (TREE_CODE (t) == COMPONENT_REF)
5196 OMP_CLAUSE_SET_MAP_KIND (c2, GOMP_MAP_ALWAYS_POINTER);
5197 else if (REFERENCE_REF_P (t)
5198 && TREE_CODE (TREE_OPERAND (t, 0)) == COMPONENT_REF)
5199 {
5200 t = TREE_OPERAND (t, 0);
5201 OMP_CLAUSE_SET_MAP_KIND (c2, GOMP_MAP_ALWAYS_POINTER);
5202 }
5203 else
5204 OMP_CLAUSE_SET_MAP_KIND (c2, GOMP_MAP_FIRSTPRIVATE_POINTER);
5205 if (OMP_CLAUSE_MAP_KIND (c2) != GOMP_MAP_FIRSTPRIVATE_POINTER
5206 && !cxx_mark_addressable (t))
5207 return false;
5208 OMP_CLAUSE_DECL (c2) = t;
5209 t = build_fold_addr_expr (first);
5210 t = fold_convert_loc (OMP_CLAUSE_LOCATION (c),
5211 ptrdiff_type_node, t);
5212 tree ptr = OMP_CLAUSE_DECL (c2);
5213 ptr = convert_from_reference (ptr);
5214 if (!INDIRECT_TYPE_P (TREE_TYPE (ptr)))
5215 ptr = build_fold_addr_expr (ptr);
5216 t = fold_build2_loc (OMP_CLAUSE_LOCATION (c), MINUS_EXPR,
5217 ptrdiff_type_node, t,
5218 fold_convert_loc (OMP_CLAUSE_LOCATION (c),
5219 ptrdiff_type_node, ptr));
5220 OMP_CLAUSE_SIZE (c2) = t;
5221 OMP_CLAUSE_CHAIN (c2) = OMP_CLAUSE_CHAIN (c);
5222 OMP_CLAUSE_CHAIN (c) = c2;
5223 ptr = OMP_CLAUSE_DECL (c2);
5224 if (OMP_CLAUSE_MAP_KIND (c2) != GOMP_MAP_FIRSTPRIVATE_POINTER
5225 && TYPE_REF_P (TREE_TYPE (ptr))
5226 && INDIRECT_TYPE_P (TREE_TYPE (TREE_TYPE (ptr))))
5227 {
5228 tree c3 = build_omp_clause (OMP_CLAUSE_LOCATION (c),
5229 OMP_CLAUSE_MAP);
5230 OMP_CLAUSE_SET_MAP_KIND (c3, OMP_CLAUSE_MAP_KIND (c2));
5231 OMP_CLAUSE_DECL (c3) = ptr;
5232 if (OMP_CLAUSE_MAP_KIND (c2) == GOMP_MAP_ALWAYS_POINTER)
5233 OMP_CLAUSE_DECL (c2) = build_simple_mem_ref (ptr);
5234 else
5235 OMP_CLAUSE_DECL (c2) = convert_from_reference (ptr);
5236 OMP_CLAUSE_SIZE (c3) = size_zero_node;
5237 OMP_CLAUSE_CHAIN (c3) = OMP_CLAUSE_CHAIN (c2);
5238 OMP_CLAUSE_CHAIN (c2) = c3;
5239 }
5240 }
5241 }
5242 return false;
5243 }
5244
5245 /* Return identifier to look up for omp declare reduction. */
5246
5247 tree
5248 omp_reduction_id (enum tree_code reduction_code, tree reduction_id, tree type)
5249 {
5250 const char *p = NULL;
5251 const char *m = NULL;
5252 switch (reduction_code)
5253 {
5254 case PLUS_EXPR:
5255 case MULT_EXPR:
5256 case MINUS_EXPR:
5257 case BIT_AND_EXPR:
5258 case BIT_XOR_EXPR:
5259 case BIT_IOR_EXPR:
5260 case TRUTH_ANDIF_EXPR:
5261 case TRUTH_ORIF_EXPR:
5262 reduction_id = ovl_op_identifier (false, reduction_code);
5263 break;
5264 case MIN_EXPR:
5265 p = "min";
5266 break;
5267 case MAX_EXPR:
5268 p = "max";
5269 break;
5270 default:
5271 break;
5272 }
5273
5274 if (p == NULL)
5275 {
5276 if (TREE_CODE (reduction_id) != IDENTIFIER_NODE)
5277 return error_mark_node;
5278 p = IDENTIFIER_POINTER (reduction_id);
5279 }
5280
5281 if (type != NULL_TREE)
5282 m = mangle_type_string (TYPE_MAIN_VARIANT (type));
5283
5284 const char prefix[] = "omp declare reduction ";
5285 size_t lenp = sizeof (prefix);
5286 if (strncmp (p, prefix, lenp - 1) == 0)
5287 lenp = 1;
5288 size_t len = strlen (p);
5289 size_t lenm = m ? strlen (m) + 1 : 0;
5290 char *name = XALLOCAVEC (char, lenp + len + lenm);
5291 if (lenp > 1)
5292 memcpy (name, prefix, lenp - 1);
5293 memcpy (name + lenp - 1, p, len + 1);
5294 if (m)
5295 {
5296 name[lenp + len - 1] = '~';
5297 memcpy (name + lenp + len, m, lenm);
5298 }
5299 return get_identifier (name);
5300 }
5301
5302 /* Lookup OpenMP UDR ID for TYPE, return the corresponding artificial
5303 FUNCTION_DECL or NULL_TREE if not found. */
5304
5305 static tree
5306 omp_reduction_lookup (location_t loc, tree id, tree type, tree *baselinkp,
5307 vec<tree> *ambiguousp)
5308 {
5309 tree orig_id = id;
5310 tree baselink = NULL_TREE;
5311 if (identifier_p (id))
5312 {
5313 cp_id_kind idk;
5314 bool nonint_cst_expression_p;
5315 const char *error_msg;
5316 id = omp_reduction_id (ERROR_MARK, id, type);
5317 tree decl = lookup_name (id);
5318 if (decl == NULL_TREE)
5319 decl = error_mark_node;
5320 id = finish_id_expression (id, decl, NULL_TREE, &idk, false, true,
5321 &nonint_cst_expression_p, false, true, false,
5322 false, &error_msg, loc);
5323 if (idk == CP_ID_KIND_UNQUALIFIED
5324 && identifier_p (id))
5325 {
5326 vec<tree, va_gc> *args = NULL;
5327 vec_safe_push (args, build_reference_type (type));
5328 id = perform_koenig_lookup (id, args, tf_none);
5329 }
5330 }
5331 else if (TREE_CODE (id) == SCOPE_REF)
5332 id = lookup_qualified_name (TREE_OPERAND (id, 0),
5333 omp_reduction_id (ERROR_MARK,
5334 TREE_OPERAND (id, 1),
5335 type),
5336 false, false);
5337 tree fns = id;
5338 id = NULL_TREE;
5339 if (fns && is_overloaded_fn (fns))
5340 {
5341 for (lkp_iterator iter (get_fns (fns)); iter; ++iter)
5342 {
5343 tree fndecl = *iter;
5344 if (TREE_CODE (fndecl) == FUNCTION_DECL)
5345 {
5346 tree argtype = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
5347 if (same_type_p (TREE_TYPE (argtype), type))
5348 {
5349 id = fndecl;
5350 break;
5351 }
5352 }
5353 }
5354
5355 if (id && BASELINK_P (fns))
5356 {
5357 if (baselinkp)
5358 *baselinkp = fns;
5359 else
5360 baselink = fns;
5361 }
5362 }
5363
5364 if (!id && CLASS_TYPE_P (type) && TYPE_BINFO (type))
5365 {
5366 vec<tree> ambiguous = vNULL;
5367 tree binfo = TYPE_BINFO (type), base_binfo, ret = NULL_TREE;
5368 unsigned int ix;
5369 if (ambiguousp == NULL)
5370 ambiguousp = &ambiguous;
5371 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
5372 {
5373 id = omp_reduction_lookup (loc, orig_id, BINFO_TYPE (base_binfo),
5374 baselinkp ? baselinkp : &baselink,
5375 ambiguousp);
5376 if (id == NULL_TREE)
5377 continue;
5378 if (!ambiguousp->is_empty ())
5379 ambiguousp->safe_push (id);
5380 else if (ret != NULL_TREE)
5381 {
5382 ambiguousp->safe_push (ret);
5383 ambiguousp->safe_push (id);
5384 ret = NULL_TREE;
5385 }
5386 else
5387 ret = id;
5388 }
5389 if (ambiguousp != &ambiguous)
5390 return ret;
5391 if (!ambiguous.is_empty ())
5392 {
5393 const char *str = _("candidates are:");
5394 unsigned int idx;
5395 tree udr;
5396 error_at (loc, "user defined reduction lookup is ambiguous");
5397 FOR_EACH_VEC_ELT (ambiguous, idx, udr)
5398 {
5399 inform (DECL_SOURCE_LOCATION (udr), "%s %#qD", str, udr);
5400 if (idx == 0)
5401 str = get_spaces (str);
5402 }
5403 ambiguous.release ();
5404 ret = error_mark_node;
5405 baselink = NULL_TREE;
5406 }
5407 id = ret;
5408 }
5409 if (id && baselink)
5410 perform_or_defer_access_check (BASELINK_BINFO (baselink),
5411 id, id, tf_warning_or_error);
5412 return id;
5413 }
5414
5415 /* Helper function for cp_parser_omp_declare_reduction_exprs
5416 and tsubst_omp_udr.
5417 Remove CLEANUP_STMT for data (omp_priv variable).
5418 Also append INIT_EXPR for DECL_INITIAL of omp_priv after its
5419 DECL_EXPR. */
5420
5421 tree
5422 cp_remove_omp_priv_cleanup_stmt (tree *tp, int *walk_subtrees, void *data)
5423 {
5424 if (TYPE_P (*tp))
5425 *walk_subtrees = 0;
5426 else if (TREE_CODE (*tp) == CLEANUP_STMT && CLEANUP_DECL (*tp) == (tree) data)
5427 *tp = CLEANUP_BODY (*tp);
5428 else if (TREE_CODE (*tp) == DECL_EXPR)
5429 {
5430 tree decl = DECL_EXPR_DECL (*tp);
5431 if (!processing_template_decl
5432 && decl == (tree) data
5433 && DECL_INITIAL (decl)
5434 && DECL_INITIAL (decl) != error_mark_node)
5435 {
5436 tree list = NULL_TREE;
5437 append_to_statement_list_force (*tp, &list);
5438 tree init_expr = build2 (INIT_EXPR, void_type_node,
5439 decl, DECL_INITIAL (decl));
5440 DECL_INITIAL (decl) = NULL_TREE;
5441 append_to_statement_list_force (init_expr, &list);
5442 *tp = list;
5443 }
5444 }
5445 return NULL_TREE;
5446 }
5447
5448 /* Data passed from cp_check_omp_declare_reduction to
5449 cp_check_omp_declare_reduction_r. */
5450
5451 struct cp_check_omp_declare_reduction_data
5452 {
5453 location_t loc;
5454 tree stmts[7];
5455 bool combiner_p;
5456 };
5457
5458 /* Helper function for cp_check_omp_declare_reduction, called via
5459 cp_walk_tree. */
5460
5461 static tree
5462 cp_check_omp_declare_reduction_r (tree *tp, int *, void *data)
5463 {
5464 struct cp_check_omp_declare_reduction_data *udr_data
5465 = (struct cp_check_omp_declare_reduction_data *) data;
5466 if (SSA_VAR_P (*tp)
5467 && !DECL_ARTIFICIAL (*tp)
5468 && *tp != DECL_EXPR_DECL (udr_data->stmts[udr_data->combiner_p ? 0 : 3])
5469 && *tp != DECL_EXPR_DECL (udr_data->stmts[udr_data->combiner_p ? 1 : 4]))
5470 {
5471 location_t loc = udr_data->loc;
5472 if (udr_data->combiner_p)
5473 error_at (loc, "%<#pragma omp declare reduction%> combiner refers to "
5474 "variable %qD which is not %<omp_out%> nor %<omp_in%>",
5475 *tp);
5476 else
5477 error_at (loc, "%<#pragma omp declare reduction%> initializer refers "
5478 "to variable %qD which is not %<omp_priv%> nor "
5479 "%<omp_orig%>",
5480 *tp);
5481 return *tp;
5482 }
5483 return NULL_TREE;
5484 }
5485
5486 /* Diagnose violation of OpenMP #pragma omp declare reduction restrictions. */
5487
5488 void
5489 cp_check_omp_declare_reduction (tree udr)
5490 {
5491 tree type = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (udr)));
5492 gcc_assert (TYPE_REF_P (type));
5493 type = TREE_TYPE (type);
5494 int i;
5495 location_t loc = DECL_SOURCE_LOCATION (udr);
5496
5497 if (type == error_mark_node)
5498 return;
5499 if (ARITHMETIC_TYPE_P (type))
5500 {
5501 static enum tree_code predef_codes[]
5502 = { PLUS_EXPR, MULT_EXPR, MINUS_EXPR, BIT_AND_EXPR, BIT_XOR_EXPR,
5503 BIT_IOR_EXPR, TRUTH_ANDIF_EXPR, TRUTH_ORIF_EXPR };
5504 for (i = 0; i < 8; i++)
5505 {
5506 tree id = omp_reduction_id (predef_codes[i], NULL_TREE, NULL_TREE);
5507 const char *n1 = IDENTIFIER_POINTER (DECL_NAME (udr));
5508 const char *n2 = IDENTIFIER_POINTER (id);
5509 if (strncmp (n1, n2, IDENTIFIER_LENGTH (id)) == 0
5510 && (n1[IDENTIFIER_LENGTH (id)] == '~'
5511 || n1[IDENTIFIER_LENGTH (id)] == '\0'))
5512 break;
5513 }
5514
5515 if (i == 8
5516 && TREE_CODE (type) != COMPLEX_EXPR)
5517 {
5518 const char prefix_minmax[] = "omp declare reduction m";
5519 size_t prefix_size = sizeof (prefix_minmax) - 1;
5520 const char *n = IDENTIFIER_POINTER (DECL_NAME (udr));
5521 if (strncmp (IDENTIFIER_POINTER (DECL_NAME (udr)),
5522 prefix_minmax, prefix_size) == 0
5523 && ((n[prefix_size] == 'i' && n[prefix_size + 1] == 'n')
5524 || (n[prefix_size] == 'a' && n[prefix_size + 1] == 'x'))
5525 && (n[prefix_size + 2] == '~' || n[prefix_size + 2] == '\0'))
5526 i = 0;
5527 }
5528 if (i < 8)
5529 {
5530 error_at (loc, "predeclared arithmetic type %qT in "
5531 "%<#pragma omp declare reduction%>", type);
5532 return;
5533 }
5534 }
5535 else if (FUNC_OR_METHOD_TYPE_P (type)
5536 || TREE_CODE (type) == ARRAY_TYPE)
5537 {
5538 error_at (loc, "function or array type %qT in "
5539 "%<#pragma omp declare reduction%>", type);
5540 return;
5541 }
5542 else if (TYPE_REF_P (type))
5543 {
5544 error_at (loc, "reference type %qT in %<#pragma omp declare reduction%>",
5545 type);
5546 return;
5547 }
5548 else if (TYPE_QUALS_NO_ADDR_SPACE (type))
5549 {
5550 error_at (loc, "%<const%>, %<volatile%> or %<__restrict%>-qualified "
5551 "type %qT in %<#pragma omp declare reduction%>", type);
5552 return;
5553 }
5554
5555 tree body = DECL_SAVED_TREE (udr);
5556 if (body == NULL_TREE || TREE_CODE (body) != STATEMENT_LIST)
5557 return;
5558
5559 tree_stmt_iterator tsi;
5560 struct cp_check_omp_declare_reduction_data data;
5561 memset (data.stmts, 0, sizeof data.stmts);
5562 for (i = 0, tsi = tsi_start (body);
5563 i < 7 && !tsi_end_p (tsi);
5564 i++, tsi_next (&tsi))
5565 data.stmts[i] = tsi_stmt (tsi);
5566 data.loc = loc;
5567 gcc_assert (tsi_end_p (tsi));
5568 if (i >= 3)
5569 {
5570 gcc_assert (TREE_CODE (data.stmts[0]) == DECL_EXPR
5571 && TREE_CODE (data.stmts[1]) == DECL_EXPR);
5572 if (TREE_NO_WARNING (DECL_EXPR_DECL (data.stmts[0])))
5573 return;
5574 data.combiner_p = true;
5575 if (cp_walk_tree (&data.stmts[2], cp_check_omp_declare_reduction_r,
5576 &data, NULL))
5577 TREE_NO_WARNING (DECL_EXPR_DECL (data.stmts[0])) = 1;
5578 }
5579 if (i >= 6)
5580 {
5581 gcc_assert (TREE_CODE (data.stmts[3]) == DECL_EXPR
5582 && TREE_CODE (data.stmts[4]) == DECL_EXPR);
5583 data.combiner_p = false;
5584 if (cp_walk_tree (&data.stmts[5], cp_check_omp_declare_reduction_r,
5585 &data, NULL)
5586 || cp_walk_tree (&DECL_INITIAL (DECL_EXPR_DECL (data.stmts[3])),
5587 cp_check_omp_declare_reduction_r, &data, NULL))
5588 TREE_NO_WARNING (DECL_EXPR_DECL (data.stmts[0])) = 1;
5589 if (i == 7)
5590 gcc_assert (TREE_CODE (data.stmts[6]) == DECL_EXPR);
5591 }
5592 }
5593
5594 /* Helper function of finish_omp_clauses. Clone STMT as if we were making
5595 an inline call. But, remap
5596 the OMP_DECL1 VAR_DECL (omp_out resp. omp_orig) to PLACEHOLDER
5597 and OMP_DECL2 VAR_DECL (omp_in resp. omp_priv) to DECL. */
5598
5599 static tree
5600 clone_omp_udr (tree stmt, tree omp_decl1, tree omp_decl2,
5601 tree decl, tree placeholder)
5602 {
5603 copy_body_data id;
5604 hash_map<tree, tree> decl_map;
5605
5606 decl_map.put (omp_decl1, placeholder);
5607 decl_map.put (omp_decl2, decl);
5608 memset (&id, 0, sizeof (id));
5609 id.src_fn = DECL_CONTEXT (omp_decl1);
5610 id.dst_fn = current_function_decl;
5611 id.src_cfun = DECL_STRUCT_FUNCTION (id.src_fn);
5612 id.decl_map = &decl_map;
5613
5614 id.copy_decl = copy_decl_no_change;
5615 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5616 id.transform_new_cfg = true;
5617 id.transform_return_to_modify = false;
5618 id.transform_lang_insert_block = NULL;
5619 id.eh_lp_nr = 0;
5620 walk_tree (&stmt, copy_tree_body_r, &id, NULL);
5621 return stmt;
5622 }
5623
5624 /* Helper function of finish_omp_clauses, called via cp_walk_tree.
5625 Find OMP_CLAUSE_PLACEHOLDER (passed in DATA) in *TP. */
5626
5627 static tree
5628 find_omp_placeholder_r (tree *tp, int *, void *data)
5629 {
5630 if (*tp == (tree) data)
5631 return *tp;
5632 return NULL_TREE;
5633 }
5634
5635 /* Helper function of finish_omp_clauses. Handle OMP_CLAUSE_REDUCTION C.
5636 Return true if there is some error and the clause should be removed. */
5637
5638 static bool
5639 finish_omp_reduction_clause (tree c, bool *need_default_ctor, bool *need_dtor)
5640 {
5641 tree t = OMP_CLAUSE_DECL (c);
5642 bool predefined = false;
5643 if (TREE_CODE (t) == TREE_LIST)
5644 {
5645 gcc_assert (processing_template_decl);
5646 return false;
5647 }
5648 tree type = TREE_TYPE (t);
5649 if (TREE_CODE (t) == MEM_REF)
5650 type = TREE_TYPE (type);
5651 if (TYPE_REF_P (type))
5652 type = TREE_TYPE (type);
5653 if (TREE_CODE (type) == ARRAY_TYPE)
5654 {
5655 tree oatype = type;
5656 gcc_assert (TREE_CODE (t) != MEM_REF);
5657 while (TREE_CODE (type) == ARRAY_TYPE)
5658 type = TREE_TYPE (type);
5659 if (!processing_template_decl)
5660 {
5661 t = require_complete_type (t);
5662 if (t == error_mark_node)
5663 return true;
5664 tree size = size_binop (EXACT_DIV_EXPR, TYPE_SIZE_UNIT (oatype),
5665 TYPE_SIZE_UNIT (type));
5666 if (integer_zerop (size))
5667 {
5668 error_at (OMP_CLAUSE_LOCATION (c),
5669 "%qE in %<reduction%> clause is a zero size array",
5670 omp_clause_printable_decl (t));
5671 return true;
5672 }
5673 size = size_binop (MINUS_EXPR, size, size_one_node);
5674 size = save_expr (size);
5675 tree index_type = build_index_type (size);
5676 tree atype = build_array_type (type, index_type);
5677 tree ptype = build_pointer_type (type);
5678 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5679 t = build_fold_addr_expr (t);
5680 t = build2 (MEM_REF, atype, t, build_int_cst (ptype, 0));
5681 OMP_CLAUSE_DECL (c) = t;
5682 }
5683 }
5684 if (type == error_mark_node)
5685 return true;
5686 else if (ARITHMETIC_TYPE_P (type))
5687 switch (OMP_CLAUSE_REDUCTION_CODE (c))
5688 {
5689 case PLUS_EXPR:
5690 case MULT_EXPR:
5691 case MINUS_EXPR:
5692 predefined = true;
5693 break;
5694 case MIN_EXPR:
5695 case MAX_EXPR:
5696 if (TREE_CODE (type) == COMPLEX_TYPE)
5697 break;
5698 predefined = true;
5699 break;
5700 case BIT_AND_EXPR:
5701 case BIT_IOR_EXPR:
5702 case BIT_XOR_EXPR:
5703 if (FLOAT_TYPE_P (type) || TREE_CODE (type) == COMPLEX_TYPE)
5704 break;
5705 predefined = true;
5706 break;
5707 case TRUTH_ANDIF_EXPR:
5708 case TRUTH_ORIF_EXPR:
5709 if (FLOAT_TYPE_P (type))
5710 break;
5711 predefined = true;
5712 break;
5713 default:
5714 break;
5715 }
5716 else if (TYPE_READONLY (type))
5717 {
5718 error_at (OMP_CLAUSE_LOCATION (c),
5719 "%qE has const type for %<reduction%>",
5720 omp_clause_printable_decl (t));
5721 return true;
5722 }
5723 else if (!processing_template_decl)
5724 {
5725 t = require_complete_type (t);
5726 if (t == error_mark_node)
5727 return true;
5728 OMP_CLAUSE_DECL (c) = t;
5729 }
5730
5731 if (predefined)
5732 {
5733 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = NULL_TREE;
5734 return false;
5735 }
5736 else if (processing_template_decl)
5737 {
5738 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) == error_mark_node)
5739 return true;
5740 return false;
5741 }
5742
5743 tree id = OMP_CLAUSE_REDUCTION_PLACEHOLDER (c);
5744
5745 type = TYPE_MAIN_VARIANT (type);
5746 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = NULL_TREE;
5747 if (id == NULL_TREE)
5748 id = omp_reduction_id (OMP_CLAUSE_REDUCTION_CODE (c),
5749 NULL_TREE, NULL_TREE);
5750 id = omp_reduction_lookup (OMP_CLAUSE_LOCATION (c), id, type, NULL, NULL);
5751 if (id)
5752 {
5753 if (id == error_mark_node)
5754 return true;
5755 mark_used (id);
5756 tree body = DECL_SAVED_TREE (id);
5757 if (!body)
5758 return true;
5759 if (TREE_CODE (body) == STATEMENT_LIST)
5760 {
5761 tree_stmt_iterator tsi;
5762 tree placeholder = NULL_TREE, decl_placeholder = NULL_TREE;
5763 int i;
5764 tree stmts[7];
5765 tree atype = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (id)));
5766 atype = TREE_TYPE (atype);
5767 bool need_static_cast = !same_type_p (type, atype);
5768 memset (stmts, 0, sizeof stmts);
5769 for (i = 0, tsi = tsi_start (body);
5770 i < 7 && !tsi_end_p (tsi);
5771 i++, tsi_next (&tsi))
5772 stmts[i] = tsi_stmt (tsi);
5773 gcc_assert (tsi_end_p (tsi));
5774
5775 if (i >= 3)
5776 {
5777 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
5778 && TREE_CODE (stmts[1]) == DECL_EXPR);
5779 placeholder = build_lang_decl (VAR_DECL, NULL_TREE, type);
5780 DECL_ARTIFICIAL (placeholder) = 1;
5781 DECL_IGNORED_P (placeholder) = 1;
5782 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = placeholder;
5783 if (TREE_CODE (t) == MEM_REF)
5784 {
5785 decl_placeholder = build_lang_decl (VAR_DECL, NULL_TREE,
5786 type);
5787 DECL_ARTIFICIAL (decl_placeholder) = 1;
5788 DECL_IGNORED_P (decl_placeholder) = 1;
5789 OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER (c) = decl_placeholder;
5790 }
5791 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[0])))
5792 cxx_mark_addressable (placeholder);
5793 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[1]))
5794 && (decl_placeholder
5795 || !TYPE_REF_P (TREE_TYPE (OMP_CLAUSE_DECL (c)))))
5796 cxx_mark_addressable (decl_placeholder ? decl_placeholder
5797 : OMP_CLAUSE_DECL (c));
5798 tree omp_out = placeholder;
5799 tree omp_in = decl_placeholder ? decl_placeholder
5800 : convert_from_reference (OMP_CLAUSE_DECL (c));
5801 if (need_static_cast)
5802 {
5803 tree rtype = build_reference_type (atype);
5804 omp_out = build_static_cast (rtype, omp_out,
5805 tf_warning_or_error);
5806 omp_in = build_static_cast (rtype, omp_in,
5807 tf_warning_or_error);
5808 if (omp_out == error_mark_node || omp_in == error_mark_node)
5809 return true;
5810 omp_out = convert_from_reference (omp_out);
5811 omp_in = convert_from_reference (omp_in);
5812 }
5813 OMP_CLAUSE_REDUCTION_MERGE (c)
5814 = clone_omp_udr (stmts[2], DECL_EXPR_DECL (stmts[0]),
5815 DECL_EXPR_DECL (stmts[1]), omp_in, omp_out);
5816 }
5817 if (i >= 6)
5818 {
5819 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
5820 && TREE_CODE (stmts[4]) == DECL_EXPR);
5821 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[3]))
5822 && (decl_placeholder
5823 || !TYPE_REF_P (TREE_TYPE (OMP_CLAUSE_DECL (c)))))
5824 cxx_mark_addressable (decl_placeholder ? decl_placeholder
5825 : OMP_CLAUSE_DECL (c));
5826 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[4])))
5827 cxx_mark_addressable (placeholder);
5828 tree omp_priv = decl_placeholder ? decl_placeholder
5829 : convert_from_reference (OMP_CLAUSE_DECL (c));
5830 tree omp_orig = placeholder;
5831 if (need_static_cast)
5832 {
5833 if (i == 7)
5834 {
5835 error_at (OMP_CLAUSE_LOCATION (c),
5836 "user defined reduction with constructor "
5837 "initializer for base class %qT", atype);
5838 return true;
5839 }
5840 tree rtype = build_reference_type (atype);
5841 omp_priv = build_static_cast (rtype, omp_priv,
5842 tf_warning_or_error);
5843 omp_orig = build_static_cast (rtype, omp_orig,
5844 tf_warning_or_error);
5845 if (omp_priv == error_mark_node
5846 || omp_orig == error_mark_node)
5847 return true;
5848 omp_priv = convert_from_reference (omp_priv);
5849 omp_orig = convert_from_reference (omp_orig);
5850 }
5851 if (i == 6)
5852 *need_default_ctor = true;
5853 OMP_CLAUSE_REDUCTION_INIT (c)
5854 = clone_omp_udr (stmts[5], DECL_EXPR_DECL (stmts[4]),
5855 DECL_EXPR_DECL (stmts[3]),
5856 omp_priv, omp_orig);
5857 if (cp_walk_tree (&OMP_CLAUSE_REDUCTION_INIT (c),
5858 find_omp_placeholder_r, placeholder, NULL))
5859 OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c) = 1;
5860 }
5861 else if (i >= 3)
5862 {
5863 if (CLASS_TYPE_P (type) && !pod_type_p (type))
5864 *need_default_ctor = true;
5865 else
5866 {
5867 tree init;
5868 tree v = decl_placeholder ? decl_placeholder
5869 : convert_from_reference (t);
5870 if (AGGREGATE_TYPE_P (TREE_TYPE (v)))
5871 init = build_constructor (TREE_TYPE (v), NULL);
5872 else
5873 init = fold_convert (TREE_TYPE (v), integer_zero_node);
5874 OMP_CLAUSE_REDUCTION_INIT (c)
5875 = build2 (INIT_EXPR, TREE_TYPE (v), v, init);
5876 }
5877 }
5878 }
5879 }
5880 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5881 *need_dtor = true;
5882 else
5883 {
5884 error_at (OMP_CLAUSE_LOCATION (c),
5885 "user defined reduction not found for %qE",
5886 omp_clause_printable_decl (t));
5887 return true;
5888 }
5889 if (TREE_CODE (OMP_CLAUSE_DECL (c)) == MEM_REF)
5890 gcc_assert (TYPE_SIZE_UNIT (type)
5891 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST);
5892 return false;
5893 }
5894
5895 /* Called from finish_struct_1. linear(this) or linear(this:step)
5896 clauses might not be finalized yet because the class has been incomplete
5897 when parsing #pragma omp declare simd methods. Fix those up now. */
5898
5899 void
5900 finish_omp_declare_simd_methods (tree t)
5901 {
5902 if (processing_template_decl)
5903 return;
5904
5905 for (tree x = TYPE_FIELDS (t); x; x = DECL_CHAIN (x))
5906 {
5907 if (TREE_CODE (x) == USING_DECL
5908 || !DECL_NONSTATIC_MEMBER_FUNCTION_P (x))
5909 continue;
5910 tree ods = lookup_attribute ("omp declare simd", DECL_ATTRIBUTES (x));
5911 if (!ods || !TREE_VALUE (ods))
5912 continue;
5913 for (tree c = TREE_VALUE (TREE_VALUE (ods)); c; c = OMP_CLAUSE_CHAIN (c))
5914 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR
5915 && integer_zerop (OMP_CLAUSE_DECL (c))
5916 && OMP_CLAUSE_LINEAR_STEP (c)
5917 && TYPE_PTR_P (TREE_TYPE (OMP_CLAUSE_LINEAR_STEP (c))))
5918 {
5919 tree s = OMP_CLAUSE_LINEAR_STEP (c);
5920 s = fold_convert_loc (OMP_CLAUSE_LOCATION (c), sizetype, s);
5921 s = fold_build2_loc (OMP_CLAUSE_LOCATION (c), MULT_EXPR,
5922 sizetype, s, TYPE_SIZE_UNIT (t));
5923 OMP_CLAUSE_LINEAR_STEP (c) = s;
5924 }
5925 }
5926 }
5927
5928 /* Adjust sink depend clause to take into account pointer offsets.
5929
5930 Return TRUE if there was a problem processing the offset, and the
5931 whole clause should be removed. */
5932
5933 static bool
5934 cp_finish_omp_clause_depend_sink (tree sink_clause)
5935 {
5936 tree t = OMP_CLAUSE_DECL (sink_clause);
5937 gcc_assert (TREE_CODE (t) == TREE_LIST);
5938
5939 /* Make sure we don't adjust things twice for templates. */
5940 if (processing_template_decl)
5941 return false;
5942
5943 for (; t; t = TREE_CHAIN (t))
5944 {
5945 tree decl = TREE_VALUE (t);
5946 if (TYPE_PTR_P (TREE_TYPE (decl)))
5947 {
5948 tree offset = TREE_PURPOSE (t);
5949 bool neg = wi::neg_p (wi::to_wide (offset));
5950 offset = fold_unary (ABS_EXPR, TREE_TYPE (offset), offset);
5951 decl = mark_rvalue_use (decl);
5952 decl = convert_from_reference (decl);
5953 tree t2 = pointer_int_sum (OMP_CLAUSE_LOCATION (sink_clause),
5954 neg ? MINUS_EXPR : PLUS_EXPR,
5955 decl, offset);
5956 t2 = fold_build2_loc (OMP_CLAUSE_LOCATION (sink_clause),
5957 MINUS_EXPR, sizetype,
5958 fold_convert (sizetype, t2),
5959 fold_convert (sizetype, decl));
5960 if (t2 == error_mark_node)
5961 return true;
5962 TREE_PURPOSE (t) = t2;
5963 }
5964 }
5965 return false;
5966 }
5967
5968 /* Finish OpenMP iterators ITER. Return true if they are errorneous
5969 and clauses containing them should be removed. */
5970
5971 static bool
5972 cp_omp_finish_iterators (tree iter)
5973 {
5974 bool ret = false;
5975 for (tree it = iter; it; it = TREE_CHAIN (it))
5976 {
5977 tree var = TREE_VEC_ELT (it, 0);
5978 tree begin = TREE_VEC_ELT (it, 1);
5979 tree end = TREE_VEC_ELT (it, 2);
5980 tree step = TREE_VEC_ELT (it, 3);
5981 tree orig_step;
5982 tree type = TREE_TYPE (var);
5983 location_t loc = DECL_SOURCE_LOCATION (var);
5984 if (type == error_mark_node)
5985 {
5986 ret = true;
5987 continue;
5988 }
5989 if (type_dependent_expression_p (var))
5990 continue;
5991 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
5992 {
5993 error_at (loc, "iterator %qD has neither integral nor pointer type",
5994 var);
5995 ret = true;
5996 continue;
5997 }
5998 else if (TYPE_READONLY (type))
5999 {
6000 error_at (loc, "iterator %qD has const qualified type", var);
6001 ret = true;
6002 continue;
6003 }
6004 if (type_dependent_expression_p (begin)
6005 || type_dependent_expression_p (end)
6006 || type_dependent_expression_p (step))
6007 continue;
6008 else if (error_operand_p (step))
6009 {
6010 ret = true;
6011 continue;
6012 }
6013 else if (!INTEGRAL_TYPE_P (TREE_TYPE (step)))
6014 {
6015 error_at (EXPR_LOC_OR_LOC (step, loc),
6016 "iterator step with non-integral type");
6017 ret = true;
6018 continue;
6019 }
6020
6021 begin = mark_rvalue_use (begin);
6022 end = mark_rvalue_use (end);
6023 step = mark_rvalue_use (step);
6024 begin = cp_build_c_cast (type, begin, tf_warning_or_error);
6025 end = cp_build_c_cast (type, end, tf_warning_or_error);
6026 orig_step = step;
6027 if (!processing_template_decl)
6028 step = orig_step = save_expr (step);
6029 tree stype = POINTER_TYPE_P (type) ? sizetype : type;
6030 step = cp_build_c_cast (stype, step, tf_warning_or_error);
6031 if (POINTER_TYPE_P (type) && !processing_template_decl)
6032 {
6033 begin = save_expr (begin);
6034 step = pointer_int_sum (loc, PLUS_EXPR, begin, step);
6035 step = fold_build2_loc (loc, MINUS_EXPR, sizetype,
6036 fold_convert (sizetype, step),
6037 fold_convert (sizetype, begin));
6038 step = fold_convert (ssizetype, step);
6039 }
6040 if (!processing_template_decl)
6041 {
6042 begin = maybe_constant_value (begin);
6043 end = maybe_constant_value (end);
6044 step = maybe_constant_value (step);
6045 orig_step = maybe_constant_value (orig_step);
6046 }
6047 if (integer_zerop (step))
6048 {
6049 error_at (loc, "iterator %qD has zero step", var);
6050 ret = true;
6051 continue;
6052 }
6053
6054 if (begin == error_mark_node
6055 || end == error_mark_node
6056 || step == error_mark_node
6057 || orig_step == error_mark_node)
6058 {
6059 ret = true;
6060 continue;
6061 }
6062
6063 if (!processing_template_decl)
6064 {
6065 begin = fold_build_cleanup_point_expr (TREE_TYPE (begin), begin);
6066 end = fold_build_cleanup_point_expr (TREE_TYPE (end), end);
6067 step = fold_build_cleanup_point_expr (TREE_TYPE (step), step);
6068 orig_step = fold_build_cleanup_point_expr (TREE_TYPE (orig_step),
6069 orig_step);
6070 }
6071 hash_set<tree> pset;
6072 tree it2;
6073 for (it2 = TREE_CHAIN (it); it2; it2 = TREE_CHAIN (it2))
6074 {
6075 tree var2 = TREE_VEC_ELT (it2, 0);
6076 tree begin2 = TREE_VEC_ELT (it2, 1);
6077 tree end2 = TREE_VEC_ELT (it2, 2);
6078 tree step2 = TREE_VEC_ELT (it2, 3);
6079 location_t loc2 = DECL_SOURCE_LOCATION (var2);
6080 if (cp_walk_tree (&begin2, find_omp_placeholder_r, var, &pset))
6081 {
6082 error_at (EXPR_LOC_OR_LOC (begin2, loc2),
6083 "begin expression refers to outer iterator %qD", var);
6084 break;
6085 }
6086 else if (cp_walk_tree (&end2, find_omp_placeholder_r, var, &pset))
6087 {
6088 error_at (EXPR_LOC_OR_LOC (end2, loc2),
6089 "end expression refers to outer iterator %qD", var);
6090 break;
6091 }
6092 else if (cp_walk_tree (&step2, find_omp_placeholder_r, var, &pset))
6093 {
6094 error_at (EXPR_LOC_OR_LOC (step2, loc2),
6095 "step expression refers to outer iterator %qD", var);
6096 break;
6097 }
6098 }
6099 if (it2)
6100 {
6101 ret = true;
6102 continue;
6103 }
6104 TREE_VEC_ELT (it, 1) = begin;
6105 TREE_VEC_ELT (it, 2) = end;
6106 if (processing_template_decl)
6107 TREE_VEC_ELT (it, 3) = orig_step;
6108 else
6109 {
6110 TREE_VEC_ELT (it, 3) = step;
6111 TREE_VEC_ELT (it, 4) = orig_step;
6112 }
6113 }
6114 return ret;
6115 }
6116
6117 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
6118 Remove any elements from the list that are invalid. */
6119
6120 tree
6121 finish_omp_clauses (tree clauses, enum c_omp_region_type ort)
6122 {
6123 bitmap_head generic_head, firstprivate_head, lastprivate_head;
6124 bitmap_head aligned_head, map_head, map_field_head, oacc_reduction_head;
6125 tree c, t, *pc;
6126 tree safelen = NULL_TREE;
6127 bool branch_seen = false;
6128 bool copyprivate_seen = false;
6129 bool ordered_seen = false;
6130 bool schedule_seen = false;
6131 bool oacc_async = false;
6132 tree last_iterators = NULL_TREE;
6133 bool last_iterators_remove = false;
6134 /* 1 if normal/task reduction has been seen, -1 if inscan reduction
6135 has been seen, -2 if mixed inscan/normal reduction diagnosed. */
6136 int reduction_seen = 0;
6137
6138 bitmap_obstack_initialize (NULL);
6139 bitmap_initialize (&generic_head, &bitmap_default_obstack);
6140 bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
6141 bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
6142 bitmap_initialize (&aligned_head, &bitmap_default_obstack);
6143 /* If ort == C_ORT_OMP_DECLARE_SIMD used as uniform_head instead. */
6144 bitmap_initialize (&map_head, &bitmap_default_obstack);
6145 bitmap_initialize (&map_field_head, &bitmap_default_obstack);
6146 /* If ort == C_ORT_OMP used as nontemporal_head instead. */
6147 bitmap_initialize (&oacc_reduction_head, &bitmap_default_obstack);
6148
6149 if (ort & C_ORT_ACC)
6150 for (c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
6151 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_ASYNC)
6152 {
6153 oacc_async = true;
6154 break;
6155 }
6156
6157 for (pc = &clauses, c = clauses; c ; c = *pc)
6158 {
6159 bool remove = false;
6160 bool field_ok = false;
6161
6162 switch (OMP_CLAUSE_CODE (c))
6163 {
6164 case OMP_CLAUSE_SHARED:
6165 field_ok = ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP);
6166 goto check_dup_generic;
6167 case OMP_CLAUSE_PRIVATE:
6168 field_ok = ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP);
6169 goto check_dup_generic;
6170 case OMP_CLAUSE_REDUCTION:
6171 if (reduction_seen == 0)
6172 reduction_seen = OMP_CLAUSE_REDUCTION_INSCAN (c) ? -1 : 1;
6173 else if (reduction_seen != -2
6174 && reduction_seen != (OMP_CLAUSE_REDUCTION_INSCAN (c)
6175 ? -1 : 1))
6176 {
6177 error_at (OMP_CLAUSE_LOCATION (c),
6178 "%<inscan%> and non-%<inscan%> %<reduction%> clauses "
6179 "on the same construct");
6180 reduction_seen = -2;
6181 }
6182 /* FALLTHRU */
6183 case OMP_CLAUSE_IN_REDUCTION:
6184 case OMP_CLAUSE_TASK_REDUCTION:
6185 field_ok = ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP);
6186 t = OMP_CLAUSE_DECL (c);
6187 if (TREE_CODE (t) == TREE_LIST)
6188 {
6189 if (handle_omp_array_sections (c, ort))
6190 {
6191 remove = true;
6192 break;
6193 }
6194 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
6195 && OMP_CLAUSE_REDUCTION_INSCAN (c))
6196 {
6197 error_at (OMP_CLAUSE_LOCATION (c),
6198 "%<inscan%> %<reduction%> clause with array "
6199 "section");
6200 remove = true;
6201 break;
6202 }
6203 if (TREE_CODE (t) == TREE_LIST)
6204 {
6205 while (TREE_CODE (t) == TREE_LIST)
6206 t = TREE_CHAIN (t);
6207 }
6208 else
6209 {
6210 gcc_assert (TREE_CODE (t) == MEM_REF);
6211 t = TREE_OPERAND (t, 0);
6212 if (TREE_CODE (t) == POINTER_PLUS_EXPR)
6213 t = TREE_OPERAND (t, 0);
6214 if (TREE_CODE (t) == ADDR_EXPR
6215 || INDIRECT_REF_P (t))
6216 t = TREE_OPERAND (t, 0);
6217 }
6218 tree n = omp_clause_decl_field (t);
6219 if (n)
6220 t = n;
6221 goto check_dup_generic_t;
6222 }
6223 if (oacc_async)
6224 cxx_mark_addressable (t);
6225 goto check_dup_generic;
6226 case OMP_CLAUSE_COPYPRIVATE:
6227 copyprivate_seen = true;
6228 field_ok = ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP);
6229 goto check_dup_generic;
6230 case OMP_CLAUSE_COPYIN:
6231 goto check_dup_generic;
6232 case OMP_CLAUSE_LINEAR:
6233 field_ok = ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP);
6234 t = OMP_CLAUSE_DECL (c);
6235 if (ort != C_ORT_OMP_DECLARE_SIMD
6236 && OMP_CLAUSE_LINEAR_KIND (c) != OMP_CLAUSE_LINEAR_DEFAULT)
6237 {
6238 error_at (OMP_CLAUSE_LOCATION (c),
6239 "modifier should not be specified in %<linear%> "
6240 "clause on %<simd%> or %<for%> constructs");
6241 OMP_CLAUSE_LINEAR_KIND (c) = OMP_CLAUSE_LINEAR_DEFAULT;
6242 }
6243 if ((VAR_P (t) || TREE_CODE (t) == PARM_DECL)
6244 && !type_dependent_expression_p (t))
6245 {
6246 tree type = TREE_TYPE (t);
6247 if ((OMP_CLAUSE_LINEAR_KIND (c) == OMP_CLAUSE_LINEAR_REF
6248 || OMP_CLAUSE_LINEAR_KIND (c) == OMP_CLAUSE_LINEAR_UVAL)
6249 && !TYPE_REF_P (type))
6250 {
6251 error_at (OMP_CLAUSE_LOCATION (c),
6252 "linear clause with %qs modifier applied to "
6253 "non-reference variable with %qT type",
6254 OMP_CLAUSE_LINEAR_KIND (c) == OMP_CLAUSE_LINEAR_REF
6255 ? "ref" : "uval", TREE_TYPE (t));
6256 remove = true;
6257 break;
6258 }
6259 if (TYPE_REF_P (type))
6260 type = TREE_TYPE (type);
6261 if (OMP_CLAUSE_LINEAR_KIND (c) != OMP_CLAUSE_LINEAR_REF)
6262 {
6263 if (!INTEGRAL_TYPE_P (type)
6264 && !TYPE_PTR_P (type))
6265 {
6266 error_at (OMP_CLAUSE_LOCATION (c),
6267 "linear clause applied to non-integral "
6268 "non-pointer variable with %qT type",
6269 TREE_TYPE (t));
6270 remove = true;
6271 break;
6272 }
6273 }
6274 }
6275 t = OMP_CLAUSE_LINEAR_STEP (c);
6276 if (t == NULL_TREE)
6277 t = integer_one_node;
6278 if (t == error_mark_node)
6279 {
6280 remove = true;
6281 break;
6282 }
6283 else if (!type_dependent_expression_p (t)
6284 && !INTEGRAL_TYPE_P (TREE_TYPE (t))
6285 && (ort != C_ORT_OMP_DECLARE_SIMD
6286 || TREE_CODE (t) != PARM_DECL
6287 || !TYPE_REF_P (TREE_TYPE (t))
6288 || !INTEGRAL_TYPE_P (TREE_TYPE (TREE_TYPE (t)))))
6289 {
6290 error_at (OMP_CLAUSE_LOCATION (c),
6291 "linear step expression must be integral");
6292 remove = true;
6293 break;
6294 }
6295 else
6296 {
6297 t = mark_rvalue_use (t);
6298 if (ort == C_ORT_OMP_DECLARE_SIMD && TREE_CODE (t) == PARM_DECL)
6299 {
6300 OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (c) = 1;
6301 goto check_dup_generic;
6302 }
6303 if (!processing_template_decl
6304 && (VAR_P (OMP_CLAUSE_DECL (c))
6305 || TREE_CODE (OMP_CLAUSE_DECL (c)) == PARM_DECL))
6306 {
6307 if (ort == C_ORT_OMP_DECLARE_SIMD)
6308 {
6309 t = maybe_constant_value (t);
6310 if (TREE_CODE (t) != INTEGER_CST)
6311 {
6312 error_at (OMP_CLAUSE_LOCATION (c),
6313 "%<linear%> clause step %qE is neither "
6314 "constant nor a parameter", t);
6315 remove = true;
6316 break;
6317 }
6318 }
6319 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6320 tree type = TREE_TYPE (OMP_CLAUSE_DECL (c));
6321 if (TYPE_REF_P (type))
6322 type = TREE_TYPE (type);
6323 if (OMP_CLAUSE_LINEAR_KIND (c) == OMP_CLAUSE_LINEAR_REF)
6324 {
6325 type = build_pointer_type (type);
6326 tree d = fold_convert (type, OMP_CLAUSE_DECL (c));
6327 t = pointer_int_sum (OMP_CLAUSE_LOCATION (c), PLUS_EXPR,
6328 d, t);
6329 t = fold_build2_loc (OMP_CLAUSE_LOCATION (c),
6330 MINUS_EXPR, sizetype,
6331 fold_convert (sizetype, t),
6332 fold_convert (sizetype, d));
6333 if (t == error_mark_node)
6334 {
6335 remove = true;
6336 break;
6337 }
6338 }
6339 else if (TYPE_PTR_P (type)
6340 /* Can't multiply the step yet if *this
6341 is still incomplete type. */
6342 && (ort != C_ORT_OMP_DECLARE_SIMD
6343 || TREE_CODE (OMP_CLAUSE_DECL (c)) != PARM_DECL
6344 || !DECL_ARTIFICIAL (OMP_CLAUSE_DECL (c))
6345 || DECL_NAME (OMP_CLAUSE_DECL (c))
6346 != this_identifier
6347 || !TYPE_BEING_DEFINED (TREE_TYPE (type))))
6348 {
6349 tree d = convert_from_reference (OMP_CLAUSE_DECL (c));
6350 t = pointer_int_sum (OMP_CLAUSE_LOCATION (c), PLUS_EXPR,
6351 d, t);
6352 t = fold_build2_loc (OMP_CLAUSE_LOCATION (c),
6353 MINUS_EXPR, sizetype,
6354 fold_convert (sizetype, t),
6355 fold_convert (sizetype, d));
6356 if (t == error_mark_node)
6357 {
6358 remove = true;
6359 break;
6360 }
6361 }
6362 else
6363 t = fold_convert (type, t);
6364 }
6365 OMP_CLAUSE_LINEAR_STEP (c) = t;
6366 }
6367 goto check_dup_generic;
6368 check_dup_generic:
6369 t = omp_clause_decl_field (OMP_CLAUSE_DECL (c));
6370 if (t)
6371 {
6372 if (!remove && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_SHARED)
6373 omp_note_field_privatization (t, OMP_CLAUSE_DECL (c));
6374 }
6375 else
6376 t = OMP_CLAUSE_DECL (c);
6377 check_dup_generic_t:
6378 if (t == current_class_ptr
6379 && (ort != C_ORT_OMP_DECLARE_SIMD
6380 || (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_LINEAR
6381 && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_UNIFORM)))
6382 {
6383 error_at (OMP_CLAUSE_LOCATION (c),
6384 "%<this%> allowed in OpenMP only in %<declare simd%>"
6385 " clauses");
6386 remove = true;
6387 break;
6388 }
6389 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL
6390 && (!field_ok || TREE_CODE (t) != FIELD_DECL))
6391 {
6392 if (processing_template_decl && TREE_CODE (t) != OVERLOAD)
6393 break;
6394 if (DECL_P (t))
6395 error_at (OMP_CLAUSE_LOCATION (c),
6396 "%qD is not a variable in clause %qs", t,
6397 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
6398 else
6399 error_at (OMP_CLAUSE_LOCATION (c),
6400 "%qE is not a variable in clause %qs", t,
6401 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
6402 remove = true;
6403 }
6404 else if (ort == C_ORT_ACC
6405 && OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION)
6406 {
6407 if (bitmap_bit_p (&oacc_reduction_head, DECL_UID (t)))
6408 {
6409 error_at (OMP_CLAUSE_LOCATION (c),
6410 "%qD appears more than once in reduction clauses",
6411 t);
6412 remove = true;
6413 }
6414 else
6415 bitmap_set_bit (&oacc_reduction_head, DECL_UID (t));
6416 }
6417 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
6418 || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
6419 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
6420 {
6421 error_at (OMP_CLAUSE_LOCATION (c),
6422 "%qD appears more than once in data clauses", t);
6423 remove = true;
6424 }
6425 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
6426 && bitmap_bit_p (&map_head, DECL_UID (t)))
6427 {
6428 if (ort == C_ORT_ACC)
6429 error_at (OMP_CLAUSE_LOCATION (c),
6430 "%qD appears more than once in data clauses", t);
6431 else
6432 error_at (OMP_CLAUSE_LOCATION (c),
6433 "%qD appears both in data and map clauses", t);
6434 remove = true;
6435 }
6436 else
6437 bitmap_set_bit (&generic_head, DECL_UID (t));
6438 if (!field_ok)
6439 break;
6440 handle_field_decl:
6441 if (!remove
6442 && TREE_CODE (t) == FIELD_DECL
6443 && t == OMP_CLAUSE_DECL (c)
6444 && ort != C_ORT_ACC)
6445 {
6446 OMP_CLAUSE_DECL (c)
6447 = omp_privatize_field (t, (OMP_CLAUSE_CODE (c)
6448 == OMP_CLAUSE_SHARED));
6449 if (OMP_CLAUSE_DECL (c) == error_mark_node)
6450 remove = true;
6451 }
6452 break;
6453
6454 case OMP_CLAUSE_FIRSTPRIVATE:
6455 t = omp_clause_decl_field (OMP_CLAUSE_DECL (c));
6456 if (t)
6457 omp_note_field_privatization (t, OMP_CLAUSE_DECL (c));
6458 else
6459 t = OMP_CLAUSE_DECL (c);
6460 if (ort != C_ORT_ACC && t == current_class_ptr)
6461 {
6462 error_at (OMP_CLAUSE_LOCATION (c),
6463 "%<this%> allowed in OpenMP only in %<declare simd%>"
6464 " clauses");
6465 remove = true;
6466 break;
6467 }
6468 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL
6469 && ((ort & C_ORT_OMP_DECLARE_SIMD) != C_ORT_OMP
6470 || TREE_CODE (t) != FIELD_DECL))
6471 {
6472 if (processing_template_decl && TREE_CODE (t) != OVERLOAD)
6473 break;
6474 if (DECL_P (t))
6475 error_at (OMP_CLAUSE_LOCATION (c),
6476 "%qD is not a variable in clause %<firstprivate%>",
6477 t);
6478 else
6479 error_at (OMP_CLAUSE_LOCATION (c),
6480 "%qE is not a variable in clause %<firstprivate%>",
6481 t);
6482 remove = true;
6483 }
6484 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
6485 || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
6486 {
6487 error_at (OMP_CLAUSE_LOCATION (c),
6488 "%qD appears more than once in data clauses", t);
6489 remove = true;
6490 }
6491 else if (bitmap_bit_p (&map_head, DECL_UID (t)))
6492 {
6493 if (ort == C_ORT_ACC)
6494 error_at (OMP_CLAUSE_LOCATION (c),
6495 "%qD appears more than once in data clauses", t);
6496 else
6497 error_at (OMP_CLAUSE_LOCATION (c),
6498 "%qD appears both in data and map clauses", t);
6499 remove = true;
6500 }
6501 else
6502 bitmap_set_bit (&firstprivate_head, DECL_UID (t));
6503 goto handle_field_decl;
6504
6505 case OMP_CLAUSE_LASTPRIVATE:
6506 t = omp_clause_decl_field (OMP_CLAUSE_DECL (c));
6507 if (t)
6508 omp_note_field_privatization (t, OMP_CLAUSE_DECL (c));
6509 else
6510 t = OMP_CLAUSE_DECL (c);
6511 if (t == current_class_ptr)
6512 {
6513 error_at (OMP_CLAUSE_LOCATION (c),
6514 "%<this%> allowed in OpenMP only in %<declare simd%>"
6515 " clauses");
6516 remove = true;
6517 break;
6518 }
6519 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL
6520 && ((ort & C_ORT_OMP_DECLARE_SIMD) != C_ORT_OMP
6521 || TREE_CODE (t) != FIELD_DECL))
6522 {
6523 if (processing_template_decl && TREE_CODE (t) != OVERLOAD)
6524 break;
6525 if (DECL_P (t))
6526 error_at (OMP_CLAUSE_LOCATION (c),
6527 "%qD is not a variable in clause %<lastprivate%>",
6528 t);
6529 else
6530 error_at (OMP_CLAUSE_LOCATION (c),
6531 "%qE is not a variable in clause %<lastprivate%>",
6532 t);
6533 remove = true;
6534 }
6535 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
6536 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
6537 {
6538 error_at (OMP_CLAUSE_LOCATION (c),
6539 "%qD appears more than once in data clauses", t);
6540 remove = true;
6541 }
6542 else
6543 bitmap_set_bit (&lastprivate_head, DECL_UID (t));
6544 goto handle_field_decl;
6545
6546 case OMP_CLAUSE_IF:
6547 t = OMP_CLAUSE_IF_EXPR (c);
6548 t = maybe_convert_cond (t);
6549 if (t == error_mark_node)
6550 remove = true;
6551 else if (!processing_template_decl)
6552 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6553 OMP_CLAUSE_IF_EXPR (c) = t;
6554 break;
6555
6556 case OMP_CLAUSE_FINAL:
6557 t = OMP_CLAUSE_FINAL_EXPR (c);
6558 t = maybe_convert_cond (t);
6559 if (t == error_mark_node)
6560 remove = true;
6561 else if (!processing_template_decl)
6562 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6563 OMP_CLAUSE_FINAL_EXPR (c) = t;
6564 break;
6565
6566 case OMP_CLAUSE_GANG:
6567 /* Operand 1 is the gang static: argument. */
6568 t = OMP_CLAUSE_OPERAND (c, 1);
6569 if (t != NULL_TREE)
6570 {
6571 if (t == error_mark_node)
6572 remove = true;
6573 else if (!type_dependent_expression_p (t)
6574 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
6575 {
6576 error_at (OMP_CLAUSE_LOCATION (c),
6577 "%<gang%> static expression must be integral");
6578 remove = true;
6579 }
6580 else
6581 {
6582 t = mark_rvalue_use (t);
6583 if (!processing_template_decl)
6584 {
6585 t = maybe_constant_value (t);
6586 if (TREE_CODE (t) == INTEGER_CST
6587 && tree_int_cst_sgn (t) != 1
6588 && t != integer_minus_one_node)
6589 {
6590 warning_at (OMP_CLAUSE_LOCATION (c), 0,
6591 "%<gang%> static value must be "
6592 "positive");
6593 t = integer_one_node;
6594 }
6595 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6596 }
6597 }
6598 OMP_CLAUSE_OPERAND (c, 1) = t;
6599 }
6600 /* Check operand 0, the num argument. */
6601 /* FALLTHRU */
6602
6603 case OMP_CLAUSE_WORKER:
6604 case OMP_CLAUSE_VECTOR:
6605 if (OMP_CLAUSE_OPERAND (c, 0) == NULL_TREE)
6606 break;
6607 /* FALLTHRU */
6608
6609 case OMP_CLAUSE_NUM_TASKS:
6610 case OMP_CLAUSE_NUM_TEAMS:
6611 case OMP_CLAUSE_NUM_THREADS:
6612 case OMP_CLAUSE_NUM_GANGS:
6613 case OMP_CLAUSE_NUM_WORKERS:
6614 case OMP_CLAUSE_VECTOR_LENGTH:
6615 t = OMP_CLAUSE_OPERAND (c, 0);
6616 if (t == error_mark_node)
6617 remove = true;
6618 else if (!type_dependent_expression_p (t)
6619 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
6620 {
6621 switch (OMP_CLAUSE_CODE (c))
6622 {
6623 case OMP_CLAUSE_GANG:
6624 error_at (OMP_CLAUSE_LOCATION (c),
6625 "%<gang%> num expression must be integral"); break;
6626 case OMP_CLAUSE_VECTOR:
6627 error_at (OMP_CLAUSE_LOCATION (c),
6628 "%<vector%> length expression must be integral");
6629 break;
6630 case OMP_CLAUSE_WORKER:
6631 error_at (OMP_CLAUSE_LOCATION (c),
6632 "%<worker%> num expression must be integral");
6633 break;
6634 default:
6635 error_at (OMP_CLAUSE_LOCATION (c),
6636 "%qs expression must be integral",
6637 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
6638 }
6639 remove = true;
6640 }
6641 else
6642 {
6643 t = mark_rvalue_use (t);
6644 if (!processing_template_decl)
6645 {
6646 t = maybe_constant_value (t);
6647 if (TREE_CODE (t) == INTEGER_CST
6648 && tree_int_cst_sgn (t) != 1)
6649 {
6650 switch (OMP_CLAUSE_CODE (c))
6651 {
6652 case OMP_CLAUSE_GANG:
6653 warning_at (OMP_CLAUSE_LOCATION (c), 0,
6654 "%<gang%> num value must be positive");
6655 break;
6656 case OMP_CLAUSE_VECTOR:
6657 warning_at (OMP_CLAUSE_LOCATION (c), 0,
6658 "%<vector%> length value must be "
6659 "positive");
6660 break;
6661 case OMP_CLAUSE_WORKER:
6662 warning_at (OMP_CLAUSE_LOCATION (c), 0,
6663 "%<worker%> num value must be "
6664 "positive");
6665 break;
6666 default:
6667 warning_at (OMP_CLAUSE_LOCATION (c), 0,
6668 "%qs value must be positive",
6669 omp_clause_code_name
6670 [OMP_CLAUSE_CODE (c)]);
6671 }
6672 t = integer_one_node;
6673 }
6674 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6675 }
6676 OMP_CLAUSE_OPERAND (c, 0) = t;
6677 }
6678 break;
6679
6680 case OMP_CLAUSE_SCHEDULE:
6681 t = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c);
6682 if (t == NULL)
6683 ;
6684 else if (t == error_mark_node)
6685 remove = true;
6686 else if (!type_dependent_expression_p (t)
6687 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
6688 {
6689 error_at (OMP_CLAUSE_LOCATION (c),
6690 "schedule chunk size expression must be integral");
6691 remove = true;
6692 }
6693 else
6694 {
6695 t = mark_rvalue_use (t);
6696 if (!processing_template_decl)
6697 {
6698 t = maybe_constant_value (t);
6699 if (TREE_CODE (t) == INTEGER_CST
6700 && tree_int_cst_sgn (t) != 1)
6701 {
6702 warning_at (OMP_CLAUSE_LOCATION (c), 0,
6703 "chunk size value must be positive");
6704 t = integer_one_node;
6705 }
6706 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6707 }
6708 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
6709 }
6710 if (!remove)
6711 schedule_seen = true;
6712 break;
6713
6714 case OMP_CLAUSE_SIMDLEN:
6715 case OMP_CLAUSE_SAFELEN:
6716 t = OMP_CLAUSE_OPERAND (c, 0);
6717 if (t == error_mark_node)
6718 remove = true;
6719 else if (!type_dependent_expression_p (t)
6720 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
6721 {
6722 error_at (OMP_CLAUSE_LOCATION (c),
6723 "%qs length expression must be integral",
6724 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
6725 remove = true;
6726 }
6727 else
6728 {
6729 t = mark_rvalue_use (t);
6730 if (!processing_template_decl)
6731 {
6732 t = maybe_constant_value (t);
6733 if (TREE_CODE (t) != INTEGER_CST
6734 || tree_int_cst_sgn (t) != 1)
6735 {
6736 error_at (OMP_CLAUSE_LOCATION (c),
6737 "%qs length expression must be positive "
6738 "constant integer expression",
6739 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
6740 remove = true;
6741 }
6742 }
6743 OMP_CLAUSE_OPERAND (c, 0) = t;
6744 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SAFELEN)
6745 safelen = c;
6746 }
6747 break;
6748
6749 case OMP_CLAUSE_ASYNC:
6750 t = OMP_CLAUSE_ASYNC_EXPR (c);
6751 if (t == error_mark_node)
6752 remove = true;
6753 else if (!type_dependent_expression_p (t)
6754 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
6755 {
6756 error_at (OMP_CLAUSE_LOCATION (c),
6757 "%<async%> expression must be integral");
6758 remove = true;
6759 }
6760 else
6761 {
6762 t = mark_rvalue_use (t);
6763 if (!processing_template_decl)
6764 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6765 OMP_CLAUSE_ASYNC_EXPR (c) = t;
6766 }
6767 break;
6768
6769 case OMP_CLAUSE_WAIT:
6770 t = OMP_CLAUSE_WAIT_EXPR (c);
6771 if (t == error_mark_node)
6772 remove = true;
6773 else if (!processing_template_decl)
6774 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6775 OMP_CLAUSE_WAIT_EXPR (c) = t;
6776 break;
6777
6778 case OMP_CLAUSE_THREAD_LIMIT:
6779 t = OMP_CLAUSE_THREAD_LIMIT_EXPR (c);
6780 if (t == error_mark_node)
6781 remove = true;
6782 else if (!type_dependent_expression_p (t)
6783 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
6784 {
6785 error_at (OMP_CLAUSE_LOCATION (c),
6786 "%<thread_limit%> expression must be integral");
6787 remove = true;
6788 }
6789 else
6790 {
6791 t = mark_rvalue_use (t);
6792 if (!processing_template_decl)
6793 {
6794 t = maybe_constant_value (t);
6795 if (TREE_CODE (t) == INTEGER_CST
6796 && tree_int_cst_sgn (t) != 1)
6797 {
6798 warning_at (OMP_CLAUSE_LOCATION (c), 0,
6799 "%<thread_limit%> value must be positive");
6800 t = integer_one_node;
6801 }
6802 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6803 }
6804 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = t;
6805 }
6806 break;
6807
6808 case OMP_CLAUSE_DEVICE:
6809 t = OMP_CLAUSE_DEVICE_ID (c);
6810 if (t == error_mark_node)
6811 remove = true;
6812 else if (!type_dependent_expression_p (t)
6813 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
6814 {
6815 error_at (OMP_CLAUSE_LOCATION (c),
6816 "%<device%> id must be integral");
6817 remove = true;
6818 }
6819 else
6820 {
6821 t = mark_rvalue_use (t);
6822 if (!processing_template_decl)
6823 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6824 OMP_CLAUSE_DEVICE_ID (c) = t;
6825 }
6826 break;
6827
6828 case OMP_CLAUSE_DIST_SCHEDULE:
6829 t = OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (c);
6830 if (t == NULL)
6831 ;
6832 else if (t == error_mark_node)
6833 remove = true;
6834 else if (!type_dependent_expression_p (t)
6835 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
6836 {
6837 error_at (OMP_CLAUSE_LOCATION (c),
6838 "%<dist_schedule%> chunk size expression must be "
6839 "integral");
6840 remove = true;
6841 }
6842 else
6843 {
6844 t = mark_rvalue_use (t);
6845 if (!processing_template_decl)
6846 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6847 OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (c) = t;
6848 }
6849 break;
6850
6851 case OMP_CLAUSE_ALIGNED:
6852 t = OMP_CLAUSE_DECL (c);
6853 if (t == current_class_ptr && ort != C_ORT_OMP_DECLARE_SIMD)
6854 {
6855 error_at (OMP_CLAUSE_LOCATION (c),
6856 "%<this%> allowed in OpenMP only in %<declare simd%>"
6857 " clauses");
6858 remove = true;
6859 break;
6860 }
6861 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL)
6862 {
6863 if (processing_template_decl && TREE_CODE (t) != OVERLOAD)
6864 break;
6865 if (DECL_P (t))
6866 error_at (OMP_CLAUSE_LOCATION (c),
6867 "%qD is not a variable in %<aligned%> clause", t);
6868 else
6869 error_at (OMP_CLAUSE_LOCATION (c),
6870 "%qE is not a variable in %<aligned%> clause", t);
6871 remove = true;
6872 }
6873 else if (!type_dependent_expression_p (t)
6874 && !TYPE_PTR_P (TREE_TYPE (t))
6875 && TREE_CODE (TREE_TYPE (t)) != ARRAY_TYPE
6876 && (!TYPE_REF_P (TREE_TYPE (t))
6877 || (!INDIRECT_TYPE_P (TREE_TYPE (TREE_TYPE (t)))
6878 && (TREE_CODE (TREE_TYPE (TREE_TYPE (t)))
6879 != ARRAY_TYPE))))
6880 {
6881 error_at (OMP_CLAUSE_LOCATION (c),
6882 "%qE in %<aligned%> clause is neither a pointer nor "
6883 "an array nor a reference to pointer or array", t);
6884 remove = true;
6885 }
6886 else if (bitmap_bit_p (&aligned_head, DECL_UID (t)))
6887 {
6888 error_at (OMP_CLAUSE_LOCATION (c),
6889 "%qD appears more than once in %<aligned%> clauses",
6890 t);
6891 remove = true;
6892 }
6893 else
6894 bitmap_set_bit (&aligned_head, DECL_UID (t));
6895 t = OMP_CLAUSE_ALIGNED_ALIGNMENT (c);
6896 if (t == error_mark_node)
6897 remove = true;
6898 else if (t == NULL_TREE)
6899 break;
6900 else if (!type_dependent_expression_p (t)
6901 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
6902 {
6903 error_at (OMP_CLAUSE_LOCATION (c),
6904 "%<aligned%> clause alignment expression must "
6905 "be integral");
6906 remove = true;
6907 }
6908 else
6909 {
6910 t = mark_rvalue_use (t);
6911 if (!processing_template_decl)
6912 {
6913 t = maybe_constant_value (t);
6914 if (TREE_CODE (t) != INTEGER_CST
6915 || tree_int_cst_sgn (t) != 1)
6916 {
6917 error_at (OMP_CLAUSE_LOCATION (c),
6918 "%<aligned%> clause alignment expression must "
6919 "be positive constant integer expression");
6920 remove = true;
6921 }
6922 else
6923 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6924 }
6925 OMP_CLAUSE_ALIGNED_ALIGNMENT (c) = t;
6926 }
6927 break;
6928
6929 case OMP_CLAUSE_NONTEMPORAL:
6930 t = OMP_CLAUSE_DECL (c);
6931 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL)
6932 {
6933 if (processing_template_decl && TREE_CODE (t) != OVERLOAD)
6934 break;
6935 if (DECL_P (t))
6936 error_at (OMP_CLAUSE_LOCATION (c),
6937 "%qD is not a variable in %<nontemporal%> clause",
6938 t);
6939 else
6940 error_at (OMP_CLAUSE_LOCATION (c),
6941 "%qE is not a variable in %<nontemporal%> clause",
6942 t);
6943 remove = true;
6944 }
6945 else if (bitmap_bit_p (&oacc_reduction_head, DECL_UID (t)))
6946 {
6947 error_at (OMP_CLAUSE_LOCATION (c),
6948 "%qD appears more than once in %<nontemporal%> "
6949 "clauses", t);
6950 remove = true;
6951 }
6952 else
6953 bitmap_set_bit (&oacc_reduction_head, DECL_UID (t));
6954 break;
6955
6956 case OMP_CLAUSE_DEPEND:
6957 t = OMP_CLAUSE_DECL (c);
6958 if (t == NULL_TREE)
6959 {
6960 gcc_assert (OMP_CLAUSE_DEPEND_KIND (c)
6961 == OMP_CLAUSE_DEPEND_SOURCE);
6962 break;
6963 }
6964 if (OMP_CLAUSE_DEPEND_KIND (c) == OMP_CLAUSE_DEPEND_SINK)
6965 {
6966 if (cp_finish_omp_clause_depend_sink (c))
6967 remove = true;
6968 break;
6969 }
6970 if (TREE_CODE (t) == TREE_LIST
6971 && TREE_PURPOSE (t)
6972 && TREE_CODE (TREE_PURPOSE (t)) == TREE_VEC)
6973 {
6974 if (TREE_PURPOSE (t) != last_iterators)
6975 last_iterators_remove
6976 = cp_omp_finish_iterators (TREE_PURPOSE (t));
6977 last_iterators = TREE_PURPOSE (t);
6978 t = TREE_VALUE (t);
6979 if (last_iterators_remove)
6980 t = error_mark_node;
6981 }
6982 else
6983 last_iterators = NULL_TREE;
6984
6985 if (TREE_CODE (t) == TREE_LIST)
6986 {
6987 if (handle_omp_array_sections (c, ort))
6988 remove = true;
6989 else if (OMP_CLAUSE_DEPEND_KIND (c) == OMP_CLAUSE_DEPEND_DEPOBJ)
6990 {
6991 error_at (OMP_CLAUSE_LOCATION (c),
6992 "%<depend%> clause with %<depobj%> dependence "
6993 "type on array section");
6994 remove = true;
6995 }
6996 break;
6997 }
6998 if (t == error_mark_node)
6999 remove = true;
7000 else if (t == current_class_ptr)
7001 {
7002 error_at (OMP_CLAUSE_LOCATION (c),
7003 "%<this%> allowed in OpenMP only in %<declare simd%>"
7004 " clauses");
7005 remove = true;
7006 }
7007 else if (processing_template_decl && TREE_CODE (t) != OVERLOAD)
7008 break;
7009 else if (!lvalue_p (t))
7010 {
7011 if (DECL_P (t))
7012 error_at (OMP_CLAUSE_LOCATION (c),
7013 "%qD is not lvalue expression nor array section "
7014 "in %<depend%> clause", t);
7015 else
7016 error_at (OMP_CLAUSE_LOCATION (c),
7017 "%qE is not lvalue expression nor array section "
7018 "in %<depend%> clause", t);
7019 remove = true;
7020 }
7021 else if (TREE_CODE (t) == COMPONENT_REF
7022 && TREE_CODE (TREE_OPERAND (t, 1)) == FIELD_DECL
7023 && DECL_BIT_FIELD (TREE_OPERAND (t, 1)))
7024 {
7025 error_at (OMP_CLAUSE_LOCATION (c),
7026 "bit-field %qE in %qs clause", t, "depend");
7027 remove = true;
7028 }
7029 else if (OMP_CLAUSE_DEPEND_KIND (c) == OMP_CLAUSE_DEPEND_DEPOBJ)
7030 {
7031 if (!c_omp_depend_t_p (TYPE_REF_P (TREE_TYPE (t))
7032 ? TREE_TYPE (TREE_TYPE (t))
7033 : TREE_TYPE (t)))
7034 {
7035 error_at (OMP_CLAUSE_LOCATION (c),
7036 "%qE does not have %<omp_depend_t%> type in "
7037 "%<depend%> clause with %<depobj%> dependence "
7038 "type", t);
7039 remove = true;
7040 }
7041 }
7042 else if (c_omp_depend_t_p (TYPE_REF_P (TREE_TYPE (t))
7043 ? TREE_TYPE (TREE_TYPE (t))
7044 : TREE_TYPE (t)))
7045 {
7046 error_at (OMP_CLAUSE_LOCATION (c),
7047 "%qE should not have %<omp_depend_t%> type in "
7048 "%<depend%> clause with dependence type other than "
7049 "%<depobj%>", t);
7050 remove = true;
7051 }
7052 if (!remove)
7053 {
7054 tree addr = cp_build_addr_expr (t, tf_warning_or_error);
7055 if (addr == error_mark_node)
7056 remove = true;
7057 else
7058 {
7059 t = cp_build_indirect_ref (addr, RO_UNARY_STAR,
7060 tf_warning_or_error);
7061 if (t == error_mark_node)
7062 remove = true;
7063 else if (TREE_CODE (OMP_CLAUSE_DECL (c)) == TREE_LIST
7064 && TREE_PURPOSE (OMP_CLAUSE_DECL (c))
7065 && (TREE_CODE (TREE_PURPOSE (OMP_CLAUSE_DECL (c)))
7066 == TREE_VEC))
7067 TREE_VALUE (OMP_CLAUSE_DECL (c)) = t;
7068 else
7069 OMP_CLAUSE_DECL (c) = t;
7070 }
7071 }
7072 break;
7073
7074 case OMP_CLAUSE_MAP:
7075 case OMP_CLAUSE_TO:
7076 case OMP_CLAUSE_FROM:
7077 case OMP_CLAUSE__CACHE_:
7078 t = OMP_CLAUSE_DECL (c);
7079 if (TREE_CODE (t) == TREE_LIST)
7080 {
7081 if (handle_omp_array_sections (c, ort))
7082 remove = true;
7083 else
7084 {
7085 t = OMP_CLAUSE_DECL (c);
7086 if (TREE_CODE (t) != TREE_LIST
7087 && !type_dependent_expression_p (t)
7088 && !cp_omp_mappable_type (TREE_TYPE (t)))
7089 {
7090 error_at (OMP_CLAUSE_LOCATION (c),
7091 "array section does not have mappable type "
7092 "in %qs clause",
7093 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7094 cp_omp_emit_unmappable_type_notes (TREE_TYPE (t));
7095 remove = true;
7096 }
7097 while (TREE_CODE (t) == ARRAY_REF)
7098 t = TREE_OPERAND (t, 0);
7099 if (TREE_CODE (t) == COMPONENT_REF
7100 && TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
7101 {
7102 while (TREE_CODE (t) == COMPONENT_REF)
7103 t = TREE_OPERAND (t, 0);
7104 if (REFERENCE_REF_P (t))
7105 t = TREE_OPERAND (t, 0);
7106 if (bitmap_bit_p (&map_field_head, DECL_UID (t)))
7107 break;
7108 if (bitmap_bit_p (&map_head, DECL_UID (t)))
7109 {
7110 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP)
7111 error_at (OMP_CLAUSE_LOCATION (c),
7112 "%qD appears more than once in motion"
7113 " clauses", t);
7114 else if (ort == C_ORT_ACC)
7115 error_at (OMP_CLAUSE_LOCATION (c),
7116 "%qD appears more than once in data"
7117 " clauses", t);
7118 else
7119 error_at (OMP_CLAUSE_LOCATION (c),
7120 "%qD appears more than once in map"
7121 " clauses", t);
7122 remove = true;
7123 }
7124 else
7125 {
7126 bitmap_set_bit (&map_head, DECL_UID (t));
7127 bitmap_set_bit (&map_field_head, DECL_UID (t));
7128 }
7129 }
7130 }
7131 break;
7132 }
7133 if (t == error_mark_node)
7134 {
7135 remove = true;
7136 break;
7137 }
7138 if (REFERENCE_REF_P (t)
7139 && TREE_CODE (TREE_OPERAND (t, 0)) == COMPONENT_REF)
7140 {
7141 t = TREE_OPERAND (t, 0);
7142 OMP_CLAUSE_DECL (c) = t;
7143 }
7144 if (TREE_CODE (t) == COMPONENT_REF
7145 && (ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP
7146 && OMP_CLAUSE_CODE (c) != OMP_CLAUSE__CACHE_)
7147 {
7148 if (type_dependent_expression_p (t))
7149 break;
7150 if (TREE_CODE (TREE_OPERAND (t, 1)) == FIELD_DECL
7151 && DECL_BIT_FIELD (TREE_OPERAND (t, 1)))
7152 {
7153 error_at (OMP_CLAUSE_LOCATION (c),
7154 "bit-field %qE in %qs clause",
7155 t, omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7156 remove = true;
7157 }
7158 else if (!cp_omp_mappable_type (TREE_TYPE (t)))
7159 {
7160 error_at (OMP_CLAUSE_LOCATION (c),
7161 "%qE does not have a mappable type in %qs clause",
7162 t, omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7163 cp_omp_emit_unmappable_type_notes (TREE_TYPE (t));
7164 remove = true;
7165 }
7166 while (TREE_CODE (t) == COMPONENT_REF)
7167 {
7168 if (TREE_TYPE (TREE_OPERAND (t, 0))
7169 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0)))
7170 == UNION_TYPE))
7171 {
7172 error_at (OMP_CLAUSE_LOCATION (c),
7173 "%qE is a member of a union", t);
7174 remove = true;
7175 break;
7176 }
7177 t = TREE_OPERAND (t, 0);
7178 }
7179 if (remove)
7180 break;
7181 if (REFERENCE_REF_P (t))
7182 t = TREE_OPERAND (t, 0);
7183 if (VAR_P (t) || TREE_CODE (t) == PARM_DECL)
7184 {
7185 if (bitmap_bit_p (&map_field_head, DECL_UID (t)))
7186 goto handle_map_references;
7187 }
7188 }
7189 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL)
7190 {
7191 if (processing_template_decl && TREE_CODE (t) != OVERLOAD)
7192 break;
7193 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
7194 && (OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_POINTER
7195 || OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_ALWAYS_POINTER))
7196 break;
7197 if (DECL_P (t))
7198 error_at (OMP_CLAUSE_LOCATION (c),
7199 "%qD is not a variable in %qs clause", t,
7200 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7201 else
7202 error_at (OMP_CLAUSE_LOCATION (c),
7203 "%qE is not a variable in %qs clause", t,
7204 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7205 remove = true;
7206 }
7207 else if (VAR_P (t) && CP_DECL_THREAD_LOCAL_P (t))
7208 {
7209 error_at (OMP_CLAUSE_LOCATION (c),
7210 "%qD is threadprivate variable in %qs clause", t,
7211 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7212 remove = true;
7213 }
7214 else if (ort != C_ORT_ACC && t == current_class_ptr)
7215 {
7216 error_at (OMP_CLAUSE_LOCATION (c),
7217 "%<this%> allowed in OpenMP only in %<declare simd%>"
7218 " clauses");
7219 remove = true;
7220 break;
7221 }
7222 else if (!processing_template_decl
7223 && !TYPE_REF_P (TREE_TYPE (t))
7224 && (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP
7225 || (OMP_CLAUSE_MAP_KIND (c)
7226 != GOMP_MAP_FIRSTPRIVATE_POINTER))
7227 && !cxx_mark_addressable (t))
7228 remove = true;
7229 else if (!(OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
7230 && (OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_POINTER
7231 || (OMP_CLAUSE_MAP_KIND (c)
7232 == GOMP_MAP_FIRSTPRIVATE_POINTER)))
7233 && t == OMP_CLAUSE_DECL (c)
7234 && !type_dependent_expression_p (t)
7235 && !cp_omp_mappable_type (TYPE_REF_P (TREE_TYPE (t))
7236 ? TREE_TYPE (TREE_TYPE (t))
7237 : TREE_TYPE (t)))
7238 {
7239 error_at (OMP_CLAUSE_LOCATION (c),
7240 "%qD does not have a mappable type in %qs clause", t,
7241 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7242 cp_omp_emit_unmappable_type_notes (TREE_TYPE (t));
7243 remove = true;
7244 }
7245 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
7246 && OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_FORCE_DEVICEPTR
7247 && !type_dependent_expression_p (t)
7248 && !INDIRECT_TYPE_P (TREE_TYPE (t)))
7249 {
7250 error_at (OMP_CLAUSE_LOCATION (c),
7251 "%qD is not a pointer variable", t);
7252 remove = true;
7253 }
7254 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
7255 && OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_FIRSTPRIVATE_POINTER)
7256 {
7257 if (bitmap_bit_p (&generic_head, DECL_UID (t))
7258 || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
7259 {
7260 error_at (OMP_CLAUSE_LOCATION (c),
7261 "%qD appears more than once in data clauses", t);
7262 remove = true;
7263 }
7264 else if (bitmap_bit_p (&map_head, DECL_UID (t)))
7265 {
7266 if (ort == C_ORT_ACC)
7267 error_at (OMP_CLAUSE_LOCATION (c),
7268 "%qD appears more than once in data clauses", t);
7269 else
7270 error_at (OMP_CLAUSE_LOCATION (c),
7271 "%qD appears both in data and map clauses", t);
7272 remove = true;
7273 }
7274 else
7275 bitmap_set_bit (&generic_head, DECL_UID (t));
7276 }
7277 else if (bitmap_bit_p (&map_head, DECL_UID (t)))
7278 {
7279 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP)
7280 error_at (OMP_CLAUSE_LOCATION (c),
7281 "%qD appears more than once in motion clauses", t);
7282 if (ort == C_ORT_ACC)
7283 error_at (OMP_CLAUSE_LOCATION (c),
7284 "%qD appears more than once in data clauses", t);
7285 else
7286 error_at (OMP_CLAUSE_LOCATION (c),
7287 "%qD appears more than once in map clauses", t);
7288 remove = true;
7289 }
7290 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
7291 || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
7292 {
7293 if (ort == C_ORT_ACC)
7294 error_at (OMP_CLAUSE_LOCATION (c),
7295 "%qD appears more than once in data clauses", t);
7296 else
7297 error_at (OMP_CLAUSE_LOCATION (c),
7298 "%qD appears both in data and map clauses", t);
7299 remove = true;
7300 }
7301 else
7302 {
7303 bitmap_set_bit (&map_head, DECL_UID (t));
7304 if (t != OMP_CLAUSE_DECL (c)
7305 && TREE_CODE (OMP_CLAUSE_DECL (c)) == COMPONENT_REF)
7306 bitmap_set_bit (&map_field_head, DECL_UID (t));
7307 }
7308 handle_map_references:
7309 if (!remove
7310 && !processing_template_decl
7311 && ort != C_ORT_DECLARE_SIMD
7312 && TYPE_REF_P (TREE_TYPE (OMP_CLAUSE_DECL (c))))
7313 {
7314 t = OMP_CLAUSE_DECL (c);
7315 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP)
7316 {
7317 OMP_CLAUSE_DECL (c) = build_simple_mem_ref (t);
7318 if (OMP_CLAUSE_SIZE (c) == NULL_TREE)
7319 OMP_CLAUSE_SIZE (c)
7320 = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (t)));
7321 }
7322 else if (OMP_CLAUSE_MAP_KIND (c)
7323 != GOMP_MAP_FIRSTPRIVATE_POINTER
7324 && (OMP_CLAUSE_MAP_KIND (c)
7325 != GOMP_MAP_FIRSTPRIVATE_REFERENCE)
7326 && (OMP_CLAUSE_MAP_KIND (c)
7327 != GOMP_MAP_ALWAYS_POINTER))
7328 {
7329 tree c2 = build_omp_clause (OMP_CLAUSE_LOCATION (c),
7330 OMP_CLAUSE_MAP);
7331 if (TREE_CODE (t) == COMPONENT_REF)
7332 OMP_CLAUSE_SET_MAP_KIND (c2, GOMP_MAP_ALWAYS_POINTER);
7333 else
7334 OMP_CLAUSE_SET_MAP_KIND (c2,
7335 GOMP_MAP_FIRSTPRIVATE_REFERENCE);
7336 OMP_CLAUSE_DECL (c2) = t;
7337 OMP_CLAUSE_SIZE (c2) = size_zero_node;
7338 OMP_CLAUSE_CHAIN (c2) = OMP_CLAUSE_CHAIN (c);
7339 OMP_CLAUSE_CHAIN (c) = c2;
7340 OMP_CLAUSE_DECL (c) = build_simple_mem_ref (t);
7341 if (OMP_CLAUSE_SIZE (c) == NULL_TREE)
7342 OMP_CLAUSE_SIZE (c)
7343 = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (t)));
7344 c = c2;
7345 }
7346 }
7347 break;
7348
7349 case OMP_CLAUSE_TO_DECLARE:
7350 case OMP_CLAUSE_LINK:
7351 t = OMP_CLAUSE_DECL (c);
7352 if (TREE_CODE (t) == FUNCTION_DECL
7353 && OMP_CLAUSE_CODE (c) == OMP_CLAUSE_TO_DECLARE)
7354 ;
7355 else if (!VAR_P (t))
7356 {
7357 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_TO_DECLARE)
7358 {
7359 if (TREE_CODE (t) == TEMPLATE_ID_EXPR)
7360 error_at (OMP_CLAUSE_LOCATION (c),
7361 "template %qE in clause %qs", t,
7362 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7363 else if (really_overloaded_fn (t))
7364 error_at (OMP_CLAUSE_LOCATION (c),
7365 "overloaded function name %qE in clause %qs", t,
7366 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7367 else
7368 error_at (OMP_CLAUSE_LOCATION (c),
7369 "%qE is neither a variable nor a function name "
7370 "in clause %qs", t,
7371 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7372 }
7373 else
7374 error_at (OMP_CLAUSE_LOCATION (c),
7375 "%qE is not a variable in clause %qs", t,
7376 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7377 remove = true;
7378 }
7379 else if (DECL_THREAD_LOCAL_P (t))
7380 {
7381 error_at (OMP_CLAUSE_LOCATION (c),
7382 "%qD is threadprivate variable in %qs clause", t,
7383 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7384 remove = true;
7385 }
7386 else if (!cp_omp_mappable_type (TREE_TYPE (t)))
7387 {
7388 error_at (OMP_CLAUSE_LOCATION (c),
7389 "%qD does not have a mappable type in %qs clause", t,
7390 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7391 cp_omp_emit_unmappable_type_notes (TREE_TYPE (t));
7392 remove = true;
7393 }
7394 if (remove)
7395 break;
7396 if (bitmap_bit_p (&generic_head, DECL_UID (t)))
7397 {
7398 error_at (OMP_CLAUSE_LOCATION (c),
7399 "%qE appears more than once on the same "
7400 "%<declare target%> directive", t);
7401 remove = true;
7402 }
7403 else
7404 bitmap_set_bit (&generic_head, DECL_UID (t));
7405 break;
7406
7407 case OMP_CLAUSE_UNIFORM:
7408 t = OMP_CLAUSE_DECL (c);
7409 if (TREE_CODE (t) != PARM_DECL)
7410 {
7411 if (processing_template_decl)
7412 break;
7413 if (DECL_P (t))
7414 error_at (OMP_CLAUSE_LOCATION (c),
7415 "%qD is not an argument in %<uniform%> clause", t);
7416 else
7417 error_at (OMP_CLAUSE_LOCATION (c),
7418 "%qE is not an argument in %<uniform%> clause", t);
7419 remove = true;
7420 break;
7421 }
7422 /* map_head bitmap is used as uniform_head if declare_simd. */
7423 bitmap_set_bit (&map_head, DECL_UID (t));
7424 goto check_dup_generic;
7425
7426 case OMP_CLAUSE_GRAINSIZE:
7427 t = OMP_CLAUSE_GRAINSIZE_EXPR (c);
7428 if (t == error_mark_node)
7429 remove = true;
7430 else if (!type_dependent_expression_p (t)
7431 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
7432 {
7433 error_at (OMP_CLAUSE_LOCATION (c),
7434 "%<grainsize%> expression must be integral");
7435 remove = true;
7436 }
7437 else
7438 {
7439 t = mark_rvalue_use (t);
7440 if (!processing_template_decl)
7441 {
7442 t = maybe_constant_value (t);
7443 if (TREE_CODE (t) == INTEGER_CST
7444 && tree_int_cst_sgn (t) != 1)
7445 {
7446 warning_at (OMP_CLAUSE_LOCATION (c), 0,
7447 "%<grainsize%> value must be positive");
7448 t = integer_one_node;
7449 }
7450 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
7451 }
7452 OMP_CLAUSE_GRAINSIZE_EXPR (c) = t;
7453 }
7454 break;
7455
7456 case OMP_CLAUSE_PRIORITY:
7457 t = OMP_CLAUSE_PRIORITY_EXPR (c);
7458 if (t == error_mark_node)
7459 remove = true;
7460 else if (!type_dependent_expression_p (t)
7461 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
7462 {
7463 error_at (OMP_CLAUSE_LOCATION (c),
7464 "%<priority%> expression must be integral");
7465 remove = true;
7466 }
7467 else
7468 {
7469 t = mark_rvalue_use (t);
7470 if (!processing_template_decl)
7471 {
7472 t = maybe_constant_value (t);
7473 if (TREE_CODE (t) == INTEGER_CST
7474 && tree_int_cst_sgn (t) == -1)
7475 {
7476 warning_at (OMP_CLAUSE_LOCATION (c), 0,
7477 "%<priority%> value must be non-negative");
7478 t = integer_one_node;
7479 }
7480 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
7481 }
7482 OMP_CLAUSE_PRIORITY_EXPR (c) = t;
7483 }
7484 break;
7485
7486 case OMP_CLAUSE_HINT:
7487 t = OMP_CLAUSE_HINT_EXPR (c);
7488 if (t == error_mark_node)
7489 remove = true;
7490 else if (!type_dependent_expression_p (t)
7491 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
7492 {
7493 error_at (OMP_CLAUSE_LOCATION (c),
7494 "%<hint%> expression must be integral");
7495 remove = true;
7496 }
7497 else
7498 {
7499 t = mark_rvalue_use (t);
7500 if (!processing_template_decl)
7501 {
7502 t = maybe_constant_value (t);
7503 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
7504 if (TREE_CODE (t) != INTEGER_CST)
7505 {
7506 error_at (OMP_CLAUSE_LOCATION (c),
7507 "%<hint%> expression must be constant integer "
7508 "expression");
7509 remove = true;
7510 }
7511 }
7512 OMP_CLAUSE_HINT_EXPR (c) = t;
7513 }
7514 break;
7515
7516 case OMP_CLAUSE_IS_DEVICE_PTR:
7517 case OMP_CLAUSE_USE_DEVICE_PTR:
7518 field_ok = (ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP;
7519 t = OMP_CLAUSE_DECL (c);
7520 if (!type_dependent_expression_p (t))
7521 {
7522 tree type = TREE_TYPE (t);
7523 if (!TYPE_PTR_P (type)
7524 && TREE_CODE (type) != ARRAY_TYPE
7525 && (!TYPE_REF_P (type)
7526 || (!TYPE_PTR_P (TREE_TYPE (type))
7527 && TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE)))
7528 {
7529 error_at (OMP_CLAUSE_LOCATION (c),
7530 "%qs variable is neither a pointer, nor an array "
7531 "nor reference to pointer or array",
7532 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7533 remove = true;
7534 }
7535 }
7536 goto check_dup_generic;
7537
7538 case OMP_CLAUSE_NOWAIT:
7539 case OMP_CLAUSE_DEFAULT:
7540 case OMP_CLAUSE_UNTIED:
7541 case OMP_CLAUSE_COLLAPSE:
7542 case OMP_CLAUSE_MERGEABLE:
7543 case OMP_CLAUSE_PARALLEL:
7544 case OMP_CLAUSE_FOR:
7545 case OMP_CLAUSE_SECTIONS:
7546 case OMP_CLAUSE_TASKGROUP:
7547 case OMP_CLAUSE_PROC_BIND:
7548 case OMP_CLAUSE_NOGROUP:
7549 case OMP_CLAUSE_THREADS:
7550 case OMP_CLAUSE_SIMD:
7551 case OMP_CLAUSE_DEFAULTMAP:
7552 case OMP_CLAUSE_AUTO:
7553 case OMP_CLAUSE_INDEPENDENT:
7554 case OMP_CLAUSE_SEQ:
7555 case OMP_CLAUSE_IF_PRESENT:
7556 case OMP_CLAUSE_FINALIZE:
7557 break;
7558
7559 case OMP_CLAUSE_TILE:
7560 for (tree list = OMP_CLAUSE_TILE_LIST (c); !remove && list;
7561 list = TREE_CHAIN (list))
7562 {
7563 t = TREE_VALUE (list);
7564
7565 if (t == error_mark_node)
7566 remove = true;
7567 else if (!type_dependent_expression_p (t)
7568 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
7569 {
7570 error_at (OMP_CLAUSE_LOCATION (c),
7571 "%<tile%> argument needs integral type");
7572 remove = true;
7573 }
7574 else
7575 {
7576 t = mark_rvalue_use (t);
7577 if (!processing_template_decl)
7578 {
7579 /* Zero is used to indicate '*', we permit you
7580 to get there via an ICE of value zero. */
7581 t = maybe_constant_value (t);
7582 if (!tree_fits_shwi_p (t)
7583 || tree_to_shwi (t) < 0)
7584 {
7585 error_at (OMP_CLAUSE_LOCATION (c),
7586 "%<tile%> argument needs positive "
7587 "integral constant");
7588 remove = true;
7589 }
7590 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
7591 }
7592 }
7593
7594 /* Update list item. */
7595 TREE_VALUE (list) = t;
7596 }
7597 break;
7598
7599 case OMP_CLAUSE_ORDERED:
7600 ordered_seen = true;
7601 break;
7602
7603 case OMP_CLAUSE_INBRANCH:
7604 case OMP_CLAUSE_NOTINBRANCH:
7605 if (branch_seen)
7606 {
7607 error_at (OMP_CLAUSE_LOCATION (c),
7608 "%<inbranch%> clause is incompatible with "
7609 "%<notinbranch%>");
7610 remove = true;
7611 }
7612 branch_seen = true;
7613 break;
7614
7615 case OMP_CLAUSE_INCLUSIVE:
7616 case OMP_CLAUSE_EXCLUSIVE:
7617 t = omp_clause_decl_field (OMP_CLAUSE_DECL (c));
7618 if (!t)
7619 t = OMP_CLAUSE_DECL (c);
7620 if (t == current_class_ptr)
7621 {
7622 error_at (OMP_CLAUSE_LOCATION (c),
7623 "%<this%> allowed in OpenMP only in %<declare simd%>"
7624 " clauses");
7625 remove = true;
7626 break;
7627 }
7628 if (!VAR_P (t)
7629 && TREE_CODE (t) != PARM_DECL
7630 && TREE_CODE (t) != FIELD_DECL)
7631 {
7632 if (processing_template_decl && TREE_CODE (t) != OVERLOAD)
7633 break;
7634 if (DECL_P (t))
7635 error_at (OMP_CLAUSE_LOCATION (c),
7636 "%qD is not a variable in clause %qs", t,
7637 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7638 else
7639 error_at (OMP_CLAUSE_LOCATION (c),
7640 "%qE is not a variable in clause %qs", t,
7641 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7642 remove = true;
7643 }
7644 break;
7645
7646 default:
7647 gcc_unreachable ();
7648 }
7649
7650 if (remove)
7651 *pc = OMP_CLAUSE_CHAIN (c);
7652 else
7653 pc = &OMP_CLAUSE_CHAIN (c);
7654 }
7655
7656 if (reduction_seen < 0 && (ordered_seen || schedule_seen))
7657 reduction_seen = -2;
7658
7659 for (pc = &clauses, c = clauses; c ; c = *pc)
7660 {
7661 enum omp_clause_code c_kind = OMP_CLAUSE_CODE (c);
7662 bool remove = false;
7663 bool need_complete_type = false;
7664 bool need_default_ctor = false;
7665 bool need_copy_ctor = false;
7666 bool need_copy_assignment = false;
7667 bool need_implicitly_determined = false;
7668 bool need_dtor = false;
7669 tree type, inner_type;
7670
7671 switch (c_kind)
7672 {
7673 case OMP_CLAUSE_SHARED:
7674 need_implicitly_determined = true;
7675 break;
7676 case OMP_CLAUSE_PRIVATE:
7677 need_complete_type = true;
7678 need_default_ctor = true;
7679 need_dtor = true;
7680 need_implicitly_determined = true;
7681 break;
7682 case OMP_CLAUSE_FIRSTPRIVATE:
7683 need_complete_type = true;
7684 need_copy_ctor = true;
7685 need_dtor = true;
7686 need_implicitly_determined = true;
7687 break;
7688 case OMP_CLAUSE_LASTPRIVATE:
7689 need_complete_type = true;
7690 need_copy_assignment = true;
7691 need_implicitly_determined = true;
7692 break;
7693 case OMP_CLAUSE_REDUCTION:
7694 if (reduction_seen == -2)
7695 OMP_CLAUSE_REDUCTION_INSCAN (c) = 0;
7696 if (OMP_CLAUSE_REDUCTION_INSCAN (c))
7697 need_copy_assignment = true;
7698 need_implicitly_determined = true;
7699 break;
7700 case OMP_CLAUSE_IN_REDUCTION:
7701 case OMP_CLAUSE_TASK_REDUCTION:
7702 case OMP_CLAUSE_INCLUSIVE:
7703 case OMP_CLAUSE_EXCLUSIVE:
7704 need_implicitly_determined = true;
7705 break;
7706 case OMP_CLAUSE_LINEAR:
7707 if (ort != C_ORT_OMP_DECLARE_SIMD)
7708 need_implicitly_determined = true;
7709 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (c)
7710 && !bitmap_bit_p (&map_head,
7711 DECL_UID (OMP_CLAUSE_LINEAR_STEP (c))))
7712 {
7713 error_at (OMP_CLAUSE_LOCATION (c),
7714 "%<linear%> clause step is a parameter %qD not "
7715 "specified in %<uniform%> clause",
7716 OMP_CLAUSE_LINEAR_STEP (c));
7717 *pc = OMP_CLAUSE_CHAIN (c);
7718 continue;
7719 }
7720 break;
7721 case OMP_CLAUSE_COPYPRIVATE:
7722 need_copy_assignment = true;
7723 break;
7724 case OMP_CLAUSE_COPYIN:
7725 need_copy_assignment = true;
7726 break;
7727 case OMP_CLAUSE_SIMDLEN:
7728 if (safelen
7729 && !processing_template_decl
7730 && tree_int_cst_lt (OMP_CLAUSE_SAFELEN_EXPR (safelen),
7731 OMP_CLAUSE_SIMDLEN_EXPR (c)))
7732 {
7733 error_at (OMP_CLAUSE_LOCATION (c),
7734 "%<simdlen%> clause value is bigger than "
7735 "%<safelen%> clause value");
7736 OMP_CLAUSE_SIMDLEN_EXPR (c)
7737 = OMP_CLAUSE_SAFELEN_EXPR (safelen);
7738 }
7739 pc = &OMP_CLAUSE_CHAIN (c);
7740 continue;
7741 case OMP_CLAUSE_SCHEDULE:
7742 if (ordered_seen
7743 && (OMP_CLAUSE_SCHEDULE_KIND (c)
7744 & OMP_CLAUSE_SCHEDULE_NONMONOTONIC))
7745 {
7746 error_at (OMP_CLAUSE_LOCATION (c),
7747 "%<nonmonotonic%> schedule modifier specified "
7748 "together with %<ordered%> clause");
7749 OMP_CLAUSE_SCHEDULE_KIND (c)
7750 = (enum omp_clause_schedule_kind)
7751 (OMP_CLAUSE_SCHEDULE_KIND (c)
7752 & ~OMP_CLAUSE_SCHEDULE_NONMONOTONIC);
7753 }
7754 if (reduction_seen == -2)
7755 error_at (OMP_CLAUSE_LOCATION (c),
7756 "%qs clause specified together with %<inscan%> "
7757 "%<reduction%> clause", "schedule");
7758 pc = &OMP_CLAUSE_CHAIN (c);
7759 continue;
7760 case OMP_CLAUSE_NOGROUP:
7761 if (reduction_seen)
7762 {
7763 error_at (OMP_CLAUSE_LOCATION (c),
7764 "%<nogroup%> clause must not be used together with "
7765 "%<reduction%> clause");
7766 *pc = OMP_CLAUSE_CHAIN (c);
7767 continue;
7768 }
7769 pc = &OMP_CLAUSE_CHAIN (c);
7770 continue;
7771 case OMP_CLAUSE_ORDERED:
7772 if (reduction_seen == -2)
7773 error_at (OMP_CLAUSE_LOCATION (c),
7774 "%qs clause specified together with %<inscan%> "
7775 "%<reduction%> clause", "ordered");
7776 pc = &OMP_CLAUSE_CHAIN (c);
7777 continue;
7778 case OMP_CLAUSE_NOWAIT:
7779 if (copyprivate_seen)
7780 {
7781 error_at (OMP_CLAUSE_LOCATION (c),
7782 "%<nowait%> clause must not be used together "
7783 "with %<copyprivate%>");
7784 *pc = OMP_CLAUSE_CHAIN (c);
7785 continue;
7786 }
7787 /* FALLTHRU */
7788 default:
7789 pc = &OMP_CLAUSE_CHAIN (c);
7790 continue;
7791 }
7792
7793 t = OMP_CLAUSE_DECL (c);
7794 if (processing_template_decl
7795 && !VAR_P (t) && TREE_CODE (t) != PARM_DECL)
7796 {
7797 pc = &OMP_CLAUSE_CHAIN (c);
7798 continue;
7799 }
7800
7801 switch (c_kind)
7802 {
7803 case OMP_CLAUSE_LASTPRIVATE:
7804 if (!bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
7805 {
7806 need_default_ctor = true;
7807 need_dtor = true;
7808 }
7809 break;
7810
7811 case OMP_CLAUSE_REDUCTION:
7812 case OMP_CLAUSE_IN_REDUCTION:
7813 case OMP_CLAUSE_TASK_REDUCTION:
7814 if (finish_omp_reduction_clause (c, &need_default_ctor,
7815 &need_dtor))
7816 remove = true;
7817 else
7818 t = OMP_CLAUSE_DECL (c);
7819 break;
7820
7821 case OMP_CLAUSE_COPYIN:
7822 if (!VAR_P (t) || !CP_DECL_THREAD_LOCAL_P (t))
7823 {
7824 error_at (OMP_CLAUSE_LOCATION (c),
7825 "%qE must be %<threadprivate%> for %<copyin%>", t);
7826 remove = true;
7827 }
7828 break;
7829
7830 default:
7831 break;
7832 }
7833
7834 if (need_complete_type || need_copy_assignment)
7835 {
7836 t = require_complete_type (t);
7837 if (t == error_mark_node)
7838 remove = true;
7839 else if (!processing_template_decl
7840 && TYPE_REF_P (TREE_TYPE (t))
7841 && !complete_type_or_else (TREE_TYPE (TREE_TYPE (t)), t))
7842 remove = true;
7843 }
7844 if (need_implicitly_determined)
7845 {
7846 const char *share_name = NULL;
7847
7848 if (VAR_P (t) && CP_DECL_THREAD_LOCAL_P (t))
7849 share_name = "threadprivate";
7850 else switch (cxx_omp_predetermined_sharing_1 (t))
7851 {
7852 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
7853 break;
7854 case OMP_CLAUSE_DEFAULT_SHARED:
7855 if (VAR_P (t)
7856 && OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
7857 && TREE_STATIC (t)
7858 && cxx_omp_const_qual_no_mutable (t))
7859 {
7860 tree ctx = CP_DECL_CONTEXT (t);
7861 /* const qualified static data members without mutable
7862 member may be specified in firstprivate clause. */
7863 if (TYPE_P (ctx) && MAYBE_CLASS_TYPE_P (ctx))
7864 break;
7865 }
7866 share_name = "shared";
7867 break;
7868 case OMP_CLAUSE_DEFAULT_PRIVATE:
7869 share_name = "private";
7870 break;
7871 default:
7872 gcc_unreachable ();
7873 }
7874 if (share_name)
7875 {
7876 error_at (OMP_CLAUSE_LOCATION (c),
7877 "%qE is predetermined %qs for %qs",
7878 omp_clause_printable_decl (t), share_name,
7879 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
7880 remove = true;
7881 }
7882 else if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_SHARED
7883 && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_FIRSTPRIVATE
7884 && cxx_omp_const_qual_no_mutable (t))
7885 {
7886 error_at (OMP_CLAUSE_LOCATION (c),
7887 "%<const%> qualified %qE without %<mutable%> member "
7888 "may appear only in %<shared%> or %<firstprivate%> "
7889 "clauses", omp_clause_printable_decl (t));
7890 remove = true;
7891 }
7892 }
7893
7894 /* We're interested in the base element, not arrays. */
7895 inner_type = type = TREE_TYPE (t);
7896 if ((need_complete_type
7897 || need_copy_assignment
7898 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
7899 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IN_REDUCTION
7900 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_TASK_REDUCTION)
7901 && TYPE_REF_P (inner_type))
7902 inner_type = TREE_TYPE (inner_type);
7903 while (TREE_CODE (inner_type) == ARRAY_TYPE)
7904 inner_type = TREE_TYPE (inner_type);
7905
7906 /* Check for special function availability by building a call to one.
7907 Save the results, because later we won't be in the right context
7908 for making these queries. */
7909 if (CLASS_TYPE_P (inner_type)
7910 && COMPLETE_TYPE_P (inner_type)
7911 && (need_default_ctor || need_copy_ctor
7912 || need_copy_assignment || need_dtor)
7913 && !type_dependent_expression_p (t)
7914 && cxx_omp_create_clause_info (c, inner_type, need_default_ctor,
7915 need_copy_ctor, need_copy_assignment,
7916 need_dtor))
7917 remove = true;
7918
7919 if (!remove
7920 && c_kind == OMP_CLAUSE_SHARED
7921 && processing_template_decl)
7922 {
7923 t = omp_clause_decl_field (OMP_CLAUSE_DECL (c));
7924 if (t)
7925 OMP_CLAUSE_DECL (c) = t;
7926 }
7927
7928 if (remove)
7929 *pc = OMP_CLAUSE_CHAIN (c);
7930 else
7931 pc = &OMP_CLAUSE_CHAIN (c);
7932 }
7933
7934 bitmap_obstack_release (NULL);
7935 return clauses;
7936 }
7937
7938 /* Start processing OpenMP clauses that can include any
7939 privatization clauses for non-static data members. */
7940
7941 tree
7942 push_omp_privatization_clauses (bool ignore_next)
7943 {
7944 if (omp_private_member_ignore_next)
7945 {
7946 omp_private_member_ignore_next = ignore_next;
7947 return NULL_TREE;
7948 }
7949 omp_private_member_ignore_next = ignore_next;
7950 if (omp_private_member_map)
7951 omp_private_member_vec.safe_push (error_mark_node);
7952 return push_stmt_list ();
7953 }
7954
7955 /* Revert remapping of any non-static data members since
7956 the last push_omp_privatization_clauses () call. */
7957
7958 void
7959 pop_omp_privatization_clauses (tree stmt)
7960 {
7961 if (stmt == NULL_TREE)
7962 return;
7963 stmt = pop_stmt_list (stmt);
7964 if (omp_private_member_map)
7965 {
7966 while (!omp_private_member_vec.is_empty ())
7967 {
7968 tree t = omp_private_member_vec.pop ();
7969 if (t == error_mark_node)
7970 {
7971 add_stmt (stmt);
7972 return;
7973 }
7974 bool no_decl_expr = t == integer_zero_node;
7975 if (no_decl_expr)
7976 t = omp_private_member_vec.pop ();
7977 tree *v = omp_private_member_map->get (t);
7978 gcc_assert (v);
7979 if (!no_decl_expr)
7980 add_decl_expr (*v);
7981 omp_private_member_map->remove (t);
7982 }
7983 delete omp_private_member_map;
7984 omp_private_member_map = NULL;
7985 }
7986 add_stmt (stmt);
7987 }
7988
7989 /* Remember OpenMP privatization clauses mapping and clear it.
7990 Used for lambdas. */
7991
7992 void
7993 save_omp_privatization_clauses (vec<tree> &save)
7994 {
7995 save = vNULL;
7996 if (omp_private_member_ignore_next)
7997 save.safe_push (integer_one_node);
7998 omp_private_member_ignore_next = false;
7999 if (!omp_private_member_map)
8000 return;
8001
8002 while (!omp_private_member_vec.is_empty ())
8003 {
8004 tree t = omp_private_member_vec.pop ();
8005 if (t == error_mark_node)
8006 {
8007 save.safe_push (t);
8008 continue;
8009 }
8010 tree n = t;
8011 if (t == integer_zero_node)
8012 t = omp_private_member_vec.pop ();
8013 tree *v = omp_private_member_map->get (t);
8014 gcc_assert (v);
8015 save.safe_push (*v);
8016 save.safe_push (t);
8017 if (n != t)
8018 save.safe_push (n);
8019 }
8020 delete omp_private_member_map;
8021 omp_private_member_map = NULL;
8022 }
8023
8024 /* Restore OpenMP privatization clauses mapping saved by the
8025 above function. */
8026
8027 void
8028 restore_omp_privatization_clauses (vec<tree> &save)
8029 {
8030 gcc_assert (omp_private_member_vec.is_empty ());
8031 omp_private_member_ignore_next = false;
8032 if (save.is_empty ())
8033 return;
8034 if (save.length () == 1 && save[0] == integer_one_node)
8035 {
8036 omp_private_member_ignore_next = true;
8037 save.release ();
8038 return;
8039 }
8040
8041 omp_private_member_map = new hash_map <tree, tree>;
8042 while (!save.is_empty ())
8043 {
8044 tree t = save.pop ();
8045 tree n = t;
8046 if (t != error_mark_node)
8047 {
8048 if (t == integer_one_node)
8049 {
8050 omp_private_member_ignore_next = true;
8051 gcc_assert (save.is_empty ());
8052 break;
8053 }
8054 if (t == integer_zero_node)
8055 t = save.pop ();
8056 tree &v = omp_private_member_map->get_or_insert (t);
8057 v = save.pop ();
8058 }
8059 omp_private_member_vec.safe_push (t);
8060 if (n != t)
8061 omp_private_member_vec.safe_push (n);
8062 }
8063 save.release ();
8064 }
8065
8066 /* For all variables in the tree_list VARS, mark them as thread local. */
8067
8068 void
8069 finish_omp_threadprivate (tree vars)
8070 {
8071 tree t;
8072
8073 /* Mark every variable in VARS to be assigned thread local storage. */
8074 for (t = vars; t; t = TREE_CHAIN (t))
8075 {
8076 tree v = TREE_PURPOSE (t);
8077
8078 if (error_operand_p (v))
8079 ;
8080 else if (!VAR_P (v))
8081 error ("%<threadprivate%> %qD is not file, namespace "
8082 "or block scope variable", v);
8083 /* If V had already been marked threadprivate, it doesn't matter
8084 whether it had been used prior to this point. */
8085 else if (TREE_USED (v)
8086 && (DECL_LANG_SPECIFIC (v) == NULL
8087 || !CP_DECL_THREADPRIVATE_P (v)))
8088 error ("%qE declared %<threadprivate%> after first use", v);
8089 else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
8090 error ("automatic variable %qE cannot be %<threadprivate%>", v);
8091 else if (! COMPLETE_TYPE_P (complete_type (TREE_TYPE (v))))
8092 error ("%<threadprivate%> %qE has incomplete type", v);
8093 else if (TREE_STATIC (v) && TYPE_P (CP_DECL_CONTEXT (v))
8094 && CP_DECL_CONTEXT (v) != current_class_type)
8095 error ("%<threadprivate%> %qE directive not "
8096 "in %qT definition", v, CP_DECL_CONTEXT (v));
8097 else
8098 {
8099 /* Allocate a LANG_SPECIFIC structure for V, if needed. */
8100 if (DECL_LANG_SPECIFIC (v) == NULL)
8101 retrofit_lang_decl (v);
8102
8103 if (! CP_DECL_THREAD_LOCAL_P (v))
8104 {
8105 CP_DECL_THREAD_LOCAL_P (v) = true;
8106 set_decl_tls_model (v, decl_default_tls_model (v));
8107 /* If rtl has been already set for this var, call
8108 make_decl_rtl once again, so that encode_section_info
8109 has a chance to look at the new decl flags. */
8110 if (DECL_RTL_SET_P (v))
8111 make_decl_rtl (v);
8112 }
8113 CP_DECL_THREADPRIVATE_P (v) = 1;
8114 }
8115 }
8116 }
8117
8118 /* Build an OpenMP structured block. */
8119
8120 tree
8121 begin_omp_structured_block (void)
8122 {
8123 return do_pushlevel (sk_omp);
8124 }
8125
8126 tree
8127 finish_omp_structured_block (tree block)
8128 {
8129 return do_poplevel (block);
8130 }
8131
8132 /* Similarly, except force the retention of the BLOCK. */
8133
8134 tree
8135 begin_omp_parallel (void)
8136 {
8137 keep_next_level (true);
8138 return begin_omp_structured_block ();
8139 }
8140
8141 /* Generate OACC_DATA, with CLAUSES and BLOCK as its compound
8142 statement. */
8143
8144 tree
8145 finish_oacc_data (tree clauses, tree block)
8146 {
8147 tree stmt;
8148
8149 block = finish_omp_structured_block (block);
8150
8151 stmt = make_node (OACC_DATA);
8152 TREE_TYPE (stmt) = void_type_node;
8153 OACC_DATA_CLAUSES (stmt) = clauses;
8154 OACC_DATA_BODY (stmt) = block;
8155
8156 return add_stmt (stmt);
8157 }
8158
8159 /* Generate OACC_HOST_DATA, with CLAUSES and BLOCK as its compound
8160 statement. */
8161
8162 tree
8163 finish_oacc_host_data (tree clauses, tree block)
8164 {
8165 tree stmt;
8166
8167 block = finish_omp_structured_block (block);
8168
8169 stmt = make_node (OACC_HOST_DATA);
8170 TREE_TYPE (stmt) = void_type_node;
8171 OACC_HOST_DATA_CLAUSES (stmt) = clauses;
8172 OACC_HOST_DATA_BODY (stmt) = block;
8173
8174 return add_stmt (stmt);
8175 }
8176
8177 /* Generate OMP construct CODE, with BODY and CLAUSES as its compound
8178 statement. */
8179
8180 tree
8181 finish_omp_construct (enum tree_code code, tree body, tree clauses)
8182 {
8183 body = finish_omp_structured_block (body);
8184
8185 tree stmt = make_node (code);
8186 TREE_TYPE (stmt) = void_type_node;
8187 OMP_BODY (stmt) = body;
8188 OMP_CLAUSES (stmt) = clauses;
8189
8190 return add_stmt (stmt);
8191 }
8192
8193 tree
8194 finish_omp_parallel (tree clauses, tree body)
8195 {
8196 tree stmt;
8197
8198 body = finish_omp_structured_block (body);
8199
8200 stmt = make_node (OMP_PARALLEL);
8201 TREE_TYPE (stmt) = void_type_node;
8202 OMP_PARALLEL_CLAUSES (stmt) = clauses;
8203 OMP_PARALLEL_BODY (stmt) = body;
8204
8205 return add_stmt (stmt);
8206 }
8207
8208 tree
8209 begin_omp_task (void)
8210 {
8211 keep_next_level (true);
8212 return begin_omp_structured_block ();
8213 }
8214
8215 tree
8216 finish_omp_task (tree clauses, tree body)
8217 {
8218 tree stmt;
8219
8220 body = finish_omp_structured_block (body);
8221
8222 stmt = make_node (OMP_TASK);
8223 TREE_TYPE (stmt) = void_type_node;
8224 OMP_TASK_CLAUSES (stmt) = clauses;
8225 OMP_TASK_BODY (stmt) = body;
8226
8227 return add_stmt (stmt);
8228 }
8229
8230 /* Helper function for finish_omp_for. Convert Ith random access iterator
8231 into integral iterator. Return FALSE if successful. */
8232
8233 static bool
8234 handle_omp_for_class_iterator (int i, location_t locus, enum tree_code code,
8235 tree declv, tree orig_declv, tree initv,
8236 tree condv, tree incrv, tree *body,
8237 tree *pre_body, tree &clauses,
8238 int collapse, int ordered)
8239 {
8240 tree diff, iter_init, iter_incr = NULL, last;
8241 tree incr_var = NULL, orig_pre_body, orig_body, c;
8242 tree decl = TREE_VEC_ELT (declv, i);
8243 tree init = TREE_VEC_ELT (initv, i);
8244 tree cond = TREE_VEC_ELT (condv, i);
8245 tree incr = TREE_VEC_ELT (incrv, i);
8246 tree iter = decl;
8247 location_t elocus = locus;
8248
8249 if (init && EXPR_HAS_LOCATION (init))
8250 elocus = EXPR_LOCATION (init);
8251
8252 cond = cp_fully_fold (cond);
8253 switch (TREE_CODE (cond))
8254 {
8255 case GT_EXPR:
8256 case GE_EXPR:
8257 case LT_EXPR:
8258 case LE_EXPR:
8259 case NE_EXPR:
8260 if (TREE_OPERAND (cond, 1) == iter)
8261 cond = build2 (swap_tree_comparison (TREE_CODE (cond)),
8262 TREE_TYPE (cond), iter, TREE_OPERAND (cond, 0));
8263 if (TREE_OPERAND (cond, 0) != iter)
8264 cond = error_mark_node;
8265 else
8266 {
8267 tree tem = build_x_binary_op (EXPR_LOCATION (cond),
8268 TREE_CODE (cond),
8269 iter, ERROR_MARK,
8270 TREE_OPERAND (cond, 1), ERROR_MARK,
8271 NULL, tf_warning_or_error);
8272 if (error_operand_p (tem))
8273 return true;
8274 }
8275 break;
8276 default:
8277 cond = error_mark_node;
8278 break;
8279 }
8280 if (cond == error_mark_node)
8281 {
8282 error_at (elocus, "invalid controlling predicate");
8283 return true;
8284 }
8285 diff = build_x_binary_op (elocus, MINUS_EXPR, TREE_OPERAND (cond, 1),
8286 ERROR_MARK, iter, ERROR_MARK, NULL,
8287 tf_warning_or_error);
8288 diff = cp_fully_fold (diff);
8289 if (error_operand_p (diff))
8290 return true;
8291 if (TREE_CODE (TREE_TYPE (diff)) != INTEGER_TYPE)
8292 {
8293 error_at (elocus, "difference between %qE and %qD does not have integer type",
8294 TREE_OPERAND (cond, 1), iter);
8295 return true;
8296 }
8297 if (!c_omp_check_loop_iv_exprs (locus, orig_declv,
8298 TREE_VEC_ELT (declv, i), NULL_TREE,
8299 cond, cp_walk_subtrees))
8300 return true;
8301
8302 switch (TREE_CODE (incr))
8303 {
8304 case PREINCREMENT_EXPR:
8305 case PREDECREMENT_EXPR:
8306 case POSTINCREMENT_EXPR:
8307 case POSTDECREMENT_EXPR:
8308 if (TREE_OPERAND (incr, 0) != iter)
8309 {
8310 incr = error_mark_node;
8311 break;
8312 }
8313 iter_incr = build_x_unary_op (EXPR_LOCATION (incr),
8314 TREE_CODE (incr), iter,
8315 tf_warning_or_error);
8316 if (error_operand_p (iter_incr))
8317 return true;
8318 else if (TREE_CODE (incr) == PREINCREMENT_EXPR
8319 || TREE_CODE (incr) == POSTINCREMENT_EXPR)
8320 incr = integer_one_node;
8321 else
8322 incr = integer_minus_one_node;
8323 break;
8324 case MODIFY_EXPR:
8325 if (TREE_OPERAND (incr, 0) != iter)
8326 incr = error_mark_node;
8327 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
8328 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
8329 {
8330 tree rhs = TREE_OPERAND (incr, 1);
8331 if (TREE_OPERAND (rhs, 0) == iter)
8332 {
8333 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 1)))
8334 != INTEGER_TYPE)
8335 incr = error_mark_node;
8336 else
8337 {
8338 iter_incr = build_x_modify_expr (EXPR_LOCATION (rhs),
8339 iter, TREE_CODE (rhs),
8340 TREE_OPERAND (rhs, 1),
8341 tf_warning_or_error);
8342 if (error_operand_p (iter_incr))
8343 return true;
8344 incr = TREE_OPERAND (rhs, 1);
8345 incr = cp_convert (TREE_TYPE (diff), incr,
8346 tf_warning_or_error);
8347 if (TREE_CODE (rhs) == MINUS_EXPR)
8348 {
8349 incr = build1 (NEGATE_EXPR, TREE_TYPE (diff), incr);
8350 incr = fold_simple (incr);
8351 }
8352 if (TREE_CODE (incr) != INTEGER_CST
8353 && (TREE_CODE (incr) != NOP_EXPR
8354 || (TREE_CODE (TREE_OPERAND (incr, 0))
8355 != INTEGER_CST)))
8356 iter_incr = NULL;
8357 }
8358 }
8359 else if (TREE_OPERAND (rhs, 1) == iter)
8360 {
8361 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 0))) != INTEGER_TYPE
8362 || TREE_CODE (rhs) != PLUS_EXPR)
8363 incr = error_mark_node;
8364 else
8365 {
8366 iter_incr = build_x_binary_op (EXPR_LOCATION (rhs),
8367 PLUS_EXPR,
8368 TREE_OPERAND (rhs, 0),
8369 ERROR_MARK, iter,
8370 ERROR_MARK, NULL,
8371 tf_warning_or_error);
8372 if (error_operand_p (iter_incr))
8373 return true;
8374 iter_incr = build_x_modify_expr (EXPR_LOCATION (rhs),
8375 iter, NOP_EXPR,
8376 iter_incr,
8377 tf_warning_or_error);
8378 if (error_operand_p (iter_incr))
8379 return true;
8380 incr = TREE_OPERAND (rhs, 0);
8381 iter_incr = NULL;
8382 }
8383 }
8384 else
8385 incr = error_mark_node;
8386 }
8387 else
8388 incr = error_mark_node;
8389 break;
8390 default:
8391 incr = error_mark_node;
8392 break;
8393 }
8394
8395 if (incr == error_mark_node)
8396 {
8397 error_at (elocus, "invalid increment expression");
8398 return true;
8399 }
8400
8401 incr = cp_convert (TREE_TYPE (diff), incr, tf_warning_or_error);
8402 incr = cp_fully_fold (incr);
8403 bool taskloop_iv_seen = false;
8404 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
8405 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
8406 && OMP_CLAUSE_DECL (c) == iter)
8407 {
8408 if (code == OMP_TASKLOOP)
8409 {
8410 taskloop_iv_seen = true;
8411 OMP_CLAUSE_LASTPRIVATE_TASKLOOP_IV (c) = 1;
8412 }
8413 break;
8414 }
8415 else if (code == OMP_TASKLOOP
8416 && OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
8417 && OMP_CLAUSE_DECL (c) == iter)
8418 {
8419 taskloop_iv_seen = true;
8420 OMP_CLAUSE_PRIVATE_TASKLOOP_IV (c) = 1;
8421 }
8422
8423 decl = create_temporary_var (TREE_TYPE (diff));
8424 pushdecl (decl);
8425 add_decl_expr (decl);
8426 last = create_temporary_var (TREE_TYPE (diff));
8427 pushdecl (last);
8428 add_decl_expr (last);
8429 if (c && iter_incr == NULL && TREE_CODE (incr) != INTEGER_CST
8430 && (!ordered || (i < collapse && collapse > 1)))
8431 {
8432 incr_var = create_temporary_var (TREE_TYPE (diff));
8433 pushdecl (incr_var);
8434 add_decl_expr (incr_var);
8435 }
8436 gcc_assert (stmts_are_full_exprs_p ());
8437 tree diffvar = NULL_TREE;
8438 if (code == OMP_TASKLOOP)
8439 {
8440 if (!taskloop_iv_seen)
8441 {
8442 tree ivc = build_omp_clause (locus, OMP_CLAUSE_FIRSTPRIVATE);
8443 OMP_CLAUSE_DECL (ivc) = iter;
8444 cxx_omp_finish_clause (ivc, NULL);
8445 OMP_CLAUSE_CHAIN (ivc) = clauses;
8446 clauses = ivc;
8447 }
8448 tree lvc = build_omp_clause (locus, OMP_CLAUSE_FIRSTPRIVATE);
8449 OMP_CLAUSE_DECL (lvc) = last;
8450 OMP_CLAUSE_CHAIN (lvc) = clauses;
8451 clauses = lvc;
8452 diffvar = create_temporary_var (TREE_TYPE (diff));
8453 pushdecl (diffvar);
8454 add_decl_expr (diffvar);
8455 }
8456
8457 orig_pre_body = *pre_body;
8458 *pre_body = push_stmt_list ();
8459 if (orig_pre_body)
8460 add_stmt (orig_pre_body);
8461 if (init != NULL)
8462 finish_expr_stmt (build_x_modify_expr (elocus,
8463 iter, NOP_EXPR, init,
8464 tf_warning_or_error));
8465 init = build_int_cst (TREE_TYPE (diff), 0);
8466 if (c && iter_incr == NULL
8467 && (!ordered || (i < collapse && collapse > 1)))
8468 {
8469 if (incr_var)
8470 {
8471 finish_expr_stmt (build_x_modify_expr (elocus,
8472 incr_var, NOP_EXPR,
8473 incr, tf_warning_or_error));
8474 incr = incr_var;
8475 }
8476 iter_incr = build_x_modify_expr (elocus,
8477 iter, PLUS_EXPR, incr,
8478 tf_warning_or_error);
8479 }
8480 if (c && ordered && i < collapse && collapse > 1)
8481 iter_incr = incr;
8482 finish_expr_stmt (build_x_modify_expr (elocus,
8483 last, NOP_EXPR, init,
8484 tf_warning_or_error));
8485 if (diffvar)
8486 {
8487 finish_expr_stmt (build_x_modify_expr (elocus,
8488 diffvar, NOP_EXPR,
8489 diff, tf_warning_or_error));
8490 diff = diffvar;
8491 }
8492 *pre_body = pop_stmt_list (*pre_body);
8493
8494 cond = cp_build_binary_op (elocus,
8495 TREE_CODE (cond), decl, diff,
8496 tf_warning_or_error);
8497 incr = build_modify_expr (elocus, decl, NULL_TREE, PLUS_EXPR,
8498 elocus, incr, NULL_TREE);
8499
8500 orig_body = *body;
8501 *body = push_stmt_list ();
8502 iter_init = build2 (MINUS_EXPR, TREE_TYPE (diff), decl, last);
8503 iter_init = build_x_modify_expr (elocus,
8504 iter, PLUS_EXPR, iter_init,
8505 tf_warning_or_error);
8506 if (iter_init != error_mark_node)
8507 iter_init = build1 (NOP_EXPR, void_type_node, iter_init);
8508 finish_expr_stmt (iter_init);
8509 finish_expr_stmt (build_x_modify_expr (elocus,
8510 last, NOP_EXPR, decl,
8511 tf_warning_or_error));
8512 add_stmt (orig_body);
8513 *body = pop_stmt_list (*body);
8514
8515 if (c)
8516 {
8517 OMP_CLAUSE_LASTPRIVATE_STMT (c) = push_stmt_list ();
8518 if (!ordered)
8519 finish_expr_stmt (iter_incr);
8520 else
8521 {
8522 iter_init = decl;
8523 if (i < collapse && collapse > 1 && !error_operand_p (iter_incr))
8524 iter_init = build2 (PLUS_EXPR, TREE_TYPE (diff),
8525 iter_init, iter_incr);
8526 iter_init = build2 (MINUS_EXPR, TREE_TYPE (diff), iter_init, last);
8527 iter_init = build_x_modify_expr (elocus,
8528 iter, PLUS_EXPR, iter_init,
8529 tf_warning_or_error);
8530 if (iter_init != error_mark_node)
8531 iter_init = build1 (NOP_EXPR, void_type_node, iter_init);
8532 finish_expr_stmt (iter_init);
8533 }
8534 OMP_CLAUSE_LASTPRIVATE_STMT (c)
8535 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (c));
8536 }
8537
8538 if (TREE_CODE (TREE_VEC_ELT (orig_declv, i)) == TREE_LIST)
8539 {
8540 tree t = TREE_VEC_ELT (orig_declv, i);
8541 gcc_assert (TREE_PURPOSE (t) == NULL_TREE
8542 && TREE_VALUE (t) == NULL_TREE
8543 && TREE_CODE (TREE_CHAIN (t)) == TREE_VEC);
8544 TREE_PURPOSE (t) = TREE_VEC_ELT (declv, i);
8545 TREE_VALUE (t) = last;
8546 }
8547 else
8548 TREE_VEC_ELT (orig_declv, i)
8549 = tree_cons (TREE_VEC_ELT (declv, i), last, NULL_TREE);
8550 TREE_VEC_ELT (declv, i) = decl;
8551 TREE_VEC_ELT (initv, i) = init;
8552 TREE_VEC_ELT (condv, i) = cond;
8553 TREE_VEC_ELT (incrv, i) = incr;
8554
8555 return false;
8556 }
8557
8558 /* Build and validate an OMP_FOR statement. CLAUSES, BODY, COND, INCR
8559 are directly for their associated operands in the statement. DECL
8560 and INIT are a combo; if DECL is NULL then INIT ought to be a
8561 MODIFY_EXPR, and the DECL should be extracted. PRE_BODY are
8562 optional statements that need to go before the loop into its
8563 sk_omp scope. */
8564
8565 tree
8566 finish_omp_for (location_t locus, enum tree_code code, tree declv,
8567 tree orig_declv, tree initv, tree condv, tree incrv,
8568 tree body, tree pre_body, vec<tree> *orig_inits, tree clauses)
8569 {
8570 tree omp_for = NULL, orig_incr = NULL;
8571 tree decl = NULL, init, cond, incr;
8572 location_t elocus;
8573 int i;
8574 int collapse = 1;
8575 int ordered = 0;
8576
8577 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv));
8578 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv));
8579 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv));
8580 if (TREE_VEC_LENGTH (declv) > 1)
8581 {
8582 tree c;
8583
8584 c = omp_find_clause (clauses, OMP_CLAUSE_TILE);
8585 if (c)
8586 collapse = list_length (OMP_CLAUSE_TILE_LIST (c));
8587 else
8588 {
8589 c = omp_find_clause (clauses, OMP_CLAUSE_COLLAPSE);
8590 if (c)
8591 collapse = tree_to_shwi (OMP_CLAUSE_COLLAPSE_EXPR (c));
8592 if (collapse != TREE_VEC_LENGTH (declv))
8593 ordered = TREE_VEC_LENGTH (declv);
8594 }
8595 }
8596 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
8597 {
8598 decl = TREE_VEC_ELT (declv, i);
8599 init = TREE_VEC_ELT (initv, i);
8600 cond = TREE_VEC_ELT (condv, i);
8601 incr = TREE_VEC_ELT (incrv, i);
8602 elocus = locus;
8603
8604 if (decl == NULL)
8605 {
8606 if (init != NULL)
8607 switch (TREE_CODE (init))
8608 {
8609 case MODIFY_EXPR:
8610 decl = TREE_OPERAND (init, 0);
8611 init = TREE_OPERAND (init, 1);
8612 break;
8613 case MODOP_EXPR:
8614 if (TREE_CODE (TREE_OPERAND (init, 1)) == NOP_EXPR)
8615 {
8616 decl = TREE_OPERAND (init, 0);
8617 init = TREE_OPERAND (init, 2);
8618 }
8619 break;
8620 default:
8621 break;
8622 }
8623
8624 if (decl == NULL)
8625 {
8626 error_at (locus,
8627 "expected iteration declaration or initialization");
8628 return NULL;
8629 }
8630 }
8631
8632 if (init && EXPR_HAS_LOCATION (init))
8633 elocus = EXPR_LOCATION (init);
8634
8635 if (cond == global_namespace)
8636 continue;
8637
8638 if (cond == NULL)
8639 {
8640 error_at (elocus, "missing controlling predicate");
8641 return NULL;
8642 }
8643
8644 if (incr == NULL)
8645 {
8646 error_at (elocus, "missing increment expression");
8647 return NULL;
8648 }
8649
8650 TREE_VEC_ELT (declv, i) = decl;
8651 TREE_VEC_ELT (initv, i) = init;
8652 }
8653
8654 if (orig_inits)
8655 {
8656 bool fail = false;
8657 tree orig_init;
8658 FOR_EACH_VEC_ELT (*orig_inits, i, orig_init)
8659 if (orig_init
8660 && !c_omp_check_loop_iv_exprs (locus, orig_declv
8661 ? orig_declv : declv,
8662 TREE_VEC_ELT (declv, i), orig_init,
8663 NULL_TREE, cp_walk_subtrees))
8664 fail = true;
8665 if (fail)
8666 return NULL;
8667 }
8668
8669 if (dependent_omp_for_p (declv, initv, condv, incrv))
8670 {
8671 tree stmt;
8672
8673 stmt = make_node (code);
8674
8675 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
8676 {
8677 /* This is really just a place-holder. We'll be decomposing this
8678 again and going through the cp_build_modify_expr path below when
8679 we instantiate the thing. */
8680 TREE_VEC_ELT (initv, i)
8681 = build2 (MODIFY_EXPR, void_type_node, TREE_VEC_ELT (declv, i),
8682 TREE_VEC_ELT (initv, i));
8683 }
8684
8685 TREE_TYPE (stmt) = void_type_node;
8686 OMP_FOR_INIT (stmt) = initv;
8687 OMP_FOR_COND (stmt) = condv;
8688 OMP_FOR_INCR (stmt) = incrv;
8689 OMP_FOR_BODY (stmt) = body;
8690 OMP_FOR_PRE_BODY (stmt) = pre_body;
8691 OMP_FOR_CLAUSES (stmt) = clauses;
8692
8693 SET_EXPR_LOCATION (stmt, locus);
8694 return add_stmt (stmt);
8695 }
8696
8697 if (!orig_declv)
8698 orig_declv = copy_node (declv);
8699
8700 if (processing_template_decl)
8701 orig_incr = make_tree_vec (TREE_VEC_LENGTH (incrv));
8702
8703 for (i = 0; i < TREE_VEC_LENGTH (declv); )
8704 {
8705 decl = TREE_VEC_ELT (declv, i);
8706 init = TREE_VEC_ELT (initv, i);
8707 cond = TREE_VEC_ELT (condv, i);
8708 incr = TREE_VEC_ELT (incrv, i);
8709 if (orig_incr)
8710 TREE_VEC_ELT (orig_incr, i) = incr;
8711 elocus = locus;
8712
8713 if (init && EXPR_HAS_LOCATION (init))
8714 elocus = EXPR_LOCATION (init);
8715
8716 if (!DECL_P (decl))
8717 {
8718 error_at (elocus, "expected iteration declaration or initialization");
8719 return NULL;
8720 }
8721
8722 if (incr && TREE_CODE (incr) == MODOP_EXPR)
8723 {
8724 if (orig_incr)
8725 TREE_VEC_ELT (orig_incr, i) = incr;
8726 incr = cp_build_modify_expr (elocus, TREE_OPERAND (incr, 0),
8727 TREE_CODE (TREE_OPERAND (incr, 1)),
8728 TREE_OPERAND (incr, 2),
8729 tf_warning_or_error);
8730 }
8731
8732 if (CLASS_TYPE_P (TREE_TYPE (decl)))
8733 {
8734 if (code == OMP_SIMD)
8735 {
8736 error_at (elocus, "%<#pragma omp simd%> used with class "
8737 "iteration variable %qE", decl);
8738 return NULL;
8739 }
8740 if (handle_omp_for_class_iterator (i, locus, code, declv, orig_declv,
8741 initv, condv, incrv, &body,
8742 &pre_body, clauses,
8743 collapse, ordered))
8744 return NULL;
8745 continue;
8746 }
8747
8748 if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))
8749 && !TYPE_PTR_P (TREE_TYPE (decl)))
8750 {
8751 error_at (elocus, "invalid type for iteration variable %qE", decl);
8752 return NULL;
8753 }
8754
8755 if (!processing_template_decl)
8756 {
8757 init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
8758 init = cp_build_modify_expr (elocus, decl, NOP_EXPR, init,
8759 tf_warning_or_error);
8760 }
8761 else
8762 init = build2 (MODIFY_EXPR, void_type_node, decl, init);
8763 if (cond
8764 && TREE_SIDE_EFFECTS (cond)
8765 && COMPARISON_CLASS_P (cond)
8766 && !processing_template_decl)
8767 {
8768 tree t = TREE_OPERAND (cond, 0);
8769 if (TREE_SIDE_EFFECTS (t)
8770 && t != decl
8771 && (TREE_CODE (t) != NOP_EXPR
8772 || TREE_OPERAND (t, 0) != decl))
8773 TREE_OPERAND (cond, 0)
8774 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
8775
8776 t = TREE_OPERAND (cond, 1);
8777 if (TREE_SIDE_EFFECTS (t)
8778 && t != decl
8779 && (TREE_CODE (t) != NOP_EXPR
8780 || TREE_OPERAND (t, 0) != decl))
8781 TREE_OPERAND (cond, 1)
8782 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
8783 }
8784 if (decl == error_mark_node || init == error_mark_node)
8785 return NULL;
8786
8787 TREE_VEC_ELT (declv, i) = decl;
8788 TREE_VEC_ELT (initv, i) = init;
8789 TREE_VEC_ELT (condv, i) = cond;
8790 TREE_VEC_ELT (incrv, i) = incr;
8791 i++;
8792 }
8793
8794 if (pre_body && IS_EMPTY_STMT (pre_body))
8795 pre_body = NULL;
8796
8797 omp_for = c_finish_omp_for (locus, code, declv, orig_declv, initv, condv,
8798 incrv, body, pre_body,
8799 !processing_template_decl);
8800
8801 /* Check for iterators appearing in lb, b or incr expressions. */
8802 if (omp_for && !c_omp_check_loop_iv (omp_for, orig_declv, cp_walk_subtrees))
8803 omp_for = NULL_TREE;
8804
8805 if (omp_for == NULL)
8806 {
8807 return NULL;
8808 }
8809
8810 add_stmt (omp_for);
8811
8812 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++)
8813 {
8814 decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i), 0);
8815 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i);
8816
8817 if (TREE_CODE (incr) != MODIFY_EXPR)
8818 continue;
8819
8820 if (TREE_SIDE_EFFECTS (TREE_OPERAND (incr, 1))
8821 && BINARY_CLASS_P (TREE_OPERAND (incr, 1))
8822 && !processing_template_decl)
8823 {
8824 tree t = TREE_OPERAND (TREE_OPERAND (incr, 1), 0);
8825 if (TREE_SIDE_EFFECTS (t)
8826 && t != decl
8827 && (TREE_CODE (t) != NOP_EXPR
8828 || TREE_OPERAND (t, 0) != decl))
8829 TREE_OPERAND (TREE_OPERAND (incr, 1), 0)
8830 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
8831
8832 t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
8833 if (TREE_SIDE_EFFECTS (t)
8834 && t != decl
8835 && (TREE_CODE (t) != NOP_EXPR
8836 || TREE_OPERAND (t, 0) != decl))
8837 TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
8838 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
8839 }
8840
8841 if (orig_incr)
8842 TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i) = TREE_VEC_ELT (orig_incr, i);
8843 }
8844 OMP_FOR_CLAUSES (omp_for) = clauses;
8845
8846 /* For simd loops with non-static data member iterators, we could have added
8847 OMP_CLAUSE_LINEAR clauses without OMP_CLAUSE_LINEAR_STEP. As we know the
8848 step at this point, fill it in. */
8849 if (code == OMP_SIMD && !processing_template_decl
8850 && TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)) == 1)
8851 for (tree c = omp_find_clause (clauses, OMP_CLAUSE_LINEAR); c;
8852 c = omp_find_clause (OMP_CLAUSE_CHAIN (c), OMP_CLAUSE_LINEAR))
8853 if (OMP_CLAUSE_LINEAR_STEP (c) == NULL_TREE)
8854 {
8855 decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), 0), 0);
8856 gcc_assert (decl == OMP_CLAUSE_DECL (c));
8857 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), 0);
8858 tree step, stept;
8859 switch (TREE_CODE (incr))
8860 {
8861 case PREINCREMENT_EXPR:
8862 case POSTINCREMENT_EXPR:
8863 /* c_omp_for_incr_canonicalize_ptr() should have been
8864 called to massage things appropriately. */
8865 gcc_assert (!INDIRECT_TYPE_P (TREE_TYPE (decl)));
8866 OMP_CLAUSE_LINEAR_STEP (c) = build_int_cst (TREE_TYPE (decl), 1);
8867 break;
8868 case PREDECREMENT_EXPR:
8869 case POSTDECREMENT_EXPR:
8870 /* c_omp_for_incr_canonicalize_ptr() should have been
8871 called to massage things appropriately. */
8872 gcc_assert (!INDIRECT_TYPE_P (TREE_TYPE (decl)));
8873 OMP_CLAUSE_LINEAR_STEP (c)
8874 = build_int_cst (TREE_TYPE (decl), -1);
8875 break;
8876 case MODIFY_EXPR:
8877 gcc_assert (TREE_OPERAND (incr, 0) == decl);
8878 incr = TREE_OPERAND (incr, 1);
8879 switch (TREE_CODE (incr))
8880 {
8881 case PLUS_EXPR:
8882 if (TREE_OPERAND (incr, 1) == decl)
8883 step = TREE_OPERAND (incr, 0);
8884 else
8885 step = TREE_OPERAND (incr, 1);
8886 break;
8887 case MINUS_EXPR:
8888 case POINTER_PLUS_EXPR:
8889 gcc_assert (TREE_OPERAND (incr, 0) == decl);
8890 step = TREE_OPERAND (incr, 1);
8891 break;
8892 default:
8893 gcc_unreachable ();
8894 }
8895 stept = TREE_TYPE (decl);
8896 if (INDIRECT_TYPE_P (stept))
8897 stept = sizetype;
8898 step = fold_convert (stept, step);
8899 if (TREE_CODE (incr) == MINUS_EXPR)
8900 step = fold_build1 (NEGATE_EXPR, stept, step);
8901 OMP_CLAUSE_LINEAR_STEP (c) = step;
8902 break;
8903 default:
8904 gcc_unreachable ();
8905 }
8906 }
8907
8908 return omp_for;
8909 }
8910
8911 /* Fix up range for decls. Those decls were pushed into BIND's BIND_EXPR_VARS
8912 and need to be moved into the BIND_EXPR inside of the OMP_FOR's body. */
8913
8914 tree
8915 finish_omp_for_block (tree bind, tree omp_for)
8916 {
8917 if (omp_for == NULL_TREE
8918 || !OMP_FOR_ORIG_DECLS (omp_for)
8919 || bind == NULL_TREE
8920 || TREE_CODE (bind) != BIND_EXPR)
8921 return bind;
8922 tree b = NULL_TREE;
8923 for (int i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (omp_for)); i++)
8924 if (TREE_CODE (TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (omp_for), i)) == TREE_LIST
8925 && TREE_CHAIN (TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (omp_for), i)))
8926 {
8927 tree v = TREE_CHAIN (TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (omp_for), i));
8928 gcc_assert (BIND_EXPR_BLOCK (bind)
8929 && (BIND_EXPR_VARS (bind)
8930 == BLOCK_VARS (BIND_EXPR_BLOCK (bind))));
8931 for (int j = 2; j < TREE_VEC_LENGTH (v); j++)
8932 for (tree *p = &BIND_EXPR_VARS (bind); *p; p = &DECL_CHAIN (*p))
8933 {
8934 if (*p == TREE_VEC_ELT (v, j))
8935 {
8936 tree var = *p;
8937 *p = DECL_CHAIN (*p);
8938 if (b == NULL_TREE)
8939 {
8940 b = make_node (BLOCK);
8941 b = build3 (BIND_EXPR, void_type_node, NULL_TREE,
8942 OMP_FOR_BODY (omp_for), b);
8943 TREE_SIDE_EFFECTS (b) = 1;
8944 OMP_FOR_BODY (omp_for) = b;
8945 }
8946 DECL_CHAIN (var) = BIND_EXPR_VARS (b);
8947 BIND_EXPR_VARS (b) = var;
8948 BLOCK_VARS (BIND_EXPR_BLOCK (b)) = var;
8949 }
8950 }
8951 BLOCK_VARS (BIND_EXPR_BLOCK (bind)) = BIND_EXPR_VARS (bind);
8952 }
8953 return bind;
8954 }
8955
8956 void
8957 finish_omp_atomic (location_t loc, enum tree_code code, enum tree_code opcode,
8958 tree lhs, tree rhs, tree v, tree lhs1, tree rhs1,
8959 tree clauses, enum omp_memory_order mo)
8960 {
8961 tree orig_lhs;
8962 tree orig_rhs;
8963 tree orig_v;
8964 tree orig_lhs1;
8965 tree orig_rhs1;
8966 bool dependent_p;
8967 tree stmt;
8968
8969 orig_lhs = lhs;
8970 orig_rhs = rhs;
8971 orig_v = v;
8972 orig_lhs1 = lhs1;
8973 orig_rhs1 = rhs1;
8974 dependent_p = false;
8975 stmt = NULL_TREE;
8976
8977 /* Even in a template, we can detect invalid uses of the atomic
8978 pragma if neither LHS nor RHS is type-dependent. */
8979 if (processing_template_decl)
8980 {
8981 dependent_p = (type_dependent_expression_p (lhs)
8982 || (rhs && type_dependent_expression_p (rhs))
8983 || (v && type_dependent_expression_p (v))
8984 || (lhs1 && type_dependent_expression_p (lhs1))
8985 || (rhs1 && type_dependent_expression_p (rhs1)));
8986 if (clauses)
8987 {
8988 gcc_assert (TREE_CODE (clauses) == OMP_CLAUSE
8989 && OMP_CLAUSE_CODE (clauses) == OMP_CLAUSE_HINT
8990 && OMP_CLAUSE_CHAIN (clauses) == NULL_TREE);
8991 if (type_dependent_expression_p (OMP_CLAUSE_HINT_EXPR (clauses))
8992 || TREE_CODE (OMP_CLAUSE_HINT_EXPR (clauses)) != INTEGER_CST)
8993 dependent_p = true;
8994 }
8995 if (!dependent_p)
8996 {
8997 lhs = build_non_dependent_expr (lhs);
8998 if (rhs)
8999 rhs = build_non_dependent_expr (rhs);
9000 if (v)
9001 v = build_non_dependent_expr (v);
9002 if (lhs1)
9003 lhs1 = build_non_dependent_expr (lhs1);
9004 if (rhs1)
9005 rhs1 = build_non_dependent_expr (rhs1);
9006 }
9007 }
9008 if (!dependent_p)
9009 {
9010 bool swapped = false;
9011 if (rhs1 && cp_tree_equal (lhs, rhs))
9012 {
9013 std::swap (rhs, rhs1);
9014 swapped = !commutative_tree_code (opcode);
9015 }
9016 if (rhs1 && !cp_tree_equal (lhs, rhs1))
9017 {
9018 if (code == OMP_ATOMIC)
9019 error ("%<#pragma omp atomic update%> uses two different "
9020 "expressions for memory");
9021 else
9022 error ("%<#pragma omp atomic capture%> uses two different "
9023 "expressions for memory");
9024 return;
9025 }
9026 if (lhs1 && !cp_tree_equal (lhs, lhs1))
9027 {
9028 if (code == OMP_ATOMIC)
9029 error ("%<#pragma omp atomic update%> uses two different "
9030 "expressions for memory");
9031 else
9032 error ("%<#pragma omp atomic capture%> uses two different "
9033 "expressions for memory");
9034 return;
9035 }
9036 stmt = c_finish_omp_atomic (loc, code, opcode, lhs, rhs,
9037 v, lhs1, rhs1, swapped, mo,
9038 processing_template_decl != 0);
9039 if (stmt == error_mark_node)
9040 return;
9041 }
9042 if (processing_template_decl)
9043 {
9044 if (code == OMP_ATOMIC_READ)
9045 {
9046 stmt = build_min_nt_loc (loc, OMP_ATOMIC_READ, orig_lhs);
9047 OMP_ATOMIC_MEMORY_ORDER (stmt) = mo;
9048 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
9049 }
9050 else
9051 {
9052 if (opcode == NOP_EXPR)
9053 stmt = build2 (MODIFY_EXPR, void_type_node, orig_lhs, orig_rhs);
9054 else
9055 stmt = build2 (opcode, void_type_node, orig_lhs, orig_rhs);
9056 if (orig_rhs1)
9057 stmt = build_min_nt_loc (EXPR_LOCATION (orig_rhs1),
9058 COMPOUND_EXPR, orig_rhs1, stmt);
9059 if (code != OMP_ATOMIC)
9060 {
9061 stmt = build_min_nt_loc (loc, code, orig_lhs1, stmt);
9062 OMP_ATOMIC_MEMORY_ORDER (stmt) = mo;
9063 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
9064 }
9065 }
9066 stmt = build2 (OMP_ATOMIC, void_type_node,
9067 clauses ? clauses : integer_zero_node, stmt);
9068 OMP_ATOMIC_MEMORY_ORDER (stmt) = mo;
9069 SET_EXPR_LOCATION (stmt, loc);
9070 }
9071
9072 /* Avoid -Wunused-value warnings here, the whole construct has side-effects
9073 and even if it might be wrapped from fold-const.c or c-omp.c wrapped
9074 in some tree that appears to be unused, the value is not unused. */
9075 warning_sentinel w (warn_unused_value);
9076 finish_expr_stmt (stmt);
9077 }
9078
9079 void
9080 finish_omp_barrier (void)
9081 {
9082 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_BARRIER);
9083 releasing_vec vec;
9084 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
9085 finish_expr_stmt (stmt);
9086 }
9087
9088 void
9089 finish_omp_depobj (location_t loc, tree depobj,
9090 enum omp_clause_depend_kind kind, tree clause)
9091 {
9092 if (!error_operand_p (depobj) && !type_dependent_expression_p (depobj))
9093 {
9094 if (!lvalue_p (depobj))
9095 {
9096 error_at (EXPR_LOC_OR_LOC (depobj, loc),
9097 "%<depobj%> expression is not lvalue expression");
9098 depobj = error_mark_node;
9099 }
9100 }
9101
9102 if (processing_template_decl)
9103 {
9104 if (clause == NULL_TREE)
9105 clause = build_int_cst (integer_type_node, kind);
9106 add_stmt (build_min_nt_loc (loc, OMP_DEPOBJ, depobj, clause));
9107 return;
9108 }
9109
9110 if (!error_operand_p (depobj))
9111 {
9112 tree addr = cp_build_addr_expr (depobj, tf_warning_or_error);
9113 if (addr == error_mark_node)
9114 depobj = error_mark_node;
9115 else
9116 depobj = cp_build_indirect_ref (addr, RO_UNARY_STAR,
9117 tf_warning_or_error);
9118 }
9119
9120 c_finish_omp_depobj (loc, depobj, kind, clause);
9121 }
9122
9123 void
9124 finish_omp_flush (int mo)
9125 {
9126 tree fn = builtin_decl_explicit (BUILT_IN_SYNC_SYNCHRONIZE);
9127 releasing_vec vec;
9128 if (mo != MEMMODEL_LAST)
9129 {
9130 fn = builtin_decl_explicit (BUILT_IN_ATOMIC_THREAD_FENCE);
9131 vec->quick_push (build_int_cst (integer_type_node, mo));
9132 }
9133 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
9134 finish_expr_stmt (stmt);
9135 }
9136
9137 void
9138 finish_omp_taskwait (void)
9139 {
9140 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKWAIT);
9141 releasing_vec vec;
9142 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
9143 finish_expr_stmt (stmt);
9144 }
9145
9146 void
9147 finish_omp_taskyield (void)
9148 {
9149 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKYIELD);
9150 releasing_vec vec;
9151 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
9152 finish_expr_stmt (stmt);
9153 }
9154
9155 void
9156 finish_omp_cancel (tree clauses)
9157 {
9158 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_CANCEL);
9159 int mask = 0;
9160 if (omp_find_clause (clauses, OMP_CLAUSE_PARALLEL))
9161 mask = 1;
9162 else if (omp_find_clause (clauses, OMP_CLAUSE_FOR))
9163 mask = 2;
9164 else if (omp_find_clause (clauses, OMP_CLAUSE_SECTIONS))
9165 mask = 4;
9166 else if (omp_find_clause (clauses, OMP_CLAUSE_TASKGROUP))
9167 mask = 8;
9168 else
9169 {
9170 error ("%<#pragma omp cancel%> must specify one of "
9171 "%<parallel%>, %<for%>, %<sections%> or %<taskgroup%> clauses");
9172 return;
9173 }
9174 releasing_vec vec;
9175 tree ifc = omp_find_clause (clauses, OMP_CLAUSE_IF);
9176 if (ifc != NULL_TREE)
9177 {
9178 if (OMP_CLAUSE_IF_MODIFIER (ifc) != ERROR_MARK
9179 && OMP_CLAUSE_IF_MODIFIER (ifc) != VOID_CST)
9180 error_at (OMP_CLAUSE_LOCATION (ifc),
9181 "expected %<cancel%> %<if%> clause modifier");
9182 else
9183 {
9184 tree ifc2 = omp_find_clause (OMP_CLAUSE_CHAIN (ifc), OMP_CLAUSE_IF);
9185 if (ifc2 != NULL_TREE)
9186 {
9187 gcc_assert (OMP_CLAUSE_IF_MODIFIER (ifc) == VOID_CST
9188 && OMP_CLAUSE_IF_MODIFIER (ifc2) != ERROR_MARK
9189 && OMP_CLAUSE_IF_MODIFIER (ifc2) != VOID_CST);
9190 error_at (OMP_CLAUSE_LOCATION (ifc2),
9191 "expected %<cancel%> %<if%> clause modifier");
9192 }
9193 }
9194
9195 if (!processing_template_decl)
9196 ifc = maybe_convert_cond (OMP_CLAUSE_IF_EXPR (ifc));
9197 else
9198 ifc = build_x_binary_op (OMP_CLAUSE_LOCATION (ifc), NE_EXPR,
9199 OMP_CLAUSE_IF_EXPR (ifc), ERROR_MARK,
9200 integer_zero_node, ERROR_MARK,
9201 NULL, tf_warning_or_error);
9202 }
9203 else
9204 ifc = boolean_true_node;
9205 vec->quick_push (build_int_cst (integer_type_node, mask));
9206 vec->quick_push (ifc);
9207 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
9208 finish_expr_stmt (stmt);
9209 }
9210
9211 void
9212 finish_omp_cancellation_point (tree clauses)
9213 {
9214 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_CANCELLATION_POINT);
9215 int mask = 0;
9216 if (omp_find_clause (clauses, OMP_CLAUSE_PARALLEL))
9217 mask = 1;
9218 else if (omp_find_clause (clauses, OMP_CLAUSE_FOR))
9219 mask = 2;
9220 else if (omp_find_clause (clauses, OMP_CLAUSE_SECTIONS))
9221 mask = 4;
9222 else if (omp_find_clause (clauses, OMP_CLAUSE_TASKGROUP))
9223 mask = 8;
9224 else
9225 {
9226 error ("%<#pragma omp cancellation point%> must specify one of "
9227 "%<parallel%>, %<for%>, %<sections%> or %<taskgroup%> clauses");
9228 return;
9229 }
9230 releasing_vec vec
9231 = make_tree_vector_single (build_int_cst (integer_type_node, mask));
9232 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
9233 finish_expr_stmt (stmt);
9234 }
9235 \f
9236 /* Begin a __transaction_atomic or __transaction_relaxed statement.
9237 If PCOMPOUND is non-null, this is for a function-transaction-block, and we
9238 should create an extra compound stmt. */
9239
9240 tree
9241 begin_transaction_stmt (location_t loc, tree *pcompound, int flags)
9242 {
9243 tree r;
9244
9245 if (pcompound)
9246 *pcompound = begin_compound_stmt (0);
9247
9248 r = build_stmt (loc, TRANSACTION_EXPR, NULL_TREE);
9249
9250 /* Only add the statement to the function if support enabled. */
9251 if (flag_tm)
9252 add_stmt (r);
9253 else
9254 error_at (loc, ((flags & TM_STMT_ATTR_RELAXED) != 0
9255 ? G_("%<__transaction_relaxed%> without "
9256 "transactional memory support enabled")
9257 : G_("%<__transaction_atomic%> without "
9258 "transactional memory support enabled")));
9259
9260 TRANSACTION_EXPR_BODY (r) = push_stmt_list ();
9261 TREE_SIDE_EFFECTS (r) = 1;
9262 return r;
9263 }
9264
9265 /* End a __transaction_atomic or __transaction_relaxed statement.
9266 If COMPOUND_STMT is non-null, this is for a function-transaction-block,
9267 and we should end the compound. If NOEX is non-NULL, we wrap the body in
9268 a MUST_NOT_THROW_EXPR with NOEX as condition. */
9269
9270 void
9271 finish_transaction_stmt (tree stmt, tree compound_stmt, int flags, tree noex)
9272 {
9273 TRANSACTION_EXPR_BODY (stmt) = pop_stmt_list (TRANSACTION_EXPR_BODY (stmt));
9274 TRANSACTION_EXPR_OUTER (stmt) = (flags & TM_STMT_ATTR_OUTER) != 0;
9275 TRANSACTION_EXPR_RELAXED (stmt) = (flags & TM_STMT_ATTR_RELAXED) != 0;
9276 TRANSACTION_EXPR_IS_STMT (stmt) = 1;
9277
9278 /* noexcept specifications are not allowed for function transactions. */
9279 gcc_assert (!(noex && compound_stmt));
9280 if (noex)
9281 {
9282 tree body = build_must_not_throw_expr (TRANSACTION_EXPR_BODY (stmt),
9283 noex);
9284 protected_set_expr_location
9285 (body, EXPR_LOCATION (TRANSACTION_EXPR_BODY (stmt)));
9286 TREE_SIDE_EFFECTS (body) = 1;
9287 TRANSACTION_EXPR_BODY (stmt) = body;
9288 }
9289
9290 if (compound_stmt)
9291 finish_compound_stmt (compound_stmt);
9292 }
9293
9294 /* Build a __transaction_atomic or __transaction_relaxed expression. If
9295 NOEX is non-NULL, we wrap the body in a MUST_NOT_THROW_EXPR with NOEX as
9296 condition. */
9297
9298 tree
9299 build_transaction_expr (location_t loc, tree expr, int flags, tree noex)
9300 {
9301 tree ret;
9302 if (noex)
9303 {
9304 expr = build_must_not_throw_expr (expr, noex);
9305 protected_set_expr_location (expr, loc);
9306 TREE_SIDE_EFFECTS (expr) = 1;
9307 }
9308 ret = build1 (TRANSACTION_EXPR, TREE_TYPE (expr), expr);
9309 if (flags & TM_STMT_ATTR_RELAXED)
9310 TRANSACTION_EXPR_RELAXED (ret) = 1;
9311 TREE_SIDE_EFFECTS (ret) = 1;
9312 SET_EXPR_LOCATION (ret, loc);
9313 return ret;
9314 }
9315 \f
9316 void
9317 init_cp_semantics (void)
9318 {
9319 }
9320 \f
9321 /* Build a STATIC_ASSERT for a static assertion with the condition
9322 CONDITION and the message text MESSAGE. LOCATION is the location
9323 of the static assertion in the source code. When MEMBER_P, this
9324 static assertion is a member of a class. */
9325 void
9326 finish_static_assert (tree condition, tree message, location_t location,
9327 bool member_p)
9328 {
9329 tsubst_flags_t complain = tf_warning_or_error;
9330
9331 if (message == NULL_TREE
9332 || message == error_mark_node
9333 || condition == NULL_TREE
9334 || condition == error_mark_node)
9335 return;
9336
9337 if (check_for_bare_parameter_packs (condition))
9338 condition = error_mark_node;
9339
9340 if (instantiation_dependent_expression_p (condition))
9341 {
9342 /* We're in a template; build a STATIC_ASSERT and put it in
9343 the right place. */
9344 tree assertion;
9345
9346 assertion = make_node (STATIC_ASSERT);
9347 STATIC_ASSERT_CONDITION (assertion) = condition;
9348 STATIC_ASSERT_MESSAGE (assertion) = message;
9349 STATIC_ASSERT_SOURCE_LOCATION (assertion) = location;
9350
9351 if (member_p)
9352 maybe_add_class_template_decl_list (current_class_type,
9353 assertion,
9354 /*friend_p=*/0);
9355 else
9356 add_stmt (assertion);
9357
9358 return;
9359 }
9360
9361 /* Fold the expression and convert it to a boolean value. */
9362 condition = perform_implicit_conversion_flags (boolean_type_node, condition,
9363 complain, LOOKUP_NORMAL);
9364 condition = fold_non_dependent_expr (condition, complain,
9365 /*manifestly_const_eval=*/true);
9366
9367 if (TREE_CODE (condition) == INTEGER_CST && !integer_zerop (condition))
9368 /* Do nothing; the condition is satisfied. */
9369 ;
9370 else
9371 {
9372 location_t saved_loc = input_location;
9373
9374 input_location = location;
9375 if (TREE_CODE (condition) == INTEGER_CST
9376 && integer_zerop (condition))
9377 {
9378 int sz = TREE_INT_CST_LOW (TYPE_SIZE_UNIT
9379 (TREE_TYPE (TREE_TYPE (message))));
9380 int len = TREE_STRING_LENGTH (message) / sz - 1;
9381 /* Report the error. */
9382 if (len == 0)
9383 error ("static assertion failed");
9384 else
9385 error ("static assertion failed: %s",
9386 TREE_STRING_POINTER (message));
9387 }
9388 else if (condition && condition != error_mark_node)
9389 {
9390 error ("non-constant condition for static assertion");
9391 if (require_rvalue_constant_expression (condition))
9392 cxx_constant_value (condition);
9393 }
9394 input_location = saved_loc;
9395 }
9396 }
9397 \f
9398 /* Implements the C++0x decltype keyword. Returns the type of EXPR,
9399 suitable for use as a type-specifier.
9400
9401 ID_EXPRESSION_OR_MEMBER_ACCESS_P is true when EXPR was parsed as an
9402 id-expression or a class member access, FALSE when it was parsed as
9403 a full expression. */
9404
9405 tree
9406 finish_decltype_type (tree expr, bool id_expression_or_member_access_p,
9407 tsubst_flags_t complain)
9408 {
9409 tree type = NULL_TREE;
9410
9411 if (!expr || error_operand_p (expr))
9412 return error_mark_node;
9413
9414 if (TYPE_P (expr)
9415 || TREE_CODE (expr) == TYPE_DECL
9416 || (TREE_CODE (expr) == BIT_NOT_EXPR
9417 && TYPE_P (TREE_OPERAND (expr, 0))))
9418 {
9419 if (complain & tf_error)
9420 error ("argument to %<decltype%> must be an expression");
9421 return error_mark_node;
9422 }
9423
9424 /* Depending on the resolution of DR 1172, we may later need to distinguish
9425 instantiation-dependent but not type-dependent expressions so that, say,
9426 A<decltype(sizeof(T))>::U doesn't require 'typename'. */
9427 if (instantiation_dependent_uneval_expression_p (expr))
9428 {
9429 type = cxx_make_type (DECLTYPE_TYPE);
9430 DECLTYPE_TYPE_EXPR (type) = expr;
9431 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type)
9432 = id_expression_or_member_access_p;
9433 SET_TYPE_STRUCTURAL_EQUALITY (type);
9434
9435 return type;
9436 }
9437
9438 /* The type denoted by decltype(e) is defined as follows: */
9439
9440 expr = resolve_nondeduced_context (expr, complain);
9441
9442 if (invalid_nonstatic_memfn_p (input_location, expr, complain))
9443 return error_mark_node;
9444
9445 if (type_unknown_p (expr))
9446 {
9447 if (complain & tf_error)
9448 error ("%<decltype%> cannot resolve address of overloaded function");
9449 return error_mark_node;
9450 }
9451
9452 /* To get the size of a static data member declared as an array of
9453 unknown bound, we need to instantiate it. */
9454 if (VAR_P (expr)
9455 && VAR_HAD_UNKNOWN_BOUND (expr)
9456 && DECL_TEMPLATE_INSTANTIATION (expr))
9457 instantiate_decl (expr, /*defer_ok*/true, /*expl_inst_mem*/false);
9458
9459 if (id_expression_or_member_access_p)
9460 {
9461 /* If e is an id-expression or a class member access (5.2.5
9462 [expr.ref]), decltype(e) is defined as the type of the entity
9463 named by e. If there is no such entity, or e names a set of
9464 overloaded functions, the program is ill-formed. */
9465 if (identifier_p (expr))
9466 expr = lookup_name (expr);
9467
9468 if (INDIRECT_REF_P (expr)
9469 || TREE_CODE (expr) == VIEW_CONVERT_EXPR)
9470 /* This can happen when the expression is, e.g., "a.b". Just
9471 look at the underlying operand. */
9472 expr = TREE_OPERAND (expr, 0);
9473
9474 if (TREE_CODE (expr) == OFFSET_REF
9475 || TREE_CODE (expr) == MEMBER_REF
9476 || TREE_CODE (expr) == SCOPE_REF)
9477 /* We're only interested in the field itself. If it is a
9478 BASELINK, we will need to see through it in the next
9479 step. */
9480 expr = TREE_OPERAND (expr, 1);
9481
9482 if (BASELINK_P (expr))
9483 /* See through BASELINK nodes to the underlying function. */
9484 expr = BASELINK_FUNCTIONS (expr);
9485
9486 /* decltype of a decomposition name drops references in the tuple case
9487 (unlike decltype of a normal variable) and keeps cv-qualifiers from
9488 the containing object in the other cases (unlike decltype of a member
9489 access expression). */
9490 if (DECL_DECOMPOSITION_P (expr))
9491 {
9492 if (DECL_HAS_VALUE_EXPR_P (expr))
9493 /* Expr is an array or struct subobject proxy, handle
9494 bit-fields properly. */
9495 return unlowered_expr_type (expr);
9496 else
9497 /* Expr is a reference variable for the tuple case. */
9498 return lookup_decomp_type (expr);
9499 }
9500
9501 switch (TREE_CODE (expr))
9502 {
9503 case FIELD_DECL:
9504 if (DECL_BIT_FIELD_TYPE (expr))
9505 {
9506 type = DECL_BIT_FIELD_TYPE (expr);
9507 break;
9508 }
9509 /* Fall through for fields that aren't bitfields. */
9510 gcc_fallthrough ();
9511
9512 case FUNCTION_DECL:
9513 case VAR_DECL:
9514 case CONST_DECL:
9515 case PARM_DECL:
9516 case RESULT_DECL:
9517 case TEMPLATE_PARM_INDEX:
9518 expr = mark_type_use (expr);
9519 type = TREE_TYPE (expr);
9520 break;
9521
9522 case ERROR_MARK:
9523 type = error_mark_node;
9524 break;
9525
9526 case COMPONENT_REF:
9527 case COMPOUND_EXPR:
9528 mark_type_use (expr);
9529 type = is_bitfield_expr_with_lowered_type (expr);
9530 if (!type)
9531 type = TREE_TYPE (TREE_OPERAND (expr, 1));
9532 break;
9533
9534 case BIT_FIELD_REF:
9535 gcc_unreachable ();
9536
9537 case INTEGER_CST:
9538 case PTRMEM_CST:
9539 /* We can get here when the id-expression refers to an
9540 enumerator or non-type template parameter. */
9541 type = TREE_TYPE (expr);
9542 break;
9543
9544 default:
9545 /* Handle instantiated template non-type arguments. */
9546 type = TREE_TYPE (expr);
9547 break;
9548 }
9549 }
9550 else
9551 {
9552 /* Within a lambda-expression:
9553
9554 Every occurrence of decltype((x)) where x is a possibly
9555 parenthesized id-expression that names an entity of
9556 automatic storage duration is treated as if x were
9557 transformed into an access to a corresponding data member
9558 of the closure type that would have been declared if x
9559 were a use of the denoted entity. */
9560 if (outer_automatic_var_p (expr)
9561 && current_function_decl
9562 && LAMBDA_FUNCTION_P (current_function_decl))
9563 type = capture_decltype (expr);
9564 else if (error_operand_p (expr))
9565 type = error_mark_node;
9566 else if (expr == current_class_ptr)
9567 /* If the expression is just "this", we want the
9568 cv-unqualified pointer for the "this" type. */
9569 type = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
9570 else
9571 {
9572 /* Otherwise, where T is the type of e, if e is an lvalue,
9573 decltype(e) is defined as T&; if an xvalue, T&&; otherwise, T. */
9574 cp_lvalue_kind clk = lvalue_kind (expr);
9575 type = unlowered_expr_type (expr);
9576 gcc_assert (!TYPE_REF_P (type));
9577
9578 /* For vector types, pick a non-opaque variant. */
9579 if (VECTOR_TYPE_P (type))
9580 type = strip_typedefs (type);
9581
9582 if (clk != clk_none && !(clk & clk_class))
9583 type = cp_build_reference_type (type, (clk & clk_rvalueref));
9584 }
9585 }
9586
9587 return type;
9588 }
9589
9590 /* Called from trait_expr_value to evaluate either __has_nothrow_assign or
9591 __has_nothrow_copy, depending on assign_p. Returns true iff all
9592 the copy {ctor,assign} fns are nothrow. */
9593
9594 static bool
9595 classtype_has_nothrow_assign_or_copy_p (tree type, bool assign_p)
9596 {
9597 tree fns = NULL_TREE;
9598
9599 if (assign_p || TYPE_HAS_COPY_CTOR (type))
9600 fns = get_class_binding (type, assign_p ? assign_op_identifier
9601 : ctor_identifier);
9602
9603 bool saw_copy = false;
9604 for (ovl_iterator iter (fns); iter; ++iter)
9605 {
9606 tree fn = *iter;
9607
9608 if (copy_fn_p (fn) > 0)
9609 {
9610 saw_copy = true;
9611 if (!maybe_instantiate_noexcept (fn)
9612 || !TYPE_NOTHROW_P (TREE_TYPE (fn)))
9613 return false;
9614 }
9615 }
9616
9617 return saw_copy;
9618 }
9619
9620 /* Actually evaluates the trait. */
9621
9622 static bool
9623 trait_expr_value (cp_trait_kind kind, tree type1, tree type2)
9624 {
9625 enum tree_code type_code1;
9626 tree t;
9627
9628 type_code1 = TREE_CODE (type1);
9629
9630 switch (kind)
9631 {
9632 case CPTK_HAS_NOTHROW_ASSIGN:
9633 type1 = strip_array_types (type1);
9634 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
9635 && (trait_expr_value (CPTK_HAS_TRIVIAL_ASSIGN, type1, type2)
9636 || (CLASS_TYPE_P (type1)
9637 && classtype_has_nothrow_assign_or_copy_p (type1,
9638 true))));
9639
9640 case CPTK_HAS_TRIVIAL_ASSIGN:
9641 /* ??? The standard seems to be missing the "or array of such a class
9642 type" wording for this trait. */
9643 type1 = strip_array_types (type1);
9644 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
9645 && (trivial_type_p (type1)
9646 || (CLASS_TYPE_P (type1)
9647 && TYPE_HAS_TRIVIAL_COPY_ASSIGN (type1))));
9648
9649 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
9650 type1 = strip_array_types (type1);
9651 return (trait_expr_value (CPTK_HAS_TRIVIAL_CONSTRUCTOR, type1, type2)
9652 || (CLASS_TYPE_P (type1)
9653 && (t = locate_ctor (type1))
9654 && maybe_instantiate_noexcept (t)
9655 && TYPE_NOTHROW_P (TREE_TYPE (t))));
9656
9657 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
9658 type1 = strip_array_types (type1);
9659 return (trivial_type_p (type1)
9660 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_DFLT (type1)));
9661
9662 case CPTK_HAS_NOTHROW_COPY:
9663 type1 = strip_array_types (type1);
9664 return (trait_expr_value (CPTK_HAS_TRIVIAL_COPY, type1, type2)
9665 || (CLASS_TYPE_P (type1)
9666 && classtype_has_nothrow_assign_or_copy_p (type1, false)));
9667
9668 case CPTK_HAS_TRIVIAL_COPY:
9669 /* ??? The standard seems to be missing the "or array of such a class
9670 type" wording for this trait. */
9671 type1 = strip_array_types (type1);
9672 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
9673 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_COPY_CTOR (type1)));
9674
9675 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
9676 type1 = strip_array_types (type1);
9677 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
9678 || (CLASS_TYPE_P (type1)
9679 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type1)));
9680
9681 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
9682 return type_has_virtual_destructor (type1);
9683
9684 case CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS:
9685 return type_has_unique_obj_representations (type1);
9686
9687 case CPTK_IS_ABSTRACT:
9688 return ABSTRACT_CLASS_TYPE_P (type1);
9689
9690 case CPTK_IS_AGGREGATE:
9691 return CP_AGGREGATE_TYPE_P (type1);
9692
9693 case CPTK_IS_BASE_OF:
9694 return (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
9695 && (same_type_ignoring_top_level_qualifiers_p (type1, type2)
9696 || DERIVED_FROM_P (type1, type2)));
9697
9698 case CPTK_IS_CLASS:
9699 return NON_UNION_CLASS_TYPE_P (type1);
9700
9701 case CPTK_IS_EMPTY:
9702 return NON_UNION_CLASS_TYPE_P (type1) && CLASSTYPE_EMPTY_P (type1);
9703
9704 case CPTK_IS_ENUM:
9705 return type_code1 == ENUMERAL_TYPE;
9706
9707 case CPTK_IS_FINAL:
9708 return CLASS_TYPE_P (type1) && CLASSTYPE_FINAL (type1);
9709
9710 case CPTK_IS_LITERAL_TYPE:
9711 return literal_type_p (type1);
9712
9713 case CPTK_IS_POD:
9714 return pod_type_p (type1);
9715
9716 case CPTK_IS_POLYMORPHIC:
9717 return CLASS_TYPE_P (type1) && TYPE_POLYMORPHIC_P (type1);
9718
9719 case CPTK_IS_SAME_AS:
9720 return same_type_p (type1, type2);
9721
9722 case CPTK_IS_STD_LAYOUT:
9723 return std_layout_type_p (type1);
9724
9725 case CPTK_IS_TRIVIAL:
9726 return trivial_type_p (type1);
9727
9728 case CPTK_IS_TRIVIALLY_ASSIGNABLE:
9729 return is_trivially_xible (MODIFY_EXPR, type1, type2);
9730
9731 case CPTK_IS_TRIVIALLY_CONSTRUCTIBLE:
9732 return is_trivially_xible (INIT_EXPR, type1, type2);
9733
9734 case CPTK_IS_TRIVIALLY_COPYABLE:
9735 return trivially_copyable_p (type1);
9736
9737 case CPTK_IS_UNION:
9738 return type_code1 == UNION_TYPE;
9739
9740 case CPTK_IS_ASSIGNABLE:
9741 return is_xible (MODIFY_EXPR, type1, type2);
9742
9743 case CPTK_IS_CONSTRUCTIBLE:
9744 return is_xible (INIT_EXPR, type1, type2);
9745
9746 default:
9747 gcc_unreachable ();
9748 return false;
9749 }
9750 }
9751
9752 /* If TYPE is an array of unknown bound, or (possibly cv-qualified)
9753 void, or a complete type, returns true, otherwise false. */
9754
9755 static bool
9756 check_trait_type (tree type)
9757 {
9758 if (type == NULL_TREE)
9759 return true;
9760
9761 if (TREE_CODE (type) == TREE_LIST)
9762 return (check_trait_type (TREE_VALUE (type))
9763 && check_trait_type (TREE_CHAIN (type)));
9764
9765 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
9766 && COMPLETE_TYPE_P (TREE_TYPE (type)))
9767 return true;
9768
9769 if (VOID_TYPE_P (type))
9770 return true;
9771
9772 return !!complete_type_or_else (strip_array_types (type), NULL_TREE);
9773 }
9774
9775 /* Process a trait expression. */
9776
9777 tree
9778 finish_trait_expr (cp_trait_kind kind, tree type1, tree type2)
9779 {
9780 if (type1 == error_mark_node
9781 || type2 == error_mark_node)
9782 return error_mark_node;
9783
9784 if (processing_template_decl)
9785 {
9786 tree trait_expr = make_node (TRAIT_EXPR);
9787 TREE_TYPE (trait_expr) = boolean_type_node;
9788 TRAIT_EXPR_TYPE1 (trait_expr) = type1;
9789 TRAIT_EXPR_TYPE2 (trait_expr) = type2;
9790 TRAIT_EXPR_KIND (trait_expr) = kind;
9791 return trait_expr;
9792 }
9793
9794 switch (kind)
9795 {
9796 case CPTK_HAS_NOTHROW_ASSIGN:
9797 case CPTK_HAS_TRIVIAL_ASSIGN:
9798 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
9799 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
9800 case CPTK_HAS_NOTHROW_COPY:
9801 case CPTK_HAS_TRIVIAL_COPY:
9802 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
9803 case CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS:
9804 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
9805 case CPTK_IS_ABSTRACT:
9806 case CPTK_IS_AGGREGATE:
9807 case CPTK_IS_EMPTY:
9808 case CPTK_IS_FINAL:
9809 case CPTK_IS_LITERAL_TYPE:
9810 case CPTK_IS_POD:
9811 case CPTK_IS_POLYMORPHIC:
9812 case CPTK_IS_STD_LAYOUT:
9813 case CPTK_IS_TRIVIAL:
9814 case CPTK_IS_TRIVIALLY_COPYABLE:
9815 if (!check_trait_type (type1))
9816 return error_mark_node;
9817 break;
9818
9819 case CPTK_IS_ASSIGNABLE:
9820 case CPTK_IS_CONSTRUCTIBLE:
9821 break;
9822
9823 case CPTK_IS_TRIVIALLY_ASSIGNABLE:
9824 case CPTK_IS_TRIVIALLY_CONSTRUCTIBLE:
9825 if (!check_trait_type (type1)
9826 || !check_trait_type (type2))
9827 return error_mark_node;
9828 break;
9829
9830 case CPTK_IS_BASE_OF:
9831 if (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
9832 && !same_type_ignoring_top_level_qualifiers_p (type1, type2)
9833 && !complete_type_or_else (type2, NULL_TREE))
9834 /* We already issued an error. */
9835 return error_mark_node;
9836 break;
9837
9838 case CPTK_IS_CLASS:
9839 case CPTK_IS_ENUM:
9840 case CPTK_IS_UNION:
9841 case CPTK_IS_SAME_AS:
9842 break;
9843
9844 default:
9845 gcc_unreachable ();
9846 }
9847
9848 return (trait_expr_value (kind, type1, type2)
9849 ? boolean_true_node : boolean_false_node);
9850 }
9851
9852 /* Do-nothing variants of functions to handle pragma FLOAT_CONST_DECIMAL64,
9853 which is ignored for C++. */
9854
9855 void
9856 set_float_const_decimal64 (void)
9857 {
9858 }
9859
9860 void
9861 clear_float_const_decimal64 (void)
9862 {
9863 }
9864
9865 bool
9866 float_const_decimal64_p (void)
9867 {
9868 return 0;
9869 }
9870
9871 \f
9872 /* Return true if T designates the implied `this' parameter. */
9873
9874 bool
9875 is_this_parameter (tree t)
9876 {
9877 if (!DECL_P (t) || DECL_NAME (t) != this_identifier)
9878 return false;
9879 gcc_assert (TREE_CODE (t) == PARM_DECL || is_capture_proxy (t)
9880 || (cp_binding_oracle && TREE_CODE (t) == VAR_DECL));
9881 return true;
9882 }
9883
9884 /* Insert the deduced return type for an auto function. */
9885
9886 void
9887 apply_deduced_return_type (tree fco, tree return_type)
9888 {
9889 tree result;
9890
9891 if (return_type == error_mark_node)
9892 return;
9893
9894 if (DECL_CONV_FN_P (fco))
9895 DECL_NAME (fco) = make_conv_op_name (return_type);
9896
9897 TREE_TYPE (fco) = change_return_type (return_type, TREE_TYPE (fco));
9898
9899 result = DECL_RESULT (fco);
9900 if (result == NULL_TREE)
9901 return;
9902 if (TREE_TYPE (result) == return_type)
9903 return;
9904
9905 if (!processing_template_decl && !VOID_TYPE_P (return_type)
9906 && !complete_type_or_else (return_type, NULL_TREE))
9907 return;
9908
9909 /* We already have a DECL_RESULT from start_preparsed_function.
9910 Now we need to redo the work it and allocate_struct_function
9911 did to reflect the new type. */
9912 gcc_assert (current_function_decl == fco);
9913 result = build_decl (input_location, RESULT_DECL, NULL_TREE,
9914 TYPE_MAIN_VARIANT (return_type));
9915 DECL_ARTIFICIAL (result) = 1;
9916 DECL_IGNORED_P (result) = 1;
9917 cp_apply_type_quals_to_decl (cp_type_quals (return_type),
9918 result);
9919
9920 DECL_RESULT (fco) = result;
9921
9922 if (!processing_template_decl)
9923 {
9924 bool aggr = aggregate_value_p (result, fco);
9925 #ifdef PCC_STATIC_STRUCT_RETURN
9926 cfun->returns_pcc_struct = aggr;
9927 #endif
9928 cfun->returns_struct = aggr;
9929 }
9930
9931 }
9932
9933 /* DECL is a local variable or parameter from the surrounding scope of a
9934 lambda-expression. Returns the decltype for a use of the capture field
9935 for DECL even if it hasn't been captured yet. */
9936
9937 static tree
9938 capture_decltype (tree decl)
9939 {
9940 tree lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
9941 tree cap = lookup_name_real (DECL_NAME (decl), /*type*/0, /*nonclass*/1,
9942 /*block_p=*/true, /*ns*/0, LOOKUP_HIDDEN);
9943 tree type;
9944
9945 if (cap && is_capture_proxy (cap))
9946 type = TREE_TYPE (cap);
9947 else
9948 switch (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam))
9949 {
9950 case CPLD_NONE:
9951 error ("%qD is not captured", decl);
9952 return error_mark_node;
9953
9954 case CPLD_COPY:
9955 type = TREE_TYPE (decl);
9956 if (TYPE_REF_P (type)
9957 && TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE)
9958 type = TREE_TYPE (type);
9959 break;
9960
9961 case CPLD_REFERENCE:
9962 type = TREE_TYPE (decl);
9963 if (!TYPE_REF_P (type))
9964 type = build_reference_type (TREE_TYPE (decl));
9965 break;
9966
9967 default:
9968 gcc_unreachable ();
9969 }
9970
9971 if (!TYPE_REF_P (type))
9972 {
9973 if (!LAMBDA_EXPR_MUTABLE_P (lam))
9974 type = cp_build_qualified_type (type, (cp_type_quals (type)
9975 |TYPE_QUAL_CONST));
9976 type = build_reference_type (type);
9977 }
9978 return type;
9979 }
9980
9981 /* Build a unary fold expression of EXPR over OP. If IS_RIGHT is true,
9982 this is a right unary fold. Otherwise it is a left unary fold. */
9983
9984 static tree
9985 finish_unary_fold_expr (tree expr, int op, tree_code dir)
9986 {
9987 // Build a pack expansion (assuming expr has pack type).
9988 if (!uses_parameter_packs (expr))
9989 {
9990 error_at (location_of (expr), "operand of fold expression has no "
9991 "unexpanded parameter packs");
9992 return error_mark_node;
9993 }
9994 tree pack = make_pack_expansion (expr);
9995
9996 // Build the fold expression.
9997 tree code = build_int_cstu (integer_type_node, abs (op));
9998 tree fold = build_min_nt_loc (UNKNOWN_LOCATION, dir, code, pack);
9999 FOLD_EXPR_MODIFY_P (fold) = (op < 0);
10000 return fold;
10001 }
10002
10003 tree
10004 finish_left_unary_fold_expr (tree expr, int op)
10005 {
10006 return finish_unary_fold_expr (expr, op, UNARY_LEFT_FOLD_EXPR);
10007 }
10008
10009 tree
10010 finish_right_unary_fold_expr (tree expr, int op)
10011 {
10012 return finish_unary_fold_expr (expr, op, UNARY_RIGHT_FOLD_EXPR);
10013 }
10014
10015 /* Build a binary fold expression over EXPR1 and EXPR2. The
10016 associativity of the fold is determined by EXPR1 and EXPR2 (whichever
10017 has an unexpanded parameter pack). */
10018
10019 tree
10020 finish_binary_fold_expr (tree pack, tree init, int op, tree_code dir)
10021 {
10022 pack = make_pack_expansion (pack);
10023 tree code = build_int_cstu (integer_type_node, abs (op));
10024 tree fold = build_min_nt_loc (UNKNOWN_LOCATION, dir, code, pack, init);
10025 FOLD_EXPR_MODIFY_P (fold) = (op < 0);
10026 return fold;
10027 }
10028
10029 tree
10030 finish_binary_fold_expr (tree expr1, tree expr2, int op)
10031 {
10032 // Determine which expr has an unexpanded parameter pack and
10033 // set the pack and initial term.
10034 bool pack1 = uses_parameter_packs (expr1);
10035 bool pack2 = uses_parameter_packs (expr2);
10036 if (pack1 && !pack2)
10037 return finish_binary_fold_expr (expr1, expr2, op, BINARY_RIGHT_FOLD_EXPR);
10038 else if (pack2 && !pack1)
10039 return finish_binary_fold_expr (expr2, expr1, op, BINARY_LEFT_FOLD_EXPR);
10040 else
10041 {
10042 if (pack1)
10043 error ("both arguments in binary fold have unexpanded parameter packs");
10044 else
10045 error ("no unexpanded parameter packs in binary fold");
10046 }
10047 return error_mark_node;
10048 }
10049
10050 /* Finish __builtin_launder (arg). */
10051
10052 tree
10053 finish_builtin_launder (location_t loc, tree arg, tsubst_flags_t complain)
10054 {
10055 tree orig_arg = arg;
10056 if (!type_dependent_expression_p (arg))
10057 arg = decay_conversion (arg, complain);
10058 if (error_operand_p (arg))
10059 return error_mark_node;
10060 if (!type_dependent_expression_p (arg)
10061 && !TYPE_PTR_P (TREE_TYPE (arg)))
10062 {
10063 error_at (loc, "non-pointer argument to %<__builtin_launder%>");
10064 return error_mark_node;
10065 }
10066 if (processing_template_decl)
10067 arg = orig_arg;
10068 return build_call_expr_internal_loc (loc, IFN_LAUNDER,
10069 TREE_TYPE (arg), 1, arg);
10070 }
10071
10072 /* Finish __builtin_convertvector (arg, type). */
10073
10074 tree
10075 cp_build_vec_convert (tree arg, location_t loc, tree type,
10076 tsubst_flags_t complain)
10077 {
10078 if (error_operand_p (type))
10079 return error_mark_node;
10080 if (error_operand_p (arg))
10081 return error_mark_node;
10082
10083 tree ret = NULL_TREE;
10084 if (!type_dependent_expression_p (arg) && !dependent_type_p (type))
10085 ret = c_build_vec_convert (cp_expr_loc_or_loc (arg, input_location), arg,
10086 loc, type, (complain & tf_error) != 0);
10087
10088 if (!processing_template_decl)
10089 return ret;
10090
10091 return build_call_expr_internal_loc (loc, IFN_VEC_CONVERT, type, 1, arg);
10092 }
10093
10094 #include "gt-cp-semantics.h"