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