DR 1391
[official-gcc.git] / gcc / cp / semantics.c
blobe1d18fb9f3dddfb99168fa76cfe5e12267683aef
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.
6 Copyright (C) 1998-2015 Free Software Foundation, Inc.
7 Written by Mark Mitchell (mmitchell@usa.net) based on code found
8 formerly in parse.y and pt.c.
10 This file is part of GCC.
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.
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.
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/>. */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "hash-set.h"
31 #include "machmode.h"
32 #include "vec.h"
33 #include "double-int.h"
34 #include "input.h"
35 #include "alias.h"
36 #include "symtab.h"
37 #include "wide-int.h"
38 #include "inchash.h"
39 #include "tree.h"
40 #include "stmt.h"
41 #include "varasm.h"
42 #include "stor-layout.h"
43 #include "stringpool.h"
44 #include "cp-tree.h"
45 #include "c-family/c-common.h"
46 #include "c-family/c-objc.h"
47 #include "tree-inline.h"
48 #include "intl.h"
49 #include "toplev.h"
50 #include "flags.h"
51 #include "timevar.h"
52 #include "diagnostic.h"
53 #include "hash-map.h"
54 #include "is-a.h"
55 #include "plugin-api.h"
56 #include "hard-reg-set.h"
57 #include "input.h"
58 #include "function.h"
59 #include "ipa-ref.h"
60 #include "cgraph.h"
61 #include "tree-iterator.h"
62 #include "target.h"
63 #include "hash-table.h"
64 #include "gimplify.h"
65 #include "bitmap.h"
66 #include "omp-low.h"
67 #include "builtins.h"
68 #include "convert.h"
69 #include "gomp-constants.h"
71 /* There routines provide a modular interface to perform many parsing
72 operations. They may therefore be used during actual parsing, or
73 during template instantiation, which may be regarded as a
74 degenerate form of parsing. */
76 static tree maybe_convert_cond (tree);
77 static tree finalize_nrv_r (tree *, int *, void *);
78 static tree capture_decltype (tree);
81 /* Deferred Access Checking Overview
82 ---------------------------------
84 Most C++ expressions and declarations require access checking
85 to be performed during parsing. However, in several cases,
86 this has to be treated differently.
88 For member declarations, access checking has to be deferred
89 until more information about the declaration is known. For
90 example:
92 class A {
93 typedef int X;
94 public:
95 X f();
98 A::X A::f();
99 A::X g();
101 When we are parsing the function return type `A::X', we don't
102 really know if this is allowed until we parse the function name.
104 Furthermore, some contexts require that access checking is
105 never performed at all. These include class heads, and template
106 instantiations.
108 Typical use of access checking functions is described here:
110 1. When we enter a context that requires certain access checking
111 mode, the function `push_deferring_access_checks' is called with
112 DEFERRING argument specifying the desired mode. Access checking
113 may be performed immediately (dk_no_deferred), deferred
114 (dk_deferred), or not performed (dk_no_check).
116 2. When a declaration such as a type, or a variable, is encountered,
117 the function `perform_or_defer_access_check' is called. It
118 maintains a vector of all deferred checks.
120 3. The global `current_class_type' or `current_function_decl' is then
121 setup by the parser. `enforce_access' relies on these information
122 to check access.
124 4. Upon exiting the context mentioned in step 1,
125 `perform_deferred_access_checks' is called to check all declaration
126 stored in the vector. `pop_deferring_access_checks' is then
127 called to restore the previous access checking mode.
129 In case of parsing error, we simply call `pop_deferring_access_checks'
130 without `perform_deferred_access_checks'. */
132 typedef struct GTY(()) deferred_access {
133 /* A vector representing name-lookups for which we have deferred
134 checking access controls. We cannot check the accessibility of
135 names used in a decl-specifier-seq until we know what is being
136 declared because code like:
138 class A {
139 class B {};
140 B* f();
143 A::B* A::f() { return 0; }
145 is valid, even though `A::B' is not generally accessible. */
146 vec<deferred_access_check, va_gc> * GTY(()) deferred_access_checks;
148 /* The current mode of access checks. */
149 enum deferring_kind deferring_access_checks_kind;
151 } deferred_access;
153 /* Data for deferred access checking. */
154 static GTY(()) vec<deferred_access, va_gc> *deferred_access_stack;
155 static GTY(()) unsigned deferred_access_no_check;
157 /* Save the current deferred access states and start deferred
158 access checking iff DEFER_P is true. */
160 void
161 push_deferring_access_checks (deferring_kind deferring)
163 /* For context like template instantiation, access checking
164 disabling applies to all nested context. */
165 if (deferred_access_no_check || deferring == dk_no_check)
166 deferred_access_no_check++;
167 else
169 deferred_access e = {NULL, deferring};
170 vec_safe_push (deferred_access_stack, e);
174 /* Save the current deferred access states and start deferred access
175 checking, continuing the set of deferred checks in CHECKS. */
177 void
178 reopen_deferring_access_checks (vec<deferred_access_check, va_gc> * checks)
180 push_deferring_access_checks (dk_deferred);
181 if (!deferred_access_no_check)
182 deferred_access_stack->last().deferred_access_checks = checks;
185 /* Resume deferring access checks again after we stopped doing
186 this previously. */
188 void
189 resume_deferring_access_checks (void)
191 if (!deferred_access_no_check)
192 deferred_access_stack->last().deferring_access_checks_kind = dk_deferred;
195 /* Stop deferring access checks. */
197 void
198 stop_deferring_access_checks (void)
200 if (!deferred_access_no_check)
201 deferred_access_stack->last().deferring_access_checks_kind = dk_no_deferred;
204 /* Discard the current deferred access checks and restore the
205 previous states. */
207 void
208 pop_deferring_access_checks (void)
210 if (deferred_access_no_check)
211 deferred_access_no_check--;
212 else
213 deferred_access_stack->pop ();
216 /* Returns a TREE_LIST representing the deferred checks.
217 The TREE_PURPOSE of each node is the type through which the
218 access occurred; the TREE_VALUE is the declaration named.
221 vec<deferred_access_check, va_gc> *
222 get_deferred_access_checks (void)
224 if (deferred_access_no_check)
225 return NULL;
226 else
227 return (deferred_access_stack->last().deferred_access_checks);
230 /* Take current deferred checks and combine with the
231 previous states if we also defer checks previously.
232 Otherwise perform checks now. */
234 void
235 pop_to_parent_deferring_access_checks (void)
237 if (deferred_access_no_check)
238 deferred_access_no_check--;
239 else
241 vec<deferred_access_check, va_gc> *checks;
242 deferred_access *ptr;
244 checks = (deferred_access_stack->last ().deferred_access_checks);
246 deferred_access_stack->pop ();
247 ptr = &deferred_access_stack->last ();
248 if (ptr->deferring_access_checks_kind == dk_no_deferred)
250 /* Check access. */
251 perform_access_checks (checks, tf_warning_or_error);
253 else
255 /* Merge with parent. */
256 int i, j;
257 deferred_access_check *chk, *probe;
259 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
261 FOR_EACH_VEC_SAFE_ELT (ptr->deferred_access_checks, j, probe)
263 if (probe->binfo == chk->binfo &&
264 probe->decl == chk->decl &&
265 probe->diag_decl == chk->diag_decl)
266 goto found;
268 /* Insert into parent's checks. */
269 vec_safe_push (ptr->deferred_access_checks, *chk);
270 found:;
276 /* Perform the access checks in CHECKS. The TREE_PURPOSE of each node
277 is the BINFO indicating the qualifying scope used to access the
278 DECL node stored in the TREE_VALUE of the node. If CHECKS is empty
279 or we aren't in SFINAE context or all the checks succeed return TRUE,
280 otherwise FALSE. */
282 bool
283 perform_access_checks (vec<deferred_access_check, va_gc> *checks,
284 tsubst_flags_t complain)
286 int i;
287 deferred_access_check *chk;
288 location_t loc = input_location;
289 bool ok = true;
291 if (!checks)
292 return true;
294 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
296 input_location = chk->loc;
297 ok &= enforce_access (chk->binfo, chk->decl, chk->diag_decl, complain);
300 input_location = loc;
301 return (complain & tf_error) ? true : ok;
304 /* Perform the deferred access checks.
306 After performing the checks, we still have to keep the list
307 `deferred_access_stack->deferred_access_checks' since we may want
308 to check access for them again later in a different context.
309 For example:
311 class A {
312 typedef int X;
313 static X a;
315 A::X A::a, x; // No error for `A::a', error for `x'
317 We have to perform deferred access of `A::X', first with `A::a',
318 next with `x'. Return value like perform_access_checks above. */
320 bool
321 perform_deferred_access_checks (tsubst_flags_t complain)
323 return perform_access_checks (get_deferred_access_checks (), complain);
326 /* Defer checking the accessibility of DECL, when looked up in
327 BINFO. DIAG_DECL is the declaration to use to print diagnostics.
328 Return value like perform_access_checks above. */
330 bool
331 perform_or_defer_access_check (tree binfo, tree decl, tree diag_decl,
332 tsubst_flags_t complain)
334 int i;
335 deferred_access *ptr;
336 deferred_access_check *chk;
339 /* Exit if we are in a context that no access checking is performed.
341 if (deferred_access_no_check)
342 return true;
344 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
346 ptr = &deferred_access_stack->last ();
348 /* If we are not supposed to defer access checks, just check now. */
349 if (ptr->deferring_access_checks_kind == dk_no_deferred)
351 bool ok = enforce_access (binfo, decl, diag_decl, complain);
352 return (complain & tf_error) ? true : ok;
355 /* See if we are already going to perform this check. */
356 FOR_EACH_VEC_SAFE_ELT (ptr->deferred_access_checks, i, chk)
358 if (chk->decl == decl && chk->binfo == binfo &&
359 chk->diag_decl == diag_decl)
361 return true;
364 /* If not, record the check. */
365 deferred_access_check new_access = {binfo, decl, diag_decl, input_location};
366 vec_safe_push (ptr->deferred_access_checks, new_access);
368 return true;
371 /* Returns nonzero if the current statement is a full expression,
372 i.e. temporaries created during that statement should be destroyed
373 at the end of the statement. */
376 stmts_are_full_exprs_p (void)
378 return current_stmt_tree ()->stmts_are_full_exprs_p;
381 /* T is a statement. Add it to the statement-tree. This is the C++
382 version. The C/ObjC frontends have a slightly different version of
383 this function. */
385 tree
386 add_stmt (tree t)
388 enum tree_code code = TREE_CODE (t);
390 if (EXPR_P (t) && code != LABEL_EXPR)
392 if (!EXPR_HAS_LOCATION (t))
393 SET_EXPR_LOCATION (t, input_location);
395 /* When we expand a statement-tree, we must know whether or not the
396 statements are full-expressions. We record that fact here. */
397 STMT_IS_FULL_EXPR_P (t) = stmts_are_full_exprs_p ();
400 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
401 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
403 /* Add T to the statement-tree. Non-side-effect statements need to be
404 recorded during statement expressions. */
405 gcc_checking_assert (!stmt_list_stack->is_empty ());
406 append_to_statement_list_force (t, &cur_stmt_list);
408 return t;
411 /* Returns the stmt_tree to which statements are currently being added. */
413 stmt_tree
414 current_stmt_tree (void)
416 return (cfun
417 ? &cfun->language->base.x_stmt_tree
418 : &scope_chain->x_stmt_tree);
421 /* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR. */
423 static tree
424 maybe_cleanup_point_expr (tree expr)
426 if (!processing_template_decl && stmts_are_full_exprs_p ())
427 expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
428 return expr;
431 /* Like maybe_cleanup_point_expr except have the type of the new expression be
432 void so we don't need to create a temporary variable to hold the inner
433 expression. The reason why we do this is because the original type might be
434 an aggregate and we cannot create a temporary variable for that type. */
436 tree
437 maybe_cleanup_point_expr_void (tree expr)
439 if (!processing_template_decl && stmts_are_full_exprs_p ())
440 expr = fold_build_cleanup_point_expr (void_type_node, expr);
441 return expr;
446 /* Create a declaration statement for the declaration given by the DECL. */
448 void
449 add_decl_expr (tree decl)
451 tree r = build_stmt (input_location, DECL_EXPR, decl);
452 if (DECL_INITIAL (decl)
453 || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
454 r = maybe_cleanup_point_expr_void (r);
455 add_stmt (r);
458 /* Finish a scope. */
460 tree
461 do_poplevel (tree stmt_list)
463 tree block = NULL;
465 if (stmts_are_full_exprs_p ())
466 block = poplevel (kept_level_p (), 1, 0);
468 stmt_list = pop_stmt_list (stmt_list);
470 if (!processing_template_decl)
472 stmt_list = c_build_bind_expr (input_location, block, stmt_list);
473 /* ??? See c_end_compound_stmt re statement expressions. */
476 return stmt_list;
479 /* Begin a new scope. */
481 static tree
482 do_pushlevel (scope_kind sk)
484 tree ret = push_stmt_list ();
485 if (stmts_are_full_exprs_p ())
486 begin_scope (sk, NULL);
487 return ret;
490 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
491 when the current scope is exited. EH_ONLY is true when this is not
492 meant to apply to normal control flow transfer. */
494 void
495 push_cleanup (tree decl, tree cleanup, bool eh_only)
497 tree stmt = build_stmt (input_location, CLEANUP_STMT, NULL, cleanup, decl);
498 CLEANUP_EH_ONLY (stmt) = eh_only;
499 add_stmt (stmt);
500 CLEANUP_BODY (stmt) = push_stmt_list ();
503 /* Simple infinite loop tracking for -Wreturn-type. We keep a stack of all
504 the current loops, represented by 'NULL_TREE' if we've seen a possible
505 exit, and 'error_mark_node' if not. This is currently used only to
506 suppress the warning about a function with no return statements, and
507 therefore we don't bother noting returns as possible exits. We also
508 don't bother with gotos. */
510 static void
511 begin_maybe_infinite_loop (tree cond)
513 /* Only track this while parsing a function, not during instantiation. */
514 if (!cfun || (DECL_TEMPLATE_INSTANTIATION (current_function_decl)
515 && !processing_template_decl))
516 return;
517 bool maybe_infinite = true;
518 if (cond)
520 cond = fold_non_dependent_expr (cond);
521 maybe_infinite = integer_nonzerop (cond);
523 vec_safe_push (cp_function_chain->infinite_loops,
524 maybe_infinite ? error_mark_node : NULL_TREE);
528 /* A break is a possible exit for the current loop. */
530 void
531 break_maybe_infinite_loop (void)
533 if (!cfun)
534 return;
535 cp_function_chain->infinite_loops->last() = NULL_TREE;
538 /* If we reach the end of the loop without seeing a possible exit, we have
539 an infinite loop. */
541 static void
542 end_maybe_infinite_loop (tree cond)
544 if (!cfun || (DECL_TEMPLATE_INSTANTIATION (current_function_decl)
545 && !processing_template_decl))
546 return;
547 tree current = cp_function_chain->infinite_loops->pop();
548 if (current != NULL_TREE)
550 cond = fold_non_dependent_expr (cond);
551 if (integer_nonzerop (cond))
552 current_function_infinite_loop = 1;
557 /* Begin a conditional that might contain a declaration. When generating
558 normal code, we want the declaration to appear before the statement
559 containing the conditional. When generating template code, we want the
560 conditional to be rendered as the raw DECL_EXPR. */
562 static void
563 begin_cond (tree *cond_p)
565 if (processing_template_decl)
566 *cond_p = push_stmt_list ();
569 /* Finish such a conditional. */
571 static void
572 finish_cond (tree *cond_p, tree expr)
574 if (processing_template_decl)
576 tree cond = pop_stmt_list (*cond_p);
578 if (expr == NULL_TREE)
579 /* Empty condition in 'for'. */
580 gcc_assert (empty_expr_stmt_p (cond));
581 else if (check_for_bare_parameter_packs (expr))
582 expr = error_mark_node;
583 else if (!empty_expr_stmt_p (cond))
584 expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr), cond, expr);
586 *cond_p = expr;
589 /* If *COND_P specifies a conditional with a declaration, transform the
590 loop such that
591 while (A x = 42) { }
592 for (; A x = 42;) { }
593 becomes
594 while (true) { A x = 42; if (!x) break; }
595 for (;;) { A x = 42; if (!x) break; }
596 The statement list for BODY will be empty if the conditional did
597 not declare anything. */
599 static void
600 simplify_loop_decl_cond (tree *cond_p, tree body)
602 tree cond, if_stmt;
604 if (!TREE_SIDE_EFFECTS (body))
605 return;
607 cond = *cond_p;
608 *cond_p = boolean_true_node;
610 if_stmt = begin_if_stmt ();
611 cond = cp_build_unary_op (TRUTH_NOT_EXPR, cond, 0, tf_warning_or_error);
612 finish_if_stmt_cond (cond, if_stmt);
613 finish_break_stmt ();
614 finish_then_clause (if_stmt);
615 finish_if_stmt (if_stmt);
618 /* Finish a goto-statement. */
620 tree
621 finish_goto_stmt (tree destination)
623 if (identifier_p (destination))
624 destination = lookup_label (destination);
626 /* We warn about unused labels with -Wunused. That means we have to
627 mark the used labels as used. */
628 if (TREE_CODE (destination) == LABEL_DECL)
629 TREE_USED (destination) = 1;
630 else
632 if (check_no_cilk (destination,
633 "Cilk array notation cannot be used as a computed goto expression",
634 "%<_Cilk_spawn%> statement cannot be used as a computed goto expression"))
635 destination = error_mark_node;
636 destination = mark_rvalue_use (destination);
637 if (!processing_template_decl)
639 destination = cp_convert (ptr_type_node, destination,
640 tf_warning_or_error);
641 if (error_operand_p (destination))
642 return NULL_TREE;
643 destination
644 = fold_build_cleanup_point_expr (TREE_TYPE (destination),
645 destination);
649 check_goto (destination);
651 return add_stmt (build_stmt (input_location, GOTO_EXPR, destination));
654 /* COND is the condition-expression for an if, while, etc.,
655 statement. Convert it to a boolean value, if appropriate.
656 In addition, verify sequence points if -Wsequence-point is enabled. */
658 static tree
659 maybe_convert_cond (tree cond)
661 /* Empty conditions remain empty. */
662 if (!cond)
663 return NULL_TREE;
665 /* Wait until we instantiate templates before doing conversion. */
666 if (processing_template_decl)
667 return cond;
669 if (warn_sequence_point)
670 verify_sequence_points (cond);
672 /* Do the conversion. */
673 cond = convert_from_reference (cond);
675 if (TREE_CODE (cond) == MODIFY_EXPR
676 && !TREE_NO_WARNING (cond)
677 && warn_parentheses)
679 warning (OPT_Wparentheses,
680 "suggest parentheses around assignment used as truth value");
681 TREE_NO_WARNING (cond) = 1;
684 return condition_conversion (cond);
687 /* Finish an expression-statement, whose EXPRESSION is as indicated. */
689 tree
690 finish_expr_stmt (tree expr)
692 tree r = NULL_TREE;
694 if (expr != NULL_TREE)
696 if (!processing_template_decl)
698 if (warn_sequence_point)
699 verify_sequence_points (expr);
700 expr = convert_to_void (expr, ICV_STATEMENT, tf_warning_or_error);
702 else if (!type_dependent_expression_p (expr))
703 convert_to_void (build_non_dependent_expr (expr), ICV_STATEMENT,
704 tf_warning_or_error);
706 if (check_for_bare_parameter_packs (expr))
707 expr = error_mark_node;
709 /* Simplification of inner statement expressions, compound exprs,
710 etc can result in us already having an EXPR_STMT. */
711 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
713 if (TREE_CODE (expr) != EXPR_STMT)
714 expr = build_stmt (input_location, EXPR_STMT, expr);
715 expr = maybe_cleanup_point_expr_void (expr);
718 r = add_stmt (expr);
721 return r;
725 /* Begin an if-statement. Returns a newly created IF_STMT if
726 appropriate. */
728 tree
729 begin_if_stmt (void)
731 tree r, scope;
732 scope = do_pushlevel (sk_cond);
733 r = build_stmt (input_location, IF_STMT, NULL_TREE,
734 NULL_TREE, NULL_TREE, scope);
735 begin_cond (&IF_COND (r));
736 return r;
739 /* Process the COND of an if-statement, which may be given by
740 IF_STMT. */
742 void
743 finish_if_stmt_cond (tree cond, tree if_stmt)
745 finish_cond (&IF_COND (if_stmt), maybe_convert_cond (cond));
746 add_stmt (if_stmt);
747 THEN_CLAUSE (if_stmt) = push_stmt_list ();
750 /* Finish the then-clause of an if-statement, which may be given by
751 IF_STMT. */
753 tree
754 finish_then_clause (tree if_stmt)
756 THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
757 return if_stmt;
760 /* Begin the else-clause of an if-statement. */
762 void
763 begin_else_clause (tree if_stmt)
765 ELSE_CLAUSE (if_stmt) = push_stmt_list ();
768 /* Finish the else-clause of an if-statement, which may be given by
769 IF_STMT. */
771 void
772 finish_else_clause (tree if_stmt)
774 ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
777 /* Finish an if-statement. */
779 void
780 finish_if_stmt (tree if_stmt)
782 tree scope = IF_SCOPE (if_stmt);
783 IF_SCOPE (if_stmt) = NULL;
784 add_stmt (do_poplevel (scope));
787 /* Begin a while-statement. Returns a newly created WHILE_STMT if
788 appropriate. */
790 tree
791 begin_while_stmt (void)
793 tree r;
794 r = build_stmt (input_location, WHILE_STMT, NULL_TREE, NULL_TREE);
795 add_stmt (r);
796 WHILE_BODY (r) = do_pushlevel (sk_block);
797 begin_cond (&WHILE_COND (r));
798 return r;
801 /* Process the COND of a while-statement, which may be given by
802 WHILE_STMT. */
804 void
805 finish_while_stmt_cond (tree cond, tree while_stmt, bool ivdep)
807 if (check_no_cilk (cond,
808 "Cilk array notation cannot be used as a condition for while statement",
809 "%<_Cilk_spawn%> statement cannot be used as a condition for while statement"))
810 cond = error_mark_node;
811 cond = maybe_convert_cond (cond);
812 finish_cond (&WHILE_COND (while_stmt), cond);
813 begin_maybe_infinite_loop (cond);
814 if (ivdep && cond != error_mark_node)
815 WHILE_COND (while_stmt) = build2 (ANNOTATE_EXPR,
816 TREE_TYPE (WHILE_COND (while_stmt)),
817 WHILE_COND (while_stmt),
818 build_int_cst (integer_type_node,
819 annot_expr_ivdep_kind));
820 simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
823 /* Finish a while-statement, which may be given by WHILE_STMT. */
825 void
826 finish_while_stmt (tree while_stmt)
828 end_maybe_infinite_loop (boolean_true_node);
829 WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
832 /* Begin a do-statement. Returns a newly created DO_STMT if
833 appropriate. */
835 tree
836 begin_do_stmt (void)
838 tree r = build_stmt (input_location, DO_STMT, NULL_TREE, NULL_TREE);
839 begin_maybe_infinite_loop (boolean_true_node);
840 add_stmt (r);
841 DO_BODY (r) = push_stmt_list ();
842 return r;
845 /* Finish the body of a do-statement, which may be given by DO_STMT. */
847 void
848 finish_do_body (tree do_stmt)
850 tree body = DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
852 if (TREE_CODE (body) == STATEMENT_LIST && STATEMENT_LIST_TAIL (body))
853 body = STATEMENT_LIST_TAIL (body)->stmt;
855 if (IS_EMPTY_STMT (body))
856 warning (OPT_Wempty_body,
857 "suggest explicit braces around empty body in %<do%> statement");
860 /* Finish a do-statement, which may be given by DO_STMT, and whose
861 COND is as indicated. */
863 void
864 finish_do_stmt (tree cond, tree do_stmt, bool ivdep)
866 if (check_no_cilk (cond,
867 "Cilk array notation cannot be used as a condition for a do-while statement",
868 "%<_Cilk_spawn%> statement cannot be used as a condition for a do-while statement"))
869 cond = error_mark_node;
870 cond = maybe_convert_cond (cond);
871 end_maybe_infinite_loop (cond);
872 if (ivdep && cond != error_mark_node)
873 cond = build2 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
874 build_int_cst (integer_type_node, annot_expr_ivdep_kind));
875 DO_COND (do_stmt) = cond;
878 /* Finish a return-statement. The EXPRESSION returned, if any, is as
879 indicated. */
881 tree
882 finish_return_stmt (tree expr)
884 tree r;
885 bool no_warning;
887 expr = check_return_expr (expr, &no_warning);
889 if (error_operand_p (expr)
890 || (flag_openmp && !check_omp_return ()))
892 /* Suppress -Wreturn-type for this function. */
893 if (warn_return_type)
894 TREE_NO_WARNING (current_function_decl) = true;
895 return error_mark_node;
898 if (!processing_template_decl)
900 if (warn_sequence_point)
901 verify_sequence_points (expr);
903 if (DECL_DESTRUCTOR_P (current_function_decl)
904 || (DECL_CONSTRUCTOR_P (current_function_decl)
905 && targetm.cxx.cdtor_returns_this ()))
907 /* Similarly, all destructors must run destructors for
908 base-classes before returning. So, all returns in a
909 destructor get sent to the DTOR_LABEL; finish_function emits
910 code to return a value there. */
911 return finish_goto_stmt (cdtor_label);
915 r = build_stmt (input_location, RETURN_EXPR, expr);
916 TREE_NO_WARNING (r) |= no_warning;
917 r = maybe_cleanup_point_expr_void (r);
918 r = add_stmt (r);
920 return r;
923 /* Begin the scope of a for-statement or a range-for-statement.
924 Both the returned trees are to be used in a call to
925 begin_for_stmt or begin_range_for_stmt. */
927 tree
928 begin_for_scope (tree *init)
930 tree scope = NULL_TREE;
931 if (flag_new_for_scope > 0)
932 scope = do_pushlevel (sk_for);
934 if (processing_template_decl)
935 *init = push_stmt_list ();
936 else
937 *init = NULL_TREE;
939 return scope;
942 /* Begin a for-statement. Returns a new FOR_STMT.
943 SCOPE and INIT should be the return of begin_for_scope,
944 or both NULL_TREE */
946 tree
947 begin_for_stmt (tree scope, tree init)
949 tree r;
951 r = build_stmt (input_location, FOR_STMT, NULL_TREE, NULL_TREE,
952 NULL_TREE, NULL_TREE, NULL_TREE);
954 if (scope == NULL_TREE)
956 gcc_assert (!init || !(flag_new_for_scope > 0));
957 if (!init)
958 scope = begin_for_scope (&init);
960 FOR_INIT_STMT (r) = init;
961 FOR_SCOPE (r) = scope;
963 return r;
966 /* Finish the for-init-statement of a for-statement, which may be
967 given by FOR_STMT. */
969 void
970 finish_for_init_stmt (tree for_stmt)
972 if (processing_template_decl)
973 FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
974 add_stmt (for_stmt);
975 FOR_BODY (for_stmt) = do_pushlevel (sk_block);
976 begin_cond (&FOR_COND (for_stmt));
979 /* Finish the COND of a for-statement, which may be given by
980 FOR_STMT. */
982 void
983 finish_for_cond (tree cond, tree for_stmt, bool ivdep)
985 if (check_no_cilk (cond,
986 "Cilk array notation cannot be used in a condition for a for-loop",
987 "%<_Cilk_spawn%> statement cannot be used in a condition for a for-loop"))
988 cond = error_mark_node;
989 cond = maybe_convert_cond (cond);
990 finish_cond (&FOR_COND (for_stmt), cond);
991 begin_maybe_infinite_loop (cond);
992 if (ivdep && cond != error_mark_node)
993 FOR_COND (for_stmt) = build2 (ANNOTATE_EXPR,
994 TREE_TYPE (FOR_COND (for_stmt)),
995 FOR_COND (for_stmt),
996 build_int_cst (integer_type_node,
997 annot_expr_ivdep_kind));
998 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
1001 /* Finish the increment-EXPRESSION in a for-statement, which may be
1002 given by FOR_STMT. */
1004 void
1005 finish_for_expr (tree expr, tree for_stmt)
1007 if (!expr)
1008 return;
1009 /* If EXPR is an overloaded function, issue an error; there is no
1010 context available to use to perform overload resolution. */
1011 if (type_unknown_p (expr))
1013 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
1014 expr = error_mark_node;
1016 if (!processing_template_decl)
1018 if (warn_sequence_point)
1019 verify_sequence_points (expr);
1020 expr = convert_to_void (expr, ICV_THIRD_IN_FOR,
1021 tf_warning_or_error);
1023 else if (!type_dependent_expression_p (expr))
1024 convert_to_void (build_non_dependent_expr (expr), ICV_THIRD_IN_FOR,
1025 tf_warning_or_error);
1026 expr = maybe_cleanup_point_expr_void (expr);
1027 if (check_for_bare_parameter_packs (expr))
1028 expr = error_mark_node;
1029 FOR_EXPR (for_stmt) = expr;
1032 /* Finish the body of a for-statement, which may be given by
1033 FOR_STMT. The increment-EXPR for the loop must be
1034 provided.
1035 It can also finish RANGE_FOR_STMT. */
1037 void
1038 finish_for_stmt (tree for_stmt)
1040 end_maybe_infinite_loop (boolean_true_node);
1042 if (TREE_CODE (for_stmt) == RANGE_FOR_STMT)
1043 RANGE_FOR_BODY (for_stmt) = do_poplevel (RANGE_FOR_BODY (for_stmt));
1044 else
1045 FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
1047 /* Pop the scope for the body of the loop. */
1048 if (flag_new_for_scope > 0)
1050 tree scope;
1051 tree *scope_ptr = (TREE_CODE (for_stmt) == RANGE_FOR_STMT
1052 ? &RANGE_FOR_SCOPE (for_stmt)
1053 : &FOR_SCOPE (for_stmt));
1054 scope = *scope_ptr;
1055 *scope_ptr = NULL;
1056 add_stmt (do_poplevel (scope));
1060 /* Begin a range-for-statement. Returns a new RANGE_FOR_STMT.
1061 SCOPE and INIT should be the return of begin_for_scope,
1062 or both NULL_TREE .
1063 To finish it call finish_for_stmt(). */
1065 tree
1066 begin_range_for_stmt (tree scope, tree init)
1068 tree r;
1070 begin_maybe_infinite_loop (boolean_false_node);
1072 r = build_stmt (input_location, RANGE_FOR_STMT,
1073 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE);
1075 if (scope == NULL_TREE)
1077 gcc_assert (!init || !(flag_new_for_scope > 0));
1078 if (!init)
1079 scope = begin_for_scope (&init);
1082 /* RANGE_FOR_STMTs do not use nor save the init tree, so we
1083 pop it now. */
1084 if (init)
1085 pop_stmt_list (init);
1086 RANGE_FOR_SCOPE (r) = scope;
1088 return r;
1091 /* Finish the head of a range-based for statement, which may
1092 be given by RANGE_FOR_STMT. DECL must be the declaration
1093 and EXPR must be the loop expression. */
1095 void
1096 finish_range_for_decl (tree range_for_stmt, tree decl, tree expr)
1098 RANGE_FOR_DECL (range_for_stmt) = decl;
1099 RANGE_FOR_EXPR (range_for_stmt) = expr;
1100 add_stmt (range_for_stmt);
1101 RANGE_FOR_BODY (range_for_stmt) = do_pushlevel (sk_block);
1104 /* Finish a break-statement. */
1106 tree
1107 finish_break_stmt (void)
1109 /* In switch statements break is sometimes stylistically used after
1110 a return statement. This can lead to spurious warnings about
1111 control reaching the end of a non-void function when it is
1112 inlined. Note that we are calling block_may_fallthru with
1113 language specific tree nodes; this works because
1114 block_may_fallthru returns true when given something it does not
1115 understand. */
1116 if (!block_may_fallthru (cur_stmt_list))
1117 return void_node;
1118 return add_stmt (build_stmt (input_location, BREAK_STMT));
1121 /* Finish a continue-statement. */
1123 tree
1124 finish_continue_stmt (void)
1126 return add_stmt (build_stmt (input_location, CONTINUE_STMT));
1129 /* Begin a switch-statement. Returns a new SWITCH_STMT if
1130 appropriate. */
1132 tree
1133 begin_switch_stmt (void)
1135 tree r, scope;
1137 scope = do_pushlevel (sk_cond);
1138 r = build_stmt (input_location, SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE, scope);
1140 begin_cond (&SWITCH_STMT_COND (r));
1142 return r;
1145 /* Finish the cond of a switch-statement. */
1147 void
1148 finish_switch_cond (tree cond, tree switch_stmt)
1150 tree orig_type = NULL;
1152 if (check_no_cilk (cond,
1153 "Cilk array notation cannot be used as a condition for switch statement",
1154 "%<_Cilk_spawn%> statement cannot be used as a condition for switch statement"))
1155 cond = error_mark_node;
1157 if (!processing_template_decl)
1159 /* Convert the condition to an integer or enumeration type. */
1160 cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
1161 if (cond == NULL_TREE)
1163 error ("switch quantity not an integer");
1164 cond = error_mark_node;
1166 /* We want unlowered type here to handle enum bit-fields. */
1167 orig_type = unlowered_expr_type (cond);
1168 if (TREE_CODE (orig_type) != ENUMERAL_TYPE)
1169 orig_type = TREE_TYPE (cond);
1170 if (cond != error_mark_node)
1172 /* Warn if the condition has boolean value. */
1173 if (TREE_CODE (orig_type) == BOOLEAN_TYPE)
1174 warning_at (input_location, OPT_Wswitch_bool,
1175 "switch condition has type bool");
1177 /* [stmt.switch]
1179 Integral promotions are performed. */
1180 cond = perform_integral_promotions (cond);
1181 cond = maybe_cleanup_point_expr (cond);
1184 if (check_for_bare_parameter_packs (cond))
1185 cond = error_mark_node;
1186 else if (!processing_template_decl && warn_sequence_point)
1187 verify_sequence_points (cond);
1189 finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
1190 SWITCH_STMT_TYPE (switch_stmt) = orig_type;
1191 add_stmt (switch_stmt);
1192 push_switch (switch_stmt);
1193 SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
1196 /* Finish the body of a switch-statement, which may be given by
1197 SWITCH_STMT. The COND to switch on is indicated. */
1199 void
1200 finish_switch_stmt (tree switch_stmt)
1202 tree scope;
1204 SWITCH_STMT_BODY (switch_stmt) =
1205 pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
1206 pop_switch ();
1208 scope = SWITCH_STMT_SCOPE (switch_stmt);
1209 SWITCH_STMT_SCOPE (switch_stmt) = NULL;
1210 add_stmt (do_poplevel (scope));
1213 /* Begin a try-block. Returns a newly-created TRY_BLOCK if
1214 appropriate. */
1216 tree
1217 begin_try_block (void)
1219 tree r = build_stmt (input_location, TRY_BLOCK, NULL_TREE, NULL_TREE);
1220 add_stmt (r);
1221 TRY_STMTS (r) = push_stmt_list ();
1222 return r;
1225 /* Likewise, for a function-try-block. The block returned in
1226 *COMPOUND_STMT is an artificial outer scope, containing the
1227 function-try-block. */
1229 tree
1230 begin_function_try_block (tree *compound_stmt)
1232 tree r;
1233 /* This outer scope does not exist in the C++ standard, but we need
1234 a place to put __FUNCTION__ and similar variables. */
1235 *compound_stmt = begin_compound_stmt (0);
1236 r = begin_try_block ();
1237 FN_TRY_BLOCK_P (r) = 1;
1238 return r;
1241 /* Finish a try-block, which may be given by TRY_BLOCK. */
1243 void
1244 finish_try_block (tree try_block)
1246 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1247 TRY_HANDLERS (try_block) = push_stmt_list ();
1250 /* Finish the body of a cleanup try-block, which may be given by
1251 TRY_BLOCK. */
1253 void
1254 finish_cleanup_try_block (tree try_block)
1256 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1259 /* Finish an implicitly generated try-block, with a cleanup is given
1260 by CLEANUP. */
1262 void
1263 finish_cleanup (tree cleanup, tree try_block)
1265 TRY_HANDLERS (try_block) = cleanup;
1266 CLEANUP_P (try_block) = 1;
1269 /* Likewise, for a function-try-block. */
1271 void
1272 finish_function_try_block (tree try_block)
1274 finish_try_block (try_block);
1275 /* FIXME : something queer about CTOR_INITIALIZER somehow following
1276 the try block, but moving it inside. */
1277 in_function_try_handler = 1;
1280 /* Finish a handler-sequence for a try-block, which may be given by
1281 TRY_BLOCK. */
1283 void
1284 finish_handler_sequence (tree try_block)
1286 TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
1287 check_handlers (TRY_HANDLERS (try_block));
1290 /* Finish the handler-seq for a function-try-block, given by
1291 TRY_BLOCK. COMPOUND_STMT is the outer block created by
1292 begin_function_try_block. */
1294 void
1295 finish_function_handler_sequence (tree try_block, tree compound_stmt)
1297 in_function_try_handler = 0;
1298 finish_handler_sequence (try_block);
1299 finish_compound_stmt (compound_stmt);
1302 /* Begin a handler. Returns a HANDLER if appropriate. */
1304 tree
1305 begin_handler (void)
1307 tree r;
1309 r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE);
1310 add_stmt (r);
1312 /* Create a binding level for the eh_info and the exception object
1313 cleanup. */
1314 HANDLER_BODY (r) = do_pushlevel (sk_catch);
1316 return r;
1319 /* Finish the handler-parameters for a handler, which may be given by
1320 HANDLER. DECL is the declaration for the catch parameter, or NULL
1321 if this is a `catch (...)' clause. */
1323 void
1324 finish_handler_parms (tree decl, tree handler)
1326 tree type = NULL_TREE;
1327 if (processing_template_decl)
1329 if (decl)
1331 decl = pushdecl (decl);
1332 decl = push_template_decl (decl);
1333 HANDLER_PARMS (handler) = decl;
1334 type = TREE_TYPE (decl);
1337 else
1338 type = expand_start_catch_block (decl);
1339 HANDLER_TYPE (handler) = type;
1342 /* Finish a handler, which may be given by HANDLER. The BLOCKs are
1343 the return value from the matching call to finish_handler_parms. */
1345 void
1346 finish_handler (tree handler)
1348 if (!processing_template_decl)
1349 expand_end_catch_block ();
1350 HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
1353 /* Begin a compound statement. FLAGS contains some bits that control the
1354 behavior and context. If BCS_NO_SCOPE is set, the compound statement
1355 does not define a scope. If BCS_FN_BODY is set, this is the outermost
1356 block of a function. If BCS_TRY_BLOCK is set, this is the block
1357 created on behalf of a TRY statement. Returns a token to be passed to
1358 finish_compound_stmt. */
1360 tree
1361 begin_compound_stmt (unsigned int flags)
1363 tree r;
1365 if (flags & BCS_NO_SCOPE)
1367 r = push_stmt_list ();
1368 STATEMENT_LIST_NO_SCOPE (r) = 1;
1370 /* Normally, we try hard to keep the BLOCK for a statement-expression.
1371 But, if it's a statement-expression with a scopeless block, there's
1372 nothing to keep, and we don't want to accidentally keep a block
1373 *inside* the scopeless block. */
1374 keep_next_level (false);
1376 else
1377 r = do_pushlevel (flags & BCS_TRY_BLOCK ? sk_try : sk_block);
1379 /* When processing a template, we need to remember where the braces were,
1380 so that we can set up identical scopes when instantiating the template
1381 later. BIND_EXPR is a handy candidate for this.
1382 Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1383 result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1384 processing templates. */
1385 if (processing_template_decl)
1387 r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
1388 BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1389 BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
1390 TREE_SIDE_EFFECTS (r) = 1;
1393 return r;
1396 /* Finish a compound-statement, which is given by STMT. */
1398 void
1399 finish_compound_stmt (tree stmt)
1401 if (TREE_CODE (stmt) == BIND_EXPR)
1403 tree body = do_poplevel (BIND_EXPR_BODY (stmt));
1404 /* If the STATEMENT_LIST is empty and this BIND_EXPR isn't special,
1405 discard the BIND_EXPR so it can be merged with the containing
1406 STATEMENT_LIST. */
1407 if (TREE_CODE (body) == STATEMENT_LIST
1408 && STATEMENT_LIST_HEAD (body) == NULL
1409 && !BIND_EXPR_BODY_BLOCK (stmt)
1410 && !BIND_EXPR_TRY_BLOCK (stmt))
1411 stmt = body;
1412 else
1413 BIND_EXPR_BODY (stmt) = body;
1415 else if (STATEMENT_LIST_NO_SCOPE (stmt))
1416 stmt = pop_stmt_list (stmt);
1417 else
1419 /* Destroy any ObjC "super" receivers that may have been
1420 created. */
1421 objc_clear_super_receiver ();
1423 stmt = do_poplevel (stmt);
1426 /* ??? See c_end_compound_stmt wrt statement expressions. */
1427 add_stmt (stmt);
1430 /* Finish an asm-statement, whose components are a STRING, some
1431 OUTPUT_OPERANDS, some INPUT_OPERANDS, some CLOBBERS and some
1432 LABELS. Also note whether the asm-statement should be
1433 considered volatile. */
1435 tree
1436 finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1437 tree input_operands, tree clobbers, tree labels)
1439 tree r;
1440 tree t;
1441 int ninputs = list_length (input_operands);
1442 int noutputs = list_length (output_operands);
1444 if (!processing_template_decl)
1446 const char *constraint;
1447 const char **oconstraints;
1448 bool allows_mem, allows_reg, is_inout;
1449 tree operand;
1450 int i;
1452 oconstraints = XALLOCAVEC (const char *, noutputs);
1454 string = resolve_asm_operand_names (string, output_operands,
1455 input_operands, labels);
1457 for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
1459 operand = TREE_VALUE (t);
1461 /* ??? Really, this should not be here. Users should be using a
1462 proper lvalue, dammit. But there's a long history of using
1463 casts in the output operands. In cases like longlong.h, this
1464 becomes a primitive form of typechecking -- if the cast can be
1465 removed, then the output operand had a type of the proper width;
1466 otherwise we'll get an error. Gross, but ... */
1467 STRIP_NOPS (operand);
1469 operand = mark_lvalue_use (operand);
1471 if (!lvalue_or_else (operand, lv_asm, tf_warning_or_error))
1472 operand = error_mark_node;
1474 if (operand != error_mark_node
1475 && (TREE_READONLY (operand)
1476 || CP_TYPE_CONST_P (TREE_TYPE (operand))
1477 /* Functions are not modifiable, even though they are
1478 lvalues. */
1479 || TREE_CODE (TREE_TYPE (operand)) == FUNCTION_TYPE
1480 || TREE_CODE (TREE_TYPE (operand)) == METHOD_TYPE
1481 /* If it's an aggregate and any field is const, then it is
1482 effectively const. */
1483 || (CLASS_TYPE_P (TREE_TYPE (operand))
1484 && C_TYPE_FIELDS_READONLY (TREE_TYPE (operand)))))
1485 cxx_readonly_error (operand, lv_asm);
1487 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1488 oconstraints[i] = constraint;
1490 if (parse_output_constraint (&constraint, i, ninputs, noutputs,
1491 &allows_mem, &allows_reg, &is_inout))
1493 /* If the operand is going to end up in memory,
1494 mark it addressable. */
1495 if (!allows_reg && !cxx_mark_addressable (operand))
1496 operand = error_mark_node;
1498 else
1499 operand = error_mark_node;
1501 TREE_VALUE (t) = operand;
1504 for (i = 0, t = input_operands; t; ++i, t = TREE_CHAIN (t))
1506 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1507 bool constraint_parsed
1508 = parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
1509 oconstraints, &allows_mem, &allows_reg);
1510 /* If the operand is going to end up in memory, don't call
1511 decay_conversion. */
1512 if (constraint_parsed && !allows_reg && allows_mem)
1513 operand = mark_lvalue_use (TREE_VALUE (t));
1514 else
1515 operand = decay_conversion (TREE_VALUE (t), tf_warning_or_error);
1517 /* If the type of the operand hasn't been determined (e.g.,
1518 because it involves an overloaded function), then issue
1519 an error message. There's no context available to
1520 resolve the overloading. */
1521 if (TREE_TYPE (operand) == unknown_type_node)
1523 error ("type of asm operand %qE could not be determined",
1524 TREE_VALUE (t));
1525 operand = error_mark_node;
1528 if (constraint_parsed)
1530 /* If the operand is going to end up in memory,
1531 mark it addressable. */
1532 if (!allows_reg && allows_mem)
1534 /* Strip the nops as we allow this case. FIXME, this really
1535 should be rejected or made deprecated. */
1536 STRIP_NOPS (operand);
1537 if (!cxx_mark_addressable (operand))
1538 operand = error_mark_node;
1540 else if (!allows_reg && !allows_mem)
1542 /* If constraint allows neither register nor memory,
1543 try harder to get a constant. */
1544 tree constop = maybe_constant_value (operand);
1545 if (TREE_CONSTANT (constop))
1546 operand = constop;
1549 else
1550 operand = error_mark_node;
1552 TREE_VALUE (t) = operand;
1556 r = build_stmt (input_location, ASM_EXPR, string,
1557 output_operands, input_operands,
1558 clobbers, labels);
1559 ASM_VOLATILE_P (r) = volatile_p || noutputs == 0;
1560 r = maybe_cleanup_point_expr_void (r);
1561 return add_stmt (r);
1564 /* Finish a label with the indicated NAME. Returns the new label. */
1566 tree
1567 finish_label_stmt (tree name)
1569 tree decl = define_label (input_location, name);
1571 if (decl == error_mark_node)
1572 return error_mark_node;
1574 add_stmt (build_stmt (input_location, LABEL_EXPR, decl));
1576 return decl;
1579 /* Finish a series of declarations for local labels. G++ allows users
1580 to declare "local" labels, i.e., labels with scope. This extension
1581 is useful when writing code involving statement-expressions. */
1583 void
1584 finish_label_decl (tree name)
1586 if (!at_function_scope_p ())
1588 error ("__label__ declarations are only allowed in function scopes");
1589 return;
1592 add_decl_expr (declare_local_label (name));
1595 /* When DECL goes out of scope, make sure that CLEANUP is executed. */
1597 void
1598 finish_decl_cleanup (tree decl, tree cleanup)
1600 push_cleanup (decl, cleanup, false);
1603 /* If the current scope exits with an exception, run CLEANUP. */
1605 void
1606 finish_eh_cleanup (tree cleanup)
1608 push_cleanup (NULL, cleanup, true);
1611 /* The MEM_INITS is a list of mem-initializers, in reverse of the
1612 order they were written by the user. Each node is as for
1613 emit_mem_initializers. */
1615 void
1616 finish_mem_initializers (tree mem_inits)
1618 /* Reorder the MEM_INITS so that they are in the order they appeared
1619 in the source program. */
1620 mem_inits = nreverse (mem_inits);
1622 if (processing_template_decl)
1624 tree mem;
1626 for (mem = mem_inits; mem; mem = TREE_CHAIN (mem))
1628 /* If the TREE_PURPOSE is a TYPE_PACK_EXPANSION, skip the
1629 check for bare parameter packs in the TREE_VALUE, because
1630 any parameter packs in the TREE_VALUE have already been
1631 bound as part of the TREE_PURPOSE. See
1632 make_pack_expansion for more information. */
1633 if (TREE_CODE (TREE_PURPOSE (mem)) != TYPE_PACK_EXPANSION
1634 && check_for_bare_parameter_packs (TREE_VALUE (mem)))
1635 TREE_VALUE (mem) = error_mark_node;
1638 add_stmt (build_min_nt_loc (UNKNOWN_LOCATION,
1639 CTOR_INITIALIZER, mem_inits));
1641 else
1642 emit_mem_initializers (mem_inits);
1645 /* Obfuscate EXPR if it looks like an id-expression or member access so
1646 that the call to finish_decltype in do_auto_deduction will give the
1647 right result. */
1649 tree
1650 force_paren_expr (tree expr)
1652 /* This is only needed for decltype(auto) in C++14. */
1653 if (cxx_dialect < cxx14)
1654 return expr;
1656 /* If we're in unevaluated context, we can't be deducing a
1657 return/initializer type, so we don't need to mess with this. */
1658 if (cp_unevaluated_operand)
1659 return expr;
1661 if (!DECL_P (expr) && TREE_CODE (expr) != COMPONENT_REF
1662 && TREE_CODE (expr) != SCOPE_REF)
1663 return expr;
1665 if (TREE_CODE (expr) == COMPONENT_REF)
1666 REF_PARENTHESIZED_P (expr) = true;
1667 else if (type_dependent_expression_p (expr))
1668 expr = build1 (PAREN_EXPR, TREE_TYPE (expr), expr);
1669 else
1671 cp_lvalue_kind kind = lvalue_kind (expr);
1672 if ((kind & ~clk_class) != clk_none)
1674 tree type = unlowered_expr_type (expr);
1675 bool rval = !!(kind & clk_rvalueref);
1676 type = cp_build_reference_type (type, rval);
1677 /* This inhibits warnings in, eg, cxx_mark_addressable
1678 (c++/60955). */
1679 warning_sentinel s (extra_warnings);
1680 expr = build_static_cast (type, expr, tf_error);
1681 if (expr != error_mark_node)
1682 REF_PARENTHESIZED_P (expr) = true;
1686 return expr;
1689 /* Finish a parenthesized expression EXPR. */
1691 tree
1692 finish_parenthesized_expr (tree expr)
1694 if (EXPR_P (expr))
1695 /* This inhibits warnings in c_common_truthvalue_conversion. */
1696 TREE_NO_WARNING (expr) = 1;
1698 if (TREE_CODE (expr) == OFFSET_REF
1699 || TREE_CODE (expr) == SCOPE_REF)
1700 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1701 enclosed in parentheses. */
1702 PTRMEM_OK_P (expr) = 0;
1704 if (TREE_CODE (expr) == STRING_CST)
1705 PAREN_STRING_LITERAL_P (expr) = 1;
1707 expr = force_paren_expr (expr);
1709 return expr;
1712 /* Finish a reference to a non-static data member (DECL) that is not
1713 preceded by `.' or `->'. */
1715 tree
1716 finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
1718 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1720 if (!object)
1722 tree scope = qualifying_scope;
1723 if (scope == NULL_TREE)
1724 scope = context_for_name_lookup (decl);
1725 object = maybe_dummy_object (scope, NULL);
1728 object = maybe_resolve_dummy (object, true);
1729 if (object == error_mark_node)
1730 return error_mark_node;
1732 /* DR 613/850: Can use non-static data members without an associated
1733 object in sizeof/decltype/alignof. */
1734 if (is_dummy_object (object) && cp_unevaluated_operand == 0
1735 && (!processing_template_decl || !current_class_ref))
1737 if (current_function_decl
1738 && DECL_STATIC_FUNCTION_P (current_function_decl))
1739 error ("invalid use of member %qD in static member function", decl);
1740 else
1741 error ("invalid use of non-static data member %qD", decl);
1742 inform (DECL_SOURCE_LOCATION (decl), "declared here");
1744 return error_mark_node;
1747 if (current_class_ptr)
1748 TREE_USED (current_class_ptr) = 1;
1749 if (processing_template_decl && !qualifying_scope)
1751 tree type = TREE_TYPE (decl);
1753 if (TREE_CODE (type) == REFERENCE_TYPE)
1754 /* Quals on the object don't matter. */;
1755 else if (PACK_EXPANSION_P (type))
1756 /* Don't bother trying to represent this. */
1757 type = NULL_TREE;
1758 else
1760 /* Set the cv qualifiers. */
1761 int quals = cp_type_quals (TREE_TYPE (object));
1763 if (DECL_MUTABLE_P (decl))
1764 quals &= ~TYPE_QUAL_CONST;
1766 quals |= cp_type_quals (TREE_TYPE (decl));
1767 type = cp_build_qualified_type (type, quals);
1770 return (convert_from_reference
1771 (build_min (COMPONENT_REF, type, object, decl, NULL_TREE)));
1773 /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1774 QUALIFYING_SCOPE is also non-null. Wrap this in a SCOPE_REF
1775 for now. */
1776 else if (processing_template_decl)
1777 return build_qualified_name (TREE_TYPE (decl),
1778 qualifying_scope,
1779 decl,
1780 /*template_p=*/false);
1781 else
1783 tree access_type = TREE_TYPE (object);
1785 perform_or_defer_access_check (TYPE_BINFO (access_type), decl,
1786 decl, tf_warning_or_error);
1788 /* If the data member was named `C::M', convert `*this' to `C'
1789 first. */
1790 if (qualifying_scope)
1792 tree binfo = NULL_TREE;
1793 object = build_scoped_ref (object, qualifying_scope,
1794 &binfo);
1797 return build_class_member_access_expr (object, decl,
1798 /*access_path=*/NULL_TREE,
1799 /*preserve_reference=*/false,
1800 tf_warning_or_error);
1804 /* If we are currently parsing a template and we encountered a typedef
1805 TYPEDEF_DECL that is being accessed though CONTEXT, this function
1806 adds the typedef to a list tied to the current template.
1807 At template instantiation time, that list is walked and access check
1808 performed for each typedef.
1809 LOCATION is the location of the usage point of TYPEDEF_DECL. */
1811 void
1812 add_typedef_to_current_template_for_access_check (tree typedef_decl,
1813 tree context,
1814 location_t location)
1816 tree template_info = NULL;
1817 tree cs = current_scope ();
1819 if (!is_typedef_decl (typedef_decl)
1820 || !context
1821 || !CLASS_TYPE_P (context)
1822 || !cs)
1823 return;
1825 if (CLASS_TYPE_P (cs) || TREE_CODE (cs) == FUNCTION_DECL)
1826 template_info = get_template_info (cs);
1828 if (template_info
1829 && TI_TEMPLATE (template_info)
1830 && !currently_open_class (context))
1831 append_type_to_template_for_access_check (cs, typedef_decl,
1832 context, location);
1835 /* DECL was the declaration to which a qualified-id resolved. Issue
1836 an error message if it is not accessible. If OBJECT_TYPE is
1837 non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1838 type of `*x', or `x', respectively. If the DECL was named as
1839 `A::B' then NESTED_NAME_SPECIFIER is `A'. */
1841 void
1842 check_accessibility_of_qualified_id (tree decl,
1843 tree object_type,
1844 tree nested_name_specifier)
1846 tree scope;
1847 tree qualifying_type = NULL_TREE;
1849 /* If we are parsing a template declaration and if decl is a typedef,
1850 add it to a list tied to the template.
1851 At template instantiation time, that list will be walked and
1852 access check performed. */
1853 add_typedef_to_current_template_for_access_check (decl,
1854 nested_name_specifier
1855 ? nested_name_specifier
1856 : DECL_CONTEXT (decl),
1857 input_location);
1859 /* If we're not checking, return immediately. */
1860 if (deferred_access_no_check)
1861 return;
1863 /* Determine the SCOPE of DECL. */
1864 scope = context_for_name_lookup (decl);
1865 /* If the SCOPE is not a type, then DECL is not a member. */
1866 if (!TYPE_P (scope))
1867 return;
1868 /* Compute the scope through which DECL is being accessed. */
1869 if (object_type
1870 /* OBJECT_TYPE might not be a class type; consider:
1872 class A { typedef int I; };
1873 I *p;
1874 p->A::I::~I();
1876 In this case, we will have "A::I" as the DECL, but "I" as the
1877 OBJECT_TYPE. */
1878 && CLASS_TYPE_P (object_type)
1879 && DERIVED_FROM_P (scope, object_type))
1880 /* If we are processing a `->' or `.' expression, use the type of the
1881 left-hand side. */
1882 qualifying_type = object_type;
1883 else if (nested_name_specifier)
1885 /* If the reference is to a non-static member of the
1886 current class, treat it as if it were referenced through
1887 `this'. */
1888 tree ct;
1889 if (DECL_NONSTATIC_MEMBER_P (decl)
1890 && current_class_ptr
1891 && DERIVED_FROM_P (scope, ct = current_nonlambda_class_type ()))
1892 qualifying_type = ct;
1893 /* Otherwise, use the type indicated by the
1894 nested-name-specifier. */
1895 else
1896 qualifying_type = nested_name_specifier;
1898 else
1899 /* Otherwise, the name must be from the current class or one of
1900 its bases. */
1901 qualifying_type = currently_open_derived_class (scope);
1903 if (qualifying_type
1904 /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1905 or similar in a default argument value. */
1906 && CLASS_TYPE_P (qualifying_type)
1907 && !dependent_type_p (qualifying_type))
1908 perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl,
1909 decl, tf_warning_or_error);
1912 /* EXPR is the result of a qualified-id. The QUALIFYING_CLASS was the
1913 class named to the left of the "::" operator. DONE is true if this
1914 expression is a complete postfix-expression; it is false if this
1915 expression is followed by '->', '[', '(', etc. ADDRESS_P is true
1916 iff this expression is the operand of '&'. TEMPLATE_P is true iff
1917 the qualified-id was of the form "A::template B". TEMPLATE_ARG_P
1918 is true iff this qualified name appears as a template argument. */
1920 tree
1921 finish_qualified_id_expr (tree qualifying_class,
1922 tree expr,
1923 bool done,
1924 bool address_p,
1925 bool template_p,
1926 bool template_arg_p,
1927 tsubst_flags_t complain)
1929 gcc_assert (TYPE_P (qualifying_class));
1931 if (error_operand_p (expr))
1932 return error_mark_node;
1934 if ((DECL_P (expr) || BASELINK_P (expr))
1935 && !mark_used (expr, complain))
1936 return error_mark_node;
1938 if (template_p)
1939 check_template_keyword (expr);
1941 /* If EXPR occurs as the operand of '&', use special handling that
1942 permits a pointer-to-member. */
1943 if (address_p && done)
1945 if (TREE_CODE (expr) == SCOPE_REF)
1946 expr = TREE_OPERAND (expr, 1);
1947 expr = build_offset_ref (qualifying_class, expr,
1948 /*address_p=*/true, complain);
1949 return expr;
1952 /* No need to check access within an enum. */
1953 if (TREE_CODE (qualifying_class) == ENUMERAL_TYPE)
1954 return expr;
1956 /* Within the scope of a class, turn references to non-static
1957 members into expression of the form "this->...". */
1958 if (template_arg_p)
1959 /* But, within a template argument, we do not want make the
1960 transformation, as there is no "this" pointer. */
1962 else if (TREE_CODE (expr) == FIELD_DECL)
1964 push_deferring_access_checks (dk_no_check);
1965 expr = finish_non_static_data_member (expr, NULL_TREE,
1966 qualifying_class);
1967 pop_deferring_access_checks ();
1969 else if (BASELINK_P (expr) && !processing_template_decl)
1971 /* See if any of the functions are non-static members. */
1972 /* If so, the expression may be relative to 'this'. */
1973 if (!shared_member_p (expr)
1974 && current_class_ptr
1975 && DERIVED_FROM_P (qualifying_class,
1976 current_nonlambda_class_type ()))
1977 expr = (build_class_member_access_expr
1978 (maybe_dummy_object (qualifying_class, NULL),
1979 expr,
1980 BASELINK_ACCESS_BINFO (expr),
1981 /*preserve_reference=*/false,
1982 complain));
1983 else if (done)
1984 /* The expression is a qualified name whose address is not
1985 being taken. */
1986 expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false,
1987 complain);
1989 else if (BASELINK_P (expr))
1991 else
1993 /* In a template, return a SCOPE_REF for most qualified-ids
1994 so that we can check access at instantiation time. But if
1995 we're looking at a member of the current instantiation, we
1996 know we have access and building up the SCOPE_REF confuses
1997 non-type template argument handling. */
1998 if (processing_template_decl
1999 && !currently_open_class (qualifying_class))
2000 expr = build_qualified_name (TREE_TYPE (expr),
2001 qualifying_class, expr,
2002 template_p);
2004 expr = convert_from_reference (expr);
2007 return expr;
2010 /* Begin a statement-expression. The value returned must be passed to
2011 finish_stmt_expr. */
2013 tree
2014 begin_stmt_expr (void)
2016 return push_stmt_list ();
2019 /* Process the final expression of a statement expression. EXPR can be
2020 NULL, if the final expression is empty. Return a STATEMENT_LIST
2021 containing all the statements in the statement-expression, or
2022 ERROR_MARK_NODE if there was an error. */
2024 tree
2025 finish_stmt_expr_expr (tree expr, tree stmt_expr)
2027 if (error_operand_p (expr))
2029 /* The type of the statement-expression is the type of the last
2030 expression. */
2031 TREE_TYPE (stmt_expr) = error_mark_node;
2032 return error_mark_node;
2035 /* If the last statement does not have "void" type, then the value
2036 of the last statement is the value of the entire expression. */
2037 if (expr)
2039 tree type = TREE_TYPE (expr);
2041 if (processing_template_decl)
2043 expr = build_stmt (input_location, EXPR_STMT, expr);
2044 expr = add_stmt (expr);
2045 /* Mark the last statement so that we can recognize it as such at
2046 template-instantiation time. */
2047 EXPR_STMT_STMT_EXPR_RESULT (expr) = 1;
2049 else if (VOID_TYPE_P (type))
2051 /* Just treat this like an ordinary statement. */
2052 expr = finish_expr_stmt (expr);
2054 else
2056 /* It actually has a value we need to deal with. First, force it
2057 to be an rvalue so that we won't need to build up a copy
2058 constructor call later when we try to assign it to something. */
2059 expr = force_rvalue (expr, tf_warning_or_error);
2060 if (error_operand_p (expr))
2061 return error_mark_node;
2063 /* Update for array-to-pointer decay. */
2064 type = TREE_TYPE (expr);
2066 /* Wrap it in a CLEANUP_POINT_EXPR and add it to the list like a
2067 normal statement, but don't convert to void or actually add
2068 the EXPR_STMT. */
2069 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
2070 expr = maybe_cleanup_point_expr (expr);
2071 add_stmt (expr);
2074 /* The type of the statement-expression is the type of the last
2075 expression. */
2076 TREE_TYPE (stmt_expr) = type;
2079 return stmt_expr;
2082 /* Finish a statement-expression. EXPR should be the value returned
2083 by the previous begin_stmt_expr. Returns an expression
2084 representing the statement-expression. */
2086 tree
2087 finish_stmt_expr (tree stmt_expr, bool has_no_scope)
2089 tree type;
2090 tree result;
2092 if (error_operand_p (stmt_expr))
2094 pop_stmt_list (stmt_expr);
2095 return error_mark_node;
2098 gcc_assert (TREE_CODE (stmt_expr) == STATEMENT_LIST);
2100 type = TREE_TYPE (stmt_expr);
2101 result = pop_stmt_list (stmt_expr);
2102 TREE_TYPE (result) = type;
2104 if (processing_template_decl)
2106 result = build_min (STMT_EXPR, type, result);
2107 TREE_SIDE_EFFECTS (result) = 1;
2108 STMT_EXPR_NO_SCOPE (result) = has_no_scope;
2110 else if (CLASS_TYPE_P (type))
2112 /* Wrap the statement-expression in a TARGET_EXPR so that the
2113 temporary object created by the final expression is destroyed at
2114 the end of the full-expression containing the
2115 statement-expression. */
2116 result = force_target_expr (type, result, tf_warning_or_error);
2119 return result;
2122 /* Returns the expression which provides the value of STMT_EXPR. */
2124 tree
2125 stmt_expr_value_expr (tree stmt_expr)
2127 tree t = STMT_EXPR_STMT (stmt_expr);
2129 if (TREE_CODE (t) == BIND_EXPR)
2130 t = BIND_EXPR_BODY (t);
2132 if (TREE_CODE (t) == STATEMENT_LIST && STATEMENT_LIST_TAIL (t))
2133 t = STATEMENT_LIST_TAIL (t)->stmt;
2135 if (TREE_CODE (t) == EXPR_STMT)
2136 t = EXPR_STMT_EXPR (t);
2138 return t;
2141 /* Return TRUE iff EXPR_STMT is an empty list of
2142 expression statements. */
2144 bool
2145 empty_expr_stmt_p (tree expr_stmt)
2147 tree body = NULL_TREE;
2149 if (expr_stmt == void_node)
2150 return true;
2152 if (expr_stmt)
2154 if (TREE_CODE (expr_stmt) == EXPR_STMT)
2155 body = EXPR_STMT_EXPR (expr_stmt);
2156 else if (TREE_CODE (expr_stmt) == STATEMENT_LIST)
2157 body = expr_stmt;
2160 if (body)
2162 if (TREE_CODE (body) == STATEMENT_LIST)
2163 return tsi_end_p (tsi_start (body));
2164 else
2165 return empty_expr_stmt_p (body);
2167 return false;
2170 /* Perform Koenig lookup. FN is the postfix-expression representing
2171 the function (or functions) to call; ARGS are the arguments to the
2172 call. Returns the functions to be considered by overload resolution. */
2174 tree
2175 perform_koenig_lookup (tree fn, vec<tree, va_gc> *args,
2176 tsubst_flags_t complain)
2178 tree identifier = NULL_TREE;
2179 tree functions = NULL_TREE;
2180 tree tmpl_args = NULL_TREE;
2181 bool template_id = false;
2183 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2185 /* Use a separate flag to handle null args. */
2186 template_id = true;
2187 tmpl_args = TREE_OPERAND (fn, 1);
2188 fn = TREE_OPERAND (fn, 0);
2191 /* Find the name of the overloaded function. */
2192 if (identifier_p (fn))
2193 identifier = fn;
2194 else if (is_overloaded_fn (fn))
2196 functions = fn;
2197 identifier = DECL_NAME (get_first_fn (functions));
2199 else if (DECL_P (fn))
2201 functions = fn;
2202 identifier = DECL_NAME (fn);
2205 /* A call to a namespace-scope function using an unqualified name.
2207 Do Koenig lookup -- unless any of the arguments are
2208 type-dependent. */
2209 if (!any_type_dependent_arguments_p (args)
2210 && !any_dependent_template_arguments_p (tmpl_args))
2212 fn = lookup_arg_dependent (identifier, functions, args);
2213 if (!fn)
2215 /* The unqualified name could not be resolved. */
2216 if (complain)
2217 fn = unqualified_fn_lookup_error (identifier);
2218 else
2219 fn = identifier;
2223 if (fn && template_id)
2224 fn = build2 (TEMPLATE_ID_EXPR, unknown_type_node, fn, tmpl_args);
2226 return fn;
2229 /* Generate an expression for `FN (ARGS)'. This may change the
2230 contents of ARGS.
2232 If DISALLOW_VIRTUAL is true, the call to FN will be not generated
2233 as a virtual call, even if FN is virtual. (This flag is set when
2234 encountering an expression where the function name is explicitly
2235 qualified. For example a call to `X::f' never generates a virtual
2236 call.)
2238 Returns code for the call. */
2240 tree
2241 finish_call_expr (tree fn, vec<tree, va_gc> **args, bool disallow_virtual,
2242 bool koenig_p, tsubst_flags_t complain)
2244 tree result;
2245 tree orig_fn;
2246 vec<tree, va_gc> *orig_args = NULL;
2248 if (fn == error_mark_node)
2249 return error_mark_node;
2251 gcc_assert (!TYPE_P (fn));
2253 orig_fn = fn;
2255 if (processing_template_decl)
2257 /* If the call expression is dependent, build a CALL_EXPR node
2258 with no type; type_dependent_expression_p recognizes
2259 expressions with no type as being dependent. */
2260 if (type_dependent_expression_p (fn)
2261 || any_type_dependent_arguments_p (*args)
2262 /* For a non-static member function that doesn't have an
2263 explicit object argument, we need to specifically
2264 test the type dependency of the "this" pointer because it
2265 is not included in *ARGS even though it is considered to
2266 be part of the list of arguments. Note that this is
2267 related to CWG issues 515 and 1005. */
2268 || (TREE_CODE (fn) != COMPONENT_REF
2269 && non_static_member_function_p (fn)
2270 && current_class_ref
2271 && type_dependent_expression_p (current_class_ref)))
2273 result = build_nt_call_vec (fn, *args);
2274 SET_EXPR_LOCATION (result, EXPR_LOC_OR_LOC (fn, input_location));
2275 KOENIG_LOOKUP_P (result) = koenig_p;
2276 if (cfun)
2280 tree fndecl = OVL_CURRENT (fn);
2281 if (TREE_CODE (fndecl) != FUNCTION_DECL
2282 || !TREE_THIS_VOLATILE (fndecl))
2283 break;
2284 fn = OVL_NEXT (fn);
2286 while (fn);
2287 if (!fn)
2288 current_function_returns_abnormally = 1;
2290 return result;
2292 orig_args = make_tree_vector_copy (*args);
2293 if (!BASELINK_P (fn)
2294 && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
2295 && TREE_TYPE (fn) != unknown_type_node)
2296 fn = build_non_dependent_expr (fn);
2297 make_args_non_dependent (*args);
2300 if (TREE_CODE (fn) == COMPONENT_REF)
2302 tree member = TREE_OPERAND (fn, 1);
2303 if (BASELINK_P (member))
2305 tree object = TREE_OPERAND (fn, 0);
2306 return build_new_method_call (object, member,
2307 args, NULL_TREE,
2308 (disallow_virtual
2309 ? LOOKUP_NORMAL | LOOKUP_NONVIRTUAL
2310 : LOOKUP_NORMAL),
2311 /*fn_p=*/NULL,
2312 complain);
2316 /* Per 13.3.1.1, '(&f)(...)' is the same as '(f)(...)'. */
2317 if (TREE_CODE (fn) == ADDR_EXPR
2318 && TREE_CODE (TREE_OPERAND (fn, 0)) == OVERLOAD)
2319 fn = TREE_OPERAND (fn, 0);
2321 if (is_overloaded_fn (fn))
2322 fn = baselink_for_fns (fn);
2324 result = NULL_TREE;
2325 if (BASELINK_P (fn))
2327 tree object;
2329 /* A call to a member function. From [over.call.func]:
2331 If the keyword this is in scope and refers to the class of
2332 that member function, or a derived class thereof, then the
2333 function call is transformed into a qualified function call
2334 using (*this) as the postfix-expression to the left of the
2335 . operator.... [Otherwise] a contrived object of type T
2336 becomes the implied object argument.
2338 In this situation:
2340 struct A { void f(); };
2341 struct B : public A {};
2342 struct C : public A { void g() { B::f(); }};
2344 "the class of that member function" refers to `A'. But 11.2
2345 [class.access.base] says that we need to convert 'this' to B* as
2346 part of the access, so we pass 'B' to maybe_dummy_object. */
2348 object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
2349 NULL);
2351 if (processing_template_decl)
2353 if (type_dependent_expression_p (object))
2355 tree ret = build_nt_call_vec (orig_fn, orig_args);
2356 release_tree_vector (orig_args);
2357 return ret;
2359 object = build_non_dependent_expr (object);
2362 result = build_new_method_call (object, fn, args, NULL_TREE,
2363 (disallow_virtual
2364 ? LOOKUP_NORMAL|LOOKUP_NONVIRTUAL
2365 : LOOKUP_NORMAL),
2366 /*fn_p=*/NULL,
2367 complain);
2369 else if (is_overloaded_fn (fn))
2371 /* If the function is an overloaded builtin, resolve it. */
2372 if (TREE_CODE (fn) == FUNCTION_DECL
2373 && (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2374 || DECL_BUILT_IN_CLASS (fn) == BUILT_IN_MD))
2375 result = resolve_overloaded_builtin (input_location, fn, *args);
2377 if (!result)
2379 if (warn_sizeof_pointer_memaccess
2380 && (complain & tf_warning)
2381 && !vec_safe_is_empty (*args)
2382 && !processing_template_decl)
2384 location_t sizeof_arg_loc[3];
2385 tree sizeof_arg[3];
2386 unsigned int i;
2387 for (i = 0; i < 3; i++)
2389 tree t;
2391 sizeof_arg_loc[i] = UNKNOWN_LOCATION;
2392 sizeof_arg[i] = NULL_TREE;
2393 if (i >= (*args)->length ())
2394 continue;
2395 t = (**args)[i];
2396 if (TREE_CODE (t) != SIZEOF_EXPR)
2397 continue;
2398 if (SIZEOF_EXPR_TYPE_P (t))
2399 sizeof_arg[i] = TREE_TYPE (TREE_OPERAND (t, 0));
2400 else
2401 sizeof_arg[i] = TREE_OPERAND (t, 0);
2402 sizeof_arg_loc[i] = EXPR_LOCATION (t);
2404 sizeof_pointer_memaccess_warning
2405 (sizeof_arg_loc, fn, *args,
2406 sizeof_arg, same_type_ignoring_top_level_qualifiers_p);
2409 /* A call to a namespace-scope function. */
2410 result = build_new_function_call (fn, args, koenig_p, complain);
2413 else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
2415 if (!vec_safe_is_empty (*args))
2416 error ("arguments to destructor are not allowed");
2417 /* Mark the pseudo-destructor call as having side-effects so
2418 that we do not issue warnings about its use. */
2419 result = build1 (NOP_EXPR,
2420 void_type_node,
2421 TREE_OPERAND (fn, 0));
2422 TREE_SIDE_EFFECTS (result) = 1;
2424 else if (CLASS_TYPE_P (TREE_TYPE (fn)))
2425 /* If the "function" is really an object of class type, it might
2426 have an overloaded `operator ()'. */
2427 result = build_op_call (fn, args, complain);
2429 if (!result)
2430 /* A call where the function is unknown. */
2431 result = cp_build_function_call_vec (fn, args, complain);
2433 if (processing_template_decl && result != error_mark_node)
2435 if (INDIRECT_REF_P (result))
2436 result = TREE_OPERAND (result, 0);
2437 result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
2438 SET_EXPR_LOCATION (result, input_location);
2439 KOENIG_LOOKUP_P (result) = koenig_p;
2440 release_tree_vector (orig_args);
2441 result = convert_from_reference (result);
2444 if (koenig_p)
2446 /* Free garbage OVERLOADs from arg-dependent lookup. */
2447 tree next = NULL_TREE;
2448 for (fn = orig_fn;
2449 fn && TREE_CODE (fn) == OVERLOAD && OVL_ARG_DEPENDENT (fn);
2450 fn = next)
2452 if (processing_template_decl)
2453 /* In a template, we'll re-use them at instantiation time. */
2454 OVL_ARG_DEPENDENT (fn) = false;
2455 else
2457 next = OVL_CHAIN (fn);
2458 ggc_free (fn);
2463 return result;
2466 /* Finish a call to a postfix increment or decrement or EXPR. (Which
2467 is indicated by CODE, which should be POSTINCREMENT_EXPR or
2468 POSTDECREMENT_EXPR.) */
2470 tree
2471 finish_increment_expr (tree expr, enum tree_code code)
2473 return build_x_unary_op (input_location, code, expr, tf_warning_or_error);
2476 /* Finish a use of `this'. Returns an expression for `this'. */
2478 tree
2479 finish_this_expr (void)
2481 tree result = NULL_TREE;
2483 if (current_class_ptr)
2485 tree type = TREE_TYPE (current_class_ref);
2487 /* In a lambda expression, 'this' refers to the captured 'this'. */
2488 if (LAMBDA_TYPE_P (type))
2489 result = lambda_expr_this_capture (CLASSTYPE_LAMBDA_EXPR (type), true);
2490 else
2491 result = current_class_ptr;
2494 if (result)
2495 /* The keyword 'this' is a prvalue expression. */
2496 return rvalue (result);
2498 tree fn = current_nonlambda_function ();
2499 if (fn && DECL_STATIC_FUNCTION_P (fn))
2500 error ("%<this%> is unavailable for static member functions");
2501 else if (fn)
2502 error ("invalid use of %<this%> in non-member function");
2503 else
2504 error ("invalid use of %<this%> at top level");
2505 return error_mark_node;
2508 /* Finish a pseudo-destructor expression. If SCOPE is NULL, the
2509 expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
2510 the TYPE for the type given. If SCOPE is non-NULL, the expression
2511 was of the form `OBJECT.SCOPE::~DESTRUCTOR'. */
2513 tree
2514 finish_pseudo_destructor_expr (tree object, tree scope, tree destructor,
2515 location_t loc)
2517 if (object == error_mark_node || destructor == error_mark_node)
2518 return error_mark_node;
2520 gcc_assert (TYPE_P (destructor));
2522 if (!processing_template_decl)
2524 if (scope == error_mark_node)
2526 error_at (loc, "invalid qualifying scope in pseudo-destructor name");
2527 return error_mark_node;
2529 if (is_auto (destructor))
2530 destructor = TREE_TYPE (object);
2531 if (scope && TYPE_P (scope) && !check_dtor_name (scope, destructor))
2533 error_at (loc,
2534 "qualified type %qT does not match destructor name ~%qT",
2535 scope, destructor);
2536 return error_mark_node;
2540 /* [expr.pseudo] says both:
2542 The type designated by the pseudo-destructor-name shall be
2543 the same as the object type.
2545 and:
2547 The cv-unqualified versions of the object type and of the
2548 type designated by the pseudo-destructor-name shall be the
2549 same type.
2551 We implement the more generous second sentence, since that is
2552 what most other compilers do. */
2553 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
2554 destructor))
2556 error_at (loc, "%qE is not of type %qT", object, destructor);
2557 return error_mark_node;
2561 return build3_loc (loc, PSEUDO_DTOR_EXPR, void_type_node, object,
2562 scope, destructor);
2565 /* Finish an expression of the form CODE EXPR. */
2567 tree
2568 finish_unary_op_expr (location_t loc, enum tree_code code, tree expr,
2569 tsubst_flags_t complain)
2571 tree result = build_x_unary_op (loc, code, expr, complain);
2572 if ((complain & tf_warning)
2573 && TREE_OVERFLOW_P (result) && !TREE_OVERFLOW_P (expr))
2574 overflow_warning (input_location, result);
2576 return result;
2579 /* Finish a compound-literal expression. TYPE is the type to which
2580 the CONSTRUCTOR in COMPOUND_LITERAL is being cast. */
2582 tree
2583 finish_compound_literal (tree type, tree compound_literal,
2584 tsubst_flags_t complain)
2586 if (type == error_mark_node)
2587 return error_mark_node;
2589 if (TREE_CODE (type) == REFERENCE_TYPE)
2591 compound_literal
2592 = finish_compound_literal (TREE_TYPE (type), compound_literal,
2593 complain);
2594 return cp_build_c_cast (type, compound_literal, complain);
2597 if (!TYPE_OBJ_P (type))
2599 if (complain & tf_error)
2600 error ("compound literal of non-object type %qT", type);
2601 return error_mark_node;
2604 if (processing_template_decl)
2606 TREE_TYPE (compound_literal) = type;
2607 /* Mark the expression as a compound literal. */
2608 TREE_HAS_CONSTRUCTOR (compound_literal) = 1;
2609 return compound_literal;
2612 type = complete_type (type);
2614 if (TYPE_NON_AGGREGATE_CLASS (type))
2616 /* Trying to deal with a CONSTRUCTOR instead of a TREE_LIST
2617 everywhere that deals with function arguments would be a pain, so
2618 just wrap it in a TREE_LIST. The parser set a flag so we know
2619 that it came from T{} rather than T({}). */
2620 CONSTRUCTOR_IS_DIRECT_INIT (compound_literal) = 1;
2621 compound_literal = build_tree_list (NULL_TREE, compound_literal);
2622 return build_functional_cast (type, compound_literal, complain);
2625 if (TREE_CODE (type) == ARRAY_TYPE
2626 && check_array_initializer (NULL_TREE, type, compound_literal))
2627 return error_mark_node;
2628 compound_literal = reshape_init (type, compound_literal, complain);
2629 if (SCALAR_TYPE_P (type)
2630 && !BRACE_ENCLOSED_INITIALIZER_P (compound_literal)
2631 && !check_narrowing (type, compound_literal, complain))
2632 return error_mark_node;
2633 if (TREE_CODE (type) == ARRAY_TYPE
2634 && TYPE_DOMAIN (type) == NULL_TREE)
2636 cp_complete_array_type_or_error (&type, compound_literal,
2637 false, complain);
2638 if (type == error_mark_node)
2639 return error_mark_node;
2641 compound_literal = digest_init (type, compound_literal, complain);
2642 if (TREE_CODE (compound_literal) == CONSTRUCTOR)
2643 TREE_HAS_CONSTRUCTOR (compound_literal) = true;
2644 /* Put static/constant array temporaries in static variables, but always
2645 represent class temporaries with TARGET_EXPR so we elide copies. */
2646 if ((!at_function_scope_p () || CP_TYPE_CONST_P (type))
2647 && TREE_CODE (type) == ARRAY_TYPE
2648 && !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
2649 && initializer_constant_valid_p (compound_literal, type))
2651 tree decl = create_temporary_var (type);
2652 DECL_INITIAL (decl) = compound_literal;
2653 TREE_STATIC (decl) = 1;
2654 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
2656 /* 5.19 says that a constant expression can include an
2657 lvalue-rvalue conversion applied to "a glvalue of literal type
2658 that refers to a non-volatile temporary object initialized
2659 with a constant expression". Rather than try to communicate
2660 that this VAR_DECL is a temporary, just mark it constexpr. */
2661 DECL_DECLARED_CONSTEXPR_P (decl) = true;
2662 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
2663 TREE_CONSTANT (decl) = true;
2665 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
2666 decl = pushdecl_top_level (decl);
2667 DECL_NAME (decl) = make_anon_name ();
2668 SET_DECL_ASSEMBLER_NAME (decl, DECL_NAME (decl));
2669 /* Make sure the destructor is callable. */
2670 tree clean = cxx_maybe_build_cleanup (decl, complain);
2671 if (clean == error_mark_node)
2672 return error_mark_node;
2673 return decl;
2675 else
2676 return get_target_expr_sfinae (compound_literal, complain);
2679 /* Return the declaration for the function-name variable indicated by
2680 ID. */
2682 tree
2683 finish_fname (tree id)
2685 tree decl;
2687 decl = fname_decl (input_location, C_RID_CODE (id), id);
2688 if (processing_template_decl && current_function_decl
2689 && decl != error_mark_node)
2690 decl = DECL_NAME (decl);
2691 return decl;
2694 /* Finish a translation unit. */
2696 void
2697 finish_translation_unit (void)
2699 /* In case there were missing closebraces,
2700 get us back to the global binding level. */
2701 pop_everything ();
2702 while (current_namespace != global_namespace)
2703 pop_namespace ();
2705 /* Do file scope __FUNCTION__ et al. */
2706 finish_fname_decls ();
2709 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
2710 Returns the parameter. */
2712 tree
2713 finish_template_type_parm (tree aggr, tree identifier)
2715 if (aggr != class_type_node)
2717 permerror (input_location, "template type parameters must use the keyword %<class%> or %<typename%>");
2718 aggr = class_type_node;
2721 return build_tree_list (aggr, identifier);
2724 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
2725 Returns the parameter. */
2727 tree
2728 finish_template_template_parm (tree aggr, tree identifier)
2730 tree decl = build_decl (input_location,
2731 TYPE_DECL, identifier, NULL_TREE);
2732 tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2733 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2734 DECL_TEMPLATE_RESULT (tmpl) = decl;
2735 DECL_ARTIFICIAL (decl) = 1;
2736 end_template_decl ();
2738 gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
2740 check_default_tmpl_args (decl, DECL_TEMPLATE_PARMS (tmpl),
2741 /*is_primary=*/true, /*is_partial=*/false,
2742 /*is_friend=*/0);
2744 return finish_template_type_parm (aggr, tmpl);
2747 /* ARGUMENT is the default-argument value for a template template
2748 parameter. If ARGUMENT is invalid, issue error messages and return
2749 the ERROR_MARK_NODE. Otherwise, ARGUMENT itself is returned. */
2751 tree
2752 check_template_template_default_arg (tree argument)
2754 if (TREE_CODE (argument) != TEMPLATE_DECL
2755 && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
2756 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
2758 if (TREE_CODE (argument) == TYPE_DECL)
2759 error ("invalid use of type %qT as a default value for a template "
2760 "template-parameter", TREE_TYPE (argument));
2761 else
2762 error ("invalid default argument for a template template parameter");
2763 return error_mark_node;
2766 return argument;
2769 /* Begin a class definition, as indicated by T. */
2771 tree
2772 begin_class_definition (tree t)
2774 if (error_operand_p (t) || error_operand_p (TYPE_MAIN_DECL (t)))
2775 return error_mark_node;
2777 if (processing_template_parmlist)
2779 error ("definition of %q#T inside template parameter list", t);
2780 return error_mark_node;
2783 /* According to the C++ ABI, decimal classes defined in ISO/IEC TR 24733
2784 are passed the same as decimal scalar types. */
2785 if (TREE_CODE (t) == RECORD_TYPE
2786 && !processing_template_decl)
2788 tree ns = TYPE_CONTEXT (t);
2789 if (ns && TREE_CODE (ns) == NAMESPACE_DECL
2790 && DECL_CONTEXT (ns) == std_node
2791 && DECL_NAME (ns)
2792 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (ns)), "decimal"))
2794 const char *n = TYPE_NAME_STRING (t);
2795 if ((strcmp (n, "decimal32") == 0)
2796 || (strcmp (n, "decimal64") == 0)
2797 || (strcmp (n, "decimal128") == 0))
2798 TYPE_TRANSPARENT_AGGR (t) = 1;
2802 /* A non-implicit typename comes from code like:
2804 template <typename T> struct A {
2805 template <typename U> struct A<T>::B ...
2807 This is erroneous. */
2808 else if (TREE_CODE (t) == TYPENAME_TYPE)
2810 error ("invalid definition of qualified type %qT", t);
2811 t = error_mark_node;
2814 if (t == error_mark_node || ! MAYBE_CLASS_TYPE_P (t))
2816 t = make_class_type (RECORD_TYPE);
2817 pushtag (make_anon_name (), t, /*tag_scope=*/ts_current);
2820 if (TYPE_BEING_DEFINED (t))
2822 t = make_class_type (TREE_CODE (t));
2823 pushtag (TYPE_IDENTIFIER (t), t, /*tag_scope=*/ts_current);
2825 maybe_process_partial_specialization (t);
2826 pushclass (t);
2827 TYPE_BEING_DEFINED (t) = 1;
2828 class_binding_level->defining_class_p = 1;
2830 if (flag_pack_struct)
2832 tree v;
2833 TYPE_PACKED (t) = 1;
2834 /* Even though the type is being defined for the first time
2835 here, there might have been a forward declaration, so there
2836 might be cv-qualified variants of T. */
2837 for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
2838 TYPE_PACKED (v) = 1;
2840 /* Reset the interface data, at the earliest possible
2841 moment, as it might have been set via a class foo;
2842 before. */
2843 if (! TYPE_ANONYMOUS_P (t))
2845 struct c_fileinfo *finfo = \
2846 get_fileinfo (LOCATION_FILE (input_location));
2847 CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
2848 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
2849 (t, finfo->interface_unknown);
2851 reset_specialization();
2853 /* Make a declaration for this class in its own scope. */
2854 build_self_reference ();
2856 return t;
2859 /* Finish the member declaration given by DECL. */
2861 void
2862 finish_member_declaration (tree decl)
2864 if (decl == error_mark_node || decl == NULL_TREE)
2865 return;
2867 if (decl == void_type_node)
2868 /* The COMPONENT was a friend, not a member, and so there's
2869 nothing for us to do. */
2870 return;
2872 /* We should see only one DECL at a time. */
2873 gcc_assert (DECL_CHAIN (decl) == NULL_TREE);
2875 /* Set up access control for DECL. */
2876 TREE_PRIVATE (decl)
2877 = (current_access_specifier == access_private_node);
2878 TREE_PROTECTED (decl)
2879 = (current_access_specifier == access_protected_node);
2880 if (TREE_CODE (decl) == TEMPLATE_DECL)
2882 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
2883 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
2886 /* Mark the DECL as a member of the current class, unless it's
2887 a member of an enumeration. */
2888 if (TREE_CODE (decl) != CONST_DECL)
2889 DECL_CONTEXT (decl) = current_class_type;
2891 /* Check for bare parameter packs in the member variable declaration. */
2892 if (TREE_CODE (decl) == FIELD_DECL)
2894 if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
2895 TREE_TYPE (decl) = error_mark_node;
2896 if (check_for_bare_parameter_packs (DECL_ATTRIBUTES (decl)))
2897 DECL_ATTRIBUTES (decl) = NULL_TREE;
2900 /* [dcl.link]
2902 A C language linkage is ignored for the names of class members
2903 and the member function type of class member functions. */
2904 if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
2905 SET_DECL_LANGUAGE (decl, lang_cplusplus);
2907 /* Put functions on the TYPE_METHODS list and everything else on the
2908 TYPE_FIELDS list. Note that these are built up in reverse order.
2909 We reverse them (to obtain declaration order) in finish_struct. */
2910 if (DECL_DECLARES_FUNCTION_P (decl))
2912 /* We also need to add this function to the
2913 CLASSTYPE_METHOD_VEC. */
2914 if (add_method (current_class_type, decl, NULL_TREE))
2916 gcc_assert (TYPE_MAIN_VARIANT (current_class_type) == current_class_type);
2917 DECL_CHAIN (decl) = TYPE_METHODS (current_class_type);
2918 TYPE_METHODS (current_class_type) = decl;
2920 maybe_add_class_template_decl_list (current_class_type, decl,
2921 /*friend_p=*/0);
2924 /* Enter the DECL into the scope of the class, if the class
2925 isn't a closure (whose fields are supposed to be unnamed). */
2926 else if (CLASSTYPE_LAMBDA_EXPR (current_class_type)
2927 || pushdecl_class_level (decl))
2929 if (TREE_CODE (decl) == USING_DECL)
2931 /* For now, ignore class-scope USING_DECLS, so that
2932 debugging backends do not see them. */
2933 DECL_IGNORED_P (decl) = 1;
2936 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
2937 go at the beginning. The reason is that lookup_field_1
2938 searches the list in order, and we want a field name to
2939 override a type name so that the "struct stat hack" will
2940 work. In particular:
2942 struct S { enum E { }; int E } s;
2943 s.E = 3;
2945 is valid. In addition, the FIELD_DECLs must be maintained in
2946 declaration order so that class layout works as expected.
2947 However, we don't need that order until class layout, so we
2948 save a little time by putting FIELD_DECLs on in reverse order
2949 here, and then reversing them in finish_struct_1. (We could
2950 also keep a pointer to the correct insertion points in the
2951 list.) */
2953 if (TREE_CODE (decl) == TYPE_DECL)
2954 TYPE_FIELDS (current_class_type)
2955 = chainon (TYPE_FIELDS (current_class_type), decl);
2956 else
2958 DECL_CHAIN (decl) = TYPE_FIELDS (current_class_type);
2959 TYPE_FIELDS (current_class_type) = decl;
2962 maybe_add_class_template_decl_list (current_class_type, decl,
2963 /*friend_p=*/0);
2966 if (pch_file)
2967 note_decl_for_pch (decl);
2970 /* DECL has been declared while we are building a PCH file. Perform
2971 actions that we might normally undertake lazily, but which can be
2972 performed now so that they do not have to be performed in
2973 translation units which include the PCH file. */
2975 void
2976 note_decl_for_pch (tree decl)
2978 gcc_assert (pch_file);
2980 /* There's a good chance that we'll have to mangle names at some
2981 point, even if only for emission in debugging information. */
2982 if (VAR_OR_FUNCTION_DECL_P (decl)
2983 && !processing_template_decl)
2984 mangle_decl (decl);
2987 /* Finish processing a complete template declaration. The PARMS are
2988 the template parameters. */
2990 void
2991 finish_template_decl (tree parms)
2993 if (parms)
2994 end_template_decl ();
2995 else
2996 end_specialization ();
2999 /* Finish processing a template-id (which names a type) of the form
3000 NAME < ARGS >. Return the TYPE_DECL for the type named by the
3001 template-id. If ENTERING_SCOPE is nonzero we are about to enter
3002 the scope of template-id indicated. */
3004 tree
3005 finish_template_type (tree name, tree args, int entering_scope)
3007 tree type;
3009 type = lookup_template_class (name, args,
3010 NULL_TREE, NULL_TREE, entering_scope,
3011 tf_warning_or_error | tf_user);
3012 if (type == error_mark_node)
3013 return type;
3014 else if (CLASS_TYPE_P (type) && !alias_type_or_template_p (type))
3015 return TYPE_STUB_DECL (type);
3016 else
3017 return TYPE_NAME (type);
3020 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
3021 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
3022 BASE_CLASS, or NULL_TREE if an error occurred. The
3023 ACCESS_SPECIFIER is one of
3024 access_{default,public,protected_private}_node. For a virtual base
3025 we set TREE_TYPE. */
3027 tree
3028 finish_base_specifier (tree base, tree access, bool virtual_p)
3030 tree result;
3032 if (base == error_mark_node)
3034 error ("invalid base-class specification");
3035 result = NULL_TREE;
3037 else if (! MAYBE_CLASS_TYPE_P (base))
3039 error ("%qT is not a class type", base);
3040 result = NULL_TREE;
3042 else
3044 if (cp_type_quals (base) != 0)
3046 /* DR 484: Can a base-specifier name a cv-qualified
3047 class type? */
3048 base = TYPE_MAIN_VARIANT (base);
3050 result = build_tree_list (access, base);
3051 if (virtual_p)
3052 TREE_TYPE (result) = integer_type_node;
3055 return result;
3058 /* If FNS is a member function, a set of member functions, or a
3059 template-id referring to one or more member functions, return a
3060 BASELINK for FNS, incorporating the current access context.
3061 Otherwise, return FNS unchanged. */
3063 tree
3064 baselink_for_fns (tree fns)
3066 tree scope;
3067 tree cl;
3069 if (BASELINK_P (fns)
3070 || error_operand_p (fns))
3071 return fns;
3073 scope = ovl_scope (fns);
3074 if (!CLASS_TYPE_P (scope))
3075 return fns;
3077 cl = currently_open_derived_class (scope);
3078 if (!cl)
3079 cl = scope;
3080 cl = TYPE_BINFO (cl);
3081 return build_baselink (cl, cl, fns, /*optype=*/NULL_TREE);
3084 /* Returns true iff DECL is a variable from a function outside
3085 the current one. */
3087 static bool
3088 outer_var_p (tree decl)
3090 return ((VAR_P (decl) || TREE_CODE (decl) == PARM_DECL)
3091 && DECL_FUNCTION_SCOPE_P (decl)
3092 && (DECL_CONTEXT (decl) != current_function_decl
3093 || parsing_nsdmi ()));
3096 /* As above, but also checks that DECL is automatic. */
3098 bool
3099 outer_automatic_var_p (tree decl)
3101 return (outer_var_p (decl)
3102 && !TREE_STATIC (decl));
3105 /* DECL satisfies outer_automatic_var_p. Possibly complain about it or
3106 rewrite it for lambda capture. */
3108 tree
3109 process_outer_var_ref (tree decl, tsubst_flags_t complain)
3111 if (cp_unevaluated_operand)
3112 /* It's not a use (3.2) if we're in an unevaluated context. */
3113 return decl;
3115 tree context = DECL_CONTEXT (decl);
3116 tree containing_function = current_function_decl;
3117 tree lambda_stack = NULL_TREE;
3118 tree lambda_expr = NULL_TREE;
3119 tree initializer = convert_from_reference (decl);
3121 /* Mark it as used now even if the use is ill-formed. */
3122 if (!mark_used (decl, complain) && !(complain & tf_error))
3123 return error_mark_node;
3125 /* Core issue 696: "[At the July 2009 meeting] the CWG expressed
3126 support for an approach in which a reference to a local
3127 [constant] automatic variable in a nested class or lambda body
3128 would enter the expression as an rvalue, which would reduce
3129 the complexity of the problem"
3131 FIXME update for final resolution of core issue 696. */
3132 if (decl_maybe_constant_var_p (decl))
3134 if (processing_template_decl)
3135 /* In a template, the constant value may not be in a usable
3136 form, so wait until instantiation time. */
3137 return decl;
3138 else if (decl_constant_var_p (decl))
3139 return scalar_constant_value (decl);
3142 if (parsing_nsdmi ())
3143 containing_function = NULL_TREE;
3144 else
3145 /* If we are in a lambda function, we can move out until we hit
3146 1. the context,
3147 2. a non-lambda function, or
3148 3. a non-default capturing lambda function. */
3149 while (context != containing_function
3150 && LAMBDA_FUNCTION_P (containing_function))
3152 tree closure = DECL_CONTEXT (containing_function);
3153 lambda_expr = CLASSTYPE_LAMBDA_EXPR (closure);
3155 if (TYPE_CLASS_SCOPE_P (closure))
3156 /* A lambda in an NSDMI (c++/64496). */
3157 break;
3159 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr)
3160 == CPLD_NONE)
3161 break;
3163 lambda_stack = tree_cons (NULL_TREE,
3164 lambda_expr,
3165 lambda_stack);
3167 containing_function
3168 = decl_function_context (containing_function);
3171 if (lambda_expr && TREE_CODE (decl) == VAR_DECL
3172 && DECL_ANON_UNION_VAR_P (decl))
3174 if (complain & tf_error)
3175 error ("cannot capture member %qD of anonymous union", decl);
3176 return error_mark_node;
3178 if (context == containing_function)
3180 decl = add_default_capture (lambda_stack,
3181 /*id=*/DECL_NAME (decl),
3182 initializer);
3184 else if (lambda_expr)
3186 if (complain & tf_error)
3188 error ("%qD is not captured", decl);
3189 tree closure = LAMBDA_EXPR_CLOSURE (lambda_expr);
3190 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr)
3191 == CPLD_NONE)
3192 inform (location_of (closure),
3193 "the lambda has no capture-default");
3194 else if (TYPE_CLASS_SCOPE_P (closure))
3195 inform (0, "lambda in local class %q+T cannot "
3196 "capture variables from the enclosing context",
3197 TYPE_CONTEXT (closure));
3198 inform (input_location, "%q+#D declared here", decl);
3200 return error_mark_node;
3202 else
3204 if (complain & tf_error)
3205 error (VAR_P (decl)
3206 ? G_("use of local variable with automatic storage from containing function")
3207 : G_("use of parameter from containing function"));
3208 inform (input_location, "%q+#D declared here", decl);
3209 return error_mark_node;
3211 return decl;
3214 /* ID_EXPRESSION is a representation of parsed, but unprocessed,
3215 id-expression. (See cp_parser_id_expression for details.) SCOPE,
3216 if non-NULL, is the type or namespace used to explicitly qualify
3217 ID_EXPRESSION. DECL is the entity to which that name has been
3218 resolved.
3220 *CONSTANT_EXPRESSION_P is true if we are presently parsing a
3221 constant-expression. In that case, *NON_CONSTANT_EXPRESSION_P will
3222 be set to true if this expression isn't permitted in a
3223 constant-expression, but it is otherwise not set by this function.
3224 *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
3225 constant-expression, but a non-constant expression is also
3226 permissible.
3228 DONE is true if this expression is a complete postfix-expression;
3229 it is false if this expression is followed by '->', '[', '(', etc.
3230 ADDRESS_P is true iff this expression is the operand of '&'.
3231 TEMPLATE_P is true iff the qualified-id was of the form
3232 "A::template B". TEMPLATE_ARG_P is true iff this qualified name
3233 appears as a template argument.
3235 If an error occurs, and it is the kind of error that might cause
3236 the parser to abort a tentative parse, *ERROR_MSG is filled in. It
3237 is the caller's responsibility to issue the message. *ERROR_MSG
3238 will be a string with static storage duration, so the caller need
3239 not "free" it.
3241 Return an expression for the entity, after issuing appropriate
3242 diagnostics. This function is also responsible for transforming a
3243 reference to a non-static member into a COMPONENT_REF that makes
3244 the use of "this" explicit.
3246 Upon return, *IDK will be filled in appropriately. */
3247 tree
3248 finish_id_expression (tree id_expression,
3249 tree decl,
3250 tree scope,
3251 cp_id_kind *idk,
3252 bool integral_constant_expression_p,
3253 bool allow_non_integral_constant_expression_p,
3254 bool *non_integral_constant_expression_p,
3255 bool template_p,
3256 bool done,
3257 bool address_p,
3258 bool template_arg_p,
3259 const char **error_msg,
3260 location_t location)
3262 decl = strip_using_decl (decl);
3264 /* Initialize the output parameters. */
3265 *idk = CP_ID_KIND_NONE;
3266 *error_msg = NULL;
3268 if (id_expression == error_mark_node)
3269 return error_mark_node;
3270 /* If we have a template-id, then no further lookup is
3271 required. If the template-id was for a template-class, we
3272 will sometimes have a TYPE_DECL at this point. */
3273 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3274 || TREE_CODE (decl) == TYPE_DECL)
3276 /* Look up the name. */
3277 else
3279 if (decl == error_mark_node)
3281 /* Name lookup failed. */
3282 if (scope
3283 && (!TYPE_P (scope)
3284 || (!dependent_type_p (scope)
3285 && !(identifier_p (id_expression)
3286 && IDENTIFIER_TYPENAME_P (id_expression)
3287 && dependent_type_p (TREE_TYPE (id_expression))))))
3289 /* If the qualifying type is non-dependent (and the name
3290 does not name a conversion operator to a dependent
3291 type), issue an error. */
3292 qualified_name_lookup_error (scope, id_expression, decl, location);
3293 return error_mark_node;
3295 else if (!scope)
3297 /* It may be resolved via Koenig lookup. */
3298 *idk = CP_ID_KIND_UNQUALIFIED;
3299 return id_expression;
3301 else
3302 decl = id_expression;
3304 /* If DECL is a variable that would be out of scope under
3305 ANSI/ISO rules, but in scope in the ARM, name lookup
3306 will succeed. Issue a diagnostic here. */
3307 else
3308 decl = check_for_out_of_scope_variable (decl);
3310 /* Remember that the name was used in the definition of
3311 the current class so that we can check later to see if
3312 the meaning would have been different after the class
3313 was entirely defined. */
3314 if (!scope && decl != error_mark_node && identifier_p (id_expression))
3315 maybe_note_name_used_in_class (id_expression, decl);
3317 /* Disallow uses of local variables from containing functions, except
3318 within lambda-expressions. */
3319 if (outer_automatic_var_p (decl))
3321 decl = process_outer_var_ref (decl, tf_warning_or_error);
3322 if (decl == error_mark_node)
3323 return error_mark_node;
3326 /* Also disallow uses of function parameters outside the function
3327 body, except inside an unevaluated context (i.e. decltype). */
3328 if (TREE_CODE (decl) == PARM_DECL
3329 && DECL_CONTEXT (decl) == NULL_TREE
3330 && !cp_unevaluated_operand)
3332 *error_msg = "use of parameter outside function body";
3333 return error_mark_node;
3337 /* If we didn't find anything, or what we found was a type,
3338 then this wasn't really an id-expression. */
3339 if (TREE_CODE (decl) == TEMPLATE_DECL
3340 && !DECL_FUNCTION_TEMPLATE_P (decl))
3342 *error_msg = "missing template arguments";
3343 return error_mark_node;
3345 else if (TREE_CODE (decl) == TYPE_DECL
3346 || TREE_CODE (decl) == NAMESPACE_DECL)
3348 *error_msg = "expected primary-expression";
3349 return error_mark_node;
3352 /* If the name resolved to a template parameter, there is no
3353 need to look it up again later. */
3354 if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
3355 || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3357 tree r;
3359 *idk = CP_ID_KIND_NONE;
3360 if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3361 decl = TEMPLATE_PARM_DECL (decl);
3362 r = convert_from_reference (DECL_INITIAL (decl));
3364 if (integral_constant_expression_p
3365 && !dependent_type_p (TREE_TYPE (decl))
3366 && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r))))
3368 if (!allow_non_integral_constant_expression_p)
3369 error ("template parameter %qD of type %qT is not allowed in "
3370 "an integral constant expression because it is not of "
3371 "integral or enumeration type", decl, TREE_TYPE (decl));
3372 *non_integral_constant_expression_p = true;
3374 return r;
3376 else
3378 bool dependent_p;
3380 /* If the declaration was explicitly qualified indicate
3381 that. The semantics of `A::f(3)' are different than
3382 `f(3)' if `f' is virtual. */
3383 *idk = (scope
3384 ? CP_ID_KIND_QUALIFIED
3385 : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3386 ? CP_ID_KIND_TEMPLATE_ID
3387 : CP_ID_KIND_UNQUALIFIED));
3390 /* [temp.dep.expr]
3392 An id-expression is type-dependent if it contains an
3393 identifier that was declared with a dependent type.
3395 The standard is not very specific about an id-expression that
3396 names a set of overloaded functions. What if some of them
3397 have dependent types and some of them do not? Presumably,
3398 such a name should be treated as a dependent name. */
3399 /* Assume the name is not dependent. */
3400 dependent_p = false;
3401 if (!processing_template_decl)
3402 /* No names are dependent outside a template. */
3404 else if (TREE_CODE (decl) == CONST_DECL)
3405 /* We don't want to treat enumerators as dependent. */
3407 /* A template-id where the name of the template was not resolved
3408 is definitely dependent. */
3409 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3410 && (identifier_p (TREE_OPERAND (decl, 0))))
3411 dependent_p = true;
3412 /* For anything except an overloaded function, just check its
3413 type. */
3414 else if (!is_overloaded_fn (decl))
3415 dependent_p
3416 = dependent_type_p (TREE_TYPE (decl));
3417 /* For a set of overloaded functions, check each of the
3418 functions. */
3419 else
3421 tree fns = decl;
3423 if (BASELINK_P (fns))
3424 fns = BASELINK_FUNCTIONS (fns);
3426 /* For a template-id, check to see if the template
3427 arguments are dependent. */
3428 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
3430 tree args = TREE_OPERAND (fns, 1);
3431 dependent_p = any_dependent_template_arguments_p (args);
3432 /* The functions are those referred to by the
3433 template-id. */
3434 fns = TREE_OPERAND (fns, 0);
3437 /* If there are no dependent template arguments, go through
3438 the overloaded functions. */
3439 while (fns && !dependent_p)
3441 tree fn = OVL_CURRENT (fns);
3443 /* Member functions of dependent classes are
3444 dependent. */
3445 if (TREE_CODE (fn) == FUNCTION_DECL
3446 && type_dependent_expression_p (fn))
3447 dependent_p = true;
3448 else if (TREE_CODE (fn) == TEMPLATE_DECL
3449 && dependent_template_p (fn))
3450 dependent_p = true;
3452 fns = OVL_NEXT (fns);
3456 /* If the name was dependent on a template parameter, we will
3457 resolve the name at instantiation time. */
3458 if (dependent_p)
3460 /* Create a SCOPE_REF for qualified names, if the scope is
3461 dependent. */
3462 if (scope)
3464 if (TYPE_P (scope))
3466 if (address_p && done)
3467 decl = finish_qualified_id_expr (scope, decl,
3468 done, address_p,
3469 template_p,
3470 template_arg_p,
3471 tf_warning_or_error);
3472 else
3474 tree type = NULL_TREE;
3475 if (DECL_P (decl) && !dependent_scope_p (scope))
3476 type = TREE_TYPE (decl);
3477 decl = build_qualified_name (type,
3478 scope,
3479 id_expression,
3480 template_p);
3483 if (TREE_TYPE (decl))
3484 decl = convert_from_reference (decl);
3485 return decl;
3487 /* A TEMPLATE_ID already contains all the information we
3488 need. */
3489 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR)
3490 return id_expression;
3491 *idk = CP_ID_KIND_UNQUALIFIED_DEPENDENT;
3492 /* If we found a variable, then name lookup during the
3493 instantiation will always resolve to the same VAR_DECL
3494 (or an instantiation thereof). */
3495 if (VAR_P (decl)
3496 || TREE_CODE (decl) == PARM_DECL)
3498 mark_used (decl);
3499 return convert_from_reference (decl);
3501 /* The same is true for FIELD_DECL, but we also need to
3502 make sure that the syntax is correct. */
3503 else if (TREE_CODE (decl) == FIELD_DECL)
3505 /* Since SCOPE is NULL here, this is an unqualified name.
3506 Access checking has been performed during name lookup
3507 already. Turn off checking to avoid duplicate errors. */
3508 push_deferring_access_checks (dk_no_check);
3509 decl = finish_non_static_data_member
3510 (decl, NULL_TREE,
3511 /*qualifying_scope=*/NULL_TREE);
3512 pop_deferring_access_checks ();
3513 return decl;
3515 return id_expression;
3518 if (TREE_CODE (decl) == NAMESPACE_DECL)
3520 error ("use of namespace %qD as expression", decl);
3521 return error_mark_node;
3523 else if (DECL_CLASS_TEMPLATE_P (decl))
3525 error ("use of class template %qT as expression", decl);
3526 return error_mark_node;
3528 else if (TREE_CODE (decl) == TREE_LIST)
3530 /* Ambiguous reference to base members. */
3531 error ("request for member %qD is ambiguous in "
3532 "multiple inheritance lattice", id_expression);
3533 print_candidates (decl);
3534 return error_mark_node;
3537 /* Mark variable-like entities as used. Functions are similarly
3538 marked either below or after overload resolution. */
3539 if ((VAR_P (decl)
3540 || TREE_CODE (decl) == PARM_DECL
3541 || TREE_CODE (decl) == CONST_DECL
3542 || TREE_CODE (decl) == RESULT_DECL)
3543 && !mark_used (decl))
3544 return error_mark_node;
3546 /* Only certain kinds of names are allowed in constant
3547 expression. Template parameters have already
3548 been handled above. */
3549 if (! error_operand_p (decl)
3550 && integral_constant_expression_p
3551 && ! decl_constant_var_p (decl)
3552 && TREE_CODE (decl) != CONST_DECL
3553 && ! builtin_valid_in_constant_expr_p (decl))
3555 if (!allow_non_integral_constant_expression_p)
3557 error ("%qD cannot appear in a constant-expression", decl);
3558 return error_mark_node;
3560 *non_integral_constant_expression_p = true;
3563 tree wrap;
3564 if (VAR_P (decl)
3565 && !cp_unevaluated_operand
3566 && !processing_template_decl
3567 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3568 && DECL_THREAD_LOCAL_P (decl)
3569 && (wrap = get_tls_wrapper_fn (decl)))
3571 /* Replace an evaluated use of the thread_local variable with
3572 a call to its wrapper. */
3573 decl = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
3575 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3576 && variable_template_p (TREE_OPERAND (decl, 0)))
3578 decl = finish_template_variable (decl);
3579 mark_used (decl);
3581 else if (scope)
3583 decl = (adjust_result_of_qualified_name_lookup
3584 (decl, scope, current_nonlambda_class_type()));
3586 if (TREE_CODE (decl) == FUNCTION_DECL)
3587 mark_used (decl);
3589 if (TYPE_P (scope))
3590 decl = finish_qualified_id_expr (scope,
3591 decl,
3592 done,
3593 address_p,
3594 template_p,
3595 template_arg_p,
3596 tf_warning_or_error);
3597 else
3598 decl = convert_from_reference (decl);
3600 else if (TREE_CODE (decl) == FIELD_DECL)
3602 /* Since SCOPE is NULL here, this is an unqualified name.
3603 Access checking has been performed during name lookup
3604 already. Turn off checking to avoid duplicate errors. */
3605 push_deferring_access_checks (dk_no_check);
3606 decl = finish_non_static_data_member (decl, NULL_TREE,
3607 /*qualifying_scope=*/NULL_TREE);
3608 pop_deferring_access_checks ();
3610 else if (is_overloaded_fn (decl))
3612 tree first_fn;
3614 first_fn = get_first_fn (decl);
3615 if (TREE_CODE (first_fn) == TEMPLATE_DECL)
3616 first_fn = DECL_TEMPLATE_RESULT (first_fn);
3618 if (!really_overloaded_fn (decl)
3619 && !mark_used (first_fn))
3620 return error_mark_node;
3622 if (!template_arg_p
3623 && TREE_CODE (first_fn) == FUNCTION_DECL
3624 && DECL_FUNCTION_MEMBER_P (first_fn)
3625 && !shared_member_p (decl))
3627 /* A set of member functions. */
3628 decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
3629 return finish_class_member_access_expr (decl, id_expression,
3630 /*template_p=*/false,
3631 tf_warning_or_error);
3634 decl = baselink_for_fns (decl);
3636 else
3638 if (DECL_P (decl) && DECL_NONLOCAL (decl)
3639 && DECL_CLASS_SCOPE_P (decl))
3641 tree context = context_for_name_lookup (decl);
3642 if (context != current_class_type)
3644 tree path = currently_open_derived_class (context);
3645 perform_or_defer_access_check (TYPE_BINFO (path),
3646 decl, decl,
3647 tf_warning_or_error);
3651 decl = convert_from_reference (decl);
3655 /* Handle references (c++/56130). */
3656 tree t = REFERENCE_REF_P (decl) ? TREE_OPERAND (decl, 0) : decl;
3657 if (TREE_DEPRECATED (t))
3658 warn_deprecated_use (t, NULL_TREE);
3660 return decl;
3663 /* Implement the __typeof keyword: Return the type of EXPR, suitable for
3664 use as a type-specifier. */
3666 tree
3667 finish_typeof (tree expr)
3669 tree type;
3671 if (type_dependent_expression_p (expr))
3673 type = cxx_make_type (TYPEOF_TYPE);
3674 TYPEOF_TYPE_EXPR (type) = expr;
3675 SET_TYPE_STRUCTURAL_EQUALITY (type);
3677 return type;
3680 expr = mark_type_use (expr);
3682 type = unlowered_expr_type (expr);
3684 if (!type || type == unknown_type_node)
3686 error ("type of %qE is unknown", expr);
3687 return error_mark_node;
3690 return type;
3693 /* Implement the __underlying_type keyword: Return the underlying
3694 type of TYPE, suitable for use as a type-specifier. */
3696 tree
3697 finish_underlying_type (tree type)
3699 tree underlying_type;
3701 if (processing_template_decl)
3703 underlying_type = cxx_make_type (UNDERLYING_TYPE);
3704 UNDERLYING_TYPE_TYPE (underlying_type) = type;
3705 SET_TYPE_STRUCTURAL_EQUALITY (underlying_type);
3707 return underlying_type;
3710 complete_type (type);
3712 if (TREE_CODE (type) != ENUMERAL_TYPE)
3714 error ("%qT is not an enumeration type", type);
3715 return error_mark_node;
3718 underlying_type = ENUM_UNDERLYING_TYPE (type);
3720 /* Fixup necessary in this case because ENUM_UNDERLYING_TYPE
3721 includes TYPE_MIN_VALUE and TYPE_MAX_VALUE information.
3722 See finish_enum_value_list for details. */
3723 if (!ENUM_FIXED_UNDERLYING_TYPE_P (type))
3724 underlying_type
3725 = c_common_type_for_mode (TYPE_MODE (underlying_type),
3726 TYPE_UNSIGNED (underlying_type));
3728 return underlying_type;
3731 /* Implement the __direct_bases keyword: Return the direct base classes
3732 of type */
3734 tree
3735 calculate_direct_bases (tree type)
3737 vec<tree, va_gc> *vector = make_tree_vector();
3738 tree bases_vec = NULL_TREE;
3739 vec<tree, va_gc> *base_binfos;
3740 tree binfo;
3741 unsigned i;
3743 complete_type (type);
3745 if (!NON_UNION_CLASS_TYPE_P (type))
3746 return make_tree_vec (0);
3748 base_binfos = BINFO_BASE_BINFOS (TYPE_BINFO (type));
3750 /* Virtual bases are initialized first */
3751 for (i = 0; base_binfos->iterate (i, &binfo); i++)
3753 if (BINFO_VIRTUAL_P (binfo))
3755 vec_safe_push (vector, binfo);
3759 /* Now non-virtuals */
3760 for (i = 0; base_binfos->iterate (i, &binfo); i++)
3762 if (!BINFO_VIRTUAL_P (binfo))
3764 vec_safe_push (vector, binfo);
3769 bases_vec = make_tree_vec (vector->length ());
3771 for (i = 0; i < vector->length (); ++i)
3773 TREE_VEC_ELT (bases_vec, i) = BINFO_TYPE ((*vector)[i]);
3775 return bases_vec;
3778 /* Implement the __bases keyword: Return the base classes
3779 of type */
3781 /* Find morally non-virtual base classes by walking binfo hierarchy */
3782 /* Virtual base classes are handled separately in finish_bases */
3784 static tree
3785 dfs_calculate_bases_pre (tree binfo, void * /*data_*/)
3787 /* Don't walk bases of virtual bases */
3788 return BINFO_VIRTUAL_P (binfo) ? dfs_skip_bases : NULL_TREE;
3791 static tree
3792 dfs_calculate_bases_post (tree binfo, void *data_)
3794 vec<tree, va_gc> **data = ((vec<tree, va_gc> **) data_);
3795 if (!BINFO_VIRTUAL_P (binfo))
3797 vec_safe_push (*data, BINFO_TYPE (binfo));
3799 return NULL_TREE;
3802 /* Calculates the morally non-virtual base classes of a class */
3803 static vec<tree, va_gc> *
3804 calculate_bases_helper (tree type)
3806 vec<tree, va_gc> *vector = make_tree_vector();
3808 /* Now add non-virtual base classes in order of construction */
3809 dfs_walk_all (TYPE_BINFO (type),
3810 dfs_calculate_bases_pre, dfs_calculate_bases_post, &vector);
3811 return vector;
3814 tree
3815 calculate_bases (tree type)
3817 vec<tree, va_gc> *vector = make_tree_vector();
3818 tree bases_vec = NULL_TREE;
3819 unsigned i;
3820 vec<tree, va_gc> *vbases;
3821 vec<tree, va_gc> *nonvbases;
3822 tree binfo;
3824 complete_type (type);
3826 if (!NON_UNION_CLASS_TYPE_P (type))
3827 return make_tree_vec (0);
3829 /* First go through virtual base classes */
3830 for (vbases = CLASSTYPE_VBASECLASSES (type), i = 0;
3831 vec_safe_iterate (vbases, i, &binfo); i++)
3833 vec<tree, va_gc> *vbase_bases;
3834 vbase_bases = calculate_bases_helper (BINFO_TYPE (binfo));
3835 vec_safe_splice (vector, vbase_bases);
3836 release_tree_vector (vbase_bases);
3839 /* Now for the non-virtual bases */
3840 nonvbases = calculate_bases_helper (type);
3841 vec_safe_splice (vector, nonvbases);
3842 release_tree_vector (nonvbases);
3844 /* Last element is entire class, so don't copy */
3845 bases_vec = make_tree_vec (vector->length () - 1);
3847 for (i = 0; i < vector->length () - 1; ++i)
3849 TREE_VEC_ELT (bases_vec, i) = (*vector)[i];
3851 release_tree_vector (vector);
3852 return bases_vec;
3855 tree
3856 finish_bases (tree type, bool direct)
3858 tree bases = NULL_TREE;
3860 if (!processing_template_decl)
3862 /* Parameter packs can only be used in templates */
3863 error ("Parameter pack __bases only valid in template declaration");
3864 return error_mark_node;
3867 bases = cxx_make_type (BASES);
3868 BASES_TYPE (bases) = type;
3869 BASES_DIRECT (bases) = direct;
3870 SET_TYPE_STRUCTURAL_EQUALITY (bases);
3872 return bases;
3875 /* Perform C++-specific checks for __builtin_offsetof before calling
3876 fold_offsetof. */
3878 tree
3879 finish_offsetof (tree expr, location_t loc)
3881 /* If we're processing a template, we can't finish the semantics yet.
3882 Otherwise we can fold the entire expression now. */
3883 if (processing_template_decl)
3885 expr = build1 (OFFSETOF_EXPR, size_type_node, expr);
3886 SET_EXPR_LOCATION (expr, loc);
3887 return expr;
3890 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
3892 error ("cannot apply %<offsetof%> to destructor %<~%T%>",
3893 TREE_OPERAND (expr, 2));
3894 return error_mark_node;
3896 if (TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
3897 || TREE_CODE (TREE_TYPE (expr)) == METHOD_TYPE
3898 || TREE_TYPE (expr) == unknown_type_node)
3900 if (INDIRECT_REF_P (expr))
3901 error ("second operand of %<offsetof%> is neither a single "
3902 "identifier nor a sequence of member accesses and "
3903 "array references");
3904 else
3906 if (TREE_CODE (expr) == COMPONENT_REF
3907 || TREE_CODE (expr) == COMPOUND_EXPR)
3908 expr = TREE_OPERAND (expr, 1);
3909 error ("cannot apply %<offsetof%> to member function %qD", expr);
3911 return error_mark_node;
3913 if (REFERENCE_REF_P (expr))
3914 expr = TREE_OPERAND (expr, 0);
3915 if (TREE_CODE (expr) == COMPONENT_REF)
3917 tree object = TREE_OPERAND (expr, 0);
3918 if (!complete_type_or_else (TREE_TYPE (object), object))
3919 return error_mark_node;
3920 if (warn_invalid_offsetof
3921 && CLASS_TYPE_P (TREE_TYPE (object))
3922 && CLASSTYPE_NON_STD_LAYOUT (TREE_TYPE (object))
3923 && cp_unevaluated_operand == 0)
3924 pedwarn (loc, OPT_Winvalid_offsetof,
3925 "offsetof within non-standard-layout type %qT is undefined",
3926 TREE_TYPE (object));
3928 return fold_offsetof (expr);
3931 /* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR. This
3932 function is broken out from the above for the benefit of the tree-ssa
3933 project. */
3935 void
3936 simplify_aggr_init_expr (tree *tp)
3938 tree aggr_init_expr = *tp;
3940 /* Form an appropriate CALL_EXPR. */
3941 tree fn = AGGR_INIT_EXPR_FN (aggr_init_expr);
3942 tree slot = AGGR_INIT_EXPR_SLOT (aggr_init_expr);
3943 tree type = TREE_TYPE (slot);
3945 tree call_expr;
3946 enum style_t { ctor, arg, pcc } style;
3948 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
3949 style = ctor;
3950 #ifdef PCC_STATIC_STRUCT_RETURN
3951 else if (1)
3952 style = pcc;
3953 #endif
3954 else
3956 gcc_assert (TREE_ADDRESSABLE (type));
3957 style = arg;
3960 call_expr = build_call_array_loc (input_location,
3961 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
3963 aggr_init_expr_nargs (aggr_init_expr),
3964 AGGR_INIT_EXPR_ARGP (aggr_init_expr));
3965 TREE_NOTHROW (call_expr) = TREE_NOTHROW (aggr_init_expr);
3966 CALL_EXPR_LIST_INIT_P (call_expr) = CALL_EXPR_LIST_INIT_P (aggr_init_expr);
3968 if (style == ctor)
3970 /* Replace the first argument to the ctor with the address of the
3971 slot. */
3972 cxx_mark_addressable (slot);
3973 CALL_EXPR_ARG (call_expr, 0) =
3974 build1 (ADDR_EXPR, build_pointer_type (type), slot);
3976 else if (style == arg)
3978 /* Just mark it addressable here, and leave the rest to
3979 expand_call{,_inline}. */
3980 cxx_mark_addressable (slot);
3981 CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true;
3982 call_expr = build2 (INIT_EXPR, TREE_TYPE (call_expr), slot, call_expr);
3984 else if (style == pcc)
3986 /* If we're using the non-reentrant PCC calling convention, then we
3987 need to copy the returned value out of the static buffer into the
3988 SLOT. */
3989 push_deferring_access_checks (dk_no_check);
3990 call_expr = build_aggr_init (slot, call_expr,
3991 DIRECT_BIND | LOOKUP_ONLYCONVERTING,
3992 tf_warning_or_error);
3993 pop_deferring_access_checks ();
3994 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot);
3997 if (AGGR_INIT_ZERO_FIRST (aggr_init_expr))
3999 tree init = build_zero_init (type, NULL_TREE,
4000 /*static_storage_p=*/false);
4001 init = build2 (INIT_EXPR, void_type_node, slot, init);
4002 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (call_expr),
4003 init, call_expr);
4006 *tp = call_expr;
4009 /* Emit all thunks to FN that should be emitted when FN is emitted. */
4011 void
4012 emit_associated_thunks (tree fn)
4014 /* When we use vcall offsets, we emit thunks with the virtual
4015 functions to which they thunk. The whole point of vcall offsets
4016 is so that you can know statically the entire set of thunks that
4017 will ever be needed for a given virtual function, thereby
4018 enabling you to output all the thunks with the function itself. */
4019 if (DECL_VIRTUAL_P (fn)
4020 /* Do not emit thunks for extern template instantiations. */
4021 && ! DECL_REALLY_EXTERN (fn))
4023 tree thunk;
4025 for (thunk = DECL_THUNKS (fn); thunk; thunk = DECL_CHAIN (thunk))
4027 if (!THUNK_ALIAS (thunk))
4029 use_thunk (thunk, /*emit_p=*/1);
4030 if (DECL_RESULT_THUNK_P (thunk))
4032 tree probe;
4034 for (probe = DECL_THUNKS (thunk);
4035 probe; probe = DECL_CHAIN (probe))
4036 use_thunk (probe, /*emit_p=*/1);
4039 else
4040 gcc_assert (!DECL_THUNKS (thunk));
4045 /* Generate RTL for FN. */
4047 bool
4048 expand_or_defer_fn_1 (tree fn)
4050 /* When the parser calls us after finishing the body of a template
4051 function, we don't really want to expand the body. */
4052 if (processing_template_decl)
4054 /* Normally, collection only occurs in rest_of_compilation. So,
4055 if we don't collect here, we never collect junk generated
4056 during the processing of templates until we hit a
4057 non-template function. It's not safe to do this inside a
4058 nested class, though, as the parser may have local state that
4059 is not a GC root. */
4060 if (!function_depth)
4061 ggc_collect ();
4062 return false;
4065 gcc_assert (DECL_SAVED_TREE (fn));
4067 /* We make a decision about linkage for these functions at the end
4068 of the compilation. Until that point, we do not want the back
4069 end to output them -- but we do want it to see the bodies of
4070 these functions so that it can inline them as appropriate. */
4071 if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
4073 if (DECL_INTERFACE_KNOWN (fn))
4074 /* We've already made a decision as to how this function will
4075 be handled. */;
4076 else if (!at_eof)
4077 tentative_decl_linkage (fn);
4078 else
4079 import_export_decl (fn);
4081 /* If the user wants us to keep all inline functions, then mark
4082 this function as needed so that finish_file will make sure to
4083 output it later. Similarly, all dllexport'd functions must
4084 be emitted; there may be callers in other DLLs. */
4085 if (DECL_DECLARED_INLINE_P (fn)
4086 && !DECL_REALLY_EXTERN (fn)
4087 && (flag_keep_inline_functions
4088 || (flag_keep_inline_dllexport
4089 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (fn)))))
4091 mark_needed (fn);
4092 DECL_EXTERNAL (fn) = 0;
4096 /* If this is a constructor or destructor body, we have to clone
4097 it. */
4098 if (maybe_clone_body (fn))
4100 /* We don't want to process FN again, so pretend we've written
4101 it out, even though we haven't. */
4102 TREE_ASM_WRITTEN (fn) = 1;
4103 /* If this is an instantiation of a constexpr function, keep
4104 DECL_SAVED_TREE for explain_invalid_constexpr_fn. */
4105 if (!is_instantiation_of_constexpr (fn))
4106 DECL_SAVED_TREE (fn) = NULL_TREE;
4107 return false;
4110 /* There's no reason to do any of the work here if we're only doing
4111 semantic analysis; this code just generates RTL. */
4112 if (flag_syntax_only)
4113 return false;
4115 return true;
4118 void
4119 expand_or_defer_fn (tree fn)
4121 if (expand_or_defer_fn_1 (fn))
4123 function_depth++;
4125 /* Expand or defer, at the whim of the compilation unit manager. */
4126 cgraph_node::finalize_function (fn, function_depth > 1);
4127 emit_associated_thunks (fn);
4129 function_depth--;
4133 struct nrv_data
4135 nrv_data () : visited (37) {}
4137 tree var;
4138 tree result;
4139 hash_table<pointer_hash <tree_node> > visited;
4142 /* Helper function for walk_tree, used by finalize_nrv below. */
4144 static tree
4145 finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
4147 struct nrv_data *dp = (struct nrv_data *)data;
4148 tree_node **slot;
4150 /* No need to walk into types. There wouldn't be any need to walk into
4151 non-statements, except that we have to consider STMT_EXPRs. */
4152 if (TYPE_P (*tp))
4153 *walk_subtrees = 0;
4154 /* Change all returns to just refer to the RESULT_DECL; this is a nop,
4155 but differs from using NULL_TREE in that it indicates that we care
4156 about the value of the RESULT_DECL. */
4157 else if (TREE_CODE (*tp) == RETURN_EXPR)
4158 TREE_OPERAND (*tp, 0) = dp->result;
4159 /* Change all cleanups for the NRV to only run when an exception is
4160 thrown. */
4161 else if (TREE_CODE (*tp) == CLEANUP_STMT
4162 && CLEANUP_DECL (*tp) == dp->var)
4163 CLEANUP_EH_ONLY (*tp) = 1;
4164 /* Replace the DECL_EXPR for the NRV with an initialization of the
4165 RESULT_DECL, if needed. */
4166 else if (TREE_CODE (*tp) == DECL_EXPR
4167 && DECL_EXPR_DECL (*tp) == dp->var)
4169 tree init;
4170 if (DECL_INITIAL (dp->var)
4171 && DECL_INITIAL (dp->var) != error_mark_node)
4172 init = build2 (INIT_EXPR, void_type_node, dp->result,
4173 DECL_INITIAL (dp->var));
4174 else
4175 init = build_empty_stmt (EXPR_LOCATION (*tp));
4176 DECL_INITIAL (dp->var) = NULL_TREE;
4177 SET_EXPR_LOCATION (init, EXPR_LOCATION (*tp));
4178 *tp = init;
4180 /* And replace all uses of the NRV with the RESULT_DECL. */
4181 else if (*tp == dp->var)
4182 *tp = dp->result;
4184 /* Avoid walking into the same tree more than once. Unfortunately, we
4185 can't just use walk_tree_without duplicates because it would only call
4186 us for the first occurrence of dp->var in the function body. */
4187 slot = dp->visited.find_slot (*tp, INSERT);
4188 if (*slot)
4189 *walk_subtrees = 0;
4190 else
4191 *slot = *tp;
4193 /* Keep iterating. */
4194 return NULL_TREE;
4197 /* Called from finish_function to implement the named return value
4198 optimization by overriding all the RETURN_EXPRs and pertinent
4199 CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
4200 RESULT_DECL for the function. */
4202 void
4203 finalize_nrv (tree *tp, tree var, tree result)
4205 struct nrv_data data;
4207 /* Copy name from VAR to RESULT. */
4208 DECL_NAME (result) = DECL_NAME (var);
4209 /* Don't forget that we take its address. */
4210 TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
4211 /* Finally set DECL_VALUE_EXPR to avoid assigning
4212 a stack slot at -O0 for the original var and debug info
4213 uses RESULT location for VAR. */
4214 SET_DECL_VALUE_EXPR (var, result);
4215 DECL_HAS_VALUE_EXPR_P (var) = 1;
4217 data.var = var;
4218 data.result = result;
4219 cp_walk_tree (tp, finalize_nrv_r, &data, 0);
4222 /* Create CP_OMP_CLAUSE_INFO for clause C. Returns true if it is invalid. */
4224 bool
4225 cxx_omp_create_clause_info (tree c, tree type, bool need_default_ctor,
4226 bool need_copy_ctor, bool need_copy_assignment,
4227 bool need_dtor)
4229 int save_errorcount = errorcount;
4230 tree info, t;
4232 /* Always allocate 3 elements for simplicity. These are the
4233 function decls for the ctor, dtor, and assignment op.
4234 This layout is known to the three lang hooks,
4235 cxx_omp_clause_default_init, cxx_omp_clause_copy_init,
4236 and cxx_omp_clause_assign_op. */
4237 info = make_tree_vec (3);
4238 CP_OMP_CLAUSE_INFO (c) = info;
4240 if (need_default_ctor || need_copy_ctor)
4242 if (need_default_ctor)
4243 t = get_default_ctor (type);
4244 else
4245 t = get_copy_ctor (type, tf_warning_or_error);
4247 if (t && !trivial_fn_p (t))
4248 TREE_VEC_ELT (info, 0) = t;
4251 if (need_dtor && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4252 TREE_VEC_ELT (info, 1) = get_dtor (type, tf_warning_or_error);
4254 if (need_copy_assignment)
4256 t = get_copy_assign (type);
4258 if (t && !trivial_fn_p (t))
4259 TREE_VEC_ELT (info, 2) = t;
4262 return errorcount != save_errorcount;
4265 /* Helper function for handle_omp_array_sections. Called recursively
4266 to handle multiple array-section-subscripts. C is the clause,
4267 T current expression (initially OMP_CLAUSE_DECL), which is either
4268 a TREE_LIST for array-section-subscript (TREE_PURPOSE is low-bound
4269 expression if specified, TREE_VALUE length expression if specified,
4270 TREE_CHAIN is what it has been specified after, or some decl.
4271 TYPES vector is populated with array section types, MAYBE_ZERO_LEN
4272 set to true if any of the array-section-subscript could have length
4273 of zero (explicit or implicit), FIRST_NON_ONE is the index of the
4274 first array-section-subscript which is known not to have length
4275 of one. Given say:
4276 map(a[:b][2:1][:c][:2][:d][e:f][2:5])
4277 FIRST_NON_ONE will be 3, array-section-subscript [:b], [2:1] and [:c]
4278 all are or may have length of 1, array-section-subscript [:2] is the
4279 first one knonwn not to have length 1. For array-section-subscript
4280 <= FIRST_NON_ONE we diagnose non-contiguous arrays if low bound isn't
4281 0 or length isn't the array domain max + 1, for > FIRST_NON_ONE we
4282 can if MAYBE_ZERO_LEN is false. MAYBE_ZERO_LEN will be true in the above
4283 case though, as some lengths could be zero. */
4285 static tree
4286 handle_omp_array_sections_1 (tree c, tree t, vec<tree> &types,
4287 bool &maybe_zero_len, unsigned int &first_non_one)
4289 tree ret, low_bound, length, type;
4290 if (TREE_CODE (t) != TREE_LIST)
4292 if (error_operand_p (t))
4293 return error_mark_node;
4294 if (type_dependent_expression_p (t))
4295 return NULL_TREE;
4296 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4298 if (processing_template_decl)
4299 return NULL_TREE;
4300 if (DECL_P (t))
4301 error_at (OMP_CLAUSE_LOCATION (c),
4302 "%qD is not a variable in %qs clause", t,
4303 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4304 else
4305 error_at (OMP_CLAUSE_LOCATION (c),
4306 "%qE is not a variable in %qs clause", t,
4307 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4308 return error_mark_node;
4310 else if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
4311 && TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
4313 error_at (OMP_CLAUSE_LOCATION (c),
4314 "%qD is threadprivate variable in %qs clause", t,
4315 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4316 return error_mark_node;
4318 t = convert_from_reference (t);
4319 return t;
4322 ret = handle_omp_array_sections_1 (c, TREE_CHAIN (t), types,
4323 maybe_zero_len, first_non_one);
4324 if (ret == error_mark_node || ret == NULL_TREE)
4325 return ret;
4327 type = TREE_TYPE (ret);
4328 low_bound = TREE_PURPOSE (t);
4329 length = TREE_VALUE (t);
4330 if ((low_bound && type_dependent_expression_p (low_bound))
4331 || (length && type_dependent_expression_p (length)))
4332 return NULL_TREE;
4334 if (low_bound == error_mark_node || length == error_mark_node)
4335 return error_mark_node;
4337 if (low_bound && !INTEGRAL_TYPE_P (TREE_TYPE (low_bound)))
4339 error_at (OMP_CLAUSE_LOCATION (c),
4340 "low bound %qE of array section does not have integral type",
4341 low_bound);
4342 return error_mark_node;
4344 if (length && !INTEGRAL_TYPE_P (TREE_TYPE (length)))
4346 error_at (OMP_CLAUSE_LOCATION (c),
4347 "length %qE of array section does not have integral type",
4348 length);
4349 return error_mark_node;
4351 if (low_bound)
4352 low_bound = mark_rvalue_use (low_bound);
4353 if (length)
4354 length = mark_rvalue_use (length);
4355 if (low_bound
4356 && TREE_CODE (low_bound) == INTEGER_CST
4357 && TYPE_PRECISION (TREE_TYPE (low_bound))
4358 > TYPE_PRECISION (sizetype))
4359 low_bound = fold_convert (sizetype, low_bound);
4360 if (length
4361 && TREE_CODE (length) == INTEGER_CST
4362 && TYPE_PRECISION (TREE_TYPE (length))
4363 > TYPE_PRECISION (sizetype))
4364 length = fold_convert (sizetype, length);
4365 if (low_bound == NULL_TREE)
4366 low_bound = integer_zero_node;
4368 if (length != NULL_TREE)
4370 if (!integer_nonzerop (length))
4371 maybe_zero_len = true;
4372 if (first_non_one == types.length ()
4373 && (TREE_CODE (length) != INTEGER_CST || integer_onep (length)))
4374 first_non_one++;
4376 if (TREE_CODE (type) == ARRAY_TYPE)
4378 if (length == NULL_TREE
4379 && (TYPE_DOMAIN (type) == NULL_TREE
4380 || TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE))
4382 error_at (OMP_CLAUSE_LOCATION (c),
4383 "for unknown bound array type length expression must "
4384 "be specified");
4385 return error_mark_node;
4387 if (TREE_CODE (low_bound) == INTEGER_CST
4388 && tree_int_cst_sgn (low_bound) == -1)
4390 error_at (OMP_CLAUSE_LOCATION (c),
4391 "negative low bound in array section in %qs clause",
4392 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4393 return error_mark_node;
4395 if (length != NULL_TREE
4396 && TREE_CODE (length) == INTEGER_CST
4397 && tree_int_cst_sgn (length) == -1)
4399 error_at (OMP_CLAUSE_LOCATION (c),
4400 "negative length in array section in %qs clause",
4401 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4402 return error_mark_node;
4404 if (TYPE_DOMAIN (type)
4405 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
4406 && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
4407 == INTEGER_CST)
4409 tree size = size_binop (PLUS_EXPR,
4410 TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
4411 size_one_node);
4412 if (TREE_CODE (low_bound) == INTEGER_CST)
4414 if (tree_int_cst_lt (size, low_bound))
4416 error_at (OMP_CLAUSE_LOCATION (c),
4417 "low bound %qE above array section size "
4418 "in %qs clause", low_bound,
4419 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4420 return error_mark_node;
4422 if (tree_int_cst_equal (size, low_bound))
4423 maybe_zero_len = true;
4424 else if (length == NULL_TREE
4425 && first_non_one == types.length ()
4426 && tree_int_cst_equal
4427 (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
4428 low_bound))
4429 first_non_one++;
4431 else if (length == NULL_TREE)
4433 maybe_zero_len = true;
4434 if (first_non_one == types.length ())
4435 first_non_one++;
4437 if (length && TREE_CODE (length) == INTEGER_CST)
4439 if (tree_int_cst_lt (size, length))
4441 error_at (OMP_CLAUSE_LOCATION (c),
4442 "length %qE above array section size "
4443 "in %qs clause", length,
4444 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4445 return error_mark_node;
4447 if (TREE_CODE (low_bound) == INTEGER_CST)
4449 tree lbpluslen
4450 = size_binop (PLUS_EXPR,
4451 fold_convert (sizetype, low_bound),
4452 fold_convert (sizetype, length));
4453 if (TREE_CODE (lbpluslen) == INTEGER_CST
4454 && tree_int_cst_lt (size, lbpluslen))
4456 error_at (OMP_CLAUSE_LOCATION (c),
4457 "high bound %qE above array section size "
4458 "in %qs clause", lbpluslen,
4459 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4460 return error_mark_node;
4465 else if (length == NULL_TREE)
4467 maybe_zero_len = true;
4468 if (first_non_one == types.length ())
4469 first_non_one++;
4472 /* For [lb:] we will need to evaluate lb more than once. */
4473 if (length == NULL_TREE && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND)
4475 tree lb = cp_save_expr (low_bound);
4476 if (lb != low_bound)
4478 TREE_PURPOSE (t) = lb;
4479 low_bound = lb;
4483 else if (TREE_CODE (type) == POINTER_TYPE)
4485 if (length == NULL_TREE)
4487 error_at (OMP_CLAUSE_LOCATION (c),
4488 "for pointer type length expression must be specified");
4489 return error_mark_node;
4491 /* If there is a pointer type anywhere but in the very first
4492 array-section-subscript, the array section can't be contiguous. */
4493 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
4494 && TREE_CODE (TREE_CHAIN (t)) == TREE_LIST)
4496 error_at (OMP_CLAUSE_LOCATION (c),
4497 "array section is not contiguous in %qs clause",
4498 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4499 return error_mark_node;
4502 else
4504 error_at (OMP_CLAUSE_LOCATION (c),
4505 "%qE does not have pointer or array type", ret);
4506 return error_mark_node;
4508 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND)
4509 types.safe_push (TREE_TYPE (ret));
4510 /* We will need to evaluate lb more than once. */
4511 tree lb = cp_save_expr (low_bound);
4512 if (lb != low_bound)
4514 TREE_PURPOSE (t) = lb;
4515 low_bound = lb;
4517 ret = grok_array_decl (OMP_CLAUSE_LOCATION (c), ret, low_bound, false);
4518 return ret;
4521 /* Handle array sections for clause C. */
4523 static bool
4524 handle_omp_array_sections (tree c)
4526 bool maybe_zero_len = false;
4527 unsigned int first_non_one = 0;
4528 auto_vec<tree> types;
4529 tree first = handle_omp_array_sections_1 (c, OMP_CLAUSE_DECL (c), types,
4530 maybe_zero_len, first_non_one);
4531 if (first == error_mark_node)
4532 return true;
4533 if (first == NULL_TREE)
4534 return false;
4535 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND)
4537 tree t = OMP_CLAUSE_DECL (c);
4538 tree tem = NULL_TREE;
4539 if (processing_template_decl)
4540 return false;
4541 /* Need to evaluate side effects in the length expressions
4542 if any. */
4543 while (TREE_CODE (t) == TREE_LIST)
4545 if (TREE_VALUE (t) && TREE_SIDE_EFFECTS (TREE_VALUE (t)))
4547 if (tem == NULL_TREE)
4548 tem = TREE_VALUE (t);
4549 else
4550 tem = build2 (COMPOUND_EXPR, TREE_TYPE (tem),
4551 TREE_VALUE (t), tem);
4553 t = TREE_CHAIN (t);
4555 if (tem)
4556 first = build2 (COMPOUND_EXPR, TREE_TYPE (first), tem, first);
4557 OMP_CLAUSE_DECL (c) = first;
4559 else
4561 unsigned int num = types.length (), i;
4562 tree t, side_effects = NULL_TREE, size = NULL_TREE;
4563 tree condition = NULL_TREE;
4565 if (int_size_in_bytes (TREE_TYPE (first)) <= 0)
4566 maybe_zero_len = true;
4567 if (processing_template_decl && maybe_zero_len)
4568 return false;
4570 for (i = num, t = OMP_CLAUSE_DECL (c); i > 0;
4571 t = TREE_CHAIN (t))
4573 tree low_bound = TREE_PURPOSE (t);
4574 tree length = TREE_VALUE (t);
4576 i--;
4577 if (low_bound
4578 && TREE_CODE (low_bound) == INTEGER_CST
4579 && TYPE_PRECISION (TREE_TYPE (low_bound))
4580 > TYPE_PRECISION (sizetype))
4581 low_bound = fold_convert (sizetype, low_bound);
4582 if (length
4583 && TREE_CODE (length) == INTEGER_CST
4584 && TYPE_PRECISION (TREE_TYPE (length))
4585 > TYPE_PRECISION (sizetype))
4586 length = fold_convert (sizetype, length);
4587 if (low_bound == NULL_TREE)
4588 low_bound = integer_zero_node;
4589 if (!maybe_zero_len && i > first_non_one)
4591 if (integer_nonzerop (low_bound))
4592 goto do_warn_noncontiguous;
4593 if (length != NULL_TREE
4594 && TREE_CODE (length) == INTEGER_CST
4595 && TYPE_DOMAIN (types[i])
4596 && TYPE_MAX_VALUE (TYPE_DOMAIN (types[i]))
4597 && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])))
4598 == INTEGER_CST)
4600 tree size;
4601 size = size_binop (PLUS_EXPR,
4602 TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])),
4603 size_one_node);
4604 if (!tree_int_cst_equal (length, size))
4606 do_warn_noncontiguous:
4607 error_at (OMP_CLAUSE_LOCATION (c),
4608 "array section is not contiguous in %qs "
4609 "clause",
4610 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4611 return true;
4614 if (!processing_template_decl
4615 && length != NULL_TREE
4616 && TREE_SIDE_EFFECTS (length))
4618 if (side_effects == NULL_TREE)
4619 side_effects = length;
4620 else
4621 side_effects = build2 (COMPOUND_EXPR,
4622 TREE_TYPE (side_effects),
4623 length, side_effects);
4626 else if (processing_template_decl)
4627 continue;
4628 else
4630 tree l;
4632 if (i > first_non_one && length && integer_nonzerop (length))
4633 continue;
4634 if (length)
4635 l = fold_convert (sizetype, length);
4636 else
4638 l = size_binop (PLUS_EXPR,
4639 TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])),
4640 size_one_node);
4641 l = size_binop (MINUS_EXPR, l,
4642 fold_convert (sizetype, low_bound));
4644 if (i > first_non_one)
4646 l = fold_build2 (NE_EXPR, boolean_type_node, l,
4647 size_zero_node);
4648 if (condition == NULL_TREE)
4649 condition = l;
4650 else
4651 condition = fold_build2 (BIT_AND_EXPR, boolean_type_node,
4652 l, condition);
4654 else if (size == NULL_TREE)
4656 size = size_in_bytes (TREE_TYPE (types[i]));
4657 size = size_binop (MULT_EXPR, size, l);
4658 if (condition)
4659 size = fold_build3 (COND_EXPR, sizetype, condition,
4660 size, size_zero_node);
4662 else
4663 size = size_binop (MULT_EXPR, size, l);
4666 if (!processing_template_decl)
4668 if (side_effects)
4669 size = build2 (COMPOUND_EXPR, sizetype, side_effects, size);
4670 OMP_CLAUSE_DECL (c) = first;
4671 OMP_CLAUSE_SIZE (c) = size;
4672 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP)
4673 return false;
4674 tree c2 = build_omp_clause (OMP_CLAUSE_LOCATION (c),
4675 OMP_CLAUSE_MAP);
4676 OMP_CLAUSE_SET_MAP_KIND (c2, GOMP_MAP_POINTER);
4677 if (!cxx_mark_addressable (t))
4678 return false;
4679 OMP_CLAUSE_DECL (c2) = t;
4680 t = build_fold_addr_expr (first);
4681 t = fold_convert_loc (OMP_CLAUSE_LOCATION (c),
4682 ptrdiff_type_node, t);
4683 tree ptr = OMP_CLAUSE_DECL (c2);
4684 ptr = convert_from_reference (ptr);
4685 if (!POINTER_TYPE_P (TREE_TYPE (ptr)))
4686 ptr = build_fold_addr_expr (ptr);
4687 t = fold_build2_loc (OMP_CLAUSE_LOCATION (c), MINUS_EXPR,
4688 ptrdiff_type_node, t,
4689 fold_convert_loc (OMP_CLAUSE_LOCATION (c),
4690 ptrdiff_type_node, ptr));
4691 OMP_CLAUSE_SIZE (c2) = t;
4692 OMP_CLAUSE_CHAIN (c2) = OMP_CLAUSE_CHAIN (c);
4693 OMP_CLAUSE_CHAIN (c) = c2;
4694 ptr = OMP_CLAUSE_DECL (c2);
4695 if (TREE_CODE (TREE_TYPE (ptr)) == REFERENCE_TYPE
4696 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (ptr))))
4698 tree c3 = build_omp_clause (OMP_CLAUSE_LOCATION (c),
4699 OMP_CLAUSE_MAP);
4700 OMP_CLAUSE_SET_MAP_KIND (c3, GOMP_MAP_POINTER);
4701 OMP_CLAUSE_DECL (c3) = ptr;
4702 OMP_CLAUSE_DECL (c2) = convert_from_reference (ptr);
4703 OMP_CLAUSE_SIZE (c3) = size_zero_node;
4704 OMP_CLAUSE_CHAIN (c3) = OMP_CLAUSE_CHAIN (c2);
4705 OMP_CLAUSE_CHAIN (c2) = c3;
4709 return false;
4712 /* Return identifier to look up for omp declare reduction. */
4714 tree
4715 omp_reduction_id (enum tree_code reduction_code, tree reduction_id, tree type)
4717 const char *p = NULL;
4718 const char *m = NULL;
4719 switch (reduction_code)
4721 case PLUS_EXPR:
4722 case MULT_EXPR:
4723 case MINUS_EXPR:
4724 case BIT_AND_EXPR:
4725 case BIT_XOR_EXPR:
4726 case BIT_IOR_EXPR:
4727 case TRUTH_ANDIF_EXPR:
4728 case TRUTH_ORIF_EXPR:
4729 reduction_id = ansi_opname (reduction_code);
4730 break;
4731 case MIN_EXPR:
4732 p = "min";
4733 break;
4734 case MAX_EXPR:
4735 p = "max";
4736 break;
4737 default:
4738 break;
4741 if (p == NULL)
4743 if (TREE_CODE (reduction_id) != IDENTIFIER_NODE)
4744 return error_mark_node;
4745 p = IDENTIFIER_POINTER (reduction_id);
4748 if (type != NULL_TREE)
4749 m = mangle_type_string (TYPE_MAIN_VARIANT (type));
4751 const char prefix[] = "omp declare reduction ";
4752 size_t lenp = sizeof (prefix);
4753 if (strncmp (p, prefix, lenp - 1) == 0)
4754 lenp = 1;
4755 size_t len = strlen (p);
4756 size_t lenm = m ? strlen (m) + 1 : 0;
4757 char *name = XALLOCAVEC (char, lenp + len + lenm);
4758 if (lenp > 1)
4759 memcpy (name, prefix, lenp - 1);
4760 memcpy (name + lenp - 1, p, len + 1);
4761 if (m)
4763 name[lenp + len - 1] = '~';
4764 memcpy (name + lenp + len, m, lenm);
4766 return get_identifier (name);
4769 /* Lookup OpenMP UDR ID for TYPE, return the corresponding artificial
4770 FUNCTION_DECL or NULL_TREE if not found. */
4772 static tree
4773 omp_reduction_lookup (location_t loc, tree id, tree type, tree *baselinkp,
4774 vec<tree> *ambiguousp)
4776 tree orig_id = id;
4777 tree baselink = NULL_TREE;
4778 if (identifier_p (id))
4780 cp_id_kind idk;
4781 bool nonint_cst_expression_p;
4782 const char *error_msg;
4783 id = omp_reduction_id (ERROR_MARK, id, type);
4784 tree decl = lookup_name (id);
4785 if (decl == NULL_TREE)
4786 decl = error_mark_node;
4787 id = finish_id_expression (id, decl, NULL_TREE, &idk, false, true,
4788 &nonint_cst_expression_p, false, true, false,
4789 false, &error_msg, loc);
4790 if (idk == CP_ID_KIND_UNQUALIFIED
4791 && identifier_p (id))
4793 vec<tree, va_gc> *args = NULL;
4794 vec_safe_push (args, build_reference_type (type));
4795 id = perform_koenig_lookup (id, args, tf_none);
4798 else if (TREE_CODE (id) == SCOPE_REF)
4799 id = lookup_qualified_name (TREE_OPERAND (id, 0),
4800 omp_reduction_id (ERROR_MARK,
4801 TREE_OPERAND (id, 1),
4802 type),
4803 false, false);
4804 tree fns = id;
4805 if (id && is_overloaded_fn (id))
4806 id = get_fns (id);
4807 for (; id; id = OVL_NEXT (id))
4809 tree fndecl = OVL_CURRENT (id);
4810 if (TREE_CODE (fndecl) == FUNCTION_DECL)
4812 tree argtype = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
4813 if (same_type_p (TREE_TYPE (argtype), type))
4814 break;
4817 if (id && BASELINK_P (fns))
4819 if (baselinkp)
4820 *baselinkp = fns;
4821 else
4822 baselink = fns;
4824 if (id == NULL_TREE && CLASS_TYPE_P (type) && TYPE_BINFO (type))
4826 vec<tree> ambiguous = vNULL;
4827 tree binfo = TYPE_BINFO (type), base_binfo, ret = NULL_TREE;
4828 unsigned int ix;
4829 if (ambiguousp == NULL)
4830 ambiguousp = &ambiguous;
4831 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
4833 id = omp_reduction_lookup (loc, orig_id, BINFO_TYPE (base_binfo),
4834 baselinkp ? baselinkp : &baselink,
4835 ambiguousp);
4836 if (id == NULL_TREE)
4837 continue;
4838 if (!ambiguousp->is_empty ())
4839 ambiguousp->safe_push (id);
4840 else if (ret != NULL_TREE)
4842 ambiguousp->safe_push (ret);
4843 ambiguousp->safe_push (id);
4844 ret = NULL_TREE;
4846 else
4847 ret = id;
4849 if (ambiguousp != &ambiguous)
4850 return ret;
4851 if (!ambiguous.is_empty ())
4853 const char *str = _("candidates are:");
4854 unsigned int idx;
4855 tree udr;
4856 error_at (loc, "user defined reduction lookup is ambiguous");
4857 FOR_EACH_VEC_ELT (ambiguous, idx, udr)
4859 inform (DECL_SOURCE_LOCATION (udr), "%s %#D", str, udr);
4860 if (idx == 0)
4861 str = get_spaces (str);
4863 ambiguous.release ();
4864 ret = error_mark_node;
4865 baselink = NULL_TREE;
4867 id = ret;
4869 if (id && baselink)
4870 perform_or_defer_access_check (BASELINK_BINFO (baselink),
4871 id, id, tf_warning_or_error);
4872 return id;
4875 /* Helper function for cp_parser_omp_declare_reduction_exprs
4876 and tsubst_omp_udr.
4877 Remove CLEANUP_STMT for data (omp_priv variable).
4878 Also append INIT_EXPR for DECL_INITIAL of omp_priv after its
4879 DECL_EXPR. */
4881 tree
4882 cp_remove_omp_priv_cleanup_stmt (tree *tp, int *walk_subtrees, void *data)
4884 if (TYPE_P (*tp))
4885 *walk_subtrees = 0;
4886 else if (TREE_CODE (*tp) == CLEANUP_STMT && CLEANUP_DECL (*tp) == (tree) data)
4887 *tp = CLEANUP_BODY (*tp);
4888 else if (TREE_CODE (*tp) == DECL_EXPR)
4890 tree decl = DECL_EXPR_DECL (*tp);
4891 if (!processing_template_decl
4892 && decl == (tree) data
4893 && DECL_INITIAL (decl)
4894 && DECL_INITIAL (decl) != error_mark_node)
4896 tree list = NULL_TREE;
4897 append_to_statement_list_force (*tp, &list);
4898 tree init_expr = build2 (INIT_EXPR, void_type_node,
4899 decl, DECL_INITIAL (decl));
4900 DECL_INITIAL (decl) = NULL_TREE;
4901 append_to_statement_list_force (init_expr, &list);
4902 *tp = list;
4905 return NULL_TREE;
4908 /* Data passed from cp_check_omp_declare_reduction to
4909 cp_check_omp_declare_reduction_r. */
4911 struct cp_check_omp_declare_reduction_data
4913 location_t loc;
4914 tree stmts[7];
4915 bool combiner_p;
4918 /* Helper function for cp_check_omp_declare_reduction, called via
4919 cp_walk_tree. */
4921 static tree
4922 cp_check_omp_declare_reduction_r (tree *tp, int *, void *data)
4924 struct cp_check_omp_declare_reduction_data *udr_data
4925 = (struct cp_check_omp_declare_reduction_data *) data;
4926 if (SSA_VAR_P (*tp)
4927 && !DECL_ARTIFICIAL (*tp)
4928 && *tp != DECL_EXPR_DECL (udr_data->stmts[udr_data->combiner_p ? 0 : 3])
4929 && *tp != DECL_EXPR_DECL (udr_data->stmts[udr_data->combiner_p ? 1 : 4]))
4931 location_t loc = udr_data->loc;
4932 if (udr_data->combiner_p)
4933 error_at (loc, "%<#pragma omp declare reduction%> combiner refers to "
4934 "variable %qD which is not %<omp_out%> nor %<omp_in%>",
4935 *tp);
4936 else
4937 error_at (loc, "%<#pragma omp declare reduction%> initializer refers "
4938 "to variable %qD which is not %<omp_priv%> nor "
4939 "%<omp_orig%>",
4940 *tp);
4941 return *tp;
4943 return NULL_TREE;
4946 /* Diagnose violation of OpenMP #pragma omp declare reduction restrictions. */
4948 void
4949 cp_check_omp_declare_reduction (tree udr)
4951 tree type = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (udr)));
4952 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
4953 type = TREE_TYPE (type);
4954 int i;
4955 location_t loc = DECL_SOURCE_LOCATION (udr);
4957 if (type == error_mark_node)
4958 return;
4959 if (ARITHMETIC_TYPE_P (type))
4961 static enum tree_code predef_codes[]
4962 = { PLUS_EXPR, MULT_EXPR, MINUS_EXPR, BIT_AND_EXPR, BIT_XOR_EXPR,
4963 BIT_IOR_EXPR, TRUTH_ANDIF_EXPR, TRUTH_ORIF_EXPR };
4964 for (i = 0; i < 8; i++)
4966 tree id = omp_reduction_id (predef_codes[i], NULL_TREE, NULL_TREE);
4967 const char *n1 = IDENTIFIER_POINTER (DECL_NAME (udr));
4968 const char *n2 = IDENTIFIER_POINTER (id);
4969 if (strncmp (n1, n2, IDENTIFIER_LENGTH (id)) == 0
4970 && (n1[IDENTIFIER_LENGTH (id)] == '~'
4971 || n1[IDENTIFIER_LENGTH (id)] == '\0'))
4972 break;
4975 if (i == 8
4976 && TREE_CODE (type) != COMPLEX_EXPR)
4978 const char prefix_minmax[] = "omp declare reduction m";
4979 size_t prefix_size = sizeof (prefix_minmax) - 1;
4980 const char *n = IDENTIFIER_POINTER (DECL_NAME (udr));
4981 if (strncmp (IDENTIFIER_POINTER (DECL_NAME (udr)),
4982 prefix_minmax, prefix_size) == 0
4983 && ((n[prefix_size] == 'i' && n[prefix_size + 1] == 'n')
4984 || (n[prefix_size] == 'a' && n[prefix_size + 1] == 'x'))
4985 && (n[prefix_size + 2] == '~' || n[prefix_size + 2] == '\0'))
4986 i = 0;
4988 if (i < 8)
4990 error_at (loc, "predeclared arithmetic type %qT in "
4991 "%<#pragma omp declare reduction%>", type);
4992 return;
4995 else if (TREE_CODE (type) == FUNCTION_TYPE
4996 || TREE_CODE (type) == METHOD_TYPE
4997 || TREE_CODE (type) == ARRAY_TYPE)
4999 error_at (loc, "function or array type %qT in "
5000 "%<#pragma omp declare reduction%>", type);
5001 return;
5003 else if (TREE_CODE (type) == REFERENCE_TYPE)
5005 error_at (loc, "reference type %qT in %<#pragma omp declare reduction%>",
5006 type);
5007 return;
5009 else if (TYPE_QUALS_NO_ADDR_SPACE (type))
5011 error_at (loc, "const, volatile or __restrict qualified type %qT in "
5012 "%<#pragma omp declare reduction%>", type);
5013 return;
5016 tree body = DECL_SAVED_TREE (udr);
5017 if (body == NULL_TREE || TREE_CODE (body) != STATEMENT_LIST)
5018 return;
5020 tree_stmt_iterator tsi;
5021 struct cp_check_omp_declare_reduction_data data;
5022 memset (data.stmts, 0, sizeof data.stmts);
5023 for (i = 0, tsi = tsi_start (body);
5024 i < 7 && !tsi_end_p (tsi);
5025 i++, tsi_next (&tsi))
5026 data.stmts[i] = tsi_stmt (tsi);
5027 data.loc = loc;
5028 gcc_assert (tsi_end_p (tsi));
5029 if (i >= 3)
5031 gcc_assert (TREE_CODE (data.stmts[0]) == DECL_EXPR
5032 && TREE_CODE (data.stmts[1]) == DECL_EXPR);
5033 if (TREE_NO_WARNING (DECL_EXPR_DECL (data.stmts[0])))
5034 return;
5035 data.combiner_p = true;
5036 if (cp_walk_tree (&data.stmts[2], cp_check_omp_declare_reduction_r,
5037 &data, NULL))
5038 TREE_NO_WARNING (DECL_EXPR_DECL (data.stmts[0])) = 1;
5040 if (i >= 6)
5042 gcc_assert (TREE_CODE (data.stmts[3]) == DECL_EXPR
5043 && TREE_CODE (data.stmts[4]) == DECL_EXPR);
5044 data.combiner_p = false;
5045 if (cp_walk_tree (&data.stmts[5], cp_check_omp_declare_reduction_r,
5046 &data, NULL)
5047 || cp_walk_tree (&DECL_INITIAL (DECL_EXPR_DECL (data.stmts[3])),
5048 cp_check_omp_declare_reduction_r, &data, NULL))
5049 TREE_NO_WARNING (DECL_EXPR_DECL (data.stmts[0])) = 1;
5050 if (i == 7)
5051 gcc_assert (TREE_CODE (data.stmts[6]) == DECL_EXPR);
5055 /* Helper function of finish_omp_clauses. Clone STMT as if we were making
5056 an inline call. But, remap
5057 the OMP_DECL1 VAR_DECL (omp_out resp. omp_orig) to PLACEHOLDER
5058 and OMP_DECL2 VAR_DECL (omp_in resp. omp_priv) to DECL. */
5060 static tree
5061 clone_omp_udr (tree stmt, tree omp_decl1, tree omp_decl2,
5062 tree decl, tree placeholder)
5064 copy_body_data id;
5065 hash_map<tree, tree> decl_map;
5067 decl_map.put (omp_decl1, placeholder);
5068 decl_map.put (omp_decl2, decl);
5069 memset (&id, 0, sizeof (id));
5070 id.src_fn = DECL_CONTEXT (omp_decl1);
5071 id.dst_fn = current_function_decl;
5072 id.src_cfun = DECL_STRUCT_FUNCTION (id.src_fn);
5073 id.decl_map = &decl_map;
5075 id.copy_decl = copy_decl_no_change;
5076 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5077 id.transform_new_cfg = true;
5078 id.transform_return_to_modify = false;
5079 id.transform_lang_insert_block = NULL;
5080 id.eh_lp_nr = 0;
5081 walk_tree (&stmt, copy_tree_body_r, &id, NULL);
5082 return stmt;
5085 /* Helper function of finish_omp_clauses, called via cp_walk_tree.
5086 Find OMP_CLAUSE_PLACEHOLDER (passed in DATA) in *TP. */
5088 static tree
5089 find_omp_placeholder_r (tree *tp, int *, void *data)
5091 if (*tp == (tree) data)
5092 return *tp;
5093 return NULL_TREE;
5096 /* Helper function of finish_omp_clauses. Handle OMP_CLAUSE_REDUCTION C.
5097 Return true if there is some error and the clause should be removed. */
5099 static bool
5100 finish_omp_reduction_clause (tree c, bool *need_default_ctor, bool *need_dtor)
5102 tree t = OMP_CLAUSE_DECL (c);
5103 bool predefined = false;
5104 tree type = TREE_TYPE (t);
5105 if (TREE_CODE (type) == REFERENCE_TYPE)
5106 type = TREE_TYPE (type);
5107 if (type == error_mark_node)
5108 return true;
5109 else if (ARITHMETIC_TYPE_P (type))
5110 switch (OMP_CLAUSE_REDUCTION_CODE (c))
5112 case PLUS_EXPR:
5113 case MULT_EXPR:
5114 case MINUS_EXPR:
5115 predefined = true;
5116 break;
5117 case MIN_EXPR:
5118 case MAX_EXPR:
5119 if (TREE_CODE (type) == COMPLEX_TYPE)
5120 break;
5121 predefined = true;
5122 break;
5123 case BIT_AND_EXPR:
5124 case BIT_IOR_EXPR:
5125 case BIT_XOR_EXPR:
5126 if (FLOAT_TYPE_P (type) || TREE_CODE (type) == COMPLEX_TYPE)
5127 break;
5128 predefined = true;
5129 break;
5130 case TRUTH_ANDIF_EXPR:
5131 case TRUTH_ORIF_EXPR:
5132 if (FLOAT_TYPE_P (type))
5133 break;
5134 predefined = true;
5135 break;
5136 default:
5137 break;
5139 else if (TREE_CODE (type) == ARRAY_TYPE || TYPE_READONLY (type))
5141 error ("%qE has invalid type for %<reduction%>", t);
5142 return true;
5144 else if (!processing_template_decl)
5146 t = require_complete_type (t);
5147 if (t == error_mark_node)
5148 return true;
5149 OMP_CLAUSE_DECL (c) = t;
5152 if (predefined)
5154 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = NULL_TREE;
5155 return false;
5157 else if (processing_template_decl)
5158 return false;
5160 tree id = OMP_CLAUSE_REDUCTION_PLACEHOLDER (c);
5162 type = TYPE_MAIN_VARIANT (TREE_TYPE (t));
5163 if (TREE_CODE (type) == REFERENCE_TYPE)
5164 type = TREE_TYPE (type);
5165 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = NULL_TREE;
5166 if (id == NULL_TREE)
5167 id = omp_reduction_id (OMP_CLAUSE_REDUCTION_CODE (c),
5168 NULL_TREE, NULL_TREE);
5169 id = omp_reduction_lookup (OMP_CLAUSE_LOCATION (c), id, type, NULL, NULL);
5170 if (id)
5172 if (id == error_mark_node)
5173 return true;
5174 id = OVL_CURRENT (id);
5175 mark_used (id);
5176 tree body = DECL_SAVED_TREE (id);
5177 if (!body)
5178 return true;
5179 if (TREE_CODE (body) == STATEMENT_LIST)
5181 tree_stmt_iterator tsi;
5182 tree placeholder = NULL_TREE;
5183 int i;
5184 tree stmts[7];
5185 tree atype = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (id)));
5186 atype = TREE_TYPE (atype);
5187 bool need_static_cast = !same_type_p (type, atype);
5188 memset (stmts, 0, sizeof stmts);
5189 for (i = 0, tsi = tsi_start (body);
5190 i < 7 && !tsi_end_p (tsi);
5191 i++, tsi_next (&tsi))
5192 stmts[i] = tsi_stmt (tsi);
5193 gcc_assert (tsi_end_p (tsi));
5195 if (i >= 3)
5197 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
5198 && TREE_CODE (stmts[1]) == DECL_EXPR);
5199 placeholder = build_lang_decl (VAR_DECL, NULL_TREE, type);
5200 DECL_ARTIFICIAL (placeholder) = 1;
5201 DECL_IGNORED_P (placeholder) = 1;
5202 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = placeholder;
5203 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[0])))
5204 cxx_mark_addressable (placeholder);
5205 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[1]))
5206 && TREE_CODE (TREE_TYPE (OMP_CLAUSE_DECL (c)))
5207 != REFERENCE_TYPE)
5208 cxx_mark_addressable (OMP_CLAUSE_DECL (c));
5209 tree omp_out = placeholder;
5210 tree omp_in = convert_from_reference (OMP_CLAUSE_DECL (c));
5211 if (need_static_cast)
5213 tree rtype = build_reference_type (atype);
5214 omp_out = build_static_cast (rtype, omp_out,
5215 tf_warning_or_error);
5216 omp_in = build_static_cast (rtype, omp_in,
5217 tf_warning_or_error);
5218 if (omp_out == error_mark_node || omp_in == error_mark_node)
5219 return true;
5220 omp_out = convert_from_reference (omp_out);
5221 omp_in = convert_from_reference (omp_in);
5223 OMP_CLAUSE_REDUCTION_MERGE (c)
5224 = clone_omp_udr (stmts[2], DECL_EXPR_DECL (stmts[0]),
5225 DECL_EXPR_DECL (stmts[1]), omp_in, omp_out);
5227 if (i >= 6)
5229 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
5230 && TREE_CODE (stmts[4]) == DECL_EXPR);
5231 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[3])))
5232 cxx_mark_addressable (OMP_CLAUSE_DECL (c));
5233 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[4])))
5234 cxx_mark_addressable (placeholder);
5235 tree omp_priv = convert_from_reference (OMP_CLAUSE_DECL (c));
5236 tree omp_orig = placeholder;
5237 if (need_static_cast)
5239 if (i == 7)
5241 error_at (OMP_CLAUSE_LOCATION (c),
5242 "user defined reduction with constructor "
5243 "initializer for base class %qT", atype);
5244 return true;
5246 tree rtype = build_reference_type (atype);
5247 omp_priv = build_static_cast (rtype, omp_priv,
5248 tf_warning_or_error);
5249 omp_orig = build_static_cast (rtype, omp_orig,
5250 tf_warning_or_error);
5251 if (omp_priv == error_mark_node
5252 || omp_orig == error_mark_node)
5253 return true;
5254 omp_priv = convert_from_reference (omp_priv);
5255 omp_orig = convert_from_reference (omp_orig);
5257 if (i == 6)
5258 *need_default_ctor = true;
5259 OMP_CLAUSE_REDUCTION_INIT (c)
5260 = clone_omp_udr (stmts[5], DECL_EXPR_DECL (stmts[4]),
5261 DECL_EXPR_DECL (stmts[3]),
5262 omp_priv, omp_orig);
5263 if (cp_walk_tree (&OMP_CLAUSE_REDUCTION_INIT (c),
5264 find_omp_placeholder_r, placeholder, NULL))
5265 OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c) = 1;
5267 else if (i >= 3)
5269 if (CLASS_TYPE_P (type) && !pod_type_p (type))
5270 *need_default_ctor = true;
5271 else
5273 tree init;
5274 tree v = convert_from_reference (t);
5275 if (AGGREGATE_TYPE_P (TREE_TYPE (v)))
5276 init = build_constructor (TREE_TYPE (v), NULL);
5277 else
5278 init = fold_convert (TREE_TYPE (v), integer_zero_node);
5279 OMP_CLAUSE_REDUCTION_INIT (c)
5280 = build2 (INIT_EXPR, TREE_TYPE (v), v, init);
5285 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5286 *need_dtor = true;
5287 else
5289 error ("user defined reduction not found for %qD", t);
5290 return true;
5292 return false;
5295 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
5296 Remove any elements from the list that are invalid. */
5298 tree
5299 finish_omp_clauses (tree clauses)
5301 bitmap_head generic_head, firstprivate_head, lastprivate_head;
5302 bitmap_head aligned_head;
5303 tree c, t, *pc;
5304 bool branch_seen = false;
5305 bool copyprivate_seen = false;
5307 bitmap_obstack_initialize (NULL);
5308 bitmap_initialize (&generic_head, &bitmap_default_obstack);
5309 bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
5310 bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
5311 bitmap_initialize (&aligned_head, &bitmap_default_obstack);
5313 for (pc = &clauses, c = clauses; c ; c = *pc)
5315 bool remove = false;
5317 switch (OMP_CLAUSE_CODE (c))
5319 case OMP_CLAUSE_SHARED:
5320 goto check_dup_generic;
5321 case OMP_CLAUSE_PRIVATE:
5322 goto check_dup_generic;
5323 case OMP_CLAUSE_REDUCTION:
5324 goto check_dup_generic;
5325 case OMP_CLAUSE_COPYPRIVATE:
5326 copyprivate_seen = true;
5327 goto check_dup_generic;
5328 case OMP_CLAUSE_COPYIN:
5329 goto check_dup_generic;
5330 case OMP_CLAUSE_LINEAR:
5331 t = OMP_CLAUSE_DECL (c);
5332 if (!type_dependent_expression_p (t)
5333 && !INTEGRAL_TYPE_P (TREE_TYPE (t))
5334 && TREE_CODE (TREE_TYPE (t)) != POINTER_TYPE)
5336 error ("linear clause applied to non-integral non-pointer "
5337 "variable with %qT type", TREE_TYPE (t));
5338 remove = true;
5339 break;
5341 t = OMP_CLAUSE_LINEAR_STEP (c);
5342 if (t == NULL_TREE)
5343 t = integer_one_node;
5344 if (t == error_mark_node)
5346 remove = true;
5347 break;
5349 else if (!type_dependent_expression_p (t)
5350 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5352 error ("linear step expression must be integral");
5353 remove = true;
5354 break;
5356 else
5358 t = mark_rvalue_use (t);
5359 if (!processing_template_decl)
5361 if (TREE_CODE (OMP_CLAUSE_DECL (c)) == PARM_DECL)
5362 t = maybe_constant_value (t);
5363 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5364 if (TREE_CODE (TREE_TYPE (OMP_CLAUSE_DECL (c)))
5365 == POINTER_TYPE)
5367 t = pointer_int_sum (OMP_CLAUSE_LOCATION (c), PLUS_EXPR,
5368 OMP_CLAUSE_DECL (c), t);
5369 t = fold_build2_loc (OMP_CLAUSE_LOCATION (c),
5370 MINUS_EXPR, sizetype, t,
5371 OMP_CLAUSE_DECL (c));
5372 if (t == error_mark_node)
5374 remove = true;
5375 break;
5378 else
5379 t = fold_convert (TREE_TYPE (OMP_CLAUSE_DECL (c)), t);
5381 OMP_CLAUSE_LINEAR_STEP (c) = t;
5383 goto check_dup_generic;
5384 check_dup_generic:
5385 t = OMP_CLAUSE_DECL (c);
5386 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL)
5388 if (processing_template_decl)
5389 break;
5390 if (DECL_P (t))
5391 error ("%qD is not a variable in clause %qs", t,
5392 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5393 else
5394 error ("%qE is not a variable in clause %qs", t,
5395 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5396 remove = true;
5398 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
5399 || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
5400 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
5402 error ("%qD appears more than once in data clauses", t);
5403 remove = true;
5405 else
5406 bitmap_set_bit (&generic_head, DECL_UID (t));
5407 break;
5409 case OMP_CLAUSE_FIRSTPRIVATE:
5410 t = OMP_CLAUSE_DECL (c);
5411 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL)
5413 if (processing_template_decl)
5414 break;
5415 if (DECL_P (t))
5416 error ("%qD is not a variable in clause %<firstprivate%>", t);
5417 else
5418 error ("%qE is not a variable in clause %<firstprivate%>", t);
5419 remove = true;
5421 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
5422 || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
5424 error ("%qD appears more than once in data clauses", t);
5425 remove = true;
5427 else
5428 bitmap_set_bit (&firstprivate_head, DECL_UID (t));
5429 break;
5431 case OMP_CLAUSE_LASTPRIVATE:
5432 t = OMP_CLAUSE_DECL (c);
5433 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL)
5435 if (processing_template_decl)
5436 break;
5437 if (DECL_P (t))
5438 error ("%qD is not a variable in clause %<lastprivate%>", t);
5439 else
5440 error ("%qE is not a variable in clause %<lastprivate%>", t);
5441 remove = true;
5443 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
5444 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
5446 error ("%qD appears more than once in data clauses", t);
5447 remove = true;
5449 else
5450 bitmap_set_bit (&lastprivate_head, DECL_UID (t));
5451 break;
5453 case OMP_CLAUSE_IF:
5454 t = OMP_CLAUSE_IF_EXPR (c);
5455 t = maybe_convert_cond (t);
5456 if (t == error_mark_node)
5457 remove = true;
5458 else if (!processing_template_decl)
5459 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5460 OMP_CLAUSE_IF_EXPR (c) = t;
5461 break;
5463 case OMP_CLAUSE_FINAL:
5464 t = OMP_CLAUSE_FINAL_EXPR (c);
5465 t = maybe_convert_cond (t);
5466 if (t == error_mark_node)
5467 remove = true;
5468 else if (!processing_template_decl)
5469 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5470 OMP_CLAUSE_FINAL_EXPR (c) = t;
5471 break;
5473 case OMP_CLAUSE_NUM_THREADS:
5474 t = OMP_CLAUSE_NUM_THREADS_EXPR (c);
5475 if (t == error_mark_node)
5476 remove = true;
5477 else if (!type_dependent_expression_p (t)
5478 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5480 error ("num_threads expression must be integral");
5481 remove = true;
5483 else
5485 t = mark_rvalue_use (t);
5486 if (!processing_template_decl)
5487 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5488 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
5490 break;
5492 case OMP_CLAUSE_SCHEDULE:
5493 t = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c);
5494 if (t == NULL)
5496 else if (t == error_mark_node)
5497 remove = true;
5498 else if (!type_dependent_expression_p (t)
5499 && (OMP_CLAUSE_SCHEDULE_KIND (c)
5500 != OMP_CLAUSE_SCHEDULE_CILKFOR)
5501 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5503 error ("schedule chunk size expression must be integral");
5504 remove = true;
5506 else
5508 t = mark_rvalue_use (t);
5509 if (!processing_template_decl)
5511 if (OMP_CLAUSE_SCHEDULE_KIND (c)
5512 == OMP_CLAUSE_SCHEDULE_CILKFOR)
5514 t = convert_to_integer (long_integer_type_node, t);
5515 if (t == error_mark_node)
5517 remove = true;
5518 break;
5521 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5523 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
5525 break;
5527 case OMP_CLAUSE_SIMDLEN:
5528 case OMP_CLAUSE_SAFELEN:
5529 t = OMP_CLAUSE_OPERAND (c, 0);
5530 if (t == error_mark_node)
5531 remove = true;
5532 else if (!type_dependent_expression_p (t)
5533 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5535 error ("%qs length expression must be integral",
5536 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5537 remove = true;
5539 else
5541 t = mark_rvalue_use (t);
5542 t = maybe_constant_value (t);
5543 if (!processing_template_decl)
5545 if (TREE_CODE (t) != INTEGER_CST
5546 || tree_int_cst_sgn (t) != 1)
5548 error ("%qs length expression must be positive constant"
5549 " integer expression",
5550 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5551 remove = true;
5554 OMP_CLAUSE_OPERAND (c, 0) = t;
5556 break;
5558 case OMP_CLAUSE_NUM_TEAMS:
5559 t = OMP_CLAUSE_NUM_TEAMS_EXPR (c);
5560 if (t == error_mark_node)
5561 remove = true;
5562 else if (!type_dependent_expression_p (t)
5563 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5565 error ("%<num_teams%> expression must be integral");
5566 remove = true;
5568 else
5570 t = mark_rvalue_use (t);
5571 if (!processing_template_decl)
5572 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5573 OMP_CLAUSE_NUM_TEAMS_EXPR (c) = t;
5575 break;
5577 case OMP_CLAUSE_ASYNC:
5578 t = OMP_CLAUSE_ASYNC_EXPR (c);
5579 if (t == error_mark_node)
5580 remove = true;
5581 else if (!type_dependent_expression_p (t)
5582 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5584 error ("%<async%> expression must be integral");
5585 remove = true;
5587 else
5589 t = mark_rvalue_use (t);
5590 if (!processing_template_decl)
5591 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5592 OMP_CLAUSE_ASYNC_EXPR (c) = t;
5594 break;
5596 case OMP_CLAUSE_VECTOR_LENGTH:
5597 t = OMP_CLAUSE_VECTOR_LENGTH_EXPR (c);
5598 t = maybe_convert_cond (t);
5599 if (t == error_mark_node)
5600 remove = true;
5601 else if (!processing_template_decl)
5602 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5603 OMP_CLAUSE_VECTOR_LENGTH_EXPR (c) = t;
5604 break;
5606 case OMP_CLAUSE_WAIT:
5607 t = OMP_CLAUSE_WAIT_EXPR (c);
5608 if (t == error_mark_node)
5609 remove = true;
5610 else if (!processing_template_decl)
5611 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5612 OMP_CLAUSE_WAIT_EXPR (c) = t;
5613 break;
5615 case OMP_CLAUSE_THREAD_LIMIT:
5616 t = OMP_CLAUSE_THREAD_LIMIT_EXPR (c);
5617 if (t == error_mark_node)
5618 remove = true;
5619 else if (!type_dependent_expression_p (t)
5620 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5622 error ("%<thread_limit%> expression must be integral");
5623 remove = true;
5625 else
5627 t = mark_rvalue_use (t);
5628 if (!processing_template_decl)
5629 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5630 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = t;
5632 break;
5634 case OMP_CLAUSE_DEVICE:
5635 t = OMP_CLAUSE_DEVICE_ID (c);
5636 if (t == error_mark_node)
5637 remove = true;
5638 else if (!type_dependent_expression_p (t)
5639 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5641 error ("%<device%> id must be integral");
5642 remove = true;
5644 else
5646 t = mark_rvalue_use (t);
5647 if (!processing_template_decl)
5648 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5649 OMP_CLAUSE_DEVICE_ID (c) = t;
5651 break;
5653 case OMP_CLAUSE_DIST_SCHEDULE:
5654 t = OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (c);
5655 if (t == NULL)
5657 else if (t == error_mark_node)
5658 remove = true;
5659 else if (!type_dependent_expression_p (t)
5660 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5662 error ("%<dist_schedule%> chunk size expression must be "
5663 "integral");
5664 remove = true;
5666 else
5668 t = mark_rvalue_use (t);
5669 if (!processing_template_decl)
5670 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5671 OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (c) = t;
5673 break;
5675 case OMP_CLAUSE_ALIGNED:
5676 t = OMP_CLAUSE_DECL (c);
5677 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
5679 if (processing_template_decl)
5680 break;
5681 if (DECL_P (t))
5682 error ("%qD is not a variable in %<aligned%> clause", t);
5683 else
5684 error ("%qE is not a variable in %<aligned%> clause", t);
5685 remove = true;
5687 else if (!type_dependent_expression_p (t)
5688 && TREE_CODE (TREE_TYPE (t)) != POINTER_TYPE
5689 && TREE_CODE (TREE_TYPE (t)) != ARRAY_TYPE
5690 && (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE
5691 || (!POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (t)))
5692 && (TREE_CODE (TREE_TYPE (TREE_TYPE (t)))
5693 != ARRAY_TYPE))))
5695 error_at (OMP_CLAUSE_LOCATION (c),
5696 "%qE in %<aligned%> clause is neither a pointer nor "
5697 "an array nor a reference to pointer or array", t);
5698 remove = true;
5700 else if (bitmap_bit_p (&aligned_head, DECL_UID (t)))
5702 error ("%qD appears more than once in %<aligned%> clauses", t);
5703 remove = true;
5705 else
5706 bitmap_set_bit (&aligned_head, DECL_UID (t));
5707 t = OMP_CLAUSE_ALIGNED_ALIGNMENT (c);
5708 if (t == error_mark_node)
5709 remove = true;
5710 else if (t == NULL_TREE)
5711 break;
5712 else if (!type_dependent_expression_p (t)
5713 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5715 error ("%<aligned%> clause alignment expression must "
5716 "be integral");
5717 remove = true;
5719 else
5721 t = mark_rvalue_use (t);
5722 t = maybe_constant_value (t);
5723 if (!processing_template_decl)
5725 if (TREE_CODE (t) != INTEGER_CST
5726 || tree_int_cst_sgn (t) != 1)
5728 error ("%<aligned%> clause alignment expression must be "
5729 "positive constant integer expression");
5730 remove = true;
5733 OMP_CLAUSE_ALIGNED_ALIGNMENT (c) = t;
5735 break;
5737 case OMP_CLAUSE_DEPEND:
5738 t = OMP_CLAUSE_DECL (c);
5739 if (TREE_CODE (t) == TREE_LIST)
5741 if (handle_omp_array_sections (c))
5742 remove = true;
5743 break;
5745 if (t == error_mark_node)
5746 remove = true;
5747 else if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
5749 if (processing_template_decl)
5750 break;
5751 if (DECL_P (t))
5752 error ("%qD is not a variable in %<depend%> clause", t);
5753 else
5754 error ("%qE is not a variable in %<depend%> clause", t);
5755 remove = true;
5757 else if (!processing_template_decl
5758 && !cxx_mark_addressable (t))
5759 remove = true;
5760 break;
5762 case OMP_CLAUSE_MAP:
5763 case OMP_CLAUSE_TO:
5764 case OMP_CLAUSE_FROM:
5765 case OMP_CLAUSE__CACHE_:
5766 t = OMP_CLAUSE_DECL (c);
5767 if (TREE_CODE (t) == TREE_LIST)
5769 if (handle_omp_array_sections (c))
5770 remove = true;
5771 else
5773 t = OMP_CLAUSE_DECL (c);
5774 if (TREE_CODE (t) != TREE_LIST
5775 && !type_dependent_expression_p (t)
5776 && !cp_omp_mappable_type (TREE_TYPE (t)))
5778 error_at (OMP_CLAUSE_LOCATION (c),
5779 "array section does not have mappable type "
5780 "in %qs clause",
5781 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5782 remove = true;
5785 break;
5787 if (t == error_mark_node)
5788 remove = true;
5789 else if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
5791 if (processing_template_decl)
5792 break;
5793 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
5794 && OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_POINTER)
5795 break;
5796 if (DECL_P (t))
5797 error ("%qD is not a variable in %qs clause", t,
5798 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5799 else
5800 error ("%qE is not a variable in %qs clause", t,
5801 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5802 remove = true;
5804 else if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
5806 error ("%qD is threadprivate variable in %qs clause", t,
5807 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5808 remove = true;
5810 else if (!processing_template_decl
5811 && TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE
5812 && !cxx_mark_addressable (t))
5813 remove = true;
5814 else if (!(OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
5815 && OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_POINTER)
5816 && !type_dependent_expression_p (t)
5817 && !cp_omp_mappable_type ((TREE_CODE (TREE_TYPE (t))
5818 == REFERENCE_TYPE)
5819 ? TREE_TYPE (TREE_TYPE (t))
5820 : TREE_TYPE (t)))
5822 error_at (OMP_CLAUSE_LOCATION (c),
5823 "%qD does not have a mappable type in %qs clause", t,
5824 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5825 remove = true;
5827 else if (bitmap_bit_p (&generic_head, DECL_UID (t)))
5829 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP)
5830 error ("%qD appears more than once in motion clauses", t);
5831 else
5832 error ("%qD appears more than once in map clauses", t);
5833 remove = true;
5835 else
5836 bitmap_set_bit (&generic_head, DECL_UID (t));
5837 break;
5839 case OMP_CLAUSE_UNIFORM:
5840 t = OMP_CLAUSE_DECL (c);
5841 if (TREE_CODE (t) != PARM_DECL)
5843 if (processing_template_decl)
5844 break;
5845 if (DECL_P (t))
5846 error ("%qD is not an argument in %<uniform%> clause", t);
5847 else
5848 error ("%qE is not an argument in %<uniform%> clause", t);
5849 remove = true;
5850 break;
5852 goto check_dup_generic;
5854 case OMP_CLAUSE_NOWAIT:
5855 case OMP_CLAUSE_ORDERED:
5856 case OMP_CLAUSE_DEFAULT:
5857 case OMP_CLAUSE_UNTIED:
5858 case OMP_CLAUSE_COLLAPSE:
5859 case OMP_CLAUSE_MERGEABLE:
5860 case OMP_CLAUSE_PARALLEL:
5861 case OMP_CLAUSE_FOR:
5862 case OMP_CLAUSE_SECTIONS:
5863 case OMP_CLAUSE_TASKGROUP:
5864 case OMP_CLAUSE_PROC_BIND:
5865 case OMP_CLAUSE__CILK_FOR_COUNT_:
5866 break;
5868 case OMP_CLAUSE_INBRANCH:
5869 case OMP_CLAUSE_NOTINBRANCH:
5870 if (branch_seen)
5872 error ("%<inbranch%> clause is incompatible with "
5873 "%<notinbranch%>");
5874 remove = true;
5876 branch_seen = true;
5877 break;
5879 default:
5880 gcc_unreachable ();
5883 if (remove)
5884 *pc = OMP_CLAUSE_CHAIN (c);
5885 else
5886 pc = &OMP_CLAUSE_CHAIN (c);
5889 for (pc = &clauses, c = clauses; c ; c = *pc)
5891 enum omp_clause_code c_kind = OMP_CLAUSE_CODE (c);
5892 bool remove = false;
5893 bool need_complete_non_reference = false;
5894 bool need_default_ctor = false;
5895 bool need_copy_ctor = false;
5896 bool need_copy_assignment = false;
5897 bool need_implicitly_determined = false;
5898 bool need_dtor = false;
5899 tree type, inner_type;
5901 switch (c_kind)
5903 case OMP_CLAUSE_SHARED:
5904 need_implicitly_determined = true;
5905 break;
5906 case OMP_CLAUSE_PRIVATE:
5907 need_complete_non_reference = true;
5908 need_default_ctor = true;
5909 need_dtor = true;
5910 need_implicitly_determined = true;
5911 break;
5912 case OMP_CLAUSE_FIRSTPRIVATE:
5913 need_complete_non_reference = true;
5914 need_copy_ctor = true;
5915 need_dtor = true;
5916 need_implicitly_determined = true;
5917 break;
5918 case OMP_CLAUSE_LASTPRIVATE:
5919 need_complete_non_reference = true;
5920 need_copy_assignment = true;
5921 need_implicitly_determined = true;
5922 break;
5923 case OMP_CLAUSE_REDUCTION:
5924 need_implicitly_determined = true;
5925 break;
5926 case OMP_CLAUSE_COPYPRIVATE:
5927 need_copy_assignment = true;
5928 break;
5929 case OMP_CLAUSE_COPYIN:
5930 need_copy_assignment = true;
5931 break;
5932 case OMP_CLAUSE_NOWAIT:
5933 if (copyprivate_seen)
5935 error_at (OMP_CLAUSE_LOCATION (c),
5936 "%<nowait%> clause must not be used together "
5937 "with %<copyprivate%>");
5938 *pc = OMP_CLAUSE_CHAIN (c);
5939 continue;
5941 /* FALLTHRU */
5942 default:
5943 pc = &OMP_CLAUSE_CHAIN (c);
5944 continue;
5947 t = OMP_CLAUSE_DECL (c);
5948 if (processing_template_decl
5949 && !VAR_P (t) && TREE_CODE (t) != PARM_DECL)
5951 pc = &OMP_CLAUSE_CHAIN (c);
5952 continue;
5955 switch (c_kind)
5957 case OMP_CLAUSE_LASTPRIVATE:
5958 if (!bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
5960 need_default_ctor = true;
5961 need_dtor = true;
5963 break;
5965 case OMP_CLAUSE_REDUCTION:
5966 if (finish_omp_reduction_clause (c, &need_default_ctor,
5967 &need_dtor))
5968 remove = true;
5969 else
5970 t = OMP_CLAUSE_DECL (c);
5971 break;
5973 case OMP_CLAUSE_COPYIN:
5974 if (!VAR_P (t) || !DECL_THREAD_LOCAL_P (t))
5976 error ("%qE must be %<threadprivate%> for %<copyin%>", t);
5977 remove = true;
5979 break;
5981 default:
5982 break;
5985 if (need_complete_non_reference || need_copy_assignment)
5987 t = require_complete_type (t);
5988 if (t == error_mark_node)
5989 remove = true;
5990 else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
5991 && need_complete_non_reference)
5993 error ("%qE has reference type for %qs", t,
5994 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5995 remove = true;
5998 if (need_implicitly_determined)
6000 const char *share_name = NULL;
6002 if (VAR_P (t) && DECL_THREAD_LOCAL_P (t))
6003 share_name = "threadprivate";
6004 else switch (cxx_omp_predetermined_sharing (t))
6006 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
6007 break;
6008 case OMP_CLAUSE_DEFAULT_SHARED:
6009 /* const vars may be specified in firstprivate clause. */
6010 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
6011 && cxx_omp_const_qual_no_mutable (t))
6012 break;
6013 share_name = "shared";
6014 break;
6015 case OMP_CLAUSE_DEFAULT_PRIVATE:
6016 share_name = "private";
6017 break;
6018 default:
6019 gcc_unreachable ();
6021 if (share_name)
6023 error ("%qE is predetermined %qs for %qs",
6024 t, share_name, omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
6025 remove = true;
6029 /* We're interested in the base element, not arrays. */
6030 inner_type = type = TREE_TYPE (t);
6031 while (TREE_CODE (inner_type) == ARRAY_TYPE)
6032 inner_type = TREE_TYPE (inner_type);
6034 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
6035 && TREE_CODE (inner_type) == REFERENCE_TYPE)
6036 inner_type = TREE_TYPE (inner_type);
6038 /* Check for special function availability by building a call to one.
6039 Save the results, because later we won't be in the right context
6040 for making these queries. */
6041 if (CLASS_TYPE_P (inner_type)
6042 && COMPLETE_TYPE_P (inner_type)
6043 && (need_default_ctor || need_copy_ctor
6044 || need_copy_assignment || need_dtor)
6045 && !type_dependent_expression_p (t)
6046 && cxx_omp_create_clause_info (c, inner_type, need_default_ctor,
6047 need_copy_ctor, need_copy_assignment,
6048 need_dtor))
6049 remove = true;
6051 if (remove)
6052 *pc = OMP_CLAUSE_CHAIN (c);
6053 else
6054 pc = &OMP_CLAUSE_CHAIN (c);
6057 bitmap_obstack_release (NULL);
6058 return clauses;
6061 /* For all variables in the tree_list VARS, mark them as thread local. */
6063 void
6064 finish_omp_threadprivate (tree vars)
6066 tree t;
6068 /* Mark every variable in VARS to be assigned thread local storage. */
6069 for (t = vars; t; t = TREE_CHAIN (t))
6071 tree v = TREE_PURPOSE (t);
6073 if (error_operand_p (v))
6075 else if (!VAR_P (v))
6076 error ("%<threadprivate%> %qD is not file, namespace "
6077 "or block scope variable", v);
6078 /* If V had already been marked threadprivate, it doesn't matter
6079 whether it had been used prior to this point. */
6080 else if (TREE_USED (v)
6081 && (DECL_LANG_SPECIFIC (v) == NULL
6082 || !CP_DECL_THREADPRIVATE_P (v)))
6083 error ("%qE declared %<threadprivate%> after first use", v);
6084 else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
6085 error ("automatic variable %qE cannot be %<threadprivate%>", v);
6086 else if (! COMPLETE_TYPE_P (complete_type (TREE_TYPE (v))))
6087 error ("%<threadprivate%> %qE has incomplete type", v);
6088 else if (TREE_STATIC (v) && TYPE_P (CP_DECL_CONTEXT (v))
6089 && CP_DECL_CONTEXT (v) != current_class_type)
6090 error ("%<threadprivate%> %qE directive not "
6091 "in %qT definition", v, CP_DECL_CONTEXT (v));
6092 else
6094 /* Allocate a LANG_SPECIFIC structure for V, if needed. */
6095 if (DECL_LANG_SPECIFIC (v) == NULL)
6097 retrofit_lang_decl (v);
6099 /* Make sure that DECL_DISCRIMINATOR_P continues to be true
6100 after the allocation of the lang_decl structure. */
6101 if (DECL_DISCRIMINATOR_P (v))
6102 DECL_LANG_SPECIFIC (v)->u.base.u2sel = 1;
6105 if (! DECL_THREAD_LOCAL_P (v))
6107 set_decl_tls_model (v, decl_default_tls_model (v));
6108 /* If rtl has been already set for this var, call
6109 make_decl_rtl once again, so that encode_section_info
6110 has a chance to look at the new decl flags. */
6111 if (DECL_RTL_SET_P (v))
6112 make_decl_rtl (v);
6114 CP_DECL_THREADPRIVATE_P (v) = 1;
6119 /* Build an OpenMP structured block. */
6121 tree
6122 begin_omp_structured_block (void)
6124 return do_pushlevel (sk_omp);
6127 tree
6128 finish_omp_structured_block (tree block)
6130 return do_poplevel (block);
6133 /* Generate OACC_DATA, with CLAUSES and BLOCK as its compound
6134 statement. LOC is the location of the OACC_DATA. */
6136 tree
6137 finish_oacc_data (tree clauses, tree block)
6139 tree stmt;
6141 block = finish_omp_structured_block (block);
6143 stmt = make_node (OACC_DATA);
6144 TREE_TYPE (stmt) = void_type_node;
6145 OACC_DATA_CLAUSES (stmt) = clauses;
6146 OACC_DATA_BODY (stmt) = block;
6148 return add_stmt (stmt);
6151 /* Generate OACC_KERNELS, with CLAUSES and BLOCK as its compound
6152 statement. LOC is the location of the OACC_KERNELS. */
6154 tree
6155 finish_oacc_kernels (tree clauses, tree block)
6157 tree stmt;
6159 block = finish_omp_structured_block (block);
6161 stmt = make_node (OACC_KERNELS);
6162 TREE_TYPE (stmt) = void_type_node;
6163 OACC_KERNELS_CLAUSES (stmt) = clauses;
6164 OACC_KERNELS_BODY (stmt) = block;
6166 return add_stmt (stmt);
6169 /* Generate OACC_PARALLEL, with CLAUSES and BLOCK as its compound
6170 statement. LOC is the location of the OACC_PARALLEL. */
6172 tree
6173 finish_oacc_parallel (tree clauses, tree block)
6175 tree stmt;
6177 block = finish_omp_structured_block (block);
6179 stmt = make_node (OACC_PARALLEL);
6180 TREE_TYPE (stmt) = void_type_node;
6181 OACC_PARALLEL_CLAUSES (stmt) = clauses;
6182 OACC_PARALLEL_BODY (stmt) = block;
6184 return add_stmt (stmt);
6187 /* Similarly, except force the retention of the BLOCK. */
6189 tree
6190 begin_omp_parallel (void)
6192 keep_next_level (true);
6193 return begin_omp_structured_block ();
6196 tree
6197 finish_omp_parallel (tree clauses, tree body)
6199 tree stmt;
6201 body = finish_omp_structured_block (body);
6203 stmt = make_node (OMP_PARALLEL);
6204 TREE_TYPE (stmt) = void_type_node;
6205 OMP_PARALLEL_CLAUSES (stmt) = clauses;
6206 OMP_PARALLEL_BODY (stmt) = body;
6208 return add_stmt (stmt);
6211 tree
6212 begin_omp_task (void)
6214 keep_next_level (true);
6215 return begin_omp_structured_block ();
6218 tree
6219 finish_omp_task (tree clauses, tree body)
6221 tree stmt;
6223 body = finish_omp_structured_block (body);
6225 stmt = make_node (OMP_TASK);
6226 TREE_TYPE (stmt) = void_type_node;
6227 OMP_TASK_CLAUSES (stmt) = clauses;
6228 OMP_TASK_BODY (stmt) = body;
6230 return add_stmt (stmt);
6233 /* Helper function for finish_omp_for. Convert Ith random access iterator
6234 into integral iterator. Return FALSE if successful. */
6236 static bool
6237 handle_omp_for_class_iterator (int i, location_t locus, tree declv, tree initv,
6238 tree condv, tree incrv, tree *body,
6239 tree *pre_body, tree clauses, tree *lastp)
6241 tree diff, iter_init, iter_incr = NULL, last;
6242 tree incr_var = NULL, orig_pre_body, orig_body, c;
6243 tree decl = TREE_VEC_ELT (declv, i);
6244 tree init = TREE_VEC_ELT (initv, i);
6245 tree cond = TREE_VEC_ELT (condv, i);
6246 tree incr = TREE_VEC_ELT (incrv, i);
6247 tree iter = decl;
6248 location_t elocus = locus;
6250 if (init && EXPR_HAS_LOCATION (init))
6251 elocus = EXPR_LOCATION (init);
6253 switch (TREE_CODE (cond))
6255 case GT_EXPR:
6256 case GE_EXPR:
6257 case LT_EXPR:
6258 case LE_EXPR:
6259 case NE_EXPR:
6260 if (TREE_OPERAND (cond, 1) == iter)
6261 cond = build2 (swap_tree_comparison (TREE_CODE (cond)),
6262 TREE_TYPE (cond), iter, TREE_OPERAND (cond, 0));
6263 if (TREE_OPERAND (cond, 0) != iter)
6264 cond = error_mark_node;
6265 else
6267 tree tem = build_x_binary_op (EXPR_LOCATION (cond),
6268 TREE_CODE (cond),
6269 iter, ERROR_MARK,
6270 TREE_OPERAND (cond, 1), ERROR_MARK,
6271 NULL, tf_warning_or_error);
6272 if (error_operand_p (tem))
6273 return true;
6275 break;
6276 default:
6277 cond = error_mark_node;
6278 break;
6280 if (cond == error_mark_node)
6282 error_at (elocus, "invalid controlling predicate");
6283 return true;
6285 diff = build_x_binary_op (elocus, MINUS_EXPR, TREE_OPERAND (cond, 1),
6286 ERROR_MARK, iter, ERROR_MARK, NULL,
6287 tf_warning_or_error);
6288 if (error_operand_p (diff))
6289 return true;
6290 if (TREE_CODE (TREE_TYPE (diff)) != INTEGER_TYPE)
6292 error_at (elocus, "difference between %qE and %qD does not have integer type",
6293 TREE_OPERAND (cond, 1), iter);
6294 return true;
6297 switch (TREE_CODE (incr))
6299 case PREINCREMENT_EXPR:
6300 case PREDECREMENT_EXPR:
6301 case POSTINCREMENT_EXPR:
6302 case POSTDECREMENT_EXPR:
6303 if (TREE_OPERAND (incr, 0) != iter)
6305 incr = error_mark_node;
6306 break;
6308 iter_incr = build_x_unary_op (EXPR_LOCATION (incr),
6309 TREE_CODE (incr), iter,
6310 tf_warning_or_error);
6311 if (error_operand_p (iter_incr))
6312 return true;
6313 else if (TREE_CODE (incr) == PREINCREMENT_EXPR
6314 || TREE_CODE (incr) == POSTINCREMENT_EXPR)
6315 incr = integer_one_node;
6316 else
6317 incr = integer_minus_one_node;
6318 break;
6319 case MODIFY_EXPR:
6320 if (TREE_OPERAND (incr, 0) != iter)
6321 incr = error_mark_node;
6322 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
6323 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
6325 tree rhs = TREE_OPERAND (incr, 1);
6326 if (TREE_OPERAND (rhs, 0) == iter)
6328 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 1)))
6329 != INTEGER_TYPE)
6330 incr = error_mark_node;
6331 else
6333 iter_incr = build_x_modify_expr (EXPR_LOCATION (rhs),
6334 iter, TREE_CODE (rhs),
6335 TREE_OPERAND (rhs, 1),
6336 tf_warning_or_error);
6337 if (error_operand_p (iter_incr))
6338 return true;
6339 incr = TREE_OPERAND (rhs, 1);
6340 incr = cp_convert (TREE_TYPE (diff), incr,
6341 tf_warning_or_error);
6342 if (TREE_CODE (rhs) == MINUS_EXPR)
6344 incr = build1 (NEGATE_EXPR, TREE_TYPE (diff), incr);
6345 incr = fold_if_not_in_template (incr);
6347 if (TREE_CODE (incr) != INTEGER_CST
6348 && (TREE_CODE (incr) != NOP_EXPR
6349 || (TREE_CODE (TREE_OPERAND (incr, 0))
6350 != INTEGER_CST)))
6351 iter_incr = NULL;
6354 else if (TREE_OPERAND (rhs, 1) == iter)
6356 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 0))) != INTEGER_TYPE
6357 || TREE_CODE (rhs) != PLUS_EXPR)
6358 incr = error_mark_node;
6359 else
6361 iter_incr = build_x_binary_op (EXPR_LOCATION (rhs),
6362 PLUS_EXPR,
6363 TREE_OPERAND (rhs, 0),
6364 ERROR_MARK, iter,
6365 ERROR_MARK, NULL,
6366 tf_warning_or_error);
6367 if (error_operand_p (iter_incr))
6368 return true;
6369 iter_incr = build_x_modify_expr (EXPR_LOCATION (rhs),
6370 iter, NOP_EXPR,
6371 iter_incr,
6372 tf_warning_or_error);
6373 if (error_operand_p (iter_incr))
6374 return true;
6375 incr = TREE_OPERAND (rhs, 0);
6376 iter_incr = NULL;
6379 else
6380 incr = error_mark_node;
6382 else
6383 incr = error_mark_node;
6384 break;
6385 default:
6386 incr = error_mark_node;
6387 break;
6390 if (incr == error_mark_node)
6392 error_at (elocus, "invalid increment expression");
6393 return true;
6396 incr = cp_convert (TREE_TYPE (diff), incr, tf_warning_or_error);
6397 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
6398 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6399 && OMP_CLAUSE_DECL (c) == iter)
6400 break;
6402 decl = create_temporary_var (TREE_TYPE (diff));
6403 pushdecl (decl);
6404 add_decl_expr (decl);
6405 last = create_temporary_var (TREE_TYPE (diff));
6406 pushdecl (last);
6407 add_decl_expr (last);
6408 if (c && iter_incr == NULL)
6410 incr_var = create_temporary_var (TREE_TYPE (diff));
6411 pushdecl (incr_var);
6412 add_decl_expr (incr_var);
6414 gcc_assert (stmts_are_full_exprs_p ());
6416 orig_pre_body = *pre_body;
6417 *pre_body = push_stmt_list ();
6418 if (orig_pre_body)
6419 add_stmt (orig_pre_body);
6420 if (init != NULL)
6421 finish_expr_stmt (build_x_modify_expr (elocus,
6422 iter, NOP_EXPR, init,
6423 tf_warning_or_error));
6424 init = build_int_cst (TREE_TYPE (diff), 0);
6425 if (c && iter_incr == NULL)
6427 finish_expr_stmt (build_x_modify_expr (elocus,
6428 incr_var, NOP_EXPR,
6429 incr, tf_warning_or_error));
6430 incr = incr_var;
6431 iter_incr = build_x_modify_expr (elocus,
6432 iter, PLUS_EXPR, incr,
6433 tf_warning_or_error);
6435 finish_expr_stmt (build_x_modify_expr (elocus,
6436 last, NOP_EXPR, init,
6437 tf_warning_or_error));
6438 *pre_body = pop_stmt_list (*pre_body);
6440 cond = cp_build_binary_op (elocus,
6441 TREE_CODE (cond), decl, diff,
6442 tf_warning_or_error);
6443 incr = build_modify_expr (elocus, decl, NULL_TREE, PLUS_EXPR,
6444 elocus, incr, NULL_TREE);
6446 orig_body = *body;
6447 *body = push_stmt_list ();
6448 iter_init = build2 (MINUS_EXPR, TREE_TYPE (diff), decl, last);
6449 iter_init = build_x_modify_expr (elocus,
6450 iter, PLUS_EXPR, iter_init,
6451 tf_warning_or_error);
6452 iter_init = build1 (NOP_EXPR, void_type_node, iter_init);
6453 finish_expr_stmt (iter_init);
6454 finish_expr_stmt (build_x_modify_expr (elocus,
6455 last, NOP_EXPR, decl,
6456 tf_warning_or_error));
6457 add_stmt (orig_body);
6458 *body = pop_stmt_list (*body);
6460 if (c)
6462 OMP_CLAUSE_LASTPRIVATE_STMT (c) = push_stmt_list ();
6463 finish_expr_stmt (iter_incr);
6464 OMP_CLAUSE_LASTPRIVATE_STMT (c)
6465 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (c));
6468 TREE_VEC_ELT (declv, i) = decl;
6469 TREE_VEC_ELT (initv, i) = init;
6470 TREE_VEC_ELT (condv, i) = cond;
6471 TREE_VEC_ELT (incrv, i) = incr;
6472 *lastp = last;
6474 return false;
6477 /* Build and validate an OMP_FOR statement. CLAUSES, BODY, COND, INCR
6478 are directly for their associated operands in the statement. DECL
6479 and INIT are a combo; if DECL is NULL then INIT ought to be a
6480 MODIFY_EXPR, and the DECL should be extracted. PRE_BODY are
6481 optional statements that need to go before the loop into its
6482 sk_omp scope. */
6484 tree
6485 finish_omp_for (location_t locus, enum tree_code code, tree declv, tree initv,
6486 tree condv, tree incrv, tree body, tree pre_body, tree clauses)
6488 tree omp_for = NULL, orig_incr = NULL;
6489 tree decl = NULL, init, cond, incr, orig_decl = NULL_TREE, block = NULL_TREE;
6490 tree last = NULL_TREE;
6491 location_t elocus;
6492 int i;
6494 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv));
6495 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv));
6496 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv));
6497 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
6499 decl = TREE_VEC_ELT (declv, i);
6500 init = TREE_VEC_ELT (initv, i);
6501 cond = TREE_VEC_ELT (condv, i);
6502 incr = TREE_VEC_ELT (incrv, i);
6503 elocus = locus;
6505 if (decl == NULL)
6507 if (init != NULL)
6508 switch (TREE_CODE (init))
6510 case MODIFY_EXPR:
6511 decl = TREE_OPERAND (init, 0);
6512 init = TREE_OPERAND (init, 1);
6513 break;
6514 case MODOP_EXPR:
6515 if (TREE_CODE (TREE_OPERAND (init, 1)) == NOP_EXPR)
6517 decl = TREE_OPERAND (init, 0);
6518 init = TREE_OPERAND (init, 2);
6520 break;
6521 default:
6522 break;
6525 if (decl == NULL)
6527 error_at (locus,
6528 "expected iteration declaration or initialization");
6529 return NULL;
6533 if (init && EXPR_HAS_LOCATION (init))
6534 elocus = EXPR_LOCATION (init);
6536 if (cond == NULL)
6538 error_at (elocus, "missing controlling predicate");
6539 return NULL;
6542 if (incr == NULL)
6544 error_at (elocus, "missing increment expression");
6545 return NULL;
6548 TREE_VEC_ELT (declv, i) = decl;
6549 TREE_VEC_ELT (initv, i) = init;
6552 if (dependent_omp_for_p (declv, initv, condv, incrv))
6554 tree stmt;
6556 stmt = make_node (code);
6558 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
6560 /* This is really just a place-holder. We'll be decomposing this
6561 again and going through the cp_build_modify_expr path below when
6562 we instantiate the thing. */
6563 TREE_VEC_ELT (initv, i)
6564 = build2 (MODIFY_EXPR, void_type_node, TREE_VEC_ELT (declv, i),
6565 TREE_VEC_ELT (initv, i));
6568 TREE_TYPE (stmt) = void_type_node;
6569 OMP_FOR_INIT (stmt) = initv;
6570 OMP_FOR_COND (stmt) = condv;
6571 OMP_FOR_INCR (stmt) = incrv;
6572 OMP_FOR_BODY (stmt) = body;
6573 OMP_FOR_PRE_BODY (stmt) = pre_body;
6574 OMP_FOR_CLAUSES (stmt) = clauses;
6576 SET_EXPR_LOCATION (stmt, locus);
6577 return add_stmt (stmt);
6580 if (processing_template_decl)
6581 orig_incr = make_tree_vec (TREE_VEC_LENGTH (incrv));
6583 for (i = 0; i < TREE_VEC_LENGTH (declv); )
6585 decl = TREE_VEC_ELT (declv, i);
6586 init = TREE_VEC_ELT (initv, i);
6587 cond = TREE_VEC_ELT (condv, i);
6588 incr = TREE_VEC_ELT (incrv, i);
6589 if (orig_incr)
6590 TREE_VEC_ELT (orig_incr, i) = incr;
6591 elocus = locus;
6593 if (init && EXPR_HAS_LOCATION (init))
6594 elocus = EXPR_LOCATION (init);
6596 if (!DECL_P (decl))
6598 error_at (elocus, "expected iteration declaration or initialization");
6599 return NULL;
6602 if (incr && TREE_CODE (incr) == MODOP_EXPR)
6604 if (orig_incr)
6605 TREE_VEC_ELT (orig_incr, i) = incr;
6606 incr = cp_build_modify_expr (TREE_OPERAND (incr, 0),
6607 TREE_CODE (TREE_OPERAND (incr, 1)),
6608 TREE_OPERAND (incr, 2),
6609 tf_warning_or_error);
6612 if (CLASS_TYPE_P (TREE_TYPE (decl)))
6614 if (code == OMP_SIMD)
6616 error_at (elocus, "%<#pragma omp simd%> used with class "
6617 "iteration variable %qE", decl);
6618 return NULL;
6620 if (code == CILK_FOR && i == 0)
6621 orig_decl = decl;
6622 if (handle_omp_for_class_iterator (i, locus, declv, initv, condv,
6623 incrv, &body, &pre_body,
6624 clauses, &last))
6625 return NULL;
6626 continue;
6629 if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))
6630 && !TYPE_PTR_P (TREE_TYPE (decl)))
6632 error_at (elocus, "invalid type for iteration variable %qE", decl);
6633 return NULL;
6636 if (!processing_template_decl)
6638 init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
6639 init = cp_build_modify_expr (decl, NOP_EXPR, init, tf_warning_or_error);
6641 else
6642 init = build2 (MODIFY_EXPR, void_type_node, decl, init);
6643 if (cond
6644 && TREE_SIDE_EFFECTS (cond)
6645 && COMPARISON_CLASS_P (cond)
6646 && !processing_template_decl)
6648 tree t = TREE_OPERAND (cond, 0);
6649 if (TREE_SIDE_EFFECTS (t)
6650 && t != decl
6651 && (TREE_CODE (t) != NOP_EXPR
6652 || TREE_OPERAND (t, 0) != decl))
6653 TREE_OPERAND (cond, 0)
6654 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6656 t = TREE_OPERAND (cond, 1);
6657 if (TREE_SIDE_EFFECTS (t)
6658 && t != decl
6659 && (TREE_CODE (t) != NOP_EXPR
6660 || TREE_OPERAND (t, 0) != decl))
6661 TREE_OPERAND (cond, 1)
6662 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6664 if (decl == error_mark_node || init == error_mark_node)
6665 return NULL;
6667 TREE_VEC_ELT (declv, i) = decl;
6668 TREE_VEC_ELT (initv, i) = init;
6669 TREE_VEC_ELT (condv, i) = cond;
6670 TREE_VEC_ELT (incrv, i) = incr;
6671 i++;
6674 if (IS_EMPTY_STMT (pre_body))
6675 pre_body = NULL;
6677 if (code == CILK_FOR && !processing_template_decl)
6678 block = push_stmt_list ();
6680 omp_for = c_finish_omp_for (locus, code, declv, initv, condv, incrv,
6681 body, pre_body);
6683 if (omp_for == NULL)
6685 if (block)
6686 pop_stmt_list (block);
6687 return NULL;
6690 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++)
6692 decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i), 0);
6693 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i);
6695 if (TREE_CODE (incr) != MODIFY_EXPR)
6696 continue;
6698 if (TREE_SIDE_EFFECTS (TREE_OPERAND (incr, 1))
6699 && BINARY_CLASS_P (TREE_OPERAND (incr, 1))
6700 && !processing_template_decl)
6702 tree t = TREE_OPERAND (TREE_OPERAND (incr, 1), 0);
6703 if (TREE_SIDE_EFFECTS (t)
6704 && t != decl
6705 && (TREE_CODE (t) != NOP_EXPR
6706 || TREE_OPERAND (t, 0) != decl))
6707 TREE_OPERAND (TREE_OPERAND (incr, 1), 0)
6708 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6710 t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
6711 if (TREE_SIDE_EFFECTS (t)
6712 && t != decl
6713 && (TREE_CODE (t) != NOP_EXPR
6714 || TREE_OPERAND (t, 0) != decl))
6715 TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
6716 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6719 if (orig_incr)
6720 TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i) = TREE_VEC_ELT (orig_incr, i);
6722 OMP_FOR_CLAUSES (omp_for) = clauses;
6724 if (block)
6726 tree omp_par = make_node (OMP_PARALLEL);
6727 TREE_TYPE (omp_par) = void_type_node;
6728 OMP_PARALLEL_CLAUSES (omp_par) = NULL_TREE;
6729 tree bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6730 TREE_SIDE_EFFECTS (bind) = 1;
6731 BIND_EXPR_BODY (bind) = pop_stmt_list (block);
6732 OMP_PARALLEL_BODY (omp_par) = bind;
6733 if (OMP_FOR_PRE_BODY (omp_for))
6735 add_stmt (OMP_FOR_PRE_BODY (omp_for));
6736 OMP_FOR_PRE_BODY (omp_for) = NULL_TREE;
6738 init = TREE_VEC_ELT (OMP_FOR_INIT (omp_for), 0);
6739 decl = TREE_OPERAND (init, 0);
6740 cond = TREE_VEC_ELT (OMP_FOR_COND (omp_for), 0);
6741 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), 0);
6742 tree t = TREE_OPERAND (cond, 1), c, clauses, *pc;
6743 clauses = OMP_FOR_CLAUSES (omp_for);
6744 OMP_FOR_CLAUSES (omp_for) = NULL_TREE;
6745 for (pc = &clauses; *pc; )
6746 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_SCHEDULE)
6748 gcc_assert (OMP_FOR_CLAUSES (omp_for) == NULL_TREE);
6749 OMP_FOR_CLAUSES (omp_for) = *pc;
6750 *pc = OMP_CLAUSE_CHAIN (*pc);
6751 OMP_CLAUSE_CHAIN (OMP_FOR_CLAUSES (omp_for)) = NULL_TREE;
6753 else
6755 gcc_assert (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE);
6756 pc = &OMP_CLAUSE_CHAIN (*pc);
6758 if (TREE_CODE (t) != INTEGER_CST)
6760 TREE_OPERAND (cond, 1) = get_temp_regvar (TREE_TYPE (t), t);
6761 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6762 OMP_CLAUSE_DECL (c) = TREE_OPERAND (cond, 1);
6763 OMP_CLAUSE_CHAIN (c) = clauses;
6764 clauses = c;
6766 if (TREE_CODE (incr) == MODIFY_EXPR)
6768 t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
6769 if (TREE_CODE (t) != INTEGER_CST)
6771 TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
6772 = get_temp_regvar (TREE_TYPE (t), t);
6773 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6774 OMP_CLAUSE_DECL (c) = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
6775 OMP_CLAUSE_CHAIN (c) = clauses;
6776 clauses = c;
6779 t = TREE_OPERAND (init, 1);
6780 if (TREE_CODE (t) != INTEGER_CST)
6782 TREE_OPERAND (init, 1) = get_temp_regvar (TREE_TYPE (t), t);
6783 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6784 OMP_CLAUSE_DECL (c) = TREE_OPERAND (init, 1);
6785 OMP_CLAUSE_CHAIN (c) = clauses;
6786 clauses = c;
6788 if (orig_decl && orig_decl != decl)
6790 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6791 OMP_CLAUSE_DECL (c) = orig_decl;
6792 OMP_CLAUSE_CHAIN (c) = clauses;
6793 clauses = c;
6795 if (last)
6797 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6798 OMP_CLAUSE_DECL (c) = last;
6799 OMP_CLAUSE_CHAIN (c) = clauses;
6800 clauses = c;
6802 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
6803 OMP_CLAUSE_DECL (c) = decl;
6804 OMP_CLAUSE_CHAIN (c) = clauses;
6805 clauses = c;
6806 c = build_omp_clause (input_location, OMP_CLAUSE__CILK_FOR_COUNT_);
6807 OMP_CLAUSE_OPERAND (c, 0)
6808 = cilk_for_number_of_iterations (omp_for);
6809 OMP_CLAUSE_CHAIN (c) = clauses;
6810 OMP_PARALLEL_CLAUSES (omp_par) = finish_omp_clauses (c);
6811 add_stmt (omp_par);
6812 return omp_par;
6814 else if (code == CILK_FOR && processing_template_decl)
6816 tree c, clauses = OMP_FOR_CLAUSES (omp_for);
6817 if (orig_decl && orig_decl != decl)
6819 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6820 OMP_CLAUSE_DECL (c) = orig_decl;
6821 OMP_CLAUSE_CHAIN (c) = clauses;
6822 clauses = c;
6824 if (last)
6826 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6827 OMP_CLAUSE_DECL (c) = last;
6828 OMP_CLAUSE_CHAIN (c) = clauses;
6829 clauses = c;
6831 OMP_FOR_CLAUSES (omp_for) = clauses;
6833 return omp_for;
6836 void
6837 finish_omp_atomic (enum tree_code code, enum tree_code opcode, tree lhs,
6838 tree rhs, tree v, tree lhs1, tree rhs1, bool seq_cst)
6840 tree orig_lhs;
6841 tree orig_rhs;
6842 tree orig_v;
6843 tree orig_lhs1;
6844 tree orig_rhs1;
6845 bool dependent_p;
6846 tree stmt;
6848 orig_lhs = lhs;
6849 orig_rhs = rhs;
6850 orig_v = v;
6851 orig_lhs1 = lhs1;
6852 orig_rhs1 = rhs1;
6853 dependent_p = false;
6854 stmt = NULL_TREE;
6856 /* Even in a template, we can detect invalid uses of the atomic
6857 pragma if neither LHS nor RHS is type-dependent. */
6858 if (processing_template_decl)
6860 dependent_p = (type_dependent_expression_p (lhs)
6861 || (rhs && type_dependent_expression_p (rhs))
6862 || (v && type_dependent_expression_p (v))
6863 || (lhs1 && type_dependent_expression_p (lhs1))
6864 || (rhs1 && type_dependent_expression_p (rhs1)));
6865 if (!dependent_p)
6867 lhs = build_non_dependent_expr (lhs);
6868 if (rhs)
6869 rhs = build_non_dependent_expr (rhs);
6870 if (v)
6871 v = build_non_dependent_expr (v);
6872 if (lhs1)
6873 lhs1 = build_non_dependent_expr (lhs1);
6874 if (rhs1)
6875 rhs1 = build_non_dependent_expr (rhs1);
6878 if (!dependent_p)
6880 bool swapped = false;
6881 if (rhs1 && cp_tree_equal (lhs, rhs))
6883 tree tem = rhs;
6884 rhs = rhs1;
6885 rhs1 = tem;
6886 swapped = !commutative_tree_code (opcode);
6888 if (rhs1 && !cp_tree_equal (lhs, rhs1))
6890 if (code == OMP_ATOMIC)
6891 error ("%<#pragma omp atomic update%> uses two different "
6892 "expressions for memory");
6893 else
6894 error ("%<#pragma omp atomic capture%> uses two different "
6895 "expressions for memory");
6896 return;
6898 if (lhs1 && !cp_tree_equal (lhs, lhs1))
6900 if (code == OMP_ATOMIC)
6901 error ("%<#pragma omp atomic update%> uses two different "
6902 "expressions for memory");
6903 else
6904 error ("%<#pragma omp atomic capture%> uses two different "
6905 "expressions for memory");
6906 return;
6908 stmt = c_finish_omp_atomic (input_location, code, opcode, lhs, rhs,
6909 v, lhs1, rhs1, swapped, seq_cst);
6910 if (stmt == error_mark_node)
6911 return;
6913 if (processing_template_decl)
6915 if (code == OMP_ATOMIC_READ)
6917 stmt = build_min_nt_loc (EXPR_LOCATION (orig_lhs),
6918 OMP_ATOMIC_READ, orig_lhs);
6919 OMP_ATOMIC_SEQ_CST (stmt) = seq_cst;
6920 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
6922 else
6924 if (opcode == NOP_EXPR)
6925 stmt = build2 (MODIFY_EXPR, void_type_node, orig_lhs, orig_rhs);
6926 else
6927 stmt = build2 (opcode, void_type_node, orig_lhs, orig_rhs);
6928 if (orig_rhs1)
6929 stmt = build_min_nt_loc (EXPR_LOCATION (orig_rhs1),
6930 COMPOUND_EXPR, orig_rhs1, stmt);
6931 if (code != OMP_ATOMIC)
6933 stmt = build_min_nt_loc (EXPR_LOCATION (orig_lhs1),
6934 code, orig_lhs1, stmt);
6935 OMP_ATOMIC_SEQ_CST (stmt) = seq_cst;
6936 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
6939 stmt = build2 (OMP_ATOMIC, void_type_node, integer_zero_node, stmt);
6940 OMP_ATOMIC_SEQ_CST (stmt) = seq_cst;
6942 finish_expr_stmt (stmt);
6945 void
6946 finish_omp_barrier (void)
6948 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_BARRIER);
6949 vec<tree, va_gc> *vec = make_tree_vector ();
6950 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
6951 release_tree_vector (vec);
6952 finish_expr_stmt (stmt);
6955 void
6956 finish_omp_flush (void)
6958 tree fn = builtin_decl_explicit (BUILT_IN_SYNC_SYNCHRONIZE);
6959 vec<tree, va_gc> *vec = make_tree_vector ();
6960 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
6961 release_tree_vector (vec);
6962 finish_expr_stmt (stmt);
6965 void
6966 finish_omp_taskwait (void)
6968 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKWAIT);
6969 vec<tree, va_gc> *vec = make_tree_vector ();
6970 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
6971 release_tree_vector (vec);
6972 finish_expr_stmt (stmt);
6975 void
6976 finish_omp_taskyield (void)
6978 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKYIELD);
6979 vec<tree, va_gc> *vec = make_tree_vector ();
6980 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
6981 release_tree_vector (vec);
6982 finish_expr_stmt (stmt);
6985 void
6986 finish_omp_cancel (tree clauses)
6988 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_CANCEL);
6989 int mask = 0;
6990 if (find_omp_clause (clauses, OMP_CLAUSE_PARALLEL))
6991 mask = 1;
6992 else if (find_omp_clause (clauses, OMP_CLAUSE_FOR))
6993 mask = 2;
6994 else if (find_omp_clause (clauses, OMP_CLAUSE_SECTIONS))
6995 mask = 4;
6996 else if (find_omp_clause (clauses, OMP_CLAUSE_TASKGROUP))
6997 mask = 8;
6998 else
7000 error ("%<#pragma omp cancel must specify one of "
7001 "%<parallel%>, %<for%>, %<sections%> or %<taskgroup%> clauses");
7002 return;
7004 vec<tree, va_gc> *vec = make_tree_vector ();
7005 tree ifc = find_omp_clause (clauses, OMP_CLAUSE_IF);
7006 if (ifc != NULL_TREE)
7008 tree type = TREE_TYPE (OMP_CLAUSE_IF_EXPR (ifc));
7009 ifc = fold_build2_loc (OMP_CLAUSE_LOCATION (ifc), NE_EXPR,
7010 boolean_type_node, OMP_CLAUSE_IF_EXPR (ifc),
7011 build_zero_cst (type));
7013 else
7014 ifc = boolean_true_node;
7015 vec->quick_push (build_int_cst (integer_type_node, mask));
7016 vec->quick_push (ifc);
7017 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
7018 release_tree_vector (vec);
7019 finish_expr_stmt (stmt);
7022 void
7023 finish_omp_cancellation_point (tree clauses)
7025 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_CANCELLATION_POINT);
7026 int mask = 0;
7027 if (find_omp_clause (clauses, OMP_CLAUSE_PARALLEL))
7028 mask = 1;
7029 else if (find_omp_clause (clauses, OMP_CLAUSE_FOR))
7030 mask = 2;
7031 else if (find_omp_clause (clauses, OMP_CLAUSE_SECTIONS))
7032 mask = 4;
7033 else if (find_omp_clause (clauses, OMP_CLAUSE_TASKGROUP))
7034 mask = 8;
7035 else
7037 error ("%<#pragma omp cancellation point must specify one of "
7038 "%<parallel%>, %<for%>, %<sections%> or %<taskgroup%> clauses");
7039 return;
7041 vec<tree, va_gc> *vec
7042 = make_tree_vector_single (build_int_cst (integer_type_node, mask));
7043 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
7044 release_tree_vector (vec);
7045 finish_expr_stmt (stmt);
7048 /* Begin a __transaction_atomic or __transaction_relaxed statement.
7049 If PCOMPOUND is non-null, this is for a function-transaction-block, and we
7050 should create an extra compound stmt. */
7052 tree
7053 begin_transaction_stmt (location_t loc, tree *pcompound, int flags)
7055 tree r;
7057 if (pcompound)
7058 *pcompound = begin_compound_stmt (0);
7060 r = build_stmt (loc, TRANSACTION_EXPR, NULL_TREE);
7062 /* Only add the statement to the function if support enabled. */
7063 if (flag_tm)
7064 add_stmt (r);
7065 else
7066 error_at (loc, ((flags & TM_STMT_ATTR_RELAXED) != 0
7067 ? G_("%<__transaction_relaxed%> without "
7068 "transactional memory support enabled")
7069 : G_("%<__transaction_atomic%> without "
7070 "transactional memory support enabled")));
7072 TRANSACTION_EXPR_BODY (r) = push_stmt_list ();
7073 TREE_SIDE_EFFECTS (r) = 1;
7074 return r;
7077 /* End a __transaction_atomic or __transaction_relaxed statement.
7078 If COMPOUND_STMT is non-null, this is for a function-transaction-block,
7079 and we should end the compound. If NOEX is non-NULL, we wrap the body in
7080 a MUST_NOT_THROW_EXPR with NOEX as condition. */
7082 void
7083 finish_transaction_stmt (tree stmt, tree compound_stmt, int flags, tree noex)
7085 TRANSACTION_EXPR_BODY (stmt) = pop_stmt_list (TRANSACTION_EXPR_BODY (stmt));
7086 TRANSACTION_EXPR_OUTER (stmt) = (flags & TM_STMT_ATTR_OUTER) != 0;
7087 TRANSACTION_EXPR_RELAXED (stmt) = (flags & TM_STMT_ATTR_RELAXED) != 0;
7088 TRANSACTION_EXPR_IS_STMT (stmt) = 1;
7090 /* noexcept specifications are not allowed for function transactions. */
7091 gcc_assert (!(noex && compound_stmt));
7092 if (noex)
7094 tree body = build_must_not_throw_expr (TRANSACTION_EXPR_BODY (stmt),
7095 noex);
7096 /* This may not be true when the STATEMENT_LIST is empty. */
7097 if (EXPR_P (body))
7098 SET_EXPR_LOCATION (body, EXPR_LOCATION (TRANSACTION_EXPR_BODY (stmt)));
7099 TREE_SIDE_EFFECTS (body) = 1;
7100 TRANSACTION_EXPR_BODY (stmt) = body;
7103 if (compound_stmt)
7104 finish_compound_stmt (compound_stmt);
7107 /* Build a __transaction_atomic or __transaction_relaxed expression. If
7108 NOEX is non-NULL, we wrap the body in a MUST_NOT_THROW_EXPR with NOEX as
7109 condition. */
7111 tree
7112 build_transaction_expr (location_t loc, tree expr, int flags, tree noex)
7114 tree ret;
7115 if (noex)
7117 expr = build_must_not_throw_expr (expr, noex);
7118 if (EXPR_P (expr))
7119 SET_EXPR_LOCATION (expr, loc);
7120 TREE_SIDE_EFFECTS (expr) = 1;
7122 ret = build1 (TRANSACTION_EXPR, TREE_TYPE (expr), expr);
7123 if (flags & TM_STMT_ATTR_RELAXED)
7124 TRANSACTION_EXPR_RELAXED (ret) = 1;
7125 TREE_SIDE_EFFECTS (ret) = 1;
7126 SET_EXPR_LOCATION (ret, loc);
7127 return ret;
7130 void
7131 init_cp_semantics (void)
7135 /* Build a STATIC_ASSERT for a static assertion with the condition
7136 CONDITION and the message text MESSAGE. LOCATION is the location
7137 of the static assertion in the source code. When MEMBER_P, this
7138 static assertion is a member of a class. */
7139 void
7140 finish_static_assert (tree condition, tree message, location_t location,
7141 bool member_p)
7143 if (message == NULL_TREE
7144 || message == error_mark_node
7145 || condition == NULL_TREE
7146 || condition == error_mark_node)
7147 return;
7149 if (check_for_bare_parameter_packs (condition))
7150 condition = error_mark_node;
7152 if (type_dependent_expression_p (condition)
7153 || value_dependent_expression_p (condition))
7155 /* We're in a template; build a STATIC_ASSERT and put it in
7156 the right place. */
7157 tree assertion;
7159 assertion = make_node (STATIC_ASSERT);
7160 STATIC_ASSERT_CONDITION (assertion) = condition;
7161 STATIC_ASSERT_MESSAGE (assertion) = message;
7162 STATIC_ASSERT_SOURCE_LOCATION (assertion) = location;
7164 if (member_p)
7165 maybe_add_class_template_decl_list (current_class_type,
7166 assertion,
7167 /*friend_p=*/0);
7168 else
7169 add_stmt (assertion);
7171 return;
7174 /* Fold the expression and convert it to a boolean value. */
7175 condition = instantiate_non_dependent_expr (condition);
7176 condition = cp_convert (boolean_type_node, condition, tf_warning_or_error);
7177 condition = maybe_constant_value (condition);
7179 if (TREE_CODE (condition) == INTEGER_CST && !integer_zerop (condition))
7180 /* Do nothing; the condition is satisfied. */
7182 else
7184 location_t saved_loc = input_location;
7186 input_location = location;
7187 if (TREE_CODE (condition) == INTEGER_CST
7188 && integer_zerop (condition))
7189 /* Report the error. */
7190 error ("static assertion failed: %s", TREE_STRING_POINTER (message));
7191 else if (condition && condition != error_mark_node)
7193 error ("non-constant condition for static assertion");
7194 if (require_potential_rvalue_constant_expression (condition))
7195 cxx_constant_value (condition);
7197 input_location = saved_loc;
7201 /* Implements the C++0x decltype keyword. Returns the type of EXPR,
7202 suitable for use as a type-specifier.
7204 ID_EXPRESSION_OR_MEMBER_ACCESS_P is true when EXPR was parsed as an
7205 id-expression or a class member access, FALSE when it was parsed as
7206 a full expression. */
7208 tree
7209 finish_decltype_type (tree expr, bool id_expression_or_member_access_p,
7210 tsubst_flags_t complain)
7212 tree type = NULL_TREE;
7214 if (!expr || error_operand_p (expr))
7215 return error_mark_node;
7217 if (TYPE_P (expr)
7218 || TREE_CODE (expr) == TYPE_DECL
7219 || (TREE_CODE (expr) == BIT_NOT_EXPR
7220 && TYPE_P (TREE_OPERAND (expr, 0))))
7222 if (complain & tf_error)
7223 error ("argument to decltype must be an expression");
7224 return error_mark_node;
7227 /* Depending on the resolution of DR 1172, we may later need to distinguish
7228 instantiation-dependent but not type-dependent expressions so that, say,
7229 A<decltype(sizeof(T))>::U doesn't require 'typename'. */
7230 if (instantiation_dependent_expression_p (expr))
7232 type = cxx_make_type (DECLTYPE_TYPE);
7233 DECLTYPE_TYPE_EXPR (type) = expr;
7234 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type)
7235 = id_expression_or_member_access_p;
7236 SET_TYPE_STRUCTURAL_EQUALITY (type);
7238 return type;
7241 /* The type denoted by decltype(e) is defined as follows: */
7243 expr = resolve_nondeduced_context (expr);
7245 if (invalid_nonstatic_memfn_p (expr, complain))
7246 return error_mark_node;
7248 if (type_unknown_p (expr))
7250 if (complain & tf_error)
7251 error ("decltype cannot resolve address of overloaded function");
7252 return error_mark_node;
7255 /* To get the size of a static data member declared as an array of
7256 unknown bound, we need to instantiate it. */
7257 if (VAR_P (expr)
7258 && VAR_HAD_UNKNOWN_BOUND (expr)
7259 && DECL_TEMPLATE_INSTANTIATION (expr))
7260 instantiate_decl (expr, /*defer_ok*/true, /*expl_inst_mem*/false);
7262 if (id_expression_or_member_access_p)
7264 /* If e is an id-expression or a class member access (5.2.5
7265 [expr.ref]), decltype(e) is defined as the type of the entity
7266 named by e. If there is no such entity, or e names a set of
7267 overloaded functions, the program is ill-formed. */
7268 if (identifier_p (expr))
7269 expr = lookup_name (expr);
7271 if (INDIRECT_REF_P (expr))
7272 /* This can happen when the expression is, e.g., "a.b". Just
7273 look at the underlying operand. */
7274 expr = TREE_OPERAND (expr, 0);
7276 if (TREE_CODE (expr) == OFFSET_REF
7277 || TREE_CODE (expr) == MEMBER_REF
7278 || TREE_CODE (expr) == SCOPE_REF)
7279 /* We're only interested in the field itself. If it is a
7280 BASELINK, we will need to see through it in the next
7281 step. */
7282 expr = TREE_OPERAND (expr, 1);
7284 if (BASELINK_P (expr))
7285 /* See through BASELINK nodes to the underlying function. */
7286 expr = BASELINK_FUNCTIONS (expr);
7288 switch (TREE_CODE (expr))
7290 case FIELD_DECL:
7291 if (DECL_BIT_FIELD_TYPE (expr))
7293 type = DECL_BIT_FIELD_TYPE (expr);
7294 break;
7296 /* Fall through for fields that aren't bitfields. */
7298 case FUNCTION_DECL:
7299 case VAR_DECL:
7300 case CONST_DECL:
7301 case PARM_DECL:
7302 case RESULT_DECL:
7303 case TEMPLATE_PARM_INDEX:
7304 expr = mark_type_use (expr);
7305 type = TREE_TYPE (expr);
7306 break;
7308 case ERROR_MARK:
7309 type = error_mark_node;
7310 break;
7312 case COMPONENT_REF:
7313 case COMPOUND_EXPR:
7314 mark_type_use (expr);
7315 type = is_bitfield_expr_with_lowered_type (expr);
7316 if (!type)
7317 type = TREE_TYPE (TREE_OPERAND (expr, 1));
7318 break;
7320 case BIT_FIELD_REF:
7321 gcc_unreachable ();
7323 case INTEGER_CST:
7324 case PTRMEM_CST:
7325 /* We can get here when the id-expression refers to an
7326 enumerator or non-type template parameter. */
7327 type = TREE_TYPE (expr);
7328 break;
7330 default:
7331 /* Handle instantiated template non-type arguments. */
7332 type = TREE_TYPE (expr);
7333 break;
7336 else
7338 /* Within a lambda-expression:
7340 Every occurrence of decltype((x)) where x is a possibly
7341 parenthesized id-expression that names an entity of
7342 automatic storage duration is treated as if x were
7343 transformed into an access to a corresponding data member
7344 of the closure type that would have been declared if x
7345 were a use of the denoted entity. */
7346 if (outer_automatic_var_p (expr)
7347 && current_function_decl
7348 && LAMBDA_FUNCTION_P (current_function_decl))
7349 type = capture_decltype (expr);
7350 else if (error_operand_p (expr))
7351 type = error_mark_node;
7352 else if (expr == current_class_ptr)
7353 /* If the expression is just "this", we want the
7354 cv-unqualified pointer for the "this" type. */
7355 type = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
7356 else
7358 /* Otherwise, where T is the type of e, if e is an lvalue,
7359 decltype(e) is defined as T&; if an xvalue, T&&; otherwise, T. */
7360 cp_lvalue_kind clk = lvalue_kind (expr);
7361 type = unlowered_expr_type (expr);
7362 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
7364 /* For vector types, pick a non-opaque variant. */
7365 if (TREE_CODE (type) == VECTOR_TYPE)
7366 type = strip_typedefs (type);
7368 if (clk != clk_none && !(clk & clk_class))
7369 type = cp_build_reference_type (type, (clk & clk_rvalueref));
7373 return type;
7376 /* Called from trait_expr_value to evaluate either __has_nothrow_assign or
7377 __has_nothrow_copy, depending on assign_p. */
7379 static bool
7380 classtype_has_nothrow_assign_or_copy_p (tree type, bool assign_p)
7382 tree fns;
7384 if (assign_p)
7386 int ix;
7387 ix = lookup_fnfields_1 (type, ansi_assopname (NOP_EXPR));
7388 if (ix < 0)
7389 return false;
7390 fns = (*CLASSTYPE_METHOD_VEC (type))[ix];
7392 else if (TYPE_HAS_COPY_CTOR (type))
7394 /* If construction of the copy constructor was postponed, create
7395 it now. */
7396 if (CLASSTYPE_LAZY_COPY_CTOR (type))
7397 lazily_declare_fn (sfk_copy_constructor, type);
7398 if (CLASSTYPE_LAZY_MOVE_CTOR (type))
7399 lazily_declare_fn (sfk_move_constructor, type);
7400 fns = CLASSTYPE_CONSTRUCTORS (type);
7402 else
7403 return false;
7405 for (; fns; fns = OVL_NEXT (fns))
7407 tree fn = OVL_CURRENT (fns);
7409 if (assign_p)
7411 if (copy_fn_p (fn) == 0)
7412 continue;
7414 else if (copy_fn_p (fn) <= 0)
7415 continue;
7417 maybe_instantiate_noexcept (fn);
7418 if (!TYPE_NOTHROW_P (TREE_TYPE (fn)))
7419 return false;
7422 return true;
7425 /* Actually evaluates the trait. */
7427 static bool
7428 trait_expr_value (cp_trait_kind kind, tree type1, tree type2)
7430 enum tree_code type_code1;
7431 tree t;
7433 type_code1 = TREE_CODE (type1);
7435 switch (kind)
7437 case CPTK_HAS_NOTHROW_ASSIGN:
7438 type1 = strip_array_types (type1);
7439 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
7440 && (trait_expr_value (CPTK_HAS_TRIVIAL_ASSIGN, type1, type2)
7441 || (CLASS_TYPE_P (type1)
7442 && classtype_has_nothrow_assign_or_copy_p (type1,
7443 true))));
7445 case CPTK_HAS_TRIVIAL_ASSIGN:
7446 /* ??? The standard seems to be missing the "or array of such a class
7447 type" wording for this trait. */
7448 type1 = strip_array_types (type1);
7449 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
7450 && (trivial_type_p (type1)
7451 || (CLASS_TYPE_P (type1)
7452 && TYPE_HAS_TRIVIAL_COPY_ASSIGN (type1))));
7454 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
7455 type1 = strip_array_types (type1);
7456 return (trait_expr_value (CPTK_HAS_TRIVIAL_CONSTRUCTOR, type1, type2)
7457 || (CLASS_TYPE_P (type1)
7458 && (t = locate_ctor (type1))
7459 && (maybe_instantiate_noexcept (t),
7460 TYPE_NOTHROW_P (TREE_TYPE (t)))));
7462 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
7463 type1 = strip_array_types (type1);
7464 return (trivial_type_p (type1)
7465 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_DFLT (type1)));
7467 case CPTK_HAS_NOTHROW_COPY:
7468 type1 = strip_array_types (type1);
7469 return (trait_expr_value (CPTK_HAS_TRIVIAL_COPY, type1, type2)
7470 || (CLASS_TYPE_P (type1)
7471 && classtype_has_nothrow_assign_or_copy_p (type1, false)));
7473 case CPTK_HAS_TRIVIAL_COPY:
7474 /* ??? The standard seems to be missing the "or array of such a class
7475 type" wording for this trait. */
7476 type1 = strip_array_types (type1);
7477 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
7478 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_COPY_CTOR (type1)));
7480 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
7481 type1 = strip_array_types (type1);
7482 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
7483 || (CLASS_TYPE_P (type1)
7484 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type1)));
7486 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
7487 return type_has_virtual_destructor (type1);
7489 case CPTK_IS_ABSTRACT:
7490 return (ABSTRACT_CLASS_TYPE_P (type1));
7492 case CPTK_IS_BASE_OF:
7493 return (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
7494 && (same_type_ignoring_top_level_qualifiers_p (type1, type2)
7495 || DERIVED_FROM_P (type1, type2)));
7497 case CPTK_IS_CLASS:
7498 return (NON_UNION_CLASS_TYPE_P (type1));
7500 case CPTK_IS_EMPTY:
7501 return (NON_UNION_CLASS_TYPE_P (type1) && CLASSTYPE_EMPTY_P (type1));
7503 case CPTK_IS_ENUM:
7504 return (type_code1 == ENUMERAL_TYPE);
7506 case CPTK_IS_FINAL:
7507 return (CLASS_TYPE_P (type1) && CLASSTYPE_FINAL (type1));
7509 case CPTK_IS_LITERAL_TYPE:
7510 return (literal_type_p (type1));
7512 case CPTK_IS_POD:
7513 return (pod_type_p (type1));
7515 case CPTK_IS_POLYMORPHIC:
7516 return (CLASS_TYPE_P (type1) && TYPE_POLYMORPHIC_P (type1));
7518 case CPTK_IS_STD_LAYOUT:
7519 return (std_layout_type_p (type1));
7521 case CPTK_IS_TRIVIAL:
7522 return (trivial_type_p (type1));
7524 case CPTK_IS_TRIVIALLY_ASSIGNABLE:
7525 return is_trivially_xible (MODIFY_EXPR, type1, type2);
7527 case CPTK_IS_TRIVIALLY_CONSTRUCTIBLE:
7528 return is_trivially_xible (INIT_EXPR, type1, type2);
7530 case CPTK_IS_TRIVIALLY_COPYABLE:
7531 return (trivially_copyable_p (type1));
7533 case CPTK_IS_UNION:
7534 return (type_code1 == UNION_TYPE);
7536 default:
7537 gcc_unreachable ();
7538 return false;
7542 /* If TYPE is an array of unknown bound, or (possibly cv-qualified)
7543 void, or a complete type, returns true, otherwise false. */
7545 static bool
7546 check_trait_type (tree type)
7548 if (type == NULL_TREE)
7549 return true;
7551 if (TREE_CODE (type) == TREE_LIST)
7552 return (check_trait_type (TREE_VALUE (type))
7553 && check_trait_type (TREE_CHAIN (type)));
7555 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
7556 && COMPLETE_TYPE_P (TREE_TYPE (type)))
7557 return true;
7559 if (VOID_TYPE_P (type))
7560 return true;
7562 return !!complete_type_or_else (strip_array_types (type), NULL_TREE);
7565 /* Process a trait expression. */
7567 tree
7568 finish_trait_expr (cp_trait_kind kind, tree type1, tree type2)
7570 if (type1 == error_mark_node
7571 || type2 == error_mark_node)
7572 return error_mark_node;
7574 if (processing_template_decl)
7576 tree trait_expr = make_node (TRAIT_EXPR);
7577 TREE_TYPE (trait_expr) = boolean_type_node;
7578 TRAIT_EXPR_TYPE1 (trait_expr) = type1;
7579 TRAIT_EXPR_TYPE2 (trait_expr) = type2;
7580 TRAIT_EXPR_KIND (trait_expr) = kind;
7581 return trait_expr;
7584 switch (kind)
7586 case CPTK_HAS_NOTHROW_ASSIGN:
7587 case CPTK_HAS_TRIVIAL_ASSIGN:
7588 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
7589 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
7590 case CPTK_HAS_NOTHROW_COPY:
7591 case CPTK_HAS_TRIVIAL_COPY:
7592 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
7593 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
7594 case CPTK_IS_ABSTRACT:
7595 case CPTK_IS_EMPTY:
7596 case CPTK_IS_FINAL:
7597 case CPTK_IS_LITERAL_TYPE:
7598 case CPTK_IS_POD:
7599 case CPTK_IS_POLYMORPHIC:
7600 case CPTK_IS_STD_LAYOUT:
7601 case CPTK_IS_TRIVIAL:
7602 case CPTK_IS_TRIVIALLY_COPYABLE:
7603 if (!check_trait_type (type1))
7604 return error_mark_node;
7605 break;
7607 case CPTK_IS_TRIVIALLY_ASSIGNABLE:
7608 case CPTK_IS_TRIVIALLY_CONSTRUCTIBLE:
7609 if (!check_trait_type (type1)
7610 || !check_trait_type (type2))
7611 return error_mark_node;
7612 break;
7614 case CPTK_IS_BASE_OF:
7615 if (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
7616 && !same_type_ignoring_top_level_qualifiers_p (type1, type2)
7617 && !complete_type_or_else (type2, NULL_TREE))
7618 /* We already issued an error. */
7619 return error_mark_node;
7620 break;
7622 case CPTK_IS_CLASS:
7623 case CPTK_IS_ENUM:
7624 case CPTK_IS_UNION:
7625 break;
7627 default:
7628 gcc_unreachable ();
7631 return (trait_expr_value (kind, type1, type2)
7632 ? boolean_true_node : boolean_false_node);
7635 /* Do-nothing variants of functions to handle pragma FLOAT_CONST_DECIMAL64,
7636 which is ignored for C++. */
7638 void
7639 set_float_const_decimal64 (void)
7643 void
7644 clear_float_const_decimal64 (void)
7648 bool
7649 float_const_decimal64_p (void)
7651 return 0;
7655 /* Return true if T designates the implied `this' parameter. */
7657 bool
7658 is_this_parameter (tree t)
7660 if (!DECL_P (t) || DECL_NAME (t) != this_identifier)
7661 return false;
7662 gcc_assert (TREE_CODE (t) == PARM_DECL || is_capture_proxy (t));
7663 return true;
7666 /* Insert the deduced return type for an auto function. */
7668 void
7669 apply_deduced_return_type (tree fco, tree return_type)
7671 tree result;
7673 if (return_type == error_mark_node)
7674 return;
7676 if (LAMBDA_FUNCTION_P (fco))
7678 tree lambda = CLASSTYPE_LAMBDA_EXPR (current_class_type);
7679 LAMBDA_EXPR_RETURN_TYPE (lambda) = return_type;
7682 if (DECL_CONV_FN_P (fco))
7683 DECL_NAME (fco) = mangle_conv_op_name_for_type (return_type);
7685 TREE_TYPE (fco) = change_return_type (return_type, TREE_TYPE (fco));
7687 result = DECL_RESULT (fco);
7688 if (result == NULL_TREE)
7689 return;
7690 if (TREE_TYPE (result) == return_type)
7691 return;
7693 /* We already have a DECL_RESULT from start_preparsed_function.
7694 Now we need to redo the work it and allocate_struct_function
7695 did to reflect the new type. */
7696 gcc_assert (current_function_decl == fco);
7697 result = build_decl (input_location, RESULT_DECL, NULL_TREE,
7698 TYPE_MAIN_VARIANT (return_type));
7699 DECL_ARTIFICIAL (result) = 1;
7700 DECL_IGNORED_P (result) = 1;
7701 cp_apply_type_quals_to_decl (cp_type_quals (return_type),
7702 result);
7704 DECL_RESULT (fco) = result;
7706 if (!processing_template_decl)
7708 if (!VOID_TYPE_P (TREE_TYPE (result)))
7709 complete_type_or_else (TREE_TYPE (result), NULL_TREE);
7710 bool aggr = aggregate_value_p (result, fco);
7711 #ifdef PCC_STATIC_STRUCT_RETURN
7712 cfun->returns_pcc_struct = aggr;
7713 #endif
7714 cfun->returns_struct = aggr;
7719 /* DECL is a local variable or parameter from the surrounding scope of a
7720 lambda-expression. Returns the decltype for a use of the capture field
7721 for DECL even if it hasn't been captured yet. */
7723 static tree
7724 capture_decltype (tree decl)
7726 tree lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
7727 /* FIXME do lookup instead of list walk? */
7728 tree cap = value_member (decl, LAMBDA_EXPR_CAPTURE_LIST (lam));
7729 tree type;
7731 if (cap)
7732 type = TREE_TYPE (TREE_PURPOSE (cap));
7733 else
7734 switch (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam))
7736 case CPLD_NONE:
7737 error ("%qD is not captured", decl);
7738 return error_mark_node;
7740 case CPLD_COPY:
7741 type = TREE_TYPE (decl);
7742 if (TREE_CODE (type) == REFERENCE_TYPE
7743 && TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE)
7744 type = TREE_TYPE (type);
7745 break;
7747 case CPLD_REFERENCE:
7748 type = TREE_TYPE (decl);
7749 if (TREE_CODE (type) != REFERENCE_TYPE)
7750 type = build_reference_type (TREE_TYPE (decl));
7751 break;
7753 default:
7754 gcc_unreachable ();
7757 if (TREE_CODE (type) != REFERENCE_TYPE)
7759 if (!LAMBDA_EXPR_MUTABLE_P (lam))
7760 type = cp_build_qualified_type (type, (cp_type_quals (type)
7761 |TYPE_QUAL_CONST));
7762 type = build_reference_type (type);
7764 return type;
7767 #include "gt-cp-semantics.h"