PR preprocessor/63831
[official-gcc.git] / gcc / cp / semantics.c
blobbea3b1fbe68288764521caf2a42b07ad01d4e187
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-2014 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 "tree.h"
31 #include "stmt.h"
32 #include "varasm.h"
33 #include "stor-layout.h"
34 #include "stringpool.h"
35 #include "cp-tree.h"
36 #include "c-family/c-common.h"
37 #include "c-family/c-objc.h"
38 #include "tree-inline.h"
39 #include "intl.h"
40 #include "toplev.h"
41 #include "flags.h"
42 #include "timevar.h"
43 #include "diagnostic.h"
44 #include "hash-map.h"
45 #include "is-a.h"
46 #include "plugin-api.h"
47 #include "vec.h"
48 #include "hashtab.h"
49 #include "hash-set.h"
50 #include "machmode.h"
51 #include "hard-reg-set.h"
52 #include "input.h"
53 #include "function.h"
54 #include "ipa-ref.h"
55 #include "cgraph.h"
56 #include "tree-iterator.h"
57 #include "target.h"
58 #include "hash-table.h"
59 #include "gimplify.h"
60 #include "bitmap.h"
61 #include "omp-low.h"
62 #include "builtins.h"
63 #include "convert.h"
65 /* There routines provide a modular interface to perform many parsing
66 operations. They may therefore be used during actual parsing, or
67 during template instantiation, which may be regarded as a
68 degenerate form of parsing. */
70 static tree maybe_convert_cond (tree);
71 static tree finalize_nrv_r (tree *, int *, void *);
72 static tree capture_decltype (tree);
75 /* Deferred Access Checking Overview
76 ---------------------------------
78 Most C++ expressions and declarations require access checking
79 to be performed during parsing. However, in several cases,
80 this has to be treated differently.
82 For member declarations, access checking has to be deferred
83 until more information about the declaration is known. For
84 example:
86 class A {
87 typedef int X;
88 public:
89 X f();
92 A::X A::f();
93 A::X g();
95 When we are parsing the function return type `A::X', we don't
96 really know if this is allowed until we parse the function name.
98 Furthermore, some contexts require that access checking is
99 never performed at all. These include class heads, and template
100 instantiations.
102 Typical use of access checking functions is described here:
104 1. When we enter a context that requires certain access checking
105 mode, the function `push_deferring_access_checks' is called with
106 DEFERRING argument specifying the desired mode. Access checking
107 may be performed immediately (dk_no_deferred), deferred
108 (dk_deferred), or not performed (dk_no_check).
110 2. When a declaration such as a type, or a variable, is encountered,
111 the function `perform_or_defer_access_check' is called. It
112 maintains a vector of all deferred checks.
114 3. The global `current_class_type' or `current_function_decl' is then
115 setup by the parser. `enforce_access' relies on these information
116 to check access.
118 4. Upon exiting the context mentioned in step 1,
119 `perform_deferred_access_checks' is called to check all declaration
120 stored in the vector. `pop_deferring_access_checks' is then
121 called to restore the previous access checking mode.
123 In case of parsing error, we simply call `pop_deferring_access_checks'
124 without `perform_deferred_access_checks'. */
126 typedef struct GTY(()) deferred_access {
127 /* A vector representing name-lookups for which we have deferred
128 checking access controls. We cannot check the accessibility of
129 names used in a decl-specifier-seq until we know what is being
130 declared because code like:
132 class A {
133 class B {};
134 B* f();
137 A::B* A::f() { return 0; }
139 is valid, even though `A::B' is not generally accessible. */
140 vec<deferred_access_check, va_gc> * GTY(()) deferred_access_checks;
142 /* The current mode of access checks. */
143 enum deferring_kind deferring_access_checks_kind;
145 } deferred_access;
147 /* Data for deferred access checking. */
148 static GTY(()) vec<deferred_access, va_gc> *deferred_access_stack;
149 static GTY(()) unsigned deferred_access_no_check;
151 /* Save the current deferred access states and start deferred
152 access checking iff DEFER_P is true. */
154 void
155 push_deferring_access_checks (deferring_kind deferring)
157 /* For context like template instantiation, access checking
158 disabling applies to all nested context. */
159 if (deferred_access_no_check || deferring == dk_no_check)
160 deferred_access_no_check++;
161 else
163 deferred_access e = {NULL, deferring};
164 vec_safe_push (deferred_access_stack, e);
168 /* Save the current deferred access states and start deferred access
169 checking, continuing the set of deferred checks in CHECKS. */
171 void
172 reopen_deferring_access_checks (vec<deferred_access_check, va_gc> * checks)
174 push_deferring_access_checks (dk_deferred);
175 if (!deferred_access_no_check)
176 deferred_access_stack->last().deferred_access_checks = checks;
179 /* Resume deferring access checks again after we stopped doing
180 this previously. */
182 void
183 resume_deferring_access_checks (void)
185 if (!deferred_access_no_check)
186 deferred_access_stack->last().deferring_access_checks_kind = dk_deferred;
189 /* Stop deferring access checks. */
191 void
192 stop_deferring_access_checks (void)
194 if (!deferred_access_no_check)
195 deferred_access_stack->last().deferring_access_checks_kind = dk_no_deferred;
198 /* Discard the current deferred access checks and restore the
199 previous states. */
201 void
202 pop_deferring_access_checks (void)
204 if (deferred_access_no_check)
205 deferred_access_no_check--;
206 else
207 deferred_access_stack->pop ();
210 /* Returns a TREE_LIST representing the deferred checks.
211 The TREE_PURPOSE of each node is the type through which the
212 access occurred; the TREE_VALUE is the declaration named.
215 vec<deferred_access_check, va_gc> *
216 get_deferred_access_checks (void)
218 if (deferred_access_no_check)
219 return NULL;
220 else
221 return (deferred_access_stack->last().deferred_access_checks);
224 /* Take current deferred checks and combine with the
225 previous states if we also defer checks previously.
226 Otherwise perform checks now. */
228 void
229 pop_to_parent_deferring_access_checks (void)
231 if (deferred_access_no_check)
232 deferred_access_no_check--;
233 else
235 vec<deferred_access_check, va_gc> *checks;
236 deferred_access *ptr;
238 checks = (deferred_access_stack->last ().deferred_access_checks);
240 deferred_access_stack->pop ();
241 ptr = &deferred_access_stack->last ();
242 if (ptr->deferring_access_checks_kind == dk_no_deferred)
244 /* Check access. */
245 perform_access_checks (checks, tf_warning_or_error);
247 else
249 /* Merge with parent. */
250 int i, j;
251 deferred_access_check *chk, *probe;
253 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
255 FOR_EACH_VEC_SAFE_ELT (ptr->deferred_access_checks, j, probe)
257 if (probe->binfo == chk->binfo &&
258 probe->decl == chk->decl &&
259 probe->diag_decl == chk->diag_decl)
260 goto found;
262 /* Insert into parent's checks. */
263 vec_safe_push (ptr->deferred_access_checks, *chk);
264 found:;
270 /* Perform the access checks in CHECKS. The TREE_PURPOSE of each node
271 is the BINFO indicating the qualifying scope used to access the
272 DECL node stored in the TREE_VALUE of the node. If CHECKS is empty
273 or we aren't in SFINAE context or all the checks succeed return TRUE,
274 otherwise FALSE. */
276 bool
277 perform_access_checks (vec<deferred_access_check, va_gc> *checks,
278 tsubst_flags_t complain)
280 int i;
281 deferred_access_check *chk;
282 location_t loc = input_location;
283 bool ok = true;
285 if (!checks)
286 return true;
288 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
290 input_location = chk->loc;
291 ok &= enforce_access (chk->binfo, chk->decl, chk->diag_decl, complain);
294 input_location = loc;
295 return (complain & tf_error) ? true : ok;
298 /* Perform the deferred access checks.
300 After performing the checks, we still have to keep the list
301 `deferred_access_stack->deferred_access_checks' since we may want
302 to check access for them again later in a different context.
303 For example:
305 class A {
306 typedef int X;
307 static X a;
309 A::X A::a, x; // No error for `A::a', error for `x'
311 We have to perform deferred access of `A::X', first with `A::a',
312 next with `x'. Return value like perform_access_checks above. */
314 bool
315 perform_deferred_access_checks (tsubst_flags_t complain)
317 return perform_access_checks (get_deferred_access_checks (), complain);
320 /* Defer checking the accessibility of DECL, when looked up in
321 BINFO. DIAG_DECL is the declaration to use to print diagnostics.
322 Return value like perform_access_checks above. */
324 bool
325 perform_or_defer_access_check (tree binfo, tree decl, tree diag_decl,
326 tsubst_flags_t complain)
328 int i;
329 deferred_access *ptr;
330 deferred_access_check *chk;
333 /* Exit if we are in a context that no access checking is performed.
335 if (deferred_access_no_check)
336 return true;
338 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
340 ptr = &deferred_access_stack->last ();
342 /* If we are not supposed to defer access checks, just check now. */
343 if (ptr->deferring_access_checks_kind == dk_no_deferred)
345 bool ok = enforce_access (binfo, decl, diag_decl, complain);
346 return (complain & tf_error) ? true : ok;
349 /* See if we are already going to perform this check. */
350 FOR_EACH_VEC_SAFE_ELT (ptr->deferred_access_checks, i, chk)
352 if (chk->decl == decl && chk->binfo == binfo &&
353 chk->diag_decl == diag_decl)
355 return true;
358 /* If not, record the check. */
359 deferred_access_check new_access = {binfo, decl, diag_decl, input_location};
360 vec_safe_push (ptr->deferred_access_checks, new_access);
362 return true;
365 /* Returns nonzero if the current statement is a full expression,
366 i.e. temporaries created during that statement should be destroyed
367 at the end of the statement. */
370 stmts_are_full_exprs_p (void)
372 return current_stmt_tree ()->stmts_are_full_exprs_p;
375 /* T is a statement. Add it to the statement-tree. This is the C++
376 version. The C/ObjC frontends have a slightly different version of
377 this function. */
379 tree
380 add_stmt (tree t)
382 enum tree_code code = TREE_CODE (t);
384 if (EXPR_P (t) && code != LABEL_EXPR)
386 if (!EXPR_HAS_LOCATION (t))
387 SET_EXPR_LOCATION (t, input_location);
389 /* When we expand a statement-tree, we must know whether or not the
390 statements are full-expressions. We record that fact here. */
391 STMT_IS_FULL_EXPR_P (t) = stmts_are_full_exprs_p ();
394 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
395 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
397 /* Add T to the statement-tree. Non-side-effect statements need to be
398 recorded during statement expressions. */
399 gcc_checking_assert (!stmt_list_stack->is_empty ());
400 append_to_statement_list_force (t, &cur_stmt_list);
402 return t;
405 /* Returns the stmt_tree to which statements are currently being added. */
407 stmt_tree
408 current_stmt_tree (void)
410 return (cfun
411 ? &cfun->language->base.x_stmt_tree
412 : &scope_chain->x_stmt_tree);
415 /* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR. */
417 static tree
418 maybe_cleanup_point_expr (tree expr)
420 if (!processing_template_decl && stmts_are_full_exprs_p ())
421 expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
422 return expr;
425 /* Like maybe_cleanup_point_expr except have the type of the new expression be
426 void so we don't need to create a temporary variable to hold the inner
427 expression. The reason why we do this is because the original type might be
428 an aggregate and we cannot create a temporary variable for that type. */
430 tree
431 maybe_cleanup_point_expr_void (tree expr)
433 if (!processing_template_decl && stmts_are_full_exprs_p ())
434 expr = fold_build_cleanup_point_expr (void_type_node, expr);
435 return expr;
440 /* Create a declaration statement for the declaration given by the DECL. */
442 void
443 add_decl_expr (tree decl)
445 tree r = build_stmt (input_location, DECL_EXPR, decl);
446 if (DECL_INITIAL (decl)
447 || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
448 r = maybe_cleanup_point_expr_void (r);
449 add_stmt (r);
452 /* Finish a scope. */
454 tree
455 do_poplevel (tree stmt_list)
457 tree block = NULL;
459 if (stmts_are_full_exprs_p ())
460 block = poplevel (kept_level_p (), 1, 0);
462 stmt_list = pop_stmt_list (stmt_list);
464 if (!processing_template_decl)
466 stmt_list = c_build_bind_expr (input_location, block, stmt_list);
467 /* ??? See c_end_compound_stmt re statement expressions. */
470 return stmt_list;
473 /* Begin a new scope. */
475 static tree
476 do_pushlevel (scope_kind sk)
478 tree ret = push_stmt_list ();
479 if (stmts_are_full_exprs_p ())
480 begin_scope (sk, NULL);
481 return ret;
484 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
485 when the current scope is exited. EH_ONLY is true when this is not
486 meant to apply to normal control flow transfer. */
488 void
489 push_cleanup (tree decl, tree cleanup, bool eh_only)
491 tree stmt = build_stmt (input_location, CLEANUP_STMT, NULL, cleanup, decl);
492 CLEANUP_EH_ONLY (stmt) = eh_only;
493 add_stmt (stmt);
494 CLEANUP_BODY (stmt) = push_stmt_list ();
497 /* Simple infinite loop tracking for -Wreturn-type. We keep a stack of all
498 the current loops, represented by 'NULL_TREE' if we've seen a possible
499 exit, and 'error_mark_node' if not. This is currently used only to
500 suppress the warning about a function with no return statements, and
501 therefore we don't bother noting returns as possible exits. We also
502 don't bother with gotos. */
504 static void
505 begin_maybe_infinite_loop (tree cond)
507 /* Only track this while parsing a function, not during instantiation. */
508 if (!cfun || (DECL_TEMPLATE_INSTANTIATION (current_function_decl)
509 && !processing_template_decl))
510 return;
511 bool maybe_infinite = true;
512 if (cond)
514 cond = fold_non_dependent_expr (cond);
515 maybe_infinite = integer_nonzerop (cond);
517 vec_safe_push (cp_function_chain->infinite_loops,
518 maybe_infinite ? error_mark_node : NULL_TREE);
522 /* A break is a possible exit for the current loop. */
524 void
525 break_maybe_infinite_loop (void)
527 if (!cfun)
528 return;
529 cp_function_chain->infinite_loops->last() = NULL_TREE;
532 /* If we reach the end of the loop without seeing a possible exit, we have
533 an infinite loop. */
535 static void
536 end_maybe_infinite_loop (tree cond)
538 if (!cfun || (DECL_TEMPLATE_INSTANTIATION (current_function_decl)
539 && !processing_template_decl))
540 return;
541 tree current = cp_function_chain->infinite_loops->pop();
542 if (current != NULL_TREE)
544 cond = fold_non_dependent_expr (cond);
545 if (integer_nonzerop (cond))
546 current_function_infinite_loop = 1;
551 /* Begin a conditional that might contain a declaration. When generating
552 normal code, we want the declaration to appear before the statement
553 containing the conditional. When generating template code, we want the
554 conditional to be rendered as the raw DECL_EXPR. */
556 static void
557 begin_cond (tree *cond_p)
559 if (processing_template_decl)
560 *cond_p = push_stmt_list ();
563 /* Finish such a conditional. */
565 static void
566 finish_cond (tree *cond_p, tree expr)
568 if (processing_template_decl)
570 tree cond = pop_stmt_list (*cond_p);
572 if (expr == NULL_TREE)
573 /* Empty condition in 'for'. */
574 gcc_assert (empty_expr_stmt_p (cond));
575 else if (check_for_bare_parameter_packs (expr))
576 expr = error_mark_node;
577 else if (!empty_expr_stmt_p (cond))
578 expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr), cond, expr);
580 *cond_p = expr;
583 /* If *COND_P specifies a conditional with a declaration, transform the
584 loop such that
585 while (A x = 42) { }
586 for (; A x = 42;) { }
587 becomes
588 while (true) { A x = 42; if (!x) break; }
589 for (;;) { A x = 42; if (!x) break; }
590 The statement list for BODY will be empty if the conditional did
591 not declare anything. */
593 static void
594 simplify_loop_decl_cond (tree *cond_p, tree body)
596 tree cond, if_stmt;
598 if (!TREE_SIDE_EFFECTS (body))
599 return;
601 cond = *cond_p;
602 *cond_p = boolean_true_node;
604 if_stmt = begin_if_stmt ();
605 cond = cp_build_unary_op (TRUTH_NOT_EXPR, cond, 0, tf_warning_or_error);
606 finish_if_stmt_cond (cond, if_stmt);
607 finish_break_stmt ();
608 finish_then_clause (if_stmt);
609 finish_if_stmt (if_stmt);
612 /* Finish a goto-statement. */
614 tree
615 finish_goto_stmt (tree destination)
617 if (identifier_p (destination))
618 destination = lookup_label (destination);
620 /* We warn about unused labels with -Wunused. That means we have to
621 mark the used labels as used. */
622 if (TREE_CODE (destination) == LABEL_DECL)
623 TREE_USED (destination) = 1;
624 else
626 if (check_no_cilk (destination,
627 "Cilk array notation cannot be used as a computed goto expression",
628 "%<_Cilk_spawn%> statement cannot be used as a computed goto expression"))
629 destination = error_mark_node;
630 destination = mark_rvalue_use (destination);
631 if (!processing_template_decl)
633 destination = cp_convert (ptr_type_node, destination,
634 tf_warning_or_error);
635 if (error_operand_p (destination))
636 return NULL_TREE;
637 destination
638 = fold_build_cleanup_point_expr (TREE_TYPE (destination),
639 destination);
643 check_goto (destination);
645 return add_stmt (build_stmt (input_location, GOTO_EXPR, destination));
648 /* COND is the condition-expression for an if, while, etc.,
649 statement. Convert it to a boolean value, if appropriate.
650 In addition, verify sequence points if -Wsequence-point is enabled. */
652 static tree
653 maybe_convert_cond (tree cond)
655 /* Empty conditions remain empty. */
656 if (!cond)
657 return NULL_TREE;
659 /* Wait until we instantiate templates before doing conversion. */
660 if (processing_template_decl)
661 return cond;
663 if (warn_sequence_point)
664 verify_sequence_points (cond);
666 /* Do the conversion. */
667 cond = convert_from_reference (cond);
669 if (TREE_CODE (cond) == MODIFY_EXPR
670 && !TREE_NO_WARNING (cond)
671 && warn_parentheses)
673 warning (OPT_Wparentheses,
674 "suggest parentheses around assignment used as truth value");
675 TREE_NO_WARNING (cond) = 1;
678 return condition_conversion (cond);
681 /* Finish an expression-statement, whose EXPRESSION is as indicated. */
683 tree
684 finish_expr_stmt (tree expr)
686 tree r = NULL_TREE;
688 if (expr != NULL_TREE)
690 if (!processing_template_decl)
692 if (warn_sequence_point)
693 verify_sequence_points (expr);
694 expr = convert_to_void (expr, ICV_STATEMENT, tf_warning_or_error);
696 else if (!type_dependent_expression_p (expr))
697 convert_to_void (build_non_dependent_expr (expr), ICV_STATEMENT,
698 tf_warning_or_error);
700 if (check_for_bare_parameter_packs (expr))
701 expr = error_mark_node;
703 /* Simplification of inner statement expressions, compound exprs,
704 etc can result in us already having an EXPR_STMT. */
705 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
707 if (TREE_CODE (expr) != EXPR_STMT)
708 expr = build_stmt (input_location, EXPR_STMT, expr);
709 expr = maybe_cleanup_point_expr_void (expr);
712 r = add_stmt (expr);
715 return r;
719 /* Begin an if-statement. Returns a newly created IF_STMT if
720 appropriate. */
722 tree
723 begin_if_stmt (void)
725 tree r, scope;
726 scope = do_pushlevel (sk_cond);
727 r = build_stmt (input_location, IF_STMT, NULL_TREE,
728 NULL_TREE, NULL_TREE, scope);
729 begin_cond (&IF_COND (r));
730 return r;
733 /* Process the COND of an if-statement, which may be given by
734 IF_STMT. */
736 void
737 finish_if_stmt_cond (tree cond, tree if_stmt)
739 finish_cond (&IF_COND (if_stmt), maybe_convert_cond (cond));
740 add_stmt (if_stmt);
741 THEN_CLAUSE (if_stmt) = push_stmt_list ();
744 /* Finish the then-clause of an if-statement, which may be given by
745 IF_STMT. */
747 tree
748 finish_then_clause (tree if_stmt)
750 THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
751 return if_stmt;
754 /* Begin the else-clause of an if-statement. */
756 void
757 begin_else_clause (tree if_stmt)
759 ELSE_CLAUSE (if_stmt) = push_stmt_list ();
762 /* Finish the else-clause of an if-statement, which may be given by
763 IF_STMT. */
765 void
766 finish_else_clause (tree if_stmt)
768 ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
771 /* Finish an if-statement. */
773 void
774 finish_if_stmt (tree if_stmt)
776 tree scope = IF_SCOPE (if_stmt);
777 IF_SCOPE (if_stmt) = NULL;
778 add_stmt (do_poplevel (scope));
781 /* Begin a while-statement. Returns a newly created WHILE_STMT if
782 appropriate. */
784 tree
785 begin_while_stmt (void)
787 tree r;
788 r = build_stmt (input_location, WHILE_STMT, NULL_TREE, NULL_TREE);
789 add_stmt (r);
790 WHILE_BODY (r) = do_pushlevel (sk_block);
791 begin_cond (&WHILE_COND (r));
792 return r;
795 /* Process the COND of a while-statement, which may be given by
796 WHILE_STMT. */
798 void
799 finish_while_stmt_cond (tree cond, tree while_stmt, bool ivdep)
801 if (check_no_cilk (cond,
802 "Cilk array notation cannot be used as a condition for while statement",
803 "%<_Cilk_spawn%> statement cannot be used as a condition for while statement"))
804 cond = error_mark_node;
805 cond = maybe_convert_cond (cond);
806 finish_cond (&WHILE_COND (while_stmt), cond);
807 begin_maybe_infinite_loop (cond);
808 if (ivdep && cond != error_mark_node)
809 WHILE_COND (while_stmt) = build2 (ANNOTATE_EXPR,
810 TREE_TYPE (WHILE_COND (while_stmt)),
811 WHILE_COND (while_stmt),
812 build_int_cst (integer_type_node,
813 annot_expr_ivdep_kind));
814 simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
817 /* Finish a while-statement, which may be given by WHILE_STMT. */
819 void
820 finish_while_stmt (tree while_stmt)
822 end_maybe_infinite_loop (boolean_true_node);
823 WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
826 /* Begin a do-statement. Returns a newly created DO_STMT if
827 appropriate. */
829 tree
830 begin_do_stmt (void)
832 tree r = build_stmt (input_location, DO_STMT, NULL_TREE, NULL_TREE);
833 begin_maybe_infinite_loop (boolean_true_node);
834 add_stmt (r);
835 DO_BODY (r) = push_stmt_list ();
836 return r;
839 /* Finish the body of a do-statement, which may be given by DO_STMT. */
841 void
842 finish_do_body (tree do_stmt)
844 tree body = DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
846 if (TREE_CODE (body) == STATEMENT_LIST && STATEMENT_LIST_TAIL (body))
847 body = STATEMENT_LIST_TAIL (body)->stmt;
849 if (IS_EMPTY_STMT (body))
850 warning (OPT_Wempty_body,
851 "suggest explicit braces around empty body in %<do%> statement");
854 /* Finish a do-statement, which may be given by DO_STMT, and whose
855 COND is as indicated. */
857 void
858 finish_do_stmt (tree cond, tree do_stmt, bool ivdep)
860 if (check_no_cilk (cond,
861 "Cilk array notation cannot be used as a condition for a do-while statement",
862 "%<_Cilk_spawn%> statement cannot be used as a condition for a do-while statement"))
863 cond = error_mark_node;
864 cond = maybe_convert_cond (cond);
865 end_maybe_infinite_loop (cond);
866 if (ivdep && cond != error_mark_node)
867 cond = build2 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
868 build_int_cst (integer_type_node, annot_expr_ivdep_kind));
869 DO_COND (do_stmt) = cond;
872 /* Finish a return-statement. The EXPRESSION returned, if any, is as
873 indicated. */
875 tree
876 finish_return_stmt (tree expr)
878 tree r;
879 bool no_warning;
881 expr = check_return_expr (expr, &no_warning);
883 if (error_operand_p (expr)
884 || (flag_openmp && !check_omp_return ()))
885 return error_mark_node;
886 if (!processing_template_decl)
888 if (warn_sequence_point)
889 verify_sequence_points (expr);
891 if (DECL_DESTRUCTOR_P (current_function_decl)
892 || (DECL_CONSTRUCTOR_P (current_function_decl)
893 && targetm.cxx.cdtor_returns_this ()))
895 /* Similarly, all destructors must run destructors for
896 base-classes before returning. So, all returns in a
897 destructor get sent to the DTOR_LABEL; finish_function emits
898 code to return a value there. */
899 return finish_goto_stmt (cdtor_label);
903 r = build_stmt (input_location, RETURN_EXPR, expr);
904 TREE_NO_WARNING (r) |= no_warning;
905 r = maybe_cleanup_point_expr_void (r);
906 r = add_stmt (r);
908 return r;
911 /* Begin the scope of a for-statement or a range-for-statement.
912 Both the returned trees are to be used in a call to
913 begin_for_stmt or begin_range_for_stmt. */
915 tree
916 begin_for_scope (tree *init)
918 tree scope = NULL_TREE;
919 if (flag_new_for_scope > 0)
920 scope = do_pushlevel (sk_for);
922 if (processing_template_decl)
923 *init = push_stmt_list ();
924 else
925 *init = NULL_TREE;
927 return scope;
930 /* Begin a for-statement. Returns a new FOR_STMT.
931 SCOPE and INIT should be the return of begin_for_scope,
932 or both NULL_TREE */
934 tree
935 begin_for_stmt (tree scope, tree init)
937 tree r;
939 r = build_stmt (input_location, FOR_STMT, NULL_TREE, NULL_TREE,
940 NULL_TREE, NULL_TREE, NULL_TREE);
942 if (scope == NULL_TREE)
944 gcc_assert (!init || !(flag_new_for_scope > 0));
945 if (!init)
946 scope = begin_for_scope (&init);
948 FOR_INIT_STMT (r) = init;
949 FOR_SCOPE (r) = scope;
951 return r;
954 /* Finish the for-init-statement of a for-statement, which may be
955 given by FOR_STMT. */
957 void
958 finish_for_init_stmt (tree for_stmt)
960 if (processing_template_decl)
961 FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
962 add_stmt (for_stmt);
963 FOR_BODY (for_stmt) = do_pushlevel (sk_block);
964 begin_cond (&FOR_COND (for_stmt));
967 /* Finish the COND of a for-statement, which may be given by
968 FOR_STMT. */
970 void
971 finish_for_cond (tree cond, tree for_stmt, bool ivdep)
973 if (check_no_cilk (cond,
974 "Cilk array notation cannot be used in a condition for a for-loop",
975 "%<_Cilk_spawn%> statement cannot be used in a condition for a for-loop"))
976 cond = error_mark_node;
977 cond = maybe_convert_cond (cond);
978 finish_cond (&FOR_COND (for_stmt), cond);
979 begin_maybe_infinite_loop (cond);
980 if (ivdep && cond != error_mark_node)
981 FOR_COND (for_stmt) = build2 (ANNOTATE_EXPR,
982 TREE_TYPE (FOR_COND (for_stmt)),
983 FOR_COND (for_stmt),
984 build_int_cst (integer_type_node,
985 annot_expr_ivdep_kind));
986 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
989 /* Finish the increment-EXPRESSION in a for-statement, which may be
990 given by FOR_STMT. */
992 void
993 finish_for_expr (tree expr, tree for_stmt)
995 if (!expr)
996 return;
997 /* If EXPR is an overloaded function, issue an error; there is no
998 context available to use to perform overload resolution. */
999 if (type_unknown_p (expr))
1001 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
1002 expr = error_mark_node;
1004 if (!processing_template_decl)
1006 if (warn_sequence_point)
1007 verify_sequence_points (expr);
1008 expr = convert_to_void (expr, ICV_THIRD_IN_FOR,
1009 tf_warning_or_error);
1011 else if (!type_dependent_expression_p (expr))
1012 convert_to_void (build_non_dependent_expr (expr), ICV_THIRD_IN_FOR,
1013 tf_warning_or_error);
1014 expr = maybe_cleanup_point_expr_void (expr);
1015 if (check_for_bare_parameter_packs (expr))
1016 expr = error_mark_node;
1017 FOR_EXPR (for_stmt) = expr;
1020 /* Finish the body of a for-statement, which may be given by
1021 FOR_STMT. The increment-EXPR for the loop must be
1022 provided.
1023 It can also finish RANGE_FOR_STMT. */
1025 void
1026 finish_for_stmt (tree for_stmt)
1028 end_maybe_infinite_loop (boolean_true_node);
1030 if (TREE_CODE (for_stmt) == RANGE_FOR_STMT)
1031 RANGE_FOR_BODY (for_stmt) = do_poplevel (RANGE_FOR_BODY (for_stmt));
1032 else
1033 FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
1035 /* Pop the scope for the body of the loop. */
1036 if (flag_new_for_scope > 0)
1038 tree scope;
1039 tree *scope_ptr = (TREE_CODE (for_stmt) == RANGE_FOR_STMT
1040 ? &RANGE_FOR_SCOPE (for_stmt)
1041 : &FOR_SCOPE (for_stmt));
1042 scope = *scope_ptr;
1043 *scope_ptr = NULL;
1044 add_stmt (do_poplevel (scope));
1048 /* Begin a range-for-statement. Returns a new RANGE_FOR_STMT.
1049 SCOPE and INIT should be the return of begin_for_scope,
1050 or both NULL_TREE .
1051 To finish it call finish_for_stmt(). */
1053 tree
1054 begin_range_for_stmt (tree scope, tree init)
1056 tree r;
1058 begin_maybe_infinite_loop (boolean_false_node);
1060 r = build_stmt (input_location, RANGE_FOR_STMT,
1061 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE);
1063 if (scope == NULL_TREE)
1065 gcc_assert (!init || !(flag_new_for_scope > 0));
1066 if (!init)
1067 scope = begin_for_scope (&init);
1070 /* RANGE_FOR_STMTs do not use nor save the init tree, so we
1071 pop it now. */
1072 if (init)
1073 pop_stmt_list (init);
1074 RANGE_FOR_SCOPE (r) = scope;
1076 return r;
1079 /* Finish the head of a range-based for statement, which may
1080 be given by RANGE_FOR_STMT. DECL must be the declaration
1081 and EXPR must be the loop expression. */
1083 void
1084 finish_range_for_decl (tree range_for_stmt, tree decl, tree expr)
1086 RANGE_FOR_DECL (range_for_stmt) = decl;
1087 RANGE_FOR_EXPR (range_for_stmt) = expr;
1088 add_stmt (range_for_stmt);
1089 RANGE_FOR_BODY (range_for_stmt) = do_pushlevel (sk_block);
1092 /* Finish a break-statement. */
1094 tree
1095 finish_break_stmt (void)
1097 /* In switch statements break is sometimes stylistically used after
1098 a return statement. This can lead to spurious warnings about
1099 control reaching the end of a non-void function when it is
1100 inlined. Note that we are calling block_may_fallthru with
1101 language specific tree nodes; this works because
1102 block_may_fallthru returns true when given something it does not
1103 understand. */
1104 if (!block_may_fallthru (cur_stmt_list))
1105 return void_node;
1106 return add_stmt (build_stmt (input_location, BREAK_STMT));
1109 /* Finish a continue-statement. */
1111 tree
1112 finish_continue_stmt (void)
1114 return add_stmt (build_stmt (input_location, CONTINUE_STMT));
1117 /* Begin a switch-statement. Returns a new SWITCH_STMT if
1118 appropriate. */
1120 tree
1121 begin_switch_stmt (void)
1123 tree r, scope;
1125 scope = do_pushlevel (sk_cond);
1126 r = build_stmt (input_location, SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE, scope);
1128 begin_cond (&SWITCH_STMT_COND (r));
1130 return r;
1133 /* Finish the cond of a switch-statement. */
1135 void
1136 finish_switch_cond (tree cond, tree switch_stmt)
1138 tree orig_type = NULL;
1140 if (check_no_cilk (cond,
1141 "Cilk array notation cannot be used as a condition for switch statement",
1142 "%<_Cilk_spawn%> statement cannot be used as a condition for switch statement"))
1143 cond = error_mark_node;
1145 if (!processing_template_decl)
1147 /* Convert the condition to an integer or enumeration type. */
1148 cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
1149 if (cond == NULL_TREE)
1151 error ("switch quantity not an integer");
1152 cond = error_mark_node;
1154 /* We want unlowered type here to handle enum bit-fields. */
1155 orig_type = unlowered_expr_type (cond);
1156 if (cond != error_mark_node)
1158 /* Warn if the condition has boolean value. */
1159 if (TREE_CODE (orig_type) == BOOLEAN_TYPE)
1160 warning_at (input_location, OPT_Wswitch_bool,
1161 "switch condition has type bool");
1163 /* [stmt.switch]
1165 Integral promotions are performed. */
1166 cond = perform_integral_promotions (cond);
1167 cond = maybe_cleanup_point_expr (cond);
1170 if (check_for_bare_parameter_packs (cond))
1171 cond = error_mark_node;
1172 else if (!processing_template_decl && warn_sequence_point)
1173 verify_sequence_points (cond);
1175 finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
1176 SWITCH_STMT_TYPE (switch_stmt) = orig_type;
1177 add_stmt (switch_stmt);
1178 push_switch (switch_stmt);
1179 SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
1182 /* Finish the body of a switch-statement, which may be given by
1183 SWITCH_STMT. The COND to switch on is indicated. */
1185 void
1186 finish_switch_stmt (tree switch_stmt)
1188 tree scope;
1190 SWITCH_STMT_BODY (switch_stmt) =
1191 pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
1192 pop_switch ();
1194 scope = SWITCH_STMT_SCOPE (switch_stmt);
1195 SWITCH_STMT_SCOPE (switch_stmt) = NULL;
1196 add_stmt (do_poplevel (scope));
1199 /* Begin a try-block. Returns a newly-created TRY_BLOCK if
1200 appropriate. */
1202 tree
1203 begin_try_block (void)
1205 tree r = build_stmt (input_location, TRY_BLOCK, NULL_TREE, NULL_TREE);
1206 add_stmt (r);
1207 TRY_STMTS (r) = push_stmt_list ();
1208 return r;
1211 /* Likewise, for a function-try-block. The block returned in
1212 *COMPOUND_STMT is an artificial outer scope, containing the
1213 function-try-block. */
1215 tree
1216 begin_function_try_block (tree *compound_stmt)
1218 tree r;
1219 /* This outer scope does not exist in the C++ standard, but we need
1220 a place to put __FUNCTION__ and similar variables. */
1221 *compound_stmt = begin_compound_stmt (0);
1222 r = begin_try_block ();
1223 FN_TRY_BLOCK_P (r) = 1;
1224 return r;
1227 /* Finish a try-block, which may be given by TRY_BLOCK. */
1229 void
1230 finish_try_block (tree try_block)
1232 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1233 TRY_HANDLERS (try_block) = push_stmt_list ();
1236 /* Finish the body of a cleanup try-block, which may be given by
1237 TRY_BLOCK. */
1239 void
1240 finish_cleanup_try_block (tree try_block)
1242 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1245 /* Finish an implicitly generated try-block, with a cleanup is given
1246 by CLEANUP. */
1248 void
1249 finish_cleanup (tree cleanup, tree try_block)
1251 TRY_HANDLERS (try_block) = cleanup;
1252 CLEANUP_P (try_block) = 1;
1255 /* Likewise, for a function-try-block. */
1257 void
1258 finish_function_try_block (tree try_block)
1260 finish_try_block (try_block);
1261 /* FIXME : something queer about CTOR_INITIALIZER somehow following
1262 the try block, but moving it inside. */
1263 in_function_try_handler = 1;
1266 /* Finish a handler-sequence for a try-block, which may be given by
1267 TRY_BLOCK. */
1269 void
1270 finish_handler_sequence (tree try_block)
1272 TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
1273 check_handlers (TRY_HANDLERS (try_block));
1276 /* Finish the handler-seq for a function-try-block, given by
1277 TRY_BLOCK. COMPOUND_STMT is the outer block created by
1278 begin_function_try_block. */
1280 void
1281 finish_function_handler_sequence (tree try_block, tree compound_stmt)
1283 in_function_try_handler = 0;
1284 finish_handler_sequence (try_block);
1285 finish_compound_stmt (compound_stmt);
1288 /* Begin a handler. Returns a HANDLER if appropriate. */
1290 tree
1291 begin_handler (void)
1293 tree r;
1295 r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE);
1296 add_stmt (r);
1298 /* Create a binding level for the eh_info and the exception object
1299 cleanup. */
1300 HANDLER_BODY (r) = do_pushlevel (sk_catch);
1302 return r;
1305 /* Finish the handler-parameters for a handler, which may be given by
1306 HANDLER. DECL is the declaration for the catch parameter, or NULL
1307 if this is a `catch (...)' clause. */
1309 void
1310 finish_handler_parms (tree decl, tree handler)
1312 tree type = NULL_TREE;
1313 if (processing_template_decl)
1315 if (decl)
1317 decl = pushdecl (decl);
1318 decl = push_template_decl (decl);
1319 HANDLER_PARMS (handler) = decl;
1320 type = TREE_TYPE (decl);
1323 else
1324 type = expand_start_catch_block (decl);
1325 HANDLER_TYPE (handler) = type;
1328 /* Finish a handler, which may be given by HANDLER. The BLOCKs are
1329 the return value from the matching call to finish_handler_parms. */
1331 void
1332 finish_handler (tree handler)
1334 if (!processing_template_decl)
1335 expand_end_catch_block ();
1336 HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
1339 /* Begin a compound statement. FLAGS contains some bits that control the
1340 behavior and context. If BCS_NO_SCOPE is set, the compound statement
1341 does not define a scope. If BCS_FN_BODY is set, this is the outermost
1342 block of a function. If BCS_TRY_BLOCK is set, this is the block
1343 created on behalf of a TRY statement. Returns a token to be passed to
1344 finish_compound_stmt. */
1346 tree
1347 begin_compound_stmt (unsigned int flags)
1349 tree r;
1351 if (flags & BCS_NO_SCOPE)
1353 r = push_stmt_list ();
1354 STATEMENT_LIST_NO_SCOPE (r) = 1;
1356 /* Normally, we try hard to keep the BLOCK for a statement-expression.
1357 But, if it's a statement-expression with a scopeless block, there's
1358 nothing to keep, and we don't want to accidentally keep a block
1359 *inside* the scopeless block. */
1360 keep_next_level (false);
1362 else
1363 r = do_pushlevel (flags & BCS_TRY_BLOCK ? sk_try : sk_block);
1365 /* When processing a template, we need to remember where the braces were,
1366 so that we can set up identical scopes when instantiating the template
1367 later. BIND_EXPR is a handy candidate for this.
1368 Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1369 result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1370 processing templates. */
1371 if (processing_template_decl)
1373 r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
1374 BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1375 BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
1376 TREE_SIDE_EFFECTS (r) = 1;
1379 return r;
1382 /* Finish a compound-statement, which is given by STMT. */
1384 void
1385 finish_compound_stmt (tree stmt)
1387 if (TREE_CODE (stmt) == BIND_EXPR)
1389 tree body = do_poplevel (BIND_EXPR_BODY (stmt));
1390 /* If the STATEMENT_LIST is empty and this BIND_EXPR isn't special,
1391 discard the BIND_EXPR so it can be merged with the containing
1392 STATEMENT_LIST. */
1393 if (TREE_CODE (body) == STATEMENT_LIST
1394 && STATEMENT_LIST_HEAD (body) == NULL
1395 && !BIND_EXPR_BODY_BLOCK (stmt)
1396 && !BIND_EXPR_TRY_BLOCK (stmt))
1397 stmt = body;
1398 else
1399 BIND_EXPR_BODY (stmt) = body;
1401 else if (STATEMENT_LIST_NO_SCOPE (stmt))
1402 stmt = pop_stmt_list (stmt);
1403 else
1405 /* Destroy any ObjC "super" receivers that may have been
1406 created. */
1407 objc_clear_super_receiver ();
1409 stmt = do_poplevel (stmt);
1412 /* ??? See c_end_compound_stmt wrt statement expressions. */
1413 add_stmt (stmt);
1416 /* Finish an asm-statement, whose components are a STRING, some
1417 OUTPUT_OPERANDS, some INPUT_OPERANDS, some CLOBBERS and some
1418 LABELS. Also note whether the asm-statement should be
1419 considered volatile. */
1421 tree
1422 finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1423 tree input_operands, tree clobbers, tree labels)
1425 tree r;
1426 tree t;
1427 int ninputs = list_length (input_operands);
1428 int noutputs = list_length (output_operands);
1430 if (!processing_template_decl)
1432 const char *constraint;
1433 const char **oconstraints;
1434 bool allows_mem, allows_reg, is_inout;
1435 tree operand;
1436 int i;
1438 oconstraints = XALLOCAVEC (const char *, noutputs);
1440 string = resolve_asm_operand_names (string, output_operands,
1441 input_operands, labels);
1443 for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
1445 operand = TREE_VALUE (t);
1447 /* ??? Really, this should not be here. Users should be using a
1448 proper lvalue, dammit. But there's a long history of using
1449 casts in the output operands. In cases like longlong.h, this
1450 becomes a primitive form of typechecking -- if the cast can be
1451 removed, then the output operand had a type of the proper width;
1452 otherwise we'll get an error. Gross, but ... */
1453 STRIP_NOPS (operand);
1455 operand = mark_lvalue_use (operand);
1457 if (!lvalue_or_else (operand, lv_asm, tf_warning_or_error))
1458 operand = error_mark_node;
1460 if (operand != error_mark_node
1461 && (TREE_READONLY (operand)
1462 || CP_TYPE_CONST_P (TREE_TYPE (operand))
1463 /* Functions are not modifiable, even though they are
1464 lvalues. */
1465 || TREE_CODE (TREE_TYPE (operand)) == FUNCTION_TYPE
1466 || TREE_CODE (TREE_TYPE (operand)) == METHOD_TYPE
1467 /* If it's an aggregate and any field is const, then it is
1468 effectively const. */
1469 || (CLASS_TYPE_P (TREE_TYPE (operand))
1470 && C_TYPE_FIELDS_READONLY (TREE_TYPE (operand)))))
1471 cxx_readonly_error (operand, lv_asm);
1473 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1474 oconstraints[i] = constraint;
1476 if (parse_output_constraint (&constraint, i, ninputs, noutputs,
1477 &allows_mem, &allows_reg, &is_inout))
1479 /* If the operand is going to end up in memory,
1480 mark it addressable. */
1481 if (!allows_reg && !cxx_mark_addressable (operand))
1482 operand = error_mark_node;
1484 else
1485 operand = error_mark_node;
1487 TREE_VALUE (t) = operand;
1490 for (i = 0, t = input_operands; t; ++i, t = TREE_CHAIN (t))
1492 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1493 bool constraint_parsed
1494 = parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
1495 oconstraints, &allows_mem, &allows_reg);
1496 /* If the operand is going to end up in memory, don't call
1497 decay_conversion. */
1498 if (constraint_parsed && !allows_reg && allows_mem)
1499 operand = mark_lvalue_use (TREE_VALUE (t));
1500 else
1501 operand = decay_conversion (TREE_VALUE (t), tf_warning_or_error);
1503 /* If the type of the operand hasn't been determined (e.g.,
1504 because it involves an overloaded function), then issue
1505 an error message. There's no context available to
1506 resolve the overloading. */
1507 if (TREE_TYPE (operand) == unknown_type_node)
1509 error ("type of asm operand %qE could not be determined",
1510 TREE_VALUE (t));
1511 operand = error_mark_node;
1514 if (constraint_parsed)
1516 /* If the operand is going to end up in memory,
1517 mark it addressable. */
1518 if (!allows_reg && allows_mem)
1520 /* Strip the nops as we allow this case. FIXME, this really
1521 should be rejected or made deprecated. */
1522 STRIP_NOPS (operand);
1523 if (!cxx_mark_addressable (operand))
1524 operand = error_mark_node;
1526 else if (!allows_reg && !allows_mem)
1528 /* If constraint allows neither register nor memory,
1529 try harder to get a constant. */
1530 tree constop = maybe_constant_value (operand);
1531 if (TREE_CONSTANT (constop))
1532 operand = constop;
1535 else
1536 operand = error_mark_node;
1538 TREE_VALUE (t) = operand;
1542 r = build_stmt (input_location, ASM_EXPR, string,
1543 output_operands, input_operands,
1544 clobbers, labels);
1545 ASM_VOLATILE_P (r) = volatile_p || noutputs == 0;
1546 r = maybe_cleanup_point_expr_void (r);
1547 return add_stmt (r);
1550 /* Finish a label with the indicated NAME. Returns the new label. */
1552 tree
1553 finish_label_stmt (tree name)
1555 tree decl = define_label (input_location, name);
1557 if (decl == error_mark_node)
1558 return error_mark_node;
1560 add_stmt (build_stmt (input_location, LABEL_EXPR, decl));
1562 return decl;
1565 /* Finish a series of declarations for local labels. G++ allows users
1566 to declare "local" labels, i.e., labels with scope. This extension
1567 is useful when writing code involving statement-expressions. */
1569 void
1570 finish_label_decl (tree name)
1572 if (!at_function_scope_p ())
1574 error ("__label__ declarations are only allowed in function scopes");
1575 return;
1578 add_decl_expr (declare_local_label (name));
1581 /* When DECL goes out of scope, make sure that CLEANUP is executed. */
1583 void
1584 finish_decl_cleanup (tree decl, tree cleanup)
1586 push_cleanup (decl, cleanup, false);
1589 /* If the current scope exits with an exception, run CLEANUP. */
1591 void
1592 finish_eh_cleanup (tree cleanup)
1594 push_cleanup (NULL, cleanup, true);
1597 /* The MEM_INITS is a list of mem-initializers, in reverse of the
1598 order they were written by the user. Each node is as for
1599 emit_mem_initializers. */
1601 void
1602 finish_mem_initializers (tree mem_inits)
1604 /* Reorder the MEM_INITS so that they are in the order they appeared
1605 in the source program. */
1606 mem_inits = nreverse (mem_inits);
1608 if (processing_template_decl)
1610 tree mem;
1612 for (mem = mem_inits; mem; mem = TREE_CHAIN (mem))
1614 /* If the TREE_PURPOSE is a TYPE_PACK_EXPANSION, skip the
1615 check for bare parameter packs in the TREE_VALUE, because
1616 any parameter packs in the TREE_VALUE have already been
1617 bound as part of the TREE_PURPOSE. See
1618 make_pack_expansion for more information. */
1619 if (TREE_CODE (TREE_PURPOSE (mem)) != TYPE_PACK_EXPANSION
1620 && check_for_bare_parameter_packs (TREE_VALUE (mem)))
1621 TREE_VALUE (mem) = error_mark_node;
1624 add_stmt (build_min_nt_loc (UNKNOWN_LOCATION,
1625 CTOR_INITIALIZER, mem_inits));
1627 else
1628 emit_mem_initializers (mem_inits);
1631 /* Obfuscate EXPR if it looks like an id-expression or member access so
1632 that the call to finish_decltype in do_auto_deduction will give the
1633 right result. */
1635 tree
1636 force_paren_expr (tree expr)
1638 /* This is only needed for decltype(auto) in C++14. */
1639 if (cxx_dialect < cxx14)
1640 return expr;
1642 /* If we're in unevaluated context, we can't be deducing a
1643 return/initializer type, so we don't need to mess with this. */
1644 if (cp_unevaluated_operand)
1645 return expr;
1647 if (!DECL_P (expr) && TREE_CODE (expr) != COMPONENT_REF
1648 && TREE_CODE (expr) != SCOPE_REF)
1649 return expr;
1651 if (TREE_CODE (expr) == COMPONENT_REF)
1652 REF_PARENTHESIZED_P (expr) = true;
1653 else if (type_dependent_expression_p (expr))
1654 expr = build1 (PAREN_EXPR, TREE_TYPE (expr), expr);
1655 else
1657 cp_lvalue_kind kind = lvalue_kind (expr);
1658 if ((kind & ~clk_class) != clk_none)
1660 tree type = unlowered_expr_type (expr);
1661 bool rval = !!(kind & clk_rvalueref);
1662 type = cp_build_reference_type (type, rval);
1663 /* This inhibits warnings in, eg, cxx_mark_addressable
1664 (c++/60955). */
1665 warning_sentinel s (extra_warnings);
1666 expr = build_static_cast (type, expr, tf_error);
1667 if (expr != error_mark_node)
1668 REF_PARENTHESIZED_P (expr) = true;
1672 return expr;
1675 /* Finish a parenthesized expression EXPR. */
1677 tree
1678 finish_parenthesized_expr (tree expr)
1680 if (EXPR_P (expr))
1681 /* This inhibits warnings in c_common_truthvalue_conversion. */
1682 TREE_NO_WARNING (expr) = 1;
1684 if (TREE_CODE (expr) == OFFSET_REF
1685 || TREE_CODE (expr) == SCOPE_REF)
1686 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1687 enclosed in parentheses. */
1688 PTRMEM_OK_P (expr) = 0;
1690 if (TREE_CODE (expr) == STRING_CST)
1691 PAREN_STRING_LITERAL_P (expr) = 1;
1693 expr = force_paren_expr (expr);
1695 return expr;
1698 /* Finish a reference to a non-static data member (DECL) that is not
1699 preceded by `.' or `->'. */
1701 tree
1702 finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
1704 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1706 if (!object)
1708 tree scope = qualifying_scope;
1709 if (scope == NULL_TREE)
1710 scope = context_for_name_lookup (decl);
1711 object = maybe_dummy_object (scope, NULL);
1714 object = maybe_resolve_dummy (object, true);
1715 if (object == error_mark_node)
1716 return error_mark_node;
1718 /* DR 613/850: Can use non-static data members without an associated
1719 object in sizeof/decltype/alignof. */
1720 if (is_dummy_object (object) && cp_unevaluated_operand == 0
1721 && (!processing_template_decl || !current_class_ref))
1723 if (current_function_decl
1724 && DECL_STATIC_FUNCTION_P (current_function_decl))
1725 error ("invalid use of member %qD in static member function", decl);
1726 else
1727 error ("invalid use of non-static data member %qD", decl);
1728 inform (DECL_SOURCE_LOCATION (decl), "declared here");
1730 return error_mark_node;
1733 if (current_class_ptr)
1734 TREE_USED (current_class_ptr) = 1;
1735 if (processing_template_decl && !qualifying_scope)
1737 tree type = TREE_TYPE (decl);
1739 if (TREE_CODE (type) == REFERENCE_TYPE)
1740 /* Quals on the object don't matter. */;
1741 else if (PACK_EXPANSION_P (type))
1742 /* Don't bother trying to represent this. */
1743 type = NULL_TREE;
1744 else
1746 /* Set the cv qualifiers. */
1747 int quals = cp_type_quals (TREE_TYPE (object));
1749 if (DECL_MUTABLE_P (decl))
1750 quals &= ~TYPE_QUAL_CONST;
1752 quals |= cp_type_quals (TREE_TYPE (decl));
1753 type = cp_build_qualified_type (type, quals);
1756 return (convert_from_reference
1757 (build_min (COMPONENT_REF, type, object, decl, NULL_TREE)));
1759 /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1760 QUALIFYING_SCOPE is also non-null. Wrap this in a SCOPE_REF
1761 for now. */
1762 else if (processing_template_decl)
1763 return build_qualified_name (TREE_TYPE (decl),
1764 qualifying_scope,
1765 decl,
1766 /*template_p=*/false);
1767 else
1769 tree access_type = TREE_TYPE (object);
1771 perform_or_defer_access_check (TYPE_BINFO (access_type), decl,
1772 decl, tf_warning_or_error);
1774 /* If the data member was named `C::M', convert `*this' to `C'
1775 first. */
1776 if (qualifying_scope)
1778 tree binfo = NULL_TREE;
1779 object = build_scoped_ref (object, qualifying_scope,
1780 &binfo);
1783 return build_class_member_access_expr (object, decl,
1784 /*access_path=*/NULL_TREE,
1785 /*preserve_reference=*/false,
1786 tf_warning_or_error);
1790 /* If we are currently parsing a template and we encountered a typedef
1791 TYPEDEF_DECL that is being accessed though CONTEXT, this function
1792 adds the typedef to a list tied to the current template.
1793 At template instantiation time, that list is walked and access check
1794 performed for each typedef.
1795 LOCATION is the location of the usage point of TYPEDEF_DECL. */
1797 void
1798 add_typedef_to_current_template_for_access_check (tree typedef_decl,
1799 tree context,
1800 location_t location)
1802 tree template_info = NULL;
1803 tree cs = current_scope ();
1805 if (!is_typedef_decl (typedef_decl)
1806 || !context
1807 || !CLASS_TYPE_P (context)
1808 || !cs)
1809 return;
1811 if (CLASS_TYPE_P (cs) || TREE_CODE (cs) == FUNCTION_DECL)
1812 template_info = get_template_info (cs);
1814 if (template_info
1815 && TI_TEMPLATE (template_info)
1816 && !currently_open_class (context))
1817 append_type_to_template_for_access_check (cs, typedef_decl,
1818 context, location);
1821 /* DECL was the declaration to which a qualified-id resolved. Issue
1822 an error message if it is not accessible. If OBJECT_TYPE is
1823 non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1824 type of `*x', or `x', respectively. If the DECL was named as
1825 `A::B' then NESTED_NAME_SPECIFIER is `A'. */
1827 void
1828 check_accessibility_of_qualified_id (tree decl,
1829 tree object_type,
1830 tree nested_name_specifier)
1832 tree scope;
1833 tree qualifying_type = NULL_TREE;
1835 /* If we are parsing a template declaration and if decl is a typedef,
1836 add it to a list tied to the template.
1837 At template instantiation time, that list will be walked and
1838 access check performed. */
1839 add_typedef_to_current_template_for_access_check (decl,
1840 nested_name_specifier
1841 ? nested_name_specifier
1842 : DECL_CONTEXT (decl),
1843 input_location);
1845 /* If we're not checking, return immediately. */
1846 if (deferred_access_no_check)
1847 return;
1849 /* Determine the SCOPE of DECL. */
1850 scope = context_for_name_lookup (decl);
1851 /* If the SCOPE is not a type, then DECL is not a member. */
1852 if (!TYPE_P (scope))
1853 return;
1854 /* Compute the scope through which DECL is being accessed. */
1855 if (object_type
1856 /* OBJECT_TYPE might not be a class type; consider:
1858 class A { typedef int I; };
1859 I *p;
1860 p->A::I::~I();
1862 In this case, we will have "A::I" as the DECL, but "I" as the
1863 OBJECT_TYPE. */
1864 && CLASS_TYPE_P (object_type)
1865 && DERIVED_FROM_P (scope, object_type))
1866 /* If we are processing a `->' or `.' expression, use the type of the
1867 left-hand side. */
1868 qualifying_type = object_type;
1869 else if (nested_name_specifier)
1871 /* If the reference is to a non-static member of the
1872 current class, treat it as if it were referenced through
1873 `this'. */
1874 tree ct;
1875 if (DECL_NONSTATIC_MEMBER_P (decl)
1876 && current_class_ptr
1877 && DERIVED_FROM_P (scope, ct = current_nonlambda_class_type ()))
1878 qualifying_type = ct;
1879 /* Otherwise, use the type indicated by the
1880 nested-name-specifier. */
1881 else
1882 qualifying_type = nested_name_specifier;
1884 else
1885 /* Otherwise, the name must be from the current class or one of
1886 its bases. */
1887 qualifying_type = currently_open_derived_class (scope);
1889 if (qualifying_type
1890 /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1891 or similar in a default argument value. */
1892 && CLASS_TYPE_P (qualifying_type)
1893 && !dependent_type_p (qualifying_type))
1894 perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl,
1895 decl, tf_warning_or_error);
1898 /* EXPR is the result of a qualified-id. The QUALIFYING_CLASS was the
1899 class named to the left of the "::" operator. DONE is true if this
1900 expression is a complete postfix-expression; it is false if this
1901 expression is followed by '->', '[', '(', etc. ADDRESS_P is true
1902 iff this expression is the operand of '&'. TEMPLATE_P is true iff
1903 the qualified-id was of the form "A::template B". TEMPLATE_ARG_P
1904 is true iff this qualified name appears as a template argument. */
1906 tree
1907 finish_qualified_id_expr (tree qualifying_class,
1908 tree expr,
1909 bool done,
1910 bool address_p,
1911 bool template_p,
1912 bool template_arg_p,
1913 tsubst_flags_t complain)
1915 gcc_assert (TYPE_P (qualifying_class));
1917 if (error_operand_p (expr))
1918 return error_mark_node;
1920 if ((DECL_P (expr) || BASELINK_P (expr))
1921 && !mark_used (expr, complain))
1922 return error_mark_node;
1924 if (template_p)
1925 check_template_keyword (expr);
1927 /* If EXPR occurs as the operand of '&', use special handling that
1928 permits a pointer-to-member. */
1929 if (address_p && done)
1931 if (TREE_CODE (expr) == SCOPE_REF)
1932 expr = TREE_OPERAND (expr, 1);
1933 expr = build_offset_ref (qualifying_class, expr,
1934 /*address_p=*/true, complain);
1935 return expr;
1938 /* No need to check access within an enum. */
1939 if (TREE_CODE (qualifying_class) == ENUMERAL_TYPE)
1940 return expr;
1942 /* Within the scope of a class, turn references to non-static
1943 members into expression of the form "this->...". */
1944 if (template_arg_p)
1945 /* But, within a template argument, we do not want make the
1946 transformation, as there is no "this" pointer. */
1948 else if (TREE_CODE (expr) == FIELD_DECL)
1950 push_deferring_access_checks (dk_no_check);
1951 expr = finish_non_static_data_member (expr, NULL_TREE,
1952 qualifying_class);
1953 pop_deferring_access_checks ();
1955 else if (BASELINK_P (expr) && !processing_template_decl)
1957 /* See if any of the functions are non-static members. */
1958 /* If so, the expression may be relative to 'this'. */
1959 if (!shared_member_p (expr)
1960 && current_class_ptr
1961 && DERIVED_FROM_P (qualifying_class,
1962 current_nonlambda_class_type ()))
1963 expr = (build_class_member_access_expr
1964 (maybe_dummy_object (qualifying_class, NULL),
1965 expr,
1966 BASELINK_ACCESS_BINFO (expr),
1967 /*preserve_reference=*/false,
1968 complain));
1969 else if (done)
1970 /* The expression is a qualified name whose address is not
1971 being taken. */
1972 expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false,
1973 complain);
1975 else if (BASELINK_P (expr))
1977 else
1979 /* In a template, return a SCOPE_REF for most qualified-ids
1980 so that we can check access at instantiation time. But if
1981 we're looking at a member of the current instantiation, we
1982 know we have access and building up the SCOPE_REF confuses
1983 non-type template argument handling. */
1984 if (processing_template_decl
1985 && !currently_open_class (qualifying_class))
1986 expr = build_qualified_name (TREE_TYPE (expr),
1987 qualifying_class, expr,
1988 template_p);
1990 expr = convert_from_reference (expr);
1993 return expr;
1996 /* Begin a statement-expression. The value returned must be passed to
1997 finish_stmt_expr. */
1999 tree
2000 begin_stmt_expr (void)
2002 return push_stmt_list ();
2005 /* Process the final expression of a statement expression. EXPR can be
2006 NULL, if the final expression is empty. Return a STATEMENT_LIST
2007 containing all the statements in the statement-expression, or
2008 ERROR_MARK_NODE if there was an error. */
2010 tree
2011 finish_stmt_expr_expr (tree expr, tree stmt_expr)
2013 if (error_operand_p (expr))
2015 /* The type of the statement-expression is the type of the last
2016 expression. */
2017 TREE_TYPE (stmt_expr) = error_mark_node;
2018 return error_mark_node;
2021 /* If the last statement does not have "void" type, then the value
2022 of the last statement is the value of the entire expression. */
2023 if (expr)
2025 tree type = TREE_TYPE (expr);
2027 if (processing_template_decl)
2029 expr = build_stmt (input_location, EXPR_STMT, expr);
2030 expr = add_stmt (expr);
2031 /* Mark the last statement so that we can recognize it as such at
2032 template-instantiation time. */
2033 EXPR_STMT_STMT_EXPR_RESULT (expr) = 1;
2035 else if (VOID_TYPE_P (type))
2037 /* Just treat this like an ordinary statement. */
2038 expr = finish_expr_stmt (expr);
2040 else
2042 /* It actually has a value we need to deal with. First, force it
2043 to be an rvalue so that we won't need to build up a copy
2044 constructor call later when we try to assign it to something. */
2045 expr = force_rvalue (expr, tf_warning_or_error);
2046 if (error_operand_p (expr))
2047 return error_mark_node;
2049 /* Update for array-to-pointer decay. */
2050 type = TREE_TYPE (expr);
2052 /* Wrap it in a CLEANUP_POINT_EXPR and add it to the list like a
2053 normal statement, but don't convert to void or actually add
2054 the EXPR_STMT. */
2055 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
2056 expr = maybe_cleanup_point_expr (expr);
2057 add_stmt (expr);
2060 /* The type of the statement-expression is the type of the last
2061 expression. */
2062 TREE_TYPE (stmt_expr) = type;
2065 return stmt_expr;
2068 /* Finish a statement-expression. EXPR should be the value returned
2069 by the previous begin_stmt_expr. Returns an expression
2070 representing the statement-expression. */
2072 tree
2073 finish_stmt_expr (tree stmt_expr, bool has_no_scope)
2075 tree type;
2076 tree result;
2078 if (error_operand_p (stmt_expr))
2080 pop_stmt_list (stmt_expr);
2081 return error_mark_node;
2084 gcc_assert (TREE_CODE (stmt_expr) == STATEMENT_LIST);
2086 type = TREE_TYPE (stmt_expr);
2087 result = pop_stmt_list (stmt_expr);
2088 TREE_TYPE (result) = type;
2090 if (processing_template_decl)
2092 result = build_min (STMT_EXPR, type, result);
2093 TREE_SIDE_EFFECTS (result) = 1;
2094 STMT_EXPR_NO_SCOPE (result) = has_no_scope;
2096 else if (CLASS_TYPE_P (type))
2098 /* Wrap the statement-expression in a TARGET_EXPR so that the
2099 temporary object created by the final expression is destroyed at
2100 the end of the full-expression containing the
2101 statement-expression. */
2102 result = force_target_expr (type, result, tf_warning_or_error);
2105 return result;
2108 /* Returns the expression which provides the value of STMT_EXPR. */
2110 tree
2111 stmt_expr_value_expr (tree stmt_expr)
2113 tree t = STMT_EXPR_STMT (stmt_expr);
2115 if (TREE_CODE (t) == BIND_EXPR)
2116 t = BIND_EXPR_BODY (t);
2118 if (TREE_CODE (t) == STATEMENT_LIST && STATEMENT_LIST_TAIL (t))
2119 t = STATEMENT_LIST_TAIL (t)->stmt;
2121 if (TREE_CODE (t) == EXPR_STMT)
2122 t = EXPR_STMT_EXPR (t);
2124 return t;
2127 /* Return TRUE iff EXPR_STMT is an empty list of
2128 expression statements. */
2130 bool
2131 empty_expr_stmt_p (tree expr_stmt)
2133 tree body = NULL_TREE;
2135 if (expr_stmt == void_node)
2136 return true;
2138 if (expr_stmt)
2140 if (TREE_CODE (expr_stmt) == EXPR_STMT)
2141 body = EXPR_STMT_EXPR (expr_stmt);
2142 else if (TREE_CODE (expr_stmt) == STATEMENT_LIST)
2143 body = expr_stmt;
2146 if (body)
2148 if (TREE_CODE (body) == STATEMENT_LIST)
2149 return tsi_end_p (tsi_start (body));
2150 else
2151 return empty_expr_stmt_p (body);
2153 return false;
2156 /* Perform Koenig lookup. FN is the postfix-expression representing
2157 the function (or functions) to call; ARGS are the arguments to the
2158 call. Returns the functions to be considered by overload resolution. */
2160 tree
2161 perform_koenig_lookup (tree fn, vec<tree, va_gc> *args,
2162 tsubst_flags_t complain)
2164 tree identifier = NULL_TREE;
2165 tree functions = NULL_TREE;
2166 tree tmpl_args = NULL_TREE;
2167 bool template_id = false;
2169 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2171 /* Use a separate flag to handle null args. */
2172 template_id = true;
2173 tmpl_args = TREE_OPERAND (fn, 1);
2174 fn = TREE_OPERAND (fn, 0);
2177 /* Find the name of the overloaded function. */
2178 if (identifier_p (fn))
2179 identifier = fn;
2180 else if (is_overloaded_fn (fn))
2182 functions = fn;
2183 identifier = DECL_NAME (get_first_fn (functions));
2185 else if (DECL_P (fn))
2187 functions = fn;
2188 identifier = DECL_NAME (fn);
2191 /* A call to a namespace-scope function using an unqualified name.
2193 Do Koenig lookup -- unless any of the arguments are
2194 type-dependent. */
2195 if (!any_type_dependent_arguments_p (args)
2196 && !any_dependent_template_arguments_p (tmpl_args))
2198 fn = lookup_arg_dependent (identifier, functions, args);
2199 if (!fn)
2201 /* The unqualified name could not be resolved. */
2202 if (complain)
2203 fn = unqualified_fn_lookup_error (identifier);
2204 else
2205 fn = identifier;
2209 if (fn && template_id)
2210 fn = build2 (TEMPLATE_ID_EXPR, unknown_type_node, fn, tmpl_args);
2212 return fn;
2215 /* Generate an expression for `FN (ARGS)'. This may change the
2216 contents of ARGS.
2218 If DISALLOW_VIRTUAL is true, the call to FN will be not generated
2219 as a virtual call, even if FN is virtual. (This flag is set when
2220 encountering an expression where the function name is explicitly
2221 qualified. For example a call to `X::f' never generates a virtual
2222 call.)
2224 Returns code for the call. */
2226 tree
2227 finish_call_expr (tree fn, vec<tree, va_gc> **args, bool disallow_virtual,
2228 bool koenig_p, tsubst_flags_t complain)
2230 tree result;
2231 tree orig_fn;
2232 vec<tree, va_gc> *orig_args = NULL;
2234 if (fn == error_mark_node)
2235 return error_mark_node;
2237 gcc_assert (!TYPE_P (fn));
2239 orig_fn = fn;
2241 if (processing_template_decl)
2243 /* If the call expression is dependent, build a CALL_EXPR node
2244 with no type; type_dependent_expression_p recognizes
2245 expressions with no type as being dependent. */
2246 if (type_dependent_expression_p (fn)
2247 || any_type_dependent_arguments_p (*args)
2248 /* For a non-static member function that doesn't have an
2249 explicit object argument, we need to specifically
2250 test the type dependency of the "this" pointer because it
2251 is not included in *ARGS even though it is considered to
2252 be part of the list of arguments. Note that this is
2253 related to CWG issues 515 and 1005. */
2254 || (TREE_CODE (fn) != COMPONENT_REF
2255 && non_static_member_function_p (fn)
2256 && current_class_ref
2257 && type_dependent_expression_p (current_class_ref)))
2259 result = build_nt_call_vec (fn, *args);
2260 SET_EXPR_LOCATION (result, EXPR_LOC_OR_LOC (fn, input_location));
2261 KOENIG_LOOKUP_P (result) = koenig_p;
2262 if (cfun)
2266 tree fndecl = OVL_CURRENT (fn);
2267 if (TREE_CODE (fndecl) != FUNCTION_DECL
2268 || !TREE_THIS_VOLATILE (fndecl))
2269 break;
2270 fn = OVL_NEXT (fn);
2272 while (fn);
2273 if (!fn)
2274 current_function_returns_abnormally = 1;
2276 return result;
2278 orig_args = make_tree_vector_copy (*args);
2279 if (!BASELINK_P (fn)
2280 && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
2281 && TREE_TYPE (fn) != unknown_type_node)
2282 fn = build_non_dependent_expr (fn);
2283 make_args_non_dependent (*args);
2286 if (TREE_CODE (fn) == COMPONENT_REF)
2288 tree member = TREE_OPERAND (fn, 1);
2289 if (BASELINK_P (member))
2291 tree object = TREE_OPERAND (fn, 0);
2292 return build_new_method_call (object, member,
2293 args, NULL_TREE,
2294 (disallow_virtual
2295 ? LOOKUP_NORMAL | LOOKUP_NONVIRTUAL
2296 : LOOKUP_NORMAL),
2297 /*fn_p=*/NULL,
2298 complain);
2302 /* Per 13.3.1.1, '(&f)(...)' is the same as '(f)(...)'. */
2303 if (TREE_CODE (fn) == ADDR_EXPR
2304 && TREE_CODE (TREE_OPERAND (fn, 0)) == OVERLOAD)
2305 fn = TREE_OPERAND (fn, 0);
2307 if (is_overloaded_fn (fn))
2308 fn = baselink_for_fns (fn);
2310 result = NULL_TREE;
2311 if (BASELINK_P (fn))
2313 tree object;
2315 /* A call to a member function. From [over.call.func]:
2317 If the keyword this is in scope and refers to the class of
2318 that member function, or a derived class thereof, then the
2319 function call is transformed into a qualified function call
2320 using (*this) as the postfix-expression to the left of the
2321 . operator.... [Otherwise] a contrived object of type T
2322 becomes the implied object argument.
2324 In this situation:
2326 struct A { void f(); };
2327 struct B : public A {};
2328 struct C : public A { void g() { B::f(); }};
2330 "the class of that member function" refers to `A'. But 11.2
2331 [class.access.base] says that we need to convert 'this' to B* as
2332 part of the access, so we pass 'B' to maybe_dummy_object. */
2334 object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
2335 NULL);
2337 if (processing_template_decl)
2339 if (type_dependent_expression_p (object))
2341 tree ret = build_nt_call_vec (orig_fn, orig_args);
2342 release_tree_vector (orig_args);
2343 return ret;
2345 object = build_non_dependent_expr (object);
2348 result = build_new_method_call (object, fn, args, NULL_TREE,
2349 (disallow_virtual
2350 ? LOOKUP_NORMAL|LOOKUP_NONVIRTUAL
2351 : LOOKUP_NORMAL),
2352 /*fn_p=*/NULL,
2353 complain);
2355 else if (is_overloaded_fn (fn))
2357 /* If the function is an overloaded builtin, resolve it. */
2358 if (TREE_CODE (fn) == FUNCTION_DECL
2359 && (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2360 || DECL_BUILT_IN_CLASS (fn) == BUILT_IN_MD))
2361 result = resolve_overloaded_builtin (input_location, fn, *args);
2363 if (!result)
2365 if (warn_sizeof_pointer_memaccess
2366 && !vec_safe_is_empty (*args)
2367 && !processing_template_decl)
2369 location_t sizeof_arg_loc[3];
2370 tree sizeof_arg[3];
2371 unsigned int i;
2372 for (i = 0; i < 3; i++)
2374 tree t;
2376 sizeof_arg_loc[i] = UNKNOWN_LOCATION;
2377 sizeof_arg[i] = NULL_TREE;
2378 if (i >= (*args)->length ())
2379 continue;
2380 t = (**args)[i];
2381 if (TREE_CODE (t) != SIZEOF_EXPR)
2382 continue;
2383 if (SIZEOF_EXPR_TYPE_P (t))
2384 sizeof_arg[i] = TREE_TYPE (TREE_OPERAND (t, 0));
2385 else
2386 sizeof_arg[i] = TREE_OPERAND (t, 0);
2387 sizeof_arg_loc[i] = EXPR_LOCATION (t);
2389 sizeof_pointer_memaccess_warning
2390 (sizeof_arg_loc, fn, *args,
2391 sizeof_arg, same_type_ignoring_top_level_qualifiers_p);
2394 /* A call to a namespace-scope function. */
2395 result = build_new_function_call (fn, args, koenig_p, complain);
2398 else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
2400 if (!vec_safe_is_empty (*args))
2401 error ("arguments to destructor are not allowed");
2402 /* Mark the pseudo-destructor call as having side-effects so
2403 that we do not issue warnings about its use. */
2404 result = build1 (NOP_EXPR,
2405 void_type_node,
2406 TREE_OPERAND (fn, 0));
2407 TREE_SIDE_EFFECTS (result) = 1;
2409 else if (CLASS_TYPE_P (TREE_TYPE (fn)))
2410 /* If the "function" is really an object of class type, it might
2411 have an overloaded `operator ()'. */
2412 result = build_op_call (fn, args, complain);
2414 if (!result)
2415 /* A call where the function is unknown. */
2416 result = cp_build_function_call_vec (fn, args, complain);
2418 if (processing_template_decl && result != error_mark_node)
2420 if (INDIRECT_REF_P (result))
2421 result = TREE_OPERAND (result, 0);
2422 result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
2423 SET_EXPR_LOCATION (result, input_location);
2424 KOENIG_LOOKUP_P (result) = koenig_p;
2425 release_tree_vector (orig_args);
2426 result = convert_from_reference (result);
2429 if (koenig_p)
2431 /* Free garbage OVERLOADs from arg-dependent lookup. */
2432 tree next = NULL_TREE;
2433 for (fn = orig_fn;
2434 fn && TREE_CODE (fn) == OVERLOAD && OVL_ARG_DEPENDENT (fn);
2435 fn = next)
2437 if (processing_template_decl)
2438 /* In a template, we'll re-use them at instantiation time. */
2439 OVL_ARG_DEPENDENT (fn) = false;
2440 else
2442 next = OVL_CHAIN (fn);
2443 ggc_free (fn);
2448 return result;
2451 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
2453 tree
2454 finish_template_variable (tree var)
2456 return instantiate_template (TREE_OPERAND (var, 0), TREE_OPERAND (var, 1),
2457 tf_error);
2460 /* Finish a call to a postfix increment or decrement or EXPR. (Which
2461 is indicated by CODE, which should be POSTINCREMENT_EXPR or
2462 POSTDECREMENT_EXPR.) */
2464 tree
2465 finish_increment_expr (tree expr, enum tree_code code)
2467 return build_x_unary_op (input_location, code, expr, tf_warning_or_error);
2470 /* Finish a use of `this'. Returns an expression for `this'. */
2472 tree
2473 finish_this_expr (void)
2475 tree result = NULL_TREE;
2477 if (current_class_ptr)
2479 tree type = TREE_TYPE (current_class_ref);
2481 /* In a lambda expression, 'this' refers to the captured 'this'. */
2482 if (LAMBDA_TYPE_P (type))
2483 result = lambda_expr_this_capture (CLASSTYPE_LAMBDA_EXPR (type), true);
2484 else
2485 result = current_class_ptr;
2488 if (result)
2489 /* The keyword 'this' is a prvalue expression. */
2490 return rvalue (result);
2492 tree fn = current_nonlambda_function ();
2493 if (fn && DECL_STATIC_FUNCTION_P (fn))
2494 error ("%<this%> is unavailable for static member functions");
2495 else if (fn)
2496 error ("invalid use of %<this%> in non-member function");
2497 else
2498 error ("invalid use of %<this%> at top level");
2499 return error_mark_node;
2502 /* Finish a pseudo-destructor expression. If SCOPE is NULL, the
2503 expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
2504 the TYPE for the type given. If SCOPE is non-NULL, the expression
2505 was of the form `OBJECT.SCOPE::~DESTRUCTOR'. */
2507 tree
2508 finish_pseudo_destructor_expr (tree object, tree scope, tree destructor,
2509 location_t loc)
2511 if (object == error_mark_node || destructor == error_mark_node)
2512 return error_mark_node;
2514 gcc_assert (TYPE_P (destructor));
2516 if (!processing_template_decl)
2518 if (scope == error_mark_node)
2520 error_at (loc, "invalid qualifying scope in pseudo-destructor name");
2521 return error_mark_node;
2523 if (is_auto (destructor))
2524 destructor = TREE_TYPE (object);
2525 if (scope && TYPE_P (scope) && !check_dtor_name (scope, destructor))
2527 error_at (loc,
2528 "qualified type %qT does not match destructor name ~%qT",
2529 scope, destructor);
2530 return error_mark_node;
2534 /* [expr.pseudo] says both:
2536 The type designated by the pseudo-destructor-name shall be
2537 the same as the object type.
2539 and:
2541 The cv-unqualified versions of the object type and of the
2542 type designated by the pseudo-destructor-name shall be the
2543 same type.
2545 We implement the more generous second sentence, since that is
2546 what most other compilers do. */
2547 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
2548 destructor))
2550 error_at (loc, "%qE is not of type %qT", object, destructor);
2551 return error_mark_node;
2555 return build3_loc (loc, PSEUDO_DTOR_EXPR, void_type_node, object,
2556 scope, destructor);
2559 /* Finish an expression of the form CODE EXPR. */
2561 tree
2562 finish_unary_op_expr (location_t loc, enum tree_code code, tree expr,
2563 tsubst_flags_t complain)
2565 tree result = build_x_unary_op (loc, code, expr, complain);
2566 if ((complain & tf_warning)
2567 && TREE_OVERFLOW_P (result) && !TREE_OVERFLOW_P (expr))
2568 overflow_warning (input_location, result);
2570 return result;
2573 /* Finish a compound-literal expression. TYPE is the type to which
2574 the CONSTRUCTOR in COMPOUND_LITERAL is being cast. */
2576 tree
2577 finish_compound_literal (tree type, tree compound_literal,
2578 tsubst_flags_t complain)
2580 if (type == error_mark_node)
2581 return error_mark_node;
2583 if (TREE_CODE (type) == REFERENCE_TYPE)
2585 compound_literal
2586 = finish_compound_literal (TREE_TYPE (type), compound_literal,
2587 complain);
2588 return cp_build_c_cast (type, compound_literal, complain);
2591 if (!TYPE_OBJ_P (type))
2593 if (complain & tf_error)
2594 error ("compound literal of non-object type %qT", type);
2595 return error_mark_node;
2598 if (processing_template_decl)
2600 TREE_TYPE (compound_literal) = type;
2601 /* Mark the expression as a compound literal. */
2602 TREE_HAS_CONSTRUCTOR (compound_literal) = 1;
2603 return compound_literal;
2606 type = complete_type (type);
2608 if (TYPE_NON_AGGREGATE_CLASS (type))
2610 /* Trying to deal with a CONSTRUCTOR instead of a TREE_LIST
2611 everywhere that deals with function arguments would be a pain, so
2612 just wrap it in a TREE_LIST. The parser set a flag so we know
2613 that it came from T{} rather than T({}). */
2614 CONSTRUCTOR_IS_DIRECT_INIT (compound_literal) = 1;
2615 compound_literal = build_tree_list (NULL_TREE, compound_literal);
2616 return build_functional_cast (type, compound_literal, complain);
2619 if (TREE_CODE (type) == ARRAY_TYPE
2620 && check_array_initializer (NULL_TREE, type, compound_literal))
2621 return error_mark_node;
2622 compound_literal = reshape_init (type, compound_literal, complain);
2623 if (SCALAR_TYPE_P (type)
2624 && !BRACE_ENCLOSED_INITIALIZER_P (compound_literal)
2625 && !check_narrowing (type, compound_literal, complain))
2626 return error_mark_node;
2627 if (TREE_CODE (type) == ARRAY_TYPE
2628 && TYPE_DOMAIN (type) == NULL_TREE)
2630 cp_complete_array_type_or_error (&type, compound_literal,
2631 false, complain);
2632 if (type == error_mark_node)
2633 return error_mark_node;
2635 compound_literal = digest_init (type, compound_literal, complain);
2636 if (TREE_CODE (compound_literal) == CONSTRUCTOR)
2637 TREE_HAS_CONSTRUCTOR (compound_literal) = true;
2638 /* Put static/constant array temporaries in static variables, but always
2639 represent class temporaries with TARGET_EXPR so we elide copies. */
2640 if ((!at_function_scope_p () || CP_TYPE_CONST_P (type))
2641 && TREE_CODE (type) == ARRAY_TYPE
2642 && !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
2643 && initializer_constant_valid_p (compound_literal, type))
2645 tree decl = create_temporary_var (type);
2646 DECL_INITIAL (decl) = compound_literal;
2647 TREE_STATIC (decl) = 1;
2648 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
2650 /* 5.19 says that a constant expression can include an
2651 lvalue-rvalue conversion applied to "a glvalue of literal type
2652 that refers to a non-volatile temporary object initialized
2653 with a constant expression". Rather than try to communicate
2654 that this VAR_DECL is a temporary, just mark it constexpr. */
2655 DECL_DECLARED_CONSTEXPR_P (decl) = true;
2656 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
2657 TREE_CONSTANT (decl) = true;
2659 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
2660 decl = pushdecl_top_level (decl);
2661 DECL_NAME (decl) = make_anon_name ();
2662 SET_DECL_ASSEMBLER_NAME (decl, DECL_NAME (decl));
2663 /* Make sure the destructor is callable. */
2664 tree clean = cxx_maybe_build_cleanup (decl, complain);
2665 if (clean == error_mark_node)
2666 return error_mark_node;
2667 return decl;
2669 else
2670 return get_target_expr_sfinae (compound_literal, complain);
2673 /* Return the declaration for the function-name variable indicated by
2674 ID. */
2676 tree
2677 finish_fname (tree id)
2679 tree decl;
2681 decl = fname_decl (input_location, C_RID_CODE (id), id);
2682 if (processing_template_decl && current_function_decl
2683 && decl != error_mark_node)
2684 decl = DECL_NAME (decl);
2685 return decl;
2688 /* Finish a translation unit. */
2690 void
2691 finish_translation_unit (void)
2693 /* In case there were missing closebraces,
2694 get us back to the global binding level. */
2695 pop_everything ();
2696 while (current_namespace != global_namespace)
2697 pop_namespace ();
2699 /* Do file scope __FUNCTION__ et al. */
2700 finish_fname_decls ();
2703 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
2704 Returns the parameter. */
2706 tree
2707 finish_template_type_parm (tree aggr, tree identifier)
2709 if (aggr != class_type_node)
2711 permerror (input_location, "template type parameters must use the keyword %<class%> or %<typename%>");
2712 aggr = class_type_node;
2715 return build_tree_list (aggr, identifier);
2718 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
2719 Returns the parameter. */
2721 tree
2722 finish_template_template_parm (tree aggr, tree identifier)
2724 tree decl = build_decl (input_location,
2725 TYPE_DECL, identifier, NULL_TREE);
2726 tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2727 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2728 DECL_TEMPLATE_RESULT (tmpl) = decl;
2729 DECL_ARTIFICIAL (decl) = 1;
2730 end_template_decl ();
2732 gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
2734 check_default_tmpl_args (decl, DECL_TEMPLATE_PARMS (tmpl),
2735 /*is_primary=*/true, /*is_partial=*/false,
2736 /*is_friend=*/0);
2738 return finish_template_type_parm (aggr, tmpl);
2741 /* ARGUMENT is the default-argument value for a template template
2742 parameter. If ARGUMENT is invalid, issue error messages and return
2743 the ERROR_MARK_NODE. Otherwise, ARGUMENT itself is returned. */
2745 tree
2746 check_template_template_default_arg (tree argument)
2748 if (TREE_CODE (argument) != TEMPLATE_DECL
2749 && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
2750 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
2752 if (TREE_CODE (argument) == TYPE_DECL)
2753 error ("invalid use of type %qT as a default value for a template "
2754 "template-parameter", TREE_TYPE (argument));
2755 else
2756 error ("invalid default argument for a template template parameter");
2757 return error_mark_node;
2760 return argument;
2763 /* Begin a class definition, as indicated by T. */
2765 tree
2766 begin_class_definition (tree t)
2768 if (error_operand_p (t) || error_operand_p (TYPE_MAIN_DECL (t)))
2769 return error_mark_node;
2771 if (processing_template_parmlist)
2773 error ("definition of %q#T inside template parameter list", t);
2774 return error_mark_node;
2777 /* According to the C++ ABI, decimal classes defined in ISO/IEC TR 24733
2778 are passed the same as decimal scalar types. */
2779 if (TREE_CODE (t) == RECORD_TYPE
2780 && !processing_template_decl)
2782 tree ns = TYPE_CONTEXT (t);
2783 if (ns && TREE_CODE (ns) == NAMESPACE_DECL
2784 && DECL_CONTEXT (ns) == std_node
2785 && DECL_NAME (ns)
2786 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (ns)), "decimal"))
2788 const char *n = TYPE_NAME_STRING (t);
2789 if ((strcmp (n, "decimal32") == 0)
2790 || (strcmp (n, "decimal64") == 0)
2791 || (strcmp (n, "decimal128") == 0))
2792 TYPE_TRANSPARENT_AGGR (t) = 1;
2796 /* A non-implicit typename comes from code like:
2798 template <typename T> struct A {
2799 template <typename U> struct A<T>::B ...
2801 This is erroneous. */
2802 else if (TREE_CODE (t) == TYPENAME_TYPE)
2804 error ("invalid definition of qualified type %qT", t);
2805 t = error_mark_node;
2808 if (t == error_mark_node || ! MAYBE_CLASS_TYPE_P (t))
2810 t = make_class_type (RECORD_TYPE);
2811 pushtag (make_anon_name (), t, /*tag_scope=*/ts_current);
2814 if (TYPE_BEING_DEFINED (t))
2816 t = make_class_type (TREE_CODE (t));
2817 pushtag (TYPE_IDENTIFIER (t), t, /*tag_scope=*/ts_current);
2819 maybe_process_partial_specialization (t);
2820 pushclass (t);
2821 TYPE_BEING_DEFINED (t) = 1;
2822 class_binding_level->defining_class_p = 1;
2824 if (flag_pack_struct)
2826 tree v;
2827 TYPE_PACKED (t) = 1;
2828 /* Even though the type is being defined for the first time
2829 here, there might have been a forward declaration, so there
2830 might be cv-qualified variants of T. */
2831 for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
2832 TYPE_PACKED (v) = 1;
2834 /* Reset the interface data, at the earliest possible
2835 moment, as it might have been set via a class foo;
2836 before. */
2837 if (! TYPE_ANONYMOUS_P (t))
2839 struct c_fileinfo *finfo = \
2840 get_fileinfo (LOCATION_FILE (input_location));
2841 CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
2842 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
2843 (t, finfo->interface_unknown);
2845 reset_specialization();
2847 /* Make a declaration for this class in its own scope. */
2848 build_self_reference ();
2850 return t;
2853 /* Finish the member declaration given by DECL. */
2855 void
2856 finish_member_declaration (tree decl)
2858 if (decl == error_mark_node || decl == NULL_TREE)
2859 return;
2861 if (decl == void_type_node)
2862 /* The COMPONENT was a friend, not a member, and so there's
2863 nothing for us to do. */
2864 return;
2866 /* We should see only one DECL at a time. */
2867 gcc_assert (DECL_CHAIN (decl) == NULL_TREE);
2869 /* Set up access control for DECL. */
2870 TREE_PRIVATE (decl)
2871 = (current_access_specifier == access_private_node);
2872 TREE_PROTECTED (decl)
2873 = (current_access_specifier == access_protected_node);
2874 if (TREE_CODE (decl) == TEMPLATE_DECL)
2876 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
2877 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
2880 /* Mark the DECL as a member of the current class, unless it's
2881 a member of an enumeration. */
2882 if (TREE_CODE (decl) != CONST_DECL)
2883 DECL_CONTEXT (decl) = current_class_type;
2885 /* Check for bare parameter packs in the member variable declaration. */
2886 if (TREE_CODE (decl) == FIELD_DECL)
2888 if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
2889 TREE_TYPE (decl) = error_mark_node;
2890 if (check_for_bare_parameter_packs (DECL_ATTRIBUTES (decl)))
2891 DECL_ATTRIBUTES (decl) = NULL_TREE;
2894 /* [dcl.link]
2896 A C language linkage is ignored for the names of class members
2897 and the member function type of class member functions. */
2898 if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
2899 SET_DECL_LANGUAGE (decl, lang_cplusplus);
2901 /* Put functions on the TYPE_METHODS list and everything else on the
2902 TYPE_FIELDS list. Note that these are built up in reverse order.
2903 We reverse them (to obtain declaration order) in finish_struct. */
2904 if (DECL_DECLARES_FUNCTION_P (decl))
2906 /* We also need to add this function to the
2907 CLASSTYPE_METHOD_VEC. */
2908 if (add_method (current_class_type, decl, NULL_TREE))
2910 DECL_CHAIN (decl) = TYPE_METHODS (current_class_type);
2911 TYPE_METHODS (current_class_type) = decl;
2913 maybe_add_class_template_decl_list (current_class_type, decl,
2914 /*friend_p=*/0);
2917 /* Enter the DECL into the scope of the class, if the class
2918 isn't a closure (whose fields are supposed to be unnamed). */
2919 else if (CLASSTYPE_LAMBDA_EXPR (current_class_type)
2920 || pushdecl_class_level (decl))
2922 if (TREE_CODE (decl) == USING_DECL)
2924 /* For now, ignore class-scope USING_DECLS, so that
2925 debugging backends do not see them. */
2926 DECL_IGNORED_P (decl) = 1;
2929 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
2930 go at the beginning. The reason is that lookup_field_1
2931 searches the list in order, and we want a field name to
2932 override a type name so that the "struct stat hack" will
2933 work. In particular:
2935 struct S { enum E { }; int E } s;
2936 s.E = 3;
2938 is valid. In addition, the FIELD_DECLs must be maintained in
2939 declaration order so that class layout works as expected.
2940 However, we don't need that order until class layout, so we
2941 save a little time by putting FIELD_DECLs on in reverse order
2942 here, and then reversing them in finish_struct_1. (We could
2943 also keep a pointer to the correct insertion points in the
2944 list.) */
2946 if (TREE_CODE (decl) == TYPE_DECL)
2947 TYPE_FIELDS (current_class_type)
2948 = chainon (TYPE_FIELDS (current_class_type), decl);
2949 else
2951 DECL_CHAIN (decl) = TYPE_FIELDS (current_class_type);
2952 TYPE_FIELDS (current_class_type) = decl;
2955 maybe_add_class_template_decl_list (current_class_type, decl,
2956 /*friend_p=*/0);
2959 if (pch_file)
2960 note_decl_for_pch (decl);
2963 /* DECL has been declared while we are building a PCH file. Perform
2964 actions that we might normally undertake lazily, but which can be
2965 performed now so that they do not have to be performed in
2966 translation units which include the PCH file. */
2968 void
2969 note_decl_for_pch (tree decl)
2971 gcc_assert (pch_file);
2973 /* There's a good chance that we'll have to mangle names at some
2974 point, even if only for emission in debugging information. */
2975 if (VAR_OR_FUNCTION_DECL_P (decl)
2976 && !processing_template_decl)
2977 mangle_decl (decl);
2980 /* Finish processing a complete template declaration. The PARMS are
2981 the template parameters. */
2983 void
2984 finish_template_decl (tree parms)
2986 if (parms)
2987 end_template_decl ();
2988 else
2989 end_specialization ();
2992 /* Finish processing a template-id (which names a type) of the form
2993 NAME < ARGS >. Return the TYPE_DECL for the type named by the
2994 template-id. If ENTERING_SCOPE is nonzero we are about to enter
2995 the scope of template-id indicated. */
2997 tree
2998 finish_template_type (tree name, tree args, int entering_scope)
3000 tree type;
3002 type = lookup_template_class (name, args,
3003 NULL_TREE, NULL_TREE, entering_scope,
3004 tf_warning_or_error | tf_user);
3005 if (type == error_mark_node)
3006 return type;
3007 else if (CLASS_TYPE_P (type) && !alias_type_or_template_p (type))
3008 return TYPE_STUB_DECL (type);
3009 else
3010 return TYPE_NAME (type);
3013 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
3014 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
3015 BASE_CLASS, or NULL_TREE if an error occurred. The
3016 ACCESS_SPECIFIER is one of
3017 access_{default,public,protected_private}_node. For a virtual base
3018 we set TREE_TYPE. */
3020 tree
3021 finish_base_specifier (tree base, tree access, bool virtual_p)
3023 tree result;
3025 if (base == error_mark_node)
3027 error ("invalid base-class specification");
3028 result = NULL_TREE;
3030 else if (! MAYBE_CLASS_TYPE_P (base))
3032 error ("%qT is not a class type", base);
3033 result = NULL_TREE;
3035 else
3037 if (cp_type_quals (base) != 0)
3039 /* DR 484: Can a base-specifier name a cv-qualified
3040 class type? */
3041 base = TYPE_MAIN_VARIANT (base);
3043 result = build_tree_list (access, base);
3044 if (virtual_p)
3045 TREE_TYPE (result) = integer_type_node;
3048 return result;
3051 /* If FNS is a member function, a set of member functions, or a
3052 template-id referring to one or more member functions, return a
3053 BASELINK for FNS, incorporating the current access context.
3054 Otherwise, return FNS unchanged. */
3056 tree
3057 baselink_for_fns (tree fns)
3059 tree scope;
3060 tree cl;
3062 if (BASELINK_P (fns)
3063 || error_operand_p (fns))
3064 return fns;
3066 scope = ovl_scope (fns);
3067 if (!CLASS_TYPE_P (scope))
3068 return fns;
3070 cl = currently_open_derived_class (scope);
3071 if (!cl)
3072 cl = scope;
3073 cl = TYPE_BINFO (cl);
3074 return build_baselink (cl, cl, fns, /*optype=*/NULL_TREE);
3077 /* Returns true iff DECL is a variable from a function outside
3078 the current one. */
3080 static bool
3081 outer_var_p (tree decl)
3083 return ((VAR_P (decl) || TREE_CODE (decl) == PARM_DECL)
3084 && DECL_FUNCTION_SCOPE_P (decl)
3085 && (DECL_CONTEXT (decl) != current_function_decl
3086 || parsing_nsdmi ()));
3089 /* As above, but also checks that DECL is automatic. */
3091 bool
3092 outer_automatic_var_p (tree decl)
3094 return (outer_var_p (decl)
3095 && !TREE_STATIC (decl));
3098 /* DECL satisfies outer_automatic_var_p. Possibly complain about it or
3099 rewrite it for lambda capture. */
3101 tree
3102 process_outer_var_ref (tree decl, tsubst_flags_t complain)
3104 if (cp_unevaluated_operand)
3105 /* It's not a use (3.2) if we're in an unevaluated context. */
3106 return decl;
3108 tree context = DECL_CONTEXT (decl);
3109 tree containing_function = current_function_decl;
3110 tree lambda_stack = NULL_TREE;
3111 tree lambda_expr = NULL_TREE;
3112 tree initializer = convert_from_reference (decl);
3114 /* Mark it as used now even if the use is ill-formed. */
3115 mark_used (decl);
3117 /* Core issue 696: "[At the July 2009 meeting] the CWG expressed
3118 support for an approach in which a reference to a local
3119 [constant] automatic variable in a nested class or lambda body
3120 would enter the expression as an rvalue, which would reduce
3121 the complexity of the problem"
3123 FIXME update for final resolution of core issue 696. */
3124 if (decl_maybe_constant_var_p (decl))
3126 if (processing_template_decl)
3127 /* In a template, the constant value may not be in a usable
3128 form, so wait until instantiation time. */
3129 return decl;
3130 else if (decl_constant_var_p (decl))
3131 return scalar_constant_value (decl);
3134 if (parsing_nsdmi ())
3135 containing_function = NULL_TREE;
3136 else
3137 /* If we are in a lambda function, we can move out until we hit
3138 1. the context,
3139 2. a non-lambda function, or
3140 3. a non-default capturing lambda function. */
3141 while (context != containing_function
3142 && LAMBDA_FUNCTION_P (containing_function))
3144 lambda_expr = CLASSTYPE_LAMBDA_EXPR
3145 (DECL_CONTEXT (containing_function));
3147 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr)
3148 == CPLD_NONE)
3149 break;
3151 lambda_stack = tree_cons (NULL_TREE,
3152 lambda_expr,
3153 lambda_stack);
3155 containing_function
3156 = decl_function_context (containing_function);
3159 if (lambda_expr && TREE_CODE (decl) == VAR_DECL
3160 && DECL_ANON_UNION_VAR_P (decl))
3162 if (complain & tf_error)
3163 error ("cannot capture member %qD of anonymous union", decl);
3164 return error_mark_node;
3166 if (context == containing_function)
3168 decl = add_default_capture (lambda_stack,
3169 /*id=*/DECL_NAME (decl),
3170 initializer);
3172 else if (lambda_expr)
3174 if (complain & tf_error)
3175 error ("%qD is not captured", decl);
3176 return error_mark_node;
3178 else
3180 if (complain & tf_error)
3181 error (VAR_P (decl)
3182 ? G_("use of local variable with automatic storage from containing function")
3183 : G_("use of parameter from containing function"));
3184 inform (input_location, "%q+#D declared here", decl);
3185 return error_mark_node;
3187 return decl;
3190 /* ID_EXPRESSION is a representation of parsed, but unprocessed,
3191 id-expression. (See cp_parser_id_expression for details.) SCOPE,
3192 if non-NULL, is the type or namespace used to explicitly qualify
3193 ID_EXPRESSION. DECL is the entity to which that name has been
3194 resolved.
3196 *CONSTANT_EXPRESSION_P is true if we are presently parsing a
3197 constant-expression. In that case, *NON_CONSTANT_EXPRESSION_P will
3198 be set to true if this expression isn't permitted in a
3199 constant-expression, but it is otherwise not set by this function.
3200 *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
3201 constant-expression, but a non-constant expression is also
3202 permissible.
3204 DONE is true if this expression is a complete postfix-expression;
3205 it is false if this expression is followed by '->', '[', '(', etc.
3206 ADDRESS_P is true iff this expression is the operand of '&'.
3207 TEMPLATE_P is true iff the qualified-id was of the form
3208 "A::template B". TEMPLATE_ARG_P is true iff this qualified name
3209 appears as a template argument.
3211 If an error occurs, and it is the kind of error that might cause
3212 the parser to abort a tentative parse, *ERROR_MSG is filled in. It
3213 is the caller's responsibility to issue the message. *ERROR_MSG
3214 will be a string with static storage duration, so the caller need
3215 not "free" it.
3217 Return an expression for the entity, after issuing appropriate
3218 diagnostics. This function is also responsible for transforming a
3219 reference to a non-static member into a COMPONENT_REF that makes
3220 the use of "this" explicit.
3222 Upon return, *IDK will be filled in appropriately. */
3223 tree
3224 finish_id_expression (tree id_expression,
3225 tree decl,
3226 tree scope,
3227 cp_id_kind *idk,
3228 bool integral_constant_expression_p,
3229 bool allow_non_integral_constant_expression_p,
3230 bool *non_integral_constant_expression_p,
3231 bool template_p,
3232 bool done,
3233 bool address_p,
3234 bool template_arg_p,
3235 const char **error_msg,
3236 location_t location)
3238 decl = strip_using_decl (decl);
3240 /* Initialize the output parameters. */
3241 *idk = CP_ID_KIND_NONE;
3242 *error_msg = NULL;
3244 if (id_expression == error_mark_node)
3245 return error_mark_node;
3246 /* If we have a template-id, then no further lookup is
3247 required. If the template-id was for a template-class, we
3248 will sometimes have a TYPE_DECL at this point. */
3249 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3250 || TREE_CODE (decl) == TYPE_DECL)
3252 /* Look up the name. */
3253 else
3255 if (decl == error_mark_node)
3257 /* Name lookup failed. */
3258 if (scope
3259 && (!TYPE_P (scope)
3260 || (!dependent_type_p (scope)
3261 && !(identifier_p (id_expression)
3262 && IDENTIFIER_TYPENAME_P (id_expression)
3263 && dependent_type_p (TREE_TYPE (id_expression))))))
3265 /* If the qualifying type is non-dependent (and the name
3266 does not name a conversion operator to a dependent
3267 type), issue an error. */
3268 qualified_name_lookup_error (scope, id_expression, decl, location);
3269 return error_mark_node;
3271 else if (!scope)
3273 /* It may be resolved via Koenig lookup. */
3274 *idk = CP_ID_KIND_UNQUALIFIED;
3275 return id_expression;
3277 else
3278 decl = id_expression;
3280 /* If DECL is a variable that would be out of scope under
3281 ANSI/ISO rules, but in scope in the ARM, name lookup
3282 will succeed. Issue a diagnostic here. */
3283 else
3284 decl = check_for_out_of_scope_variable (decl);
3286 /* Remember that the name was used in the definition of
3287 the current class so that we can check later to see if
3288 the meaning would have been different after the class
3289 was entirely defined. */
3290 if (!scope && decl != error_mark_node && identifier_p (id_expression))
3291 maybe_note_name_used_in_class (id_expression, decl);
3293 /* Disallow uses of local variables from containing functions, except
3294 within lambda-expressions. */
3295 if (outer_automatic_var_p (decl))
3297 decl = process_outer_var_ref (decl, tf_warning_or_error);
3298 if (decl == error_mark_node)
3299 return error_mark_node;
3302 /* Also disallow uses of function parameters outside the function
3303 body, except inside an unevaluated context (i.e. decltype). */
3304 if (TREE_CODE (decl) == PARM_DECL
3305 && DECL_CONTEXT (decl) == NULL_TREE
3306 && !cp_unevaluated_operand)
3308 *error_msg = "use of parameter outside function body";
3309 return error_mark_node;
3313 /* If we didn't find anything, or what we found was a type,
3314 then this wasn't really an id-expression. */
3315 if (TREE_CODE (decl) == TEMPLATE_DECL
3316 && !DECL_FUNCTION_TEMPLATE_P (decl))
3318 *error_msg = "missing template arguments";
3319 return error_mark_node;
3321 else if (TREE_CODE (decl) == TYPE_DECL
3322 || TREE_CODE (decl) == NAMESPACE_DECL)
3324 *error_msg = "expected primary-expression";
3325 return error_mark_node;
3328 /* If the name resolved to a template parameter, there is no
3329 need to look it up again later. */
3330 if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
3331 || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3333 tree r;
3335 *idk = CP_ID_KIND_NONE;
3336 if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3337 decl = TEMPLATE_PARM_DECL (decl);
3338 r = convert_from_reference (DECL_INITIAL (decl));
3340 if (integral_constant_expression_p
3341 && !dependent_type_p (TREE_TYPE (decl))
3342 && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r))))
3344 if (!allow_non_integral_constant_expression_p)
3345 error ("template parameter %qD of type %qT is not allowed in "
3346 "an integral constant expression because it is not of "
3347 "integral or enumeration type", decl, TREE_TYPE (decl));
3348 *non_integral_constant_expression_p = true;
3350 return r;
3352 else
3354 bool dependent_p;
3356 /* If the declaration was explicitly qualified indicate
3357 that. The semantics of `A::f(3)' are different than
3358 `f(3)' if `f' is virtual. */
3359 *idk = (scope
3360 ? CP_ID_KIND_QUALIFIED
3361 : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3362 ? CP_ID_KIND_TEMPLATE_ID
3363 : CP_ID_KIND_UNQUALIFIED));
3366 /* [temp.dep.expr]
3368 An id-expression is type-dependent if it contains an
3369 identifier that was declared with a dependent type.
3371 The standard is not very specific about an id-expression that
3372 names a set of overloaded functions. What if some of them
3373 have dependent types and some of them do not? Presumably,
3374 such a name should be treated as a dependent name. */
3375 /* Assume the name is not dependent. */
3376 dependent_p = false;
3377 if (!processing_template_decl)
3378 /* No names are dependent outside a template. */
3380 else if (TREE_CODE (decl) == CONST_DECL)
3381 /* We don't want to treat enumerators as dependent. */
3383 /* A template-id where the name of the template was not resolved
3384 is definitely dependent. */
3385 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3386 && (identifier_p (TREE_OPERAND (decl, 0))))
3387 dependent_p = true;
3388 /* For anything except an overloaded function, just check its
3389 type. */
3390 else if (!is_overloaded_fn (decl))
3391 dependent_p
3392 = dependent_type_p (TREE_TYPE (decl));
3393 /* For a set of overloaded functions, check each of the
3394 functions. */
3395 else
3397 tree fns = decl;
3399 if (BASELINK_P (fns))
3400 fns = BASELINK_FUNCTIONS (fns);
3402 /* For a template-id, check to see if the template
3403 arguments are dependent. */
3404 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
3406 tree args = TREE_OPERAND (fns, 1);
3407 dependent_p = any_dependent_template_arguments_p (args);
3408 /* The functions are those referred to by the
3409 template-id. */
3410 fns = TREE_OPERAND (fns, 0);
3413 /* If there are no dependent template arguments, go through
3414 the overloaded functions. */
3415 while (fns && !dependent_p)
3417 tree fn = OVL_CURRENT (fns);
3419 /* Member functions of dependent classes are
3420 dependent. */
3421 if (TREE_CODE (fn) == FUNCTION_DECL
3422 && type_dependent_expression_p (fn))
3423 dependent_p = true;
3424 else if (TREE_CODE (fn) == TEMPLATE_DECL
3425 && dependent_template_p (fn))
3426 dependent_p = true;
3428 fns = OVL_NEXT (fns);
3432 /* If the name was dependent on a template parameter, we will
3433 resolve the name at instantiation time. */
3434 if (dependent_p)
3436 /* Create a SCOPE_REF for qualified names, if the scope is
3437 dependent. */
3438 if (scope)
3440 if (TYPE_P (scope))
3442 if (address_p && done)
3443 decl = finish_qualified_id_expr (scope, decl,
3444 done, address_p,
3445 template_p,
3446 template_arg_p,
3447 tf_warning_or_error);
3448 else
3450 tree type = NULL_TREE;
3451 if (DECL_P (decl) && !dependent_scope_p (scope))
3452 type = TREE_TYPE (decl);
3453 decl = build_qualified_name (type,
3454 scope,
3455 id_expression,
3456 template_p);
3459 if (TREE_TYPE (decl))
3460 decl = convert_from_reference (decl);
3461 return decl;
3463 /* A TEMPLATE_ID already contains all the information we
3464 need. */
3465 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR)
3466 return id_expression;
3467 *idk = CP_ID_KIND_UNQUALIFIED_DEPENDENT;
3468 /* If we found a variable, then name lookup during the
3469 instantiation will always resolve to the same VAR_DECL
3470 (or an instantiation thereof). */
3471 if (VAR_P (decl)
3472 || TREE_CODE (decl) == PARM_DECL)
3474 mark_used (decl);
3475 return convert_from_reference (decl);
3477 /* The same is true for FIELD_DECL, but we also need to
3478 make sure that the syntax is correct. */
3479 else if (TREE_CODE (decl) == FIELD_DECL)
3481 /* Since SCOPE is NULL here, this is an unqualified name.
3482 Access checking has been performed during name lookup
3483 already. Turn off checking to avoid duplicate errors. */
3484 push_deferring_access_checks (dk_no_check);
3485 decl = finish_non_static_data_member
3486 (decl, NULL_TREE,
3487 /*qualifying_scope=*/NULL_TREE);
3488 pop_deferring_access_checks ();
3489 return decl;
3491 return id_expression;
3494 if (TREE_CODE (decl) == NAMESPACE_DECL)
3496 error ("use of namespace %qD as expression", decl);
3497 return error_mark_node;
3499 else if (DECL_CLASS_TEMPLATE_P (decl))
3501 error ("use of class template %qT as expression", decl);
3502 return error_mark_node;
3504 else if (TREE_CODE (decl) == TREE_LIST)
3506 /* Ambiguous reference to base members. */
3507 error ("request for member %qD is ambiguous in "
3508 "multiple inheritance lattice", id_expression);
3509 print_candidates (decl);
3510 return error_mark_node;
3513 /* Mark variable-like entities as used. Functions are similarly
3514 marked either below or after overload resolution. */
3515 if ((VAR_P (decl)
3516 || TREE_CODE (decl) == PARM_DECL
3517 || TREE_CODE (decl) == CONST_DECL
3518 || TREE_CODE (decl) == RESULT_DECL)
3519 && !mark_used (decl))
3520 return error_mark_node;
3522 /* Only certain kinds of names are allowed in constant
3523 expression. Template parameters have already
3524 been handled above. */
3525 if (! error_operand_p (decl)
3526 && integral_constant_expression_p
3527 && ! decl_constant_var_p (decl)
3528 && TREE_CODE (decl) != CONST_DECL
3529 && ! builtin_valid_in_constant_expr_p (decl))
3531 if (!allow_non_integral_constant_expression_p)
3533 error ("%qD cannot appear in a constant-expression", decl);
3534 return error_mark_node;
3536 *non_integral_constant_expression_p = true;
3539 tree wrap;
3540 if (VAR_P (decl)
3541 && !cp_unevaluated_operand
3542 && !processing_template_decl
3543 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
3544 && DECL_THREAD_LOCAL_P (decl)
3545 && (wrap = get_tls_wrapper_fn (decl)))
3547 /* Replace an evaluated use of the thread_local variable with
3548 a call to its wrapper. */
3549 decl = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
3551 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3552 && variable_template_p (TREE_OPERAND (decl, 0)))
3554 decl = finish_template_variable (decl);
3555 mark_used (decl);
3557 else if (scope)
3559 decl = (adjust_result_of_qualified_name_lookup
3560 (decl, scope, current_nonlambda_class_type()));
3562 if (TREE_CODE (decl) == FUNCTION_DECL)
3563 mark_used (decl);
3565 if (TYPE_P (scope))
3566 decl = finish_qualified_id_expr (scope,
3567 decl,
3568 done,
3569 address_p,
3570 template_p,
3571 template_arg_p,
3572 tf_warning_or_error);
3573 else
3574 decl = convert_from_reference (decl);
3576 else if (TREE_CODE (decl) == FIELD_DECL)
3578 /* Since SCOPE is NULL here, this is an unqualified name.
3579 Access checking has been performed during name lookup
3580 already. Turn off checking to avoid duplicate errors. */
3581 push_deferring_access_checks (dk_no_check);
3582 decl = finish_non_static_data_member (decl, NULL_TREE,
3583 /*qualifying_scope=*/NULL_TREE);
3584 pop_deferring_access_checks ();
3586 else if (is_overloaded_fn (decl))
3588 tree first_fn;
3590 first_fn = get_first_fn (decl);
3591 if (TREE_CODE (first_fn) == TEMPLATE_DECL)
3592 first_fn = DECL_TEMPLATE_RESULT (first_fn);
3594 if (!really_overloaded_fn (decl)
3595 && !mark_used (first_fn))
3596 return error_mark_node;
3598 if (!template_arg_p
3599 && TREE_CODE (first_fn) == FUNCTION_DECL
3600 && DECL_FUNCTION_MEMBER_P (first_fn)
3601 && !shared_member_p (decl))
3603 /* A set of member functions. */
3604 decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
3605 return finish_class_member_access_expr (decl, id_expression,
3606 /*template_p=*/false,
3607 tf_warning_or_error);
3610 decl = baselink_for_fns (decl);
3612 else
3614 if (DECL_P (decl) && DECL_NONLOCAL (decl)
3615 && DECL_CLASS_SCOPE_P (decl))
3617 tree context = context_for_name_lookup (decl);
3618 if (context != current_class_type)
3620 tree path = currently_open_derived_class (context);
3621 perform_or_defer_access_check (TYPE_BINFO (path),
3622 decl, decl,
3623 tf_warning_or_error);
3627 decl = convert_from_reference (decl);
3631 /* Handle references (c++/56130). */
3632 tree t = REFERENCE_REF_P (decl) ? TREE_OPERAND (decl, 0) : decl;
3633 if (TREE_DEPRECATED (t))
3634 warn_deprecated_use (t, NULL_TREE);
3636 return decl;
3639 /* Implement the __typeof keyword: Return the type of EXPR, suitable for
3640 use as a type-specifier. */
3642 tree
3643 finish_typeof (tree expr)
3645 tree type;
3647 if (type_dependent_expression_p (expr))
3649 type = cxx_make_type (TYPEOF_TYPE);
3650 TYPEOF_TYPE_EXPR (type) = expr;
3651 SET_TYPE_STRUCTURAL_EQUALITY (type);
3653 return type;
3656 expr = mark_type_use (expr);
3658 type = unlowered_expr_type (expr);
3660 if (!type || type == unknown_type_node)
3662 error ("type of %qE is unknown", expr);
3663 return error_mark_node;
3666 return type;
3669 /* Implement the __underlying_type keyword: Return the underlying
3670 type of TYPE, suitable for use as a type-specifier. */
3672 tree
3673 finish_underlying_type (tree type)
3675 tree underlying_type;
3677 if (processing_template_decl)
3679 underlying_type = cxx_make_type (UNDERLYING_TYPE);
3680 UNDERLYING_TYPE_TYPE (underlying_type) = type;
3681 SET_TYPE_STRUCTURAL_EQUALITY (underlying_type);
3683 return underlying_type;
3686 complete_type (type);
3688 if (TREE_CODE (type) != ENUMERAL_TYPE)
3690 error ("%qT is not an enumeration type", type);
3691 return error_mark_node;
3694 underlying_type = ENUM_UNDERLYING_TYPE (type);
3696 /* Fixup necessary in this case because ENUM_UNDERLYING_TYPE
3697 includes TYPE_MIN_VALUE and TYPE_MAX_VALUE information.
3698 See finish_enum_value_list for details. */
3699 if (!ENUM_FIXED_UNDERLYING_TYPE_P (type))
3700 underlying_type
3701 = c_common_type_for_mode (TYPE_MODE (underlying_type),
3702 TYPE_UNSIGNED (underlying_type));
3704 return underlying_type;
3707 /* Implement the __direct_bases keyword: Return the direct base classes
3708 of type */
3710 tree
3711 calculate_direct_bases (tree type)
3713 vec<tree, va_gc> *vector = make_tree_vector();
3714 tree bases_vec = NULL_TREE;
3715 vec<tree, va_gc> *base_binfos;
3716 tree binfo;
3717 unsigned i;
3719 complete_type (type);
3721 if (!NON_UNION_CLASS_TYPE_P (type))
3722 return make_tree_vec (0);
3724 base_binfos = BINFO_BASE_BINFOS (TYPE_BINFO (type));
3726 /* Virtual bases are initialized first */
3727 for (i = 0; base_binfos->iterate (i, &binfo); i++)
3729 if (BINFO_VIRTUAL_P (binfo))
3731 vec_safe_push (vector, binfo);
3735 /* Now non-virtuals */
3736 for (i = 0; base_binfos->iterate (i, &binfo); i++)
3738 if (!BINFO_VIRTUAL_P (binfo))
3740 vec_safe_push (vector, binfo);
3745 bases_vec = make_tree_vec (vector->length ());
3747 for (i = 0; i < vector->length (); ++i)
3749 TREE_VEC_ELT (bases_vec, i) = BINFO_TYPE ((*vector)[i]);
3751 return bases_vec;
3754 /* Implement the __bases keyword: Return the base classes
3755 of type */
3757 /* Find morally non-virtual base classes by walking binfo hierarchy */
3758 /* Virtual base classes are handled separately in finish_bases */
3760 static tree
3761 dfs_calculate_bases_pre (tree binfo, void * /*data_*/)
3763 /* Don't walk bases of virtual bases */
3764 return BINFO_VIRTUAL_P (binfo) ? dfs_skip_bases : NULL_TREE;
3767 static tree
3768 dfs_calculate_bases_post (tree binfo, void *data_)
3770 vec<tree, va_gc> **data = ((vec<tree, va_gc> **) data_);
3771 if (!BINFO_VIRTUAL_P (binfo))
3773 vec_safe_push (*data, BINFO_TYPE (binfo));
3775 return NULL_TREE;
3778 /* Calculates the morally non-virtual base classes of a class */
3779 static vec<tree, va_gc> *
3780 calculate_bases_helper (tree type)
3782 vec<tree, va_gc> *vector = make_tree_vector();
3784 /* Now add non-virtual base classes in order of construction */
3785 dfs_walk_all (TYPE_BINFO (type),
3786 dfs_calculate_bases_pre, dfs_calculate_bases_post, &vector);
3787 return vector;
3790 tree
3791 calculate_bases (tree type)
3793 vec<tree, va_gc> *vector = make_tree_vector();
3794 tree bases_vec = NULL_TREE;
3795 unsigned i;
3796 vec<tree, va_gc> *vbases;
3797 vec<tree, va_gc> *nonvbases;
3798 tree binfo;
3800 complete_type (type);
3802 if (!NON_UNION_CLASS_TYPE_P (type))
3803 return make_tree_vec (0);
3805 /* First go through virtual base classes */
3806 for (vbases = CLASSTYPE_VBASECLASSES (type), i = 0;
3807 vec_safe_iterate (vbases, i, &binfo); i++)
3809 vec<tree, va_gc> *vbase_bases;
3810 vbase_bases = calculate_bases_helper (BINFO_TYPE (binfo));
3811 vec_safe_splice (vector, vbase_bases);
3812 release_tree_vector (vbase_bases);
3815 /* Now for the non-virtual bases */
3816 nonvbases = calculate_bases_helper (type);
3817 vec_safe_splice (vector, nonvbases);
3818 release_tree_vector (nonvbases);
3820 /* Last element is entire class, so don't copy */
3821 bases_vec = make_tree_vec (vector->length () - 1);
3823 for (i = 0; i < vector->length () - 1; ++i)
3825 TREE_VEC_ELT (bases_vec, i) = (*vector)[i];
3827 release_tree_vector (vector);
3828 return bases_vec;
3831 tree
3832 finish_bases (tree type, bool direct)
3834 tree bases = NULL_TREE;
3836 if (!processing_template_decl)
3838 /* Parameter packs can only be used in templates */
3839 error ("Parameter pack __bases only valid in template declaration");
3840 return error_mark_node;
3843 bases = cxx_make_type (BASES);
3844 BASES_TYPE (bases) = type;
3845 BASES_DIRECT (bases) = direct;
3846 SET_TYPE_STRUCTURAL_EQUALITY (bases);
3848 return bases;
3851 /* Perform C++-specific checks for __builtin_offsetof before calling
3852 fold_offsetof. */
3854 tree
3855 finish_offsetof (tree expr, location_t loc)
3857 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
3859 error ("cannot apply %<offsetof%> to destructor %<~%T%>",
3860 TREE_OPERAND (expr, 2));
3861 return error_mark_node;
3863 if (TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
3864 || TREE_CODE (TREE_TYPE (expr)) == METHOD_TYPE
3865 || TREE_TYPE (expr) == unknown_type_node)
3867 if (INDIRECT_REF_P (expr))
3868 error ("second operand of %<offsetof%> is neither a single "
3869 "identifier nor a sequence of member accesses and "
3870 "array references");
3871 else
3873 if (TREE_CODE (expr) == COMPONENT_REF
3874 || TREE_CODE (expr) == COMPOUND_EXPR)
3875 expr = TREE_OPERAND (expr, 1);
3876 error ("cannot apply %<offsetof%> to member function %qD", expr);
3878 return error_mark_node;
3880 if (REFERENCE_REF_P (expr))
3881 expr = TREE_OPERAND (expr, 0);
3882 if (TREE_CODE (expr) == COMPONENT_REF)
3884 tree object = TREE_OPERAND (expr, 0);
3885 if (!complete_type_or_else (TREE_TYPE (object), object))
3886 return error_mark_node;
3887 if (warn_invalid_offsetof
3888 && CLASS_TYPE_P (TREE_TYPE (object))
3889 && CLASSTYPE_NON_STD_LAYOUT (TREE_TYPE (object))
3890 && cp_unevaluated_operand == 0)
3891 pedwarn (loc, OPT_Winvalid_offsetof,
3892 "offsetof within non-standard-layout type %qT is undefined",
3893 TREE_TYPE (object));
3895 return fold_offsetof (expr);
3898 /* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR. This
3899 function is broken out from the above for the benefit of the tree-ssa
3900 project. */
3902 void
3903 simplify_aggr_init_expr (tree *tp)
3905 tree aggr_init_expr = *tp;
3907 /* Form an appropriate CALL_EXPR. */
3908 tree fn = AGGR_INIT_EXPR_FN (aggr_init_expr);
3909 tree slot = AGGR_INIT_EXPR_SLOT (aggr_init_expr);
3910 tree type = TREE_TYPE (slot);
3912 tree call_expr;
3913 enum style_t { ctor, arg, pcc } style;
3915 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
3916 style = ctor;
3917 #ifdef PCC_STATIC_STRUCT_RETURN
3918 else if (1)
3919 style = pcc;
3920 #endif
3921 else
3923 gcc_assert (TREE_ADDRESSABLE (type));
3924 style = arg;
3927 call_expr = build_call_array_loc (input_location,
3928 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
3930 aggr_init_expr_nargs (aggr_init_expr),
3931 AGGR_INIT_EXPR_ARGP (aggr_init_expr));
3932 TREE_NOTHROW (call_expr) = TREE_NOTHROW (aggr_init_expr);
3933 CALL_EXPR_LIST_INIT_P (call_expr) = CALL_EXPR_LIST_INIT_P (aggr_init_expr);
3935 if (style == ctor)
3937 /* Replace the first argument to the ctor with the address of the
3938 slot. */
3939 cxx_mark_addressable (slot);
3940 CALL_EXPR_ARG (call_expr, 0) =
3941 build1 (ADDR_EXPR, build_pointer_type (type), slot);
3943 else if (style == arg)
3945 /* Just mark it addressable here, and leave the rest to
3946 expand_call{,_inline}. */
3947 cxx_mark_addressable (slot);
3948 CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true;
3949 call_expr = build2 (INIT_EXPR, TREE_TYPE (call_expr), slot, call_expr);
3951 else if (style == pcc)
3953 /* If we're using the non-reentrant PCC calling convention, then we
3954 need to copy the returned value out of the static buffer into the
3955 SLOT. */
3956 push_deferring_access_checks (dk_no_check);
3957 call_expr = build_aggr_init (slot, call_expr,
3958 DIRECT_BIND | LOOKUP_ONLYCONVERTING,
3959 tf_warning_or_error);
3960 pop_deferring_access_checks ();
3961 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot);
3964 if (AGGR_INIT_ZERO_FIRST (aggr_init_expr))
3966 tree init = build_zero_init (type, NULL_TREE,
3967 /*static_storage_p=*/false);
3968 init = build2 (INIT_EXPR, void_type_node, slot, init);
3969 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (call_expr),
3970 init, call_expr);
3973 *tp = call_expr;
3976 /* Emit all thunks to FN that should be emitted when FN is emitted. */
3978 void
3979 emit_associated_thunks (tree fn)
3981 /* When we use vcall offsets, we emit thunks with the virtual
3982 functions to which they thunk. The whole point of vcall offsets
3983 is so that you can know statically the entire set of thunks that
3984 will ever be needed for a given virtual function, thereby
3985 enabling you to output all the thunks with the function itself. */
3986 if (DECL_VIRTUAL_P (fn)
3987 /* Do not emit thunks for extern template instantiations. */
3988 && ! DECL_REALLY_EXTERN (fn))
3990 tree thunk;
3992 for (thunk = DECL_THUNKS (fn); thunk; thunk = DECL_CHAIN (thunk))
3994 if (!THUNK_ALIAS (thunk))
3996 use_thunk (thunk, /*emit_p=*/1);
3997 if (DECL_RESULT_THUNK_P (thunk))
3999 tree probe;
4001 for (probe = DECL_THUNKS (thunk);
4002 probe; probe = DECL_CHAIN (probe))
4003 use_thunk (probe, /*emit_p=*/1);
4006 else
4007 gcc_assert (!DECL_THUNKS (thunk));
4012 /* Generate RTL for FN. */
4014 bool
4015 expand_or_defer_fn_1 (tree fn)
4017 /* When the parser calls us after finishing the body of a template
4018 function, we don't really want to expand the body. */
4019 if (processing_template_decl)
4021 /* Normally, collection only occurs in rest_of_compilation. So,
4022 if we don't collect here, we never collect junk generated
4023 during the processing of templates until we hit a
4024 non-template function. It's not safe to do this inside a
4025 nested class, though, as the parser may have local state that
4026 is not a GC root. */
4027 if (!function_depth)
4028 ggc_collect ();
4029 return false;
4032 gcc_assert (DECL_SAVED_TREE (fn));
4034 /* We make a decision about linkage for these functions at the end
4035 of the compilation. Until that point, we do not want the back
4036 end to output them -- but we do want it to see the bodies of
4037 these functions so that it can inline them as appropriate. */
4038 if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
4040 if (DECL_INTERFACE_KNOWN (fn))
4041 /* We've already made a decision as to how this function will
4042 be handled. */;
4043 else if (!at_eof)
4044 tentative_decl_linkage (fn);
4045 else
4046 import_export_decl (fn);
4048 /* If the user wants us to keep all inline functions, then mark
4049 this function as needed so that finish_file will make sure to
4050 output it later. Similarly, all dllexport'd functions must
4051 be emitted; there may be callers in other DLLs. */
4052 if (DECL_DECLARED_INLINE_P (fn)
4053 && !DECL_REALLY_EXTERN (fn)
4054 && (flag_keep_inline_functions
4055 || (flag_keep_inline_dllexport
4056 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (fn)))))
4058 mark_needed (fn);
4059 DECL_EXTERNAL (fn) = 0;
4063 /* If this is a constructor or destructor body, we have to clone
4064 it. */
4065 if (maybe_clone_body (fn))
4067 /* We don't want to process FN again, so pretend we've written
4068 it out, even though we haven't. */
4069 TREE_ASM_WRITTEN (fn) = 1;
4070 /* If this is an instantiation of a constexpr function, keep
4071 DECL_SAVED_TREE for explain_invalid_constexpr_fn. */
4072 if (!is_instantiation_of_constexpr (fn))
4073 DECL_SAVED_TREE (fn) = NULL_TREE;
4074 return false;
4077 /* There's no reason to do any of the work here if we're only doing
4078 semantic analysis; this code just generates RTL. */
4079 if (flag_syntax_only)
4080 return false;
4082 return true;
4085 void
4086 expand_or_defer_fn (tree fn)
4088 if (expand_or_defer_fn_1 (fn))
4090 function_depth++;
4092 /* Expand or defer, at the whim of the compilation unit manager. */
4093 cgraph_node::finalize_function (fn, function_depth > 1);
4094 emit_associated_thunks (fn);
4096 function_depth--;
4100 struct nrv_data
4102 nrv_data () : visited (37) {}
4104 tree var;
4105 tree result;
4106 hash_table<pointer_hash <tree_node> > visited;
4109 /* Helper function for walk_tree, used by finalize_nrv below. */
4111 static tree
4112 finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
4114 struct nrv_data *dp = (struct nrv_data *)data;
4115 tree_node **slot;
4117 /* No need to walk into types. There wouldn't be any need to walk into
4118 non-statements, except that we have to consider STMT_EXPRs. */
4119 if (TYPE_P (*tp))
4120 *walk_subtrees = 0;
4121 /* Change all returns to just refer to the RESULT_DECL; this is a nop,
4122 but differs from using NULL_TREE in that it indicates that we care
4123 about the value of the RESULT_DECL. */
4124 else if (TREE_CODE (*tp) == RETURN_EXPR)
4125 TREE_OPERAND (*tp, 0) = dp->result;
4126 /* Change all cleanups for the NRV to only run when an exception is
4127 thrown. */
4128 else if (TREE_CODE (*tp) == CLEANUP_STMT
4129 && CLEANUP_DECL (*tp) == dp->var)
4130 CLEANUP_EH_ONLY (*tp) = 1;
4131 /* Replace the DECL_EXPR for the NRV with an initialization of the
4132 RESULT_DECL, if needed. */
4133 else if (TREE_CODE (*tp) == DECL_EXPR
4134 && DECL_EXPR_DECL (*tp) == dp->var)
4136 tree init;
4137 if (DECL_INITIAL (dp->var)
4138 && DECL_INITIAL (dp->var) != error_mark_node)
4139 init = build2 (INIT_EXPR, void_type_node, dp->result,
4140 DECL_INITIAL (dp->var));
4141 else
4142 init = build_empty_stmt (EXPR_LOCATION (*tp));
4143 DECL_INITIAL (dp->var) = NULL_TREE;
4144 SET_EXPR_LOCATION (init, EXPR_LOCATION (*tp));
4145 *tp = init;
4147 /* And replace all uses of the NRV with the RESULT_DECL. */
4148 else if (*tp == dp->var)
4149 *tp = dp->result;
4151 /* Avoid walking into the same tree more than once. Unfortunately, we
4152 can't just use walk_tree_without duplicates because it would only call
4153 us for the first occurrence of dp->var in the function body. */
4154 slot = dp->visited.find_slot (*tp, INSERT);
4155 if (*slot)
4156 *walk_subtrees = 0;
4157 else
4158 *slot = *tp;
4160 /* Keep iterating. */
4161 return NULL_TREE;
4164 /* Called from finish_function to implement the named return value
4165 optimization by overriding all the RETURN_EXPRs and pertinent
4166 CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
4167 RESULT_DECL for the function. */
4169 void
4170 finalize_nrv (tree *tp, tree var, tree result)
4172 struct nrv_data data;
4174 /* Copy name from VAR to RESULT. */
4175 DECL_NAME (result) = DECL_NAME (var);
4176 /* Don't forget that we take its address. */
4177 TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
4178 /* Finally set DECL_VALUE_EXPR to avoid assigning
4179 a stack slot at -O0 for the original var and debug info
4180 uses RESULT location for VAR. */
4181 SET_DECL_VALUE_EXPR (var, result);
4182 DECL_HAS_VALUE_EXPR_P (var) = 1;
4184 data.var = var;
4185 data.result = result;
4186 cp_walk_tree (tp, finalize_nrv_r, &data, 0);
4189 /* Create CP_OMP_CLAUSE_INFO for clause C. Returns true if it is invalid. */
4191 bool
4192 cxx_omp_create_clause_info (tree c, tree type, bool need_default_ctor,
4193 bool need_copy_ctor, bool need_copy_assignment,
4194 bool need_dtor)
4196 int save_errorcount = errorcount;
4197 tree info, t;
4199 /* Always allocate 3 elements for simplicity. These are the
4200 function decls for the ctor, dtor, and assignment op.
4201 This layout is known to the three lang hooks,
4202 cxx_omp_clause_default_init, cxx_omp_clause_copy_init,
4203 and cxx_omp_clause_assign_op. */
4204 info = make_tree_vec (3);
4205 CP_OMP_CLAUSE_INFO (c) = info;
4207 if (need_default_ctor || need_copy_ctor)
4209 if (need_default_ctor)
4210 t = get_default_ctor (type);
4211 else
4212 t = get_copy_ctor (type, tf_warning_or_error);
4214 if (t && !trivial_fn_p (t))
4215 TREE_VEC_ELT (info, 0) = t;
4218 if (need_dtor && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4219 TREE_VEC_ELT (info, 1) = get_dtor (type, tf_warning_or_error);
4221 if (need_copy_assignment)
4223 t = get_copy_assign (type);
4225 if (t && !trivial_fn_p (t))
4226 TREE_VEC_ELT (info, 2) = t;
4229 return errorcount != save_errorcount;
4232 /* Helper function for handle_omp_array_sections. Called recursively
4233 to handle multiple array-section-subscripts. C is the clause,
4234 T current expression (initially OMP_CLAUSE_DECL), which is either
4235 a TREE_LIST for array-section-subscript (TREE_PURPOSE is low-bound
4236 expression if specified, TREE_VALUE length expression if specified,
4237 TREE_CHAIN is what it has been specified after, or some decl.
4238 TYPES vector is populated with array section types, MAYBE_ZERO_LEN
4239 set to true if any of the array-section-subscript could have length
4240 of zero (explicit or implicit), FIRST_NON_ONE is the index of the
4241 first array-section-subscript which is known not to have length
4242 of one. Given say:
4243 map(a[:b][2:1][:c][:2][:d][e:f][2:5])
4244 FIRST_NON_ONE will be 3, array-section-subscript [:b], [2:1] and [:c]
4245 all are or may have length of 1, array-section-subscript [:2] is the
4246 first one knonwn not to have length 1. For array-section-subscript
4247 <= FIRST_NON_ONE we diagnose non-contiguous arrays if low bound isn't
4248 0 or length isn't the array domain max + 1, for > FIRST_NON_ONE we
4249 can if MAYBE_ZERO_LEN is false. MAYBE_ZERO_LEN will be true in the above
4250 case though, as some lengths could be zero. */
4252 static tree
4253 handle_omp_array_sections_1 (tree c, tree t, vec<tree> &types,
4254 bool &maybe_zero_len, unsigned int &first_non_one)
4256 tree ret, low_bound, length, type;
4257 if (TREE_CODE (t) != TREE_LIST)
4259 if (error_operand_p (t))
4260 return error_mark_node;
4261 if (type_dependent_expression_p (t))
4262 return NULL_TREE;
4263 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4265 if (processing_template_decl)
4266 return NULL_TREE;
4267 if (DECL_P (t))
4268 error_at (OMP_CLAUSE_LOCATION (c),
4269 "%qD is not a variable in %qs clause", t,
4270 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4271 else
4272 error_at (OMP_CLAUSE_LOCATION (c),
4273 "%qE is not a variable in %qs clause", t,
4274 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4275 return error_mark_node;
4277 else if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
4278 && TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
4280 error_at (OMP_CLAUSE_LOCATION (c),
4281 "%qD is threadprivate variable in %qs clause", t,
4282 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4283 return error_mark_node;
4285 t = convert_from_reference (t);
4286 return t;
4289 ret = handle_omp_array_sections_1 (c, TREE_CHAIN (t), types,
4290 maybe_zero_len, first_non_one);
4291 if (ret == error_mark_node || ret == NULL_TREE)
4292 return ret;
4294 type = TREE_TYPE (ret);
4295 low_bound = TREE_PURPOSE (t);
4296 length = TREE_VALUE (t);
4297 if ((low_bound && type_dependent_expression_p (low_bound))
4298 || (length && type_dependent_expression_p (length)))
4299 return NULL_TREE;
4301 if (low_bound == error_mark_node || length == error_mark_node)
4302 return error_mark_node;
4304 if (low_bound && !INTEGRAL_TYPE_P (TREE_TYPE (low_bound)))
4306 error_at (OMP_CLAUSE_LOCATION (c),
4307 "low bound %qE of array section does not have integral type",
4308 low_bound);
4309 return error_mark_node;
4311 if (length && !INTEGRAL_TYPE_P (TREE_TYPE (length)))
4313 error_at (OMP_CLAUSE_LOCATION (c),
4314 "length %qE of array section does not have integral type",
4315 length);
4316 return error_mark_node;
4318 if (low_bound)
4319 low_bound = mark_rvalue_use (low_bound);
4320 if (length)
4321 length = mark_rvalue_use (length);
4322 if (low_bound
4323 && TREE_CODE (low_bound) == INTEGER_CST
4324 && TYPE_PRECISION (TREE_TYPE (low_bound))
4325 > TYPE_PRECISION (sizetype))
4326 low_bound = fold_convert (sizetype, low_bound);
4327 if (length
4328 && TREE_CODE (length) == INTEGER_CST
4329 && TYPE_PRECISION (TREE_TYPE (length))
4330 > TYPE_PRECISION (sizetype))
4331 length = fold_convert (sizetype, length);
4332 if (low_bound == NULL_TREE)
4333 low_bound = integer_zero_node;
4335 if (length != NULL_TREE)
4337 if (!integer_nonzerop (length))
4338 maybe_zero_len = true;
4339 if (first_non_one == types.length ()
4340 && (TREE_CODE (length) != INTEGER_CST || integer_onep (length)))
4341 first_non_one++;
4343 if (TREE_CODE (type) == ARRAY_TYPE)
4345 if (length == NULL_TREE
4346 && (TYPE_DOMAIN (type) == NULL_TREE
4347 || TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE))
4349 error_at (OMP_CLAUSE_LOCATION (c),
4350 "for unknown bound array type length expression must "
4351 "be specified");
4352 return error_mark_node;
4354 if (TREE_CODE (low_bound) == INTEGER_CST
4355 && tree_int_cst_sgn (low_bound) == -1)
4357 error_at (OMP_CLAUSE_LOCATION (c),
4358 "negative low bound in array section in %qs clause",
4359 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4360 return error_mark_node;
4362 if (length != NULL_TREE
4363 && TREE_CODE (length) == INTEGER_CST
4364 && tree_int_cst_sgn (length) == -1)
4366 error_at (OMP_CLAUSE_LOCATION (c),
4367 "negative length in array section in %qs clause",
4368 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4369 return error_mark_node;
4371 if (TYPE_DOMAIN (type)
4372 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
4373 && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
4374 == INTEGER_CST)
4376 tree size = size_binop (PLUS_EXPR,
4377 TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
4378 size_one_node);
4379 if (TREE_CODE (low_bound) == INTEGER_CST)
4381 if (tree_int_cst_lt (size, low_bound))
4383 error_at (OMP_CLAUSE_LOCATION (c),
4384 "low bound %qE above array section size "
4385 "in %qs clause", low_bound,
4386 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4387 return error_mark_node;
4389 if (tree_int_cst_equal (size, low_bound))
4390 maybe_zero_len = true;
4391 else if (length == NULL_TREE
4392 && first_non_one == types.length ()
4393 && tree_int_cst_equal
4394 (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
4395 low_bound))
4396 first_non_one++;
4398 else if (length == NULL_TREE)
4400 maybe_zero_len = true;
4401 if (first_non_one == types.length ())
4402 first_non_one++;
4404 if (length && TREE_CODE (length) == INTEGER_CST)
4406 if (tree_int_cst_lt (size, length))
4408 error_at (OMP_CLAUSE_LOCATION (c),
4409 "length %qE above array section size "
4410 "in %qs clause", length,
4411 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4412 return error_mark_node;
4414 if (TREE_CODE (low_bound) == INTEGER_CST)
4416 tree lbpluslen
4417 = size_binop (PLUS_EXPR,
4418 fold_convert (sizetype, low_bound),
4419 fold_convert (sizetype, length));
4420 if (TREE_CODE (lbpluslen) == INTEGER_CST
4421 && tree_int_cst_lt (size, lbpluslen))
4423 error_at (OMP_CLAUSE_LOCATION (c),
4424 "high bound %qE above array section size "
4425 "in %qs clause", lbpluslen,
4426 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4427 return error_mark_node;
4432 else if (length == NULL_TREE)
4434 maybe_zero_len = true;
4435 if (first_non_one == types.length ())
4436 first_non_one++;
4439 /* For [lb:] we will need to evaluate lb more than once. */
4440 if (length == NULL_TREE && OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND)
4442 tree lb = cp_save_expr (low_bound);
4443 if (lb != low_bound)
4445 TREE_PURPOSE (t) = lb;
4446 low_bound = lb;
4450 else if (TREE_CODE (type) == POINTER_TYPE)
4452 if (length == NULL_TREE)
4454 error_at (OMP_CLAUSE_LOCATION (c),
4455 "for pointer type length expression must be specified");
4456 return error_mark_node;
4458 /* If there is a pointer type anywhere but in the very first
4459 array-section-subscript, the array section can't be contiguous. */
4460 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
4461 && TREE_CODE (TREE_CHAIN (t)) == TREE_LIST)
4463 error_at (OMP_CLAUSE_LOCATION (c),
4464 "array section is not contiguous in %qs clause",
4465 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4466 return error_mark_node;
4469 else
4471 error_at (OMP_CLAUSE_LOCATION (c),
4472 "%qE does not have pointer or array type", ret);
4473 return error_mark_node;
4475 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND)
4476 types.safe_push (TREE_TYPE (ret));
4477 /* We will need to evaluate lb more than once. */
4478 tree lb = cp_save_expr (low_bound);
4479 if (lb != low_bound)
4481 TREE_PURPOSE (t) = lb;
4482 low_bound = lb;
4484 ret = grok_array_decl (OMP_CLAUSE_LOCATION (c), ret, low_bound, false);
4485 return ret;
4488 /* Handle array sections for clause C. */
4490 static bool
4491 handle_omp_array_sections (tree c)
4493 bool maybe_zero_len = false;
4494 unsigned int first_non_one = 0;
4495 auto_vec<tree> types;
4496 tree first = handle_omp_array_sections_1 (c, OMP_CLAUSE_DECL (c), types,
4497 maybe_zero_len, first_non_one);
4498 if (first == error_mark_node)
4499 return true;
4500 if (first == NULL_TREE)
4501 return false;
4502 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND)
4504 tree t = OMP_CLAUSE_DECL (c);
4505 tree tem = NULL_TREE;
4506 if (processing_template_decl)
4507 return false;
4508 /* Need to evaluate side effects in the length expressions
4509 if any. */
4510 while (TREE_CODE (t) == TREE_LIST)
4512 if (TREE_VALUE (t) && TREE_SIDE_EFFECTS (TREE_VALUE (t)))
4514 if (tem == NULL_TREE)
4515 tem = TREE_VALUE (t);
4516 else
4517 tem = build2 (COMPOUND_EXPR, TREE_TYPE (tem),
4518 TREE_VALUE (t), tem);
4520 t = TREE_CHAIN (t);
4522 if (tem)
4523 first = build2 (COMPOUND_EXPR, TREE_TYPE (first), tem, first);
4524 OMP_CLAUSE_DECL (c) = first;
4526 else
4528 unsigned int num = types.length (), i;
4529 tree t, side_effects = NULL_TREE, size = NULL_TREE;
4530 tree condition = NULL_TREE;
4532 if (int_size_in_bytes (TREE_TYPE (first)) <= 0)
4533 maybe_zero_len = true;
4534 if (processing_template_decl && maybe_zero_len)
4535 return false;
4537 for (i = num, t = OMP_CLAUSE_DECL (c); i > 0;
4538 t = TREE_CHAIN (t))
4540 tree low_bound = TREE_PURPOSE (t);
4541 tree length = TREE_VALUE (t);
4543 i--;
4544 if (low_bound
4545 && TREE_CODE (low_bound) == INTEGER_CST
4546 && TYPE_PRECISION (TREE_TYPE (low_bound))
4547 > TYPE_PRECISION (sizetype))
4548 low_bound = fold_convert (sizetype, low_bound);
4549 if (length
4550 && TREE_CODE (length) == INTEGER_CST
4551 && TYPE_PRECISION (TREE_TYPE (length))
4552 > TYPE_PRECISION (sizetype))
4553 length = fold_convert (sizetype, length);
4554 if (low_bound == NULL_TREE)
4555 low_bound = integer_zero_node;
4556 if (!maybe_zero_len && i > first_non_one)
4558 if (integer_nonzerop (low_bound))
4559 goto do_warn_noncontiguous;
4560 if (length != NULL_TREE
4561 && TREE_CODE (length) == INTEGER_CST
4562 && TYPE_DOMAIN (types[i])
4563 && TYPE_MAX_VALUE (TYPE_DOMAIN (types[i]))
4564 && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])))
4565 == INTEGER_CST)
4567 tree size;
4568 size = size_binop (PLUS_EXPR,
4569 TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])),
4570 size_one_node);
4571 if (!tree_int_cst_equal (length, size))
4573 do_warn_noncontiguous:
4574 error_at (OMP_CLAUSE_LOCATION (c),
4575 "array section is not contiguous in %qs "
4576 "clause",
4577 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
4578 return true;
4581 if (!processing_template_decl
4582 && length != NULL_TREE
4583 && TREE_SIDE_EFFECTS (length))
4585 if (side_effects == NULL_TREE)
4586 side_effects = length;
4587 else
4588 side_effects = build2 (COMPOUND_EXPR,
4589 TREE_TYPE (side_effects),
4590 length, side_effects);
4593 else if (processing_template_decl)
4594 continue;
4595 else
4597 tree l;
4599 if (i > first_non_one && length && integer_nonzerop (length))
4600 continue;
4601 if (length)
4602 l = fold_convert (sizetype, length);
4603 else
4605 l = size_binop (PLUS_EXPR,
4606 TYPE_MAX_VALUE (TYPE_DOMAIN (types[i])),
4607 size_one_node);
4608 l = size_binop (MINUS_EXPR, l,
4609 fold_convert (sizetype, low_bound));
4611 if (i > first_non_one)
4613 l = fold_build2 (NE_EXPR, boolean_type_node, l,
4614 size_zero_node);
4615 if (condition == NULL_TREE)
4616 condition = l;
4617 else
4618 condition = fold_build2 (BIT_AND_EXPR, boolean_type_node,
4619 l, condition);
4621 else if (size == NULL_TREE)
4623 size = size_in_bytes (TREE_TYPE (types[i]));
4624 size = size_binop (MULT_EXPR, size, l);
4625 if (condition)
4626 size = fold_build3 (COND_EXPR, sizetype, condition,
4627 size, size_zero_node);
4629 else
4630 size = size_binop (MULT_EXPR, size, l);
4633 if (!processing_template_decl)
4635 if (side_effects)
4636 size = build2 (COMPOUND_EXPR, sizetype, side_effects, size);
4637 OMP_CLAUSE_DECL (c) = first;
4638 OMP_CLAUSE_SIZE (c) = size;
4639 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP)
4640 return false;
4641 tree c2 = build_omp_clause (OMP_CLAUSE_LOCATION (c),
4642 OMP_CLAUSE_MAP);
4643 OMP_CLAUSE_MAP_KIND (c2) = OMP_CLAUSE_MAP_POINTER;
4644 if (!cxx_mark_addressable (t))
4645 return false;
4646 OMP_CLAUSE_DECL (c2) = t;
4647 t = build_fold_addr_expr (first);
4648 t = fold_convert_loc (OMP_CLAUSE_LOCATION (c),
4649 ptrdiff_type_node, t);
4650 tree ptr = OMP_CLAUSE_DECL (c2);
4651 ptr = convert_from_reference (ptr);
4652 if (!POINTER_TYPE_P (TREE_TYPE (ptr)))
4653 ptr = build_fold_addr_expr (ptr);
4654 t = fold_build2_loc (OMP_CLAUSE_LOCATION (c), MINUS_EXPR,
4655 ptrdiff_type_node, t,
4656 fold_convert_loc (OMP_CLAUSE_LOCATION (c),
4657 ptrdiff_type_node, ptr));
4658 OMP_CLAUSE_SIZE (c2) = t;
4659 OMP_CLAUSE_CHAIN (c2) = OMP_CLAUSE_CHAIN (c);
4660 OMP_CLAUSE_CHAIN (c) = c2;
4661 ptr = OMP_CLAUSE_DECL (c2);
4662 if (TREE_CODE (TREE_TYPE (ptr)) == REFERENCE_TYPE
4663 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (ptr))))
4665 tree c3 = build_omp_clause (OMP_CLAUSE_LOCATION (c),
4666 OMP_CLAUSE_MAP);
4667 OMP_CLAUSE_MAP_KIND (c3) = OMP_CLAUSE_MAP_POINTER;
4668 OMP_CLAUSE_DECL (c3) = ptr;
4669 OMP_CLAUSE_DECL (c2) = convert_from_reference (ptr);
4670 OMP_CLAUSE_SIZE (c3) = size_zero_node;
4671 OMP_CLAUSE_CHAIN (c3) = OMP_CLAUSE_CHAIN (c2);
4672 OMP_CLAUSE_CHAIN (c2) = c3;
4676 return false;
4679 /* Return identifier to look up for omp declare reduction. */
4681 tree
4682 omp_reduction_id (enum tree_code reduction_code, tree reduction_id, tree type)
4684 const char *p = NULL;
4685 const char *m = NULL;
4686 switch (reduction_code)
4688 case PLUS_EXPR:
4689 case MULT_EXPR:
4690 case MINUS_EXPR:
4691 case BIT_AND_EXPR:
4692 case BIT_XOR_EXPR:
4693 case BIT_IOR_EXPR:
4694 case TRUTH_ANDIF_EXPR:
4695 case TRUTH_ORIF_EXPR:
4696 reduction_id = ansi_opname (reduction_code);
4697 break;
4698 case MIN_EXPR:
4699 p = "min";
4700 break;
4701 case MAX_EXPR:
4702 p = "max";
4703 break;
4704 default:
4705 break;
4708 if (p == NULL)
4710 if (TREE_CODE (reduction_id) != IDENTIFIER_NODE)
4711 return error_mark_node;
4712 p = IDENTIFIER_POINTER (reduction_id);
4715 if (type != NULL_TREE)
4716 m = mangle_type_string (TYPE_MAIN_VARIANT (type));
4718 const char prefix[] = "omp declare reduction ";
4719 size_t lenp = sizeof (prefix);
4720 if (strncmp (p, prefix, lenp - 1) == 0)
4721 lenp = 1;
4722 size_t len = strlen (p);
4723 size_t lenm = m ? strlen (m) + 1 : 0;
4724 char *name = XALLOCAVEC (char, lenp + len + lenm);
4725 if (lenp > 1)
4726 memcpy (name, prefix, lenp - 1);
4727 memcpy (name + lenp - 1, p, len + 1);
4728 if (m)
4730 name[lenp + len - 1] = '~';
4731 memcpy (name + lenp + len, m, lenm);
4733 return get_identifier (name);
4736 /* Lookup OpenMP UDR ID for TYPE, return the corresponding artificial
4737 FUNCTION_DECL or NULL_TREE if not found. */
4739 static tree
4740 omp_reduction_lookup (location_t loc, tree id, tree type, tree *baselinkp,
4741 vec<tree> *ambiguousp)
4743 tree orig_id = id;
4744 tree baselink = NULL_TREE;
4745 if (identifier_p (id))
4747 cp_id_kind idk;
4748 bool nonint_cst_expression_p;
4749 const char *error_msg;
4750 id = omp_reduction_id (ERROR_MARK, id, type);
4751 tree decl = lookup_name (id);
4752 if (decl == NULL_TREE)
4753 decl = error_mark_node;
4754 id = finish_id_expression (id, decl, NULL_TREE, &idk, false, true,
4755 &nonint_cst_expression_p, false, true, false,
4756 false, &error_msg, loc);
4757 if (idk == CP_ID_KIND_UNQUALIFIED
4758 && identifier_p (id))
4760 vec<tree, va_gc> *args = NULL;
4761 vec_safe_push (args, build_reference_type (type));
4762 id = perform_koenig_lookup (id, args, tf_none);
4765 else if (TREE_CODE (id) == SCOPE_REF)
4766 id = lookup_qualified_name (TREE_OPERAND (id, 0),
4767 omp_reduction_id (ERROR_MARK,
4768 TREE_OPERAND (id, 1),
4769 type),
4770 false, false);
4771 tree fns = id;
4772 if (id && is_overloaded_fn (id))
4773 id = get_fns (id);
4774 for (; id; id = OVL_NEXT (id))
4776 tree fndecl = OVL_CURRENT (id);
4777 if (TREE_CODE (fndecl) == FUNCTION_DECL)
4779 tree argtype = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
4780 if (same_type_p (TREE_TYPE (argtype), type))
4781 break;
4784 if (id && BASELINK_P (fns))
4786 if (baselinkp)
4787 *baselinkp = fns;
4788 else
4789 baselink = fns;
4791 if (id == NULL_TREE && CLASS_TYPE_P (type) && TYPE_BINFO (type))
4793 vec<tree> ambiguous = vNULL;
4794 tree binfo = TYPE_BINFO (type), base_binfo, ret = NULL_TREE;
4795 unsigned int ix;
4796 if (ambiguousp == NULL)
4797 ambiguousp = &ambiguous;
4798 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
4800 id = omp_reduction_lookup (loc, orig_id, BINFO_TYPE (base_binfo),
4801 baselinkp ? baselinkp : &baselink,
4802 ambiguousp);
4803 if (id == NULL_TREE)
4804 continue;
4805 if (!ambiguousp->is_empty ())
4806 ambiguousp->safe_push (id);
4807 else if (ret != NULL_TREE)
4809 ambiguousp->safe_push (ret);
4810 ambiguousp->safe_push (id);
4811 ret = NULL_TREE;
4813 else
4814 ret = id;
4816 if (ambiguousp != &ambiguous)
4817 return ret;
4818 if (!ambiguous.is_empty ())
4820 const char *str = _("candidates are:");
4821 unsigned int idx;
4822 tree udr;
4823 error_at (loc, "user defined reduction lookup is ambiguous");
4824 FOR_EACH_VEC_ELT (ambiguous, idx, udr)
4826 inform (DECL_SOURCE_LOCATION (udr), "%s %#D", str, udr);
4827 if (idx == 0)
4828 str = get_spaces (str);
4830 ambiguous.release ();
4831 ret = error_mark_node;
4832 baselink = NULL_TREE;
4834 id = ret;
4836 if (id && baselink)
4837 perform_or_defer_access_check (BASELINK_BINFO (baselink),
4838 id, id, tf_warning_or_error);
4839 return id;
4842 /* Helper function for cp_parser_omp_declare_reduction_exprs
4843 and tsubst_omp_udr.
4844 Remove CLEANUP_STMT for data (omp_priv variable).
4845 Also append INIT_EXPR for DECL_INITIAL of omp_priv after its
4846 DECL_EXPR. */
4848 tree
4849 cp_remove_omp_priv_cleanup_stmt (tree *tp, int *walk_subtrees, void *data)
4851 if (TYPE_P (*tp))
4852 *walk_subtrees = 0;
4853 else if (TREE_CODE (*tp) == CLEANUP_STMT && CLEANUP_DECL (*tp) == (tree) data)
4854 *tp = CLEANUP_BODY (*tp);
4855 else if (TREE_CODE (*tp) == DECL_EXPR)
4857 tree decl = DECL_EXPR_DECL (*tp);
4858 if (!processing_template_decl
4859 && decl == (tree) data
4860 && DECL_INITIAL (decl)
4861 && DECL_INITIAL (decl) != error_mark_node)
4863 tree list = NULL_TREE;
4864 append_to_statement_list_force (*tp, &list);
4865 tree init_expr = build2 (INIT_EXPR, void_type_node,
4866 decl, DECL_INITIAL (decl));
4867 DECL_INITIAL (decl) = NULL_TREE;
4868 append_to_statement_list_force (init_expr, &list);
4869 *tp = list;
4872 return NULL_TREE;
4875 /* Data passed from cp_check_omp_declare_reduction to
4876 cp_check_omp_declare_reduction_r. */
4878 struct cp_check_omp_declare_reduction_data
4880 location_t loc;
4881 tree stmts[7];
4882 bool combiner_p;
4885 /* Helper function for cp_check_omp_declare_reduction, called via
4886 cp_walk_tree. */
4888 static tree
4889 cp_check_omp_declare_reduction_r (tree *tp, int *, void *data)
4891 struct cp_check_omp_declare_reduction_data *udr_data
4892 = (struct cp_check_omp_declare_reduction_data *) data;
4893 if (SSA_VAR_P (*tp)
4894 && !DECL_ARTIFICIAL (*tp)
4895 && *tp != DECL_EXPR_DECL (udr_data->stmts[udr_data->combiner_p ? 0 : 3])
4896 && *tp != DECL_EXPR_DECL (udr_data->stmts[udr_data->combiner_p ? 1 : 4]))
4898 location_t loc = udr_data->loc;
4899 if (udr_data->combiner_p)
4900 error_at (loc, "%<#pragma omp declare reduction%> combiner refers to "
4901 "variable %qD which is not %<omp_out%> nor %<omp_in%>",
4902 *tp);
4903 else
4904 error_at (loc, "%<#pragma omp declare reduction%> initializer refers "
4905 "to variable %qD which is not %<omp_priv%> nor "
4906 "%<omp_orig%>",
4907 *tp);
4908 return *tp;
4910 return NULL_TREE;
4913 /* Diagnose violation of OpenMP #pragma omp declare reduction restrictions. */
4915 void
4916 cp_check_omp_declare_reduction (tree udr)
4918 tree type = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (udr)));
4919 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
4920 type = TREE_TYPE (type);
4921 int i;
4922 location_t loc = DECL_SOURCE_LOCATION (udr);
4924 if (type == error_mark_node)
4925 return;
4926 if (ARITHMETIC_TYPE_P (type))
4928 static enum tree_code predef_codes[]
4929 = { PLUS_EXPR, MULT_EXPR, MINUS_EXPR, BIT_AND_EXPR, BIT_XOR_EXPR,
4930 BIT_IOR_EXPR, TRUTH_ANDIF_EXPR, TRUTH_ORIF_EXPR };
4931 for (i = 0; i < 8; i++)
4933 tree id = omp_reduction_id (predef_codes[i], NULL_TREE, NULL_TREE);
4934 const char *n1 = IDENTIFIER_POINTER (DECL_NAME (udr));
4935 const char *n2 = IDENTIFIER_POINTER (id);
4936 if (strncmp (n1, n2, IDENTIFIER_LENGTH (id)) == 0
4937 && (n1[IDENTIFIER_LENGTH (id)] == '~'
4938 || n1[IDENTIFIER_LENGTH (id)] == '\0'))
4939 break;
4942 if (i == 8
4943 && TREE_CODE (type) != COMPLEX_EXPR)
4945 const char prefix_minmax[] = "omp declare reduction m";
4946 size_t prefix_size = sizeof (prefix_minmax) - 1;
4947 const char *n = IDENTIFIER_POINTER (DECL_NAME (udr));
4948 if (strncmp (IDENTIFIER_POINTER (DECL_NAME (udr)),
4949 prefix_minmax, prefix_size) == 0
4950 && ((n[prefix_size] == 'i' && n[prefix_size + 1] == 'n')
4951 || (n[prefix_size] == 'a' && n[prefix_size + 1] == 'x'))
4952 && (n[prefix_size + 2] == '~' || n[prefix_size + 2] == '\0'))
4953 i = 0;
4955 if (i < 8)
4957 error_at (loc, "predeclared arithmetic type %qT in "
4958 "%<#pragma omp declare reduction%>", type);
4959 return;
4962 else if (TREE_CODE (type) == FUNCTION_TYPE
4963 || TREE_CODE (type) == METHOD_TYPE
4964 || TREE_CODE (type) == ARRAY_TYPE)
4966 error_at (loc, "function or array type %qT in "
4967 "%<#pragma omp declare reduction%>", type);
4968 return;
4970 else if (TREE_CODE (type) == REFERENCE_TYPE)
4972 error_at (loc, "reference type %qT in %<#pragma omp declare reduction%>",
4973 type);
4974 return;
4976 else if (TYPE_QUALS_NO_ADDR_SPACE (type))
4978 error_at (loc, "const, volatile or __restrict qualified type %qT in "
4979 "%<#pragma omp declare reduction%>", type);
4980 return;
4983 tree body = DECL_SAVED_TREE (udr);
4984 if (body == NULL_TREE || TREE_CODE (body) != STATEMENT_LIST)
4985 return;
4987 tree_stmt_iterator tsi;
4988 struct cp_check_omp_declare_reduction_data data;
4989 memset (data.stmts, 0, sizeof data.stmts);
4990 for (i = 0, tsi = tsi_start (body);
4991 i < 7 && !tsi_end_p (tsi);
4992 i++, tsi_next (&tsi))
4993 data.stmts[i] = tsi_stmt (tsi);
4994 data.loc = loc;
4995 gcc_assert (tsi_end_p (tsi));
4996 if (i >= 3)
4998 gcc_assert (TREE_CODE (data.stmts[0]) == DECL_EXPR
4999 && TREE_CODE (data.stmts[1]) == DECL_EXPR);
5000 if (TREE_NO_WARNING (DECL_EXPR_DECL (data.stmts[0])))
5001 return;
5002 data.combiner_p = true;
5003 if (cp_walk_tree (&data.stmts[2], cp_check_omp_declare_reduction_r,
5004 &data, NULL))
5005 TREE_NO_WARNING (DECL_EXPR_DECL (data.stmts[0])) = 1;
5007 if (i >= 6)
5009 gcc_assert (TREE_CODE (data.stmts[3]) == DECL_EXPR
5010 && TREE_CODE (data.stmts[4]) == DECL_EXPR);
5011 data.combiner_p = false;
5012 if (cp_walk_tree (&data.stmts[5], cp_check_omp_declare_reduction_r,
5013 &data, NULL)
5014 || cp_walk_tree (&DECL_INITIAL (DECL_EXPR_DECL (data.stmts[3])),
5015 cp_check_omp_declare_reduction_r, &data, NULL))
5016 TREE_NO_WARNING (DECL_EXPR_DECL (data.stmts[0])) = 1;
5017 if (i == 7)
5018 gcc_assert (TREE_CODE (data.stmts[6]) == DECL_EXPR);
5022 /* Helper function of finish_omp_clauses. Clone STMT as if we were making
5023 an inline call. But, remap
5024 the OMP_DECL1 VAR_DECL (omp_out resp. omp_orig) to PLACEHOLDER
5025 and OMP_DECL2 VAR_DECL (omp_in resp. omp_priv) to DECL. */
5027 static tree
5028 clone_omp_udr (tree stmt, tree omp_decl1, tree omp_decl2,
5029 tree decl, tree placeholder)
5031 copy_body_data id;
5032 hash_map<tree, tree> decl_map;
5034 decl_map.put (omp_decl1, placeholder);
5035 decl_map.put (omp_decl2, decl);
5036 memset (&id, 0, sizeof (id));
5037 id.src_fn = DECL_CONTEXT (omp_decl1);
5038 id.dst_fn = current_function_decl;
5039 id.src_cfun = DECL_STRUCT_FUNCTION (id.src_fn);
5040 id.decl_map = &decl_map;
5042 id.copy_decl = copy_decl_no_change;
5043 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5044 id.transform_new_cfg = true;
5045 id.transform_return_to_modify = false;
5046 id.transform_lang_insert_block = NULL;
5047 id.eh_lp_nr = 0;
5048 walk_tree (&stmt, copy_tree_body_r, &id, NULL);
5049 return stmt;
5052 /* Helper function of finish_omp_clauses, called via cp_walk_tree.
5053 Find OMP_CLAUSE_PLACEHOLDER (passed in DATA) in *TP. */
5055 static tree
5056 find_omp_placeholder_r (tree *tp, int *, void *data)
5058 if (*tp == (tree) data)
5059 return *tp;
5060 return NULL_TREE;
5063 /* Helper function of finish_omp_clauses. Handle OMP_CLAUSE_REDUCTION C.
5064 Return true if there is some error and the clause should be removed. */
5066 static bool
5067 finish_omp_reduction_clause (tree c, bool *need_default_ctor, bool *need_dtor)
5069 tree t = OMP_CLAUSE_DECL (c);
5070 bool predefined = false;
5071 tree type = TREE_TYPE (t);
5072 if (TREE_CODE (type) == REFERENCE_TYPE)
5073 type = TREE_TYPE (type);
5074 if (type == error_mark_node)
5075 return true;
5076 else if (ARITHMETIC_TYPE_P (type))
5077 switch (OMP_CLAUSE_REDUCTION_CODE (c))
5079 case PLUS_EXPR:
5080 case MULT_EXPR:
5081 case MINUS_EXPR:
5082 predefined = true;
5083 break;
5084 case MIN_EXPR:
5085 case MAX_EXPR:
5086 if (TREE_CODE (type) == COMPLEX_TYPE)
5087 break;
5088 predefined = true;
5089 break;
5090 case BIT_AND_EXPR:
5091 case BIT_IOR_EXPR:
5092 case BIT_XOR_EXPR:
5093 if (FLOAT_TYPE_P (type) || TREE_CODE (type) == COMPLEX_TYPE)
5094 break;
5095 predefined = true;
5096 break;
5097 case TRUTH_ANDIF_EXPR:
5098 case TRUTH_ORIF_EXPR:
5099 if (FLOAT_TYPE_P (type))
5100 break;
5101 predefined = true;
5102 break;
5103 default:
5104 break;
5106 else if (TREE_CODE (type) == ARRAY_TYPE || TYPE_READONLY (type))
5108 error ("%qE has invalid type for %<reduction%>", t);
5109 return true;
5111 else if (!processing_template_decl)
5113 t = require_complete_type (t);
5114 if (t == error_mark_node)
5115 return true;
5116 OMP_CLAUSE_DECL (c) = t;
5119 if (predefined)
5121 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = NULL_TREE;
5122 return false;
5124 else if (processing_template_decl)
5125 return false;
5127 tree id = OMP_CLAUSE_REDUCTION_PLACEHOLDER (c);
5129 type = TYPE_MAIN_VARIANT (TREE_TYPE (t));
5130 if (TREE_CODE (type) == REFERENCE_TYPE)
5131 type = TREE_TYPE (type);
5132 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = NULL_TREE;
5133 if (id == NULL_TREE)
5134 id = omp_reduction_id (OMP_CLAUSE_REDUCTION_CODE (c),
5135 NULL_TREE, NULL_TREE);
5136 id = omp_reduction_lookup (OMP_CLAUSE_LOCATION (c), id, type, NULL, NULL);
5137 if (id)
5139 if (id == error_mark_node)
5140 return true;
5141 id = OVL_CURRENT (id);
5142 mark_used (id);
5143 tree body = DECL_SAVED_TREE (id);
5144 if (!body)
5145 return true;
5146 if (TREE_CODE (body) == STATEMENT_LIST)
5148 tree_stmt_iterator tsi;
5149 tree placeholder = NULL_TREE;
5150 int i;
5151 tree stmts[7];
5152 tree atype = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (id)));
5153 atype = TREE_TYPE (atype);
5154 bool need_static_cast = !same_type_p (type, atype);
5155 memset (stmts, 0, sizeof stmts);
5156 for (i = 0, tsi = tsi_start (body);
5157 i < 7 && !tsi_end_p (tsi);
5158 i++, tsi_next (&tsi))
5159 stmts[i] = tsi_stmt (tsi);
5160 gcc_assert (tsi_end_p (tsi));
5162 if (i >= 3)
5164 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
5165 && TREE_CODE (stmts[1]) == DECL_EXPR);
5166 placeholder = build_lang_decl (VAR_DECL, NULL_TREE, type);
5167 DECL_ARTIFICIAL (placeholder) = 1;
5168 DECL_IGNORED_P (placeholder) = 1;
5169 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = placeholder;
5170 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[0])))
5171 cxx_mark_addressable (placeholder);
5172 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[1]))
5173 && TREE_CODE (TREE_TYPE (OMP_CLAUSE_DECL (c)))
5174 != REFERENCE_TYPE)
5175 cxx_mark_addressable (OMP_CLAUSE_DECL (c));
5176 tree omp_out = placeholder;
5177 tree omp_in = convert_from_reference (OMP_CLAUSE_DECL (c));
5178 if (need_static_cast)
5180 tree rtype = build_reference_type (atype);
5181 omp_out = build_static_cast (rtype, omp_out,
5182 tf_warning_or_error);
5183 omp_in = build_static_cast (rtype, omp_in,
5184 tf_warning_or_error);
5185 if (omp_out == error_mark_node || omp_in == error_mark_node)
5186 return true;
5187 omp_out = convert_from_reference (omp_out);
5188 omp_in = convert_from_reference (omp_in);
5190 OMP_CLAUSE_REDUCTION_MERGE (c)
5191 = clone_omp_udr (stmts[2], DECL_EXPR_DECL (stmts[0]),
5192 DECL_EXPR_DECL (stmts[1]), omp_in, omp_out);
5194 if (i >= 6)
5196 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
5197 && TREE_CODE (stmts[4]) == DECL_EXPR);
5198 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[3])))
5199 cxx_mark_addressable (OMP_CLAUSE_DECL (c));
5200 if (TREE_ADDRESSABLE (DECL_EXPR_DECL (stmts[4])))
5201 cxx_mark_addressable (placeholder);
5202 tree omp_priv = convert_from_reference (OMP_CLAUSE_DECL (c));
5203 tree omp_orig = placeholder;
5204 if (need_static_cast)
5206 if (i == 7)
5208 error_at (OMP_CLAUSE_LOCATION (c),
5209 "user defined reduction with constructor "
5210 "initializer for base class %qT", atype);
5211 return true;
5213 tree rtype = build_reference_type (atype);
5214 omp_priv = build_static_cast (rtype, omp_priv,
5215 tf_warning_or_error);
5216 omp_orig = build_static_cast (rtype, omp_orig,
5217 tf_warning_or_error);
5218 if (omp_priv == error_mark_node
5219 || omp_orig == error_mark_node)
5220 return true;
5221 omp_priv = convert_from_reference (omp_priv);
5222 omp_orig = convert_from_reference (omp_orig);
5224 if (i == 6)
5225 *need_default_ctor = true;
5226 OMP_CLAUSE_REDUCTION_INIT (c)
5227 = clone_omp_udr (stmts[5], DECL_EXPR_DECL (stmts[4]),
5228 DECL_EXPR_DECL (stmts[3]),
5229 omp_priv, omp_orig);
5230 if (cp_walk_tree (&OMP_CLAUSE_REDUCTION_INIT (c),
5231 find_omp_placeholder_r, placeholder, NULL))
5232 OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c) = 1;
5234 else if (i >= 3)
5236 if (CLASS_TYPE_P (type) && !pod_type_p (type))
5237 *need_default_ctor = true;
5238 else
5240 tree init;
5241 tree v = convert_from_reference (t);
5242 if (AGGREGATE_TYPE_P (TREE_TYPE (v)))
5243 init = build_constructor (TREE_TYPE (v), NULL);
5244 else
5245 init = fold_convert (TREE_TYPE (v), integer_zero_node);
5246 OMP_CLAUSE_REDUCTION_INIT (c)
5247 = build2 (INIT_EXPR, TREE_TYPE (v), v, init);
5252 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5253 *need_dtor = true;
5254 else
5256 error ("user defined reduction not found for %qD", t);
5257 return true;
5259 return false;
5262 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
5263 Remove any elements from the list that are invalid. */
5265 tree
5266 finish_omp_clauses (tree clauses)
5268 bitmap_head generic_head, firstprivate_head, lastprivate_head;
5269 bitmap_head aligned_head;
5270 tree c, t, *pc;
5271 bool branch_seen = false;
5272 bool copyprivate_seen = false;
5274 bitmap_obstack_initialize (NULL);
5275 bitmap_initialize (&generic_head, &bitmap_default_obstack);
5276 bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
5277 bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
5278 bitmap_initialize (&aligned_head, &bitmap_default_obstack);
5280 for (pc = &clauses, c = clauses; c ; c = *pc)
5282 bool remove = false;
5284 switch (OMP_CLAUSE_CODE (c))
5286 case OMP_CLAUSE_SHARED:
5287 goto check_dup_generic;
5288 case OMP_CLAUSE_PRIVATE:
5289 goto check_dup_generic;
5290 case OMP_CLAUSE_REDUCTION:
5291 goto check_dup_generic;
5292 case OMP_CLAUSE_COPYPRIVATE:
5293 copyprivate_seen = true;
5294 goto check_dup_generic;
5295 case OMP_CLAUSE_COPYIN:
5296 goto check_dup_generic;
5297 case OMP_CLAUSE_LINEAR:
5298 t = OMP_CLAUSE_DECL (c);
5299 if (!type_dependent_expression_p (t)
5300 && !INTEGRAL_TYPE_P (TREE_TYPE (t))
5301 && TREE_CODE (TREE_TYPE (t)) != POINTER_TYPE)
5303 error ("linear clause applied to non-integral non-pointer "
5304 "variable with %qT type", TREE_TYPE (t));
5305 remove = true;
5306 break;
5308 t = OMP_CLAUSE_LINEAR_STEP (c);
5309 if (t == NULL_TREE)
5310 t = integer_one_node;
5311 if (t == error_mark_node)
5313 remove = true;
5314 break;
5316 else if (!type_dependent_expression_p (t)
5317 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5319 error ("linear step expression must be integral");
5320 remove = true;
5321 break;
5323 else
5325 t = mark_rvalue_use (t);
5326 if (!processing_template_decl)
5328 if (TREE_CODE (OMP_CLAUSE_DECL (c)) == PARM_DECL)
5329 t = maybe_constant_value (t);
5330 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5331 if (TREE_CODE (TREE_TYPE (OMP_CLAUSE_DECL (c)))
5332 == POINTER_TYPE)
5334 t = pointer_int_sum (OMP_CLAUSE_LOCATION (c), PLUS_EXPR,
5335 OMP_CLAUSE_DECL (c), t);
5336 t = fold_build2_loc (OMP_CLAUSE_LOCATION (c),
5337 MINUS_EXPR, sizetype, t,
5338 OMP_CLAUSE_DECL (c));
5339 if (t == error_mark_node)
5341 remove = true;
5342 break;
5345 else
5346 t = fold_convert (TREE_TYPE (OMP_CLAUSE_DECL (c)), t);
5348 OMP_CLAUSE_LINEAR_STEP (c) = t;
5350 goto check_dup_generic;
5351 check_dup_generic:
5352 t = OMP_CLAUSE_DECL (c);
5353 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL)
5355 if (processing_template_decl)
5356 break;
5357 if (DECL_P (t))
5358 error ("%qD is not a variable in clause %qs", t,
5359 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5360 else
5361 error ("%qE is not a variable in clause %qs", t,
5362 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5363 remove = true;
5365 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
5366 || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
5367 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
5369 error ("%qD appears more than once in data clauses", t);
5370 remove = true;
5372 else
5373 bitmap_set_bit (&generic_head, DECL_UID (t));
5374 break;
5376 case OMP_CLAUSE_FIRSTPRIVATE:
5377 t = OMP_CLAUSE_DECL (c);
5378 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL)
5380 if (processing_template_decl)
5381 break;
5382 if (DECL_P (t))
5383 error ("%qD is not a variable in clause %<firstprivate%>", t);
5384 else
5385 error ("%qE is not a variable in clause %<firstprivate%>", t);
5386 remove = true;
5388 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
5389 || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
5391 error ("%qD appears more than once in data clauses", t);
5392 remove = true;
5394 else
5395 bitmap_set_bit (&firstprivate_head, DECL_UID (t));
5396 break;
5398 case OMP_CLAUSE_LASTPRIVATE:
5399 t = OMP_CLAUSE_DECL (c);
5400 if (!VAR_P (t) && TREE_CODE (t) != PARM_DECL)
5402 if (processing_template_decl)
5403 break;
5404 if (DECL_P (t))
5405 error ("%qD is not a variable in clause %<lastprivate%>", t);
5406 else
5407 error ("%qE is not a variable in clause %<lastprivate%>", t);
5408 remove = true;
5410 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
5411 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
5413 error ("%qD appears more than once in data clauses", t);
5414 remove = true;
5416 else
5417 bitmap_set_bit (&lastprivate_head, DECL_UID (t));
5418 break;
5420 case OMP_CLAUSE_IF:
5421 t = OMP_CLAUSE_IF_EXPR (c);
5422 t = maybe_convert_cond (t);
5423 if (t == error_mark_node)
5424 remove = true;
5425 else if (!processing_template_decl)
5426 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5427 OMP_CLAUSE_IF_EXPR (c) = t;
5428 break;
5430 case OMP_CLAUSE_FINAL:
5431 t = OMP_CLAUSE_FINAL_EXPR (c);
5432 t = maybe_convert_cond (t);
5433 if (t == error_mark_node)
5434 remove = true;
5435 else if (!processing_template_decl)
5436 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5437 OMP_CLAUSE_FINAL_EXPR (c) = t;
5438 break;
5440 case OMP_CLAUSE_NUM_THREADS:
5441 t = OMP_CLAUSE_NUM_THREADS_EXPR (c);
5442 if (t == error_mark_node)
5443 remove = true;
5444 else if (!type_dependent_expression_p (t)
5445 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5447 error ("num_threads expression must be integral");
5448 remove = true;
5450 else
5452 t = mark_rvalue_use (t);
5453 if (!processing_template_decl)
5454 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5455 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
5457 break;
5459 case OMP_CLAUSE_SCHEDULE:
5460 t = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c);
5461 if (t == NULL)
5463 else if (t == error_mark_node)
5464 remove = true;
5465 else if (!type_dependent_expression_p (t)
5466 && (OMP_CLAUSE_SCHEDULE_KIND (c)
5467 != OMP_CLAUSE_SCHEDULE_CILKFOR)
5468 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5470 error ("schedule chunk size expression must be integral");
5471 remove = true;
5473 else
5475 t = mark_rvalue_use (t);
5476 if (!processing_template_decl)
5478 if (OMP_CLAUSE_SCHEDULE_KIND (c)
5479 == OMP_CLAUSE_SCHEDULE_CILKFOR)
5481 t = convert_to_integer (long_integer_type_node, t);
5482 if (t == error_mark_node)
5484 remove = true;
5485 break;
5488 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5490 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
5492 break;
5494 case OMP_CLAUSE_SIMDLEN:
5495 case OMP_CLAUSE_SAFELEN:
5496 t = OMP_CLAUSE_OPERAND (c, 0);
5497 if (t == error_mark_node)
5498 remove = true;
5499 else if (!type_dependent_expression_p (t)
5500 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5502 error ("%qs length expression must be integral",
5503 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5504 remove = true;
5506 else
5508 t = mark_rvalue_use (t);
5509 t = maybe_constant_value (t);
5510 if (!processing_template_decl)
5512 if (TREE_CODE (t) != INTEGER_CST
5513 || tree_int_cst_sgn (t) != 1)
5515 error ("%qs length expression must be positive constant"
5516 " integer expression",
5517 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5518 remove = true;
5521 OMP_CLAUSE_OPERAND (c, 0) = t;
5523 break;
5525 case OMP_CLAUSE_NUM_TEAMS:
5526 t = OMP_CLAUSE_NUM_TEAMS_EXPR (c);
5527 if (t == error_mark_node)
5528 remove = true;
5529 else if (!type_dependent_expression_p (t)
5530 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5532 error ("%<num_teams%> expression must be integral");
5533 remove = true;
5535 else
5537 t = mark_rvalue_use (t);
5538 if (!processing_template_decl)
5539 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5540 OMP_CLAUSE_NUM_TEAMS_EXPR (c) = t;
5542 break;
5544 case OMP_CLAUSE_THREAD_LIMIT:
5545 t = OMP_CLAUSE_THREAD_LIMIT_EXPR (c);
5546 if (t == error_mark_node)
5547 remove = true;
5548 else if (!type_dependent_expression_p (t)
5549 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5551 error ("%<thread_limit%> expression must be integral");
5552 remove = true;
5554 else
5556 t = mark_rvalue_use (t);
5557 if (!processing_template_decl)
5558 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5559 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = t;
5561 break;
5563 case OMP_CLAUSE_DEVICE:
5564 t = OMP_CLAUSE_DEVICE_ID (c);
5565 if (t == error_mark_node)
5566 remove = true;
5567 else if (!type_dependent_expression_p (t)
5568 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5570 error ("%<device%> id must be integral");
5571 remove = true;
5573 else
5575 t = mark_rvalue_use (t);
5576 if (!processing_template_decl)
5577 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5578 OMP_CLAUSE_DEVICE_ID (c) = t;
5580 break;
5582 case OMP_CLAUSE_DIST_SCHEDULE:
5583 t = OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (c);
5584 if (t == NULL)
5586 else if (t == error_mark_node)
5587 remove = true;
5588 else if (!type_dependent_expression_p (t)
5589 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5591 error ("%<dist_schedule%> chunk size expression must be "
5592 "integral");
5593 remove = true;
5595 else
5597 t = mark_rvalue_use (t);
5598 if (!processing_template_decl)
5599 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
5600 OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (c) = t;
5602 break;
5604 case OMP_CLAUSE_ALIGNED:
5605 t = OMP_CLAUSE_DECL (c);
5606 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
5608 if (processing_template_decl)
5609 break;
5610 if (DECL_P (t))
5611 error ("%qD is not a variable in %<aligned%> clause", t);
5612 else
5613 error ("%qE is not a variable in %<aligned%> clause", t);
5614 remove = true;
5616 else if (!type_dependent_expression_p (t)
5617 && TREE_CODE (TREE_TYPE (t)) != POINTER_TYPE
5618 && TREE_CODE (TREE_TYPE (t)) != ARRAY_TYPE
5619 && (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE
5620 || (!POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (t)))
5621 && (TREE_CODE (TREE_TYPE (TREE_TYPE (t)))
5622 != ARRAY_TYPE))))
5624 error_at (OMP_CLAUSE_LOCATION (c),
5625 "%qE in %<aligned%> clause is neither a pointer nor "
5626 "an array nor a reference to pointer or array", t);
5627 remove = true;
5629 else if (bitmap_bit_p (&aligned_head, DECL_UID (t)))
5631 error ("%qD appears more than once in %<aligned%> clauses", t);
5632 remove = true;
5634 else
5635 bitmap_set_bit (&aligned_head, DECL_UID (t));
5636 t = OMP_CLAUSE_ALIGNED_ALIGNMENT (c);
5637 if (t == error_mark_node)
5638 remove = true;
5639 else if (t == NULL_TREE)
5640 break;
5641 else if (!type_dependent_expression_p (t)
5642 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
5644 error ("%<aligned%> clause alignment expression must "
5645 "be integral");
5646 remove = true;
5648 else
5650 t = mark_rvalue_use (t);
5651 t = maybe_constant_value (t);
5652 if (!processing_template_decl)
5654 if (TREE_CODE (t) != INTEGER_CST
5655 || tree_int_cst_sgn (t) != 1)
5657 error ("%<aligned%> clause alignment expression must be "
5658 "positive constant integer expression");
5659 remove = true;
5662 OMP_CLAUSE_ALIGNED_ALIGNMENT (c) = t;
5664 break;
5666 case OMP_CLAUSE_DEPEND:
5667 t = OMP_CLAUSE_DECL (c);
5668 if (TREE_CODE (t) == TREE_LIST)
5670 if (handle_omp_array_sections (c))
5671 remove = true;
5672 break;
5674 if (t == error_mark_node)
5675 remove = true;
5676 else if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
5678 if (processing_template_decl)
5679 break;
5680 if (DECL_P (t))
5681 error ("%qD is not a variable in %<depend%> clause", t);
5682 else
5683 error ("%qE is not a variable in %<depend%> clause", t);
5684 remove = true;
5686 else if (!processing_template_decl
5687 && !cxx_mark_addressable (t))
5688 remove = true;
5689 break;
5691 case OMP_CLAUSE_MAP:
5692 case OMP_CLAUSE_TO:
5693 case OMP_CLAUSE_FROM:
5694 t = OMP_CLAUSE_DECL (c);
5695 if (TREE_CODE (t) == TREE_LIST)
5697 if (handle_omp_array_sections (c))
5698 remove = true;
5699 else
5701 t = OMP_CLAUSE_DECL (c);
5702 if (TREE_CODE (t) != TREE_LIST
5703 && !type_dependent_expression_p (t)
5704 && !cp_omp_mappable_type (TREE_TYPE (t)))
5706 error_at (OMP_CLAUSE_LOCATION (c),
5707 "array section does not have mappable type "
5708 "in %qs clause",
5709 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5710 remove = true;
5713 break;
5715 if (t == error_mark_node)
5716 remove = true;
5717 else if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
5719 if (processing_template_decl)
5720 break;
5721 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
5722 && OMP_CLAUSE_MAP_KIND (c) == OMP_CLAUSE_MAP_POINTER)
5723 break;
5724 if (DECL_P (t))
5725 error ("%qD is not a variable in %qs clause", t,
5726 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5727 else
5728 error ("%qE is not a variable in %qs clause", t,
5729 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5730 remove = true;
5732 else if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
5734 error ("%qD is threadprivate variable in %qs clause", t,
5735 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5736 remove = true;
5738 else if (!processing_template_decl
5739 && TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE
5740 && !cxx_mark_addressable (t))
5741 remove = true;
5742 else if (!(OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
5743 && OMP_CLAUSE_MAP_KIND (c) == OMP_CLAUSE_MAP_POINTER)
5744 && !type_dependent_expression_p (t)
5745 && !cp_omp_mappable_type ((TREE_CODE (TREE_TYPE (t))
5746 == REFERENCE_TYPE)
5747 ? TREE_TYPE (TREE_TYPE (t))
5748 : TREE_TYPE (t)))
5750 error_at (OMP_CLAUSE_LOCATION (c),
5751 "%qD does not have a mappable type in %qs clause", t,
5752 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5753 remove = true;
5755 else if (bitmap_bit_p (&generic_head, DECL_UID (t)))
5757 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP)
5758 error ("%qD appears more than once in motion clauses", t);
5759 else
5760 error ("%qD appears more than once in map clauses", t);
5761 remove = true;
5763 else
5764 bitmap_set_bit (&generic_head, DECL_UID (t));
5765 break;
5767 case OMP_CLAUSE_UNIFORM:
5768 t = OMP_CLAUSE_DECL (c);
5769 if (TREE_CODE (t) != PARM_DECL)
5771 if (processing_template_decl)
5772 break;
5773 if (DECL_P (t))
5774 error ("%qD is not an argument in %<uniform%> clause", t);
5775 else
5776 error ("%qE is not an argument in %<uniform%> clause", t);
5777 remove = true;
5778 break;
5780 goto check_dup_generic;
5782 case OMP_CLAUSE_NOWAIT:
5783 case OMP_CLAUSE_ORDERED:
5784 case OMP_CLAUSE_DEFAULT:
5785 case OMP_CLAUSE_UNTIED:
5786 case OMP_CLAUSE_COLLAPSE:
5787 case OMP_CLAUSE_MERGEABLE:
5788 case OMP_CLAUSE_PARALLEL:
5789 case OMP_CLAUSE_FOR:
5790 case OMP_CLAUSE_SECTIONS:
5791 case OMP_CLAUSE_TASKGROUP:
5792 case OMP_CLAUSE_PROC_BIND:
5793 case OMP_CLAUSE__CILK_FOR_COUNT_:
5794 break;
5796 case OMP_CLAUSE_INBRANCH:
5797 case OMP_CLAUSE_NOTINBRANCH:
5798 if (branch_seen)
5800 error ("%<inbranch%> clause is incompatible with "
5801 "%<notinbranch%>");
5802 remove = true;
5804 branch_seen = true;
5805 break;
5807 default:
5808 gcc_unreachable ();
5811 if (remove)
5812 *pc = OMP_CLAUSE_CHAIN (c);
5813 else
5814 pc = &OMP_CLAUSE_CHAIN (c);
5817 for (pc = &clauses, c = clauses; c ; c = *pc)
5819 enum omp_clause_code c_kind = OMP_CLAUSE_CODE (c);
5820 bool remove = false;
5821 bool need_complete_non_reference = false;
5822 bool need_default_ctor = false;
5823 bool need_copy_ctor = false;
5824 bool need_copy_assignment = false;
5825 bool need_implicitly_determined = false;
5826 bool need_dtor = false;
5827 tree type, inner_type;
5829 switch (c_kind)
5831 case OMP_CLAUSE_SHARED:
5832 need_implicitly_determined = true;
5833 break;
5834 case OMP_CLAUSE_PRIVATE:
5835 need_complete_non_reference = true;
5836 need_default_ctor = true;
5837 need_dtor = true;
5838 need_implicitly_determined = true;
5839 break;
5840 case OMP_CLAUSE_FIRSTPRIVATE:
5841 need_complete_non_reference = true;
5842 need_copy_ctor = true;
5843 need_dtor = true;
5844 need_implicitly_determined = true;
5845 break;
5846 case OMP_CLAUSE_LASTPRIVATE:
5847 need_complete_non_reference = true;
5848 need_copy_assignment = true;
5849 need_implicitly_determined = true;
5850 break;
5851 case OMP_CLAUSE_REDUCTION:
5852 need_implicitly_determined = true;
5853 break;
5854 case OMP_CLAUSE_COPYPRIVATE:
5855 need_copy_assignment = true;
5856 break;
5857 case OMP_CLAUSE_COPYIN:
5858 need_copy_assignment = true;
5859 break;
5860 case OMP_CLAUSE_NOWAIT:
5861 if (copyprivate_seen)
5863 error_at (OMP_CLAUSE_LOCATION (c),
5864 "%<nowait%> clause must not be used together "
5865 "with %<copyprivate%>");
5866 *pc = OMP_CLAUSE_CHAIN (c);
5867 continue;
5869 /* FALLTHRU */
5870 default:
5871 pc = &OMP_CLAUSE_CHAIN (c);
5872 continue;
5875 t = OMP_CLAUSE_DECL (c);
5876 if (processing_template_decl
5877 && !VAR_P (t) && TREE_CODE (t) != PARM_DECL)
5879 pc = &OMP_CLAUSE_CHAIN (c);
5880 continue;
5883 switch (c_kind)
5885 case OMP_CLAUSE_LASTPRIVATE:
5886 if (!bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
5888 need_default_ctor = true;
5889 need_dtor = true;
5891 break;
5893 case OMP_CLAUSE_REDUCTION:
5894 if (finish_omp_reduction_clause (c, &need_default_ctor,
5895 &need_dtor))
5896 remove = true;
5897 else
5898 t = OMP_CLAUSE_DECL (c);
5899 break;
5901 case OMP_CLAUSE_COPYIN:
5902 if (!VAR_P (t) || !DECL_THREAD_LOCAL_P (t))
5904 error ("%qE must be %<threadprivate%> for %<copyin%>", t);
5905 remove = true;
5907 break;
5909 default:
5910 break;
5913 if (need_complete_non_reference || need_copy_assignment)
5915 t = require_complete_type (t);
5916 if (t == error_mark_node)
5917 remove = true;
5918 else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
5919 && need_complete_non_reference)
5921 error ("%qE has reference type for %qs", t,
5922 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5923 remove = true;
5926 if (need_implicitly_determined)
5928 const char *share_name = NULL;
5930 if (VAR_P (t) && DECL_THREAD_LOCAL_P (t))
5931 share_name = "threadprivate";
5932 else switch (cxx_omp_predetermined_sharing (t))
5934 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5935 break;
5936 case OMP_CLAUSE_DEFAULT_SHARED:
5937 /* const vars may be specified in firstprivate clause. */
5938 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
5939 && cxx_omp_const_qual_no_mutable (t))
5940 break;
5941 share_name = "shared";
5942 break;
5943 case OMP_CLAUSE_DEFAULT_PRIVATE:
5944 share_name = "private";
5945 break;
5946 default:
5947 gcc_unreachable ();
5949 if (share_name)
5951 error ("%qE is predetermined %qs for %qs",
5952 t, share_name, omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
5953 remove = true;
5957 /* We're interested in the base element, not arrays. */
5958 inner_type = type = TREE_TYPE (t);
5959 while (TREE_CODE (inner_type) == ARRAY_TYPE)
5960 inner_type = TREE_TYPE (inner_type);
5962 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
5963 && TREE_CODE (inner_type) == REFERENCE_TYPE)
5964 inner_type = TREE_TYPE (inner_type);
5966 /* Check for special function availability by building a call to one.
5967 Save the results, because later we won't be in the right context
5968 for making these queries. */
5969 if (CLASS_TYPE_P (inner_type)
5970 && COMPLETE_TYPE_P (inner_type)
5971 && (need_default_ctor || need_copy_ctor
5972 || need_copy_assignment || need_dtor)
5973 && !type_dependent_expression_p (t)
5974 && cxx_omp_create_clause_info (c, inner_type, need_default_ctor,
5975 need_copy_ctor, need_copy_assignment,
5976 need_dtor))
5977 remove = true;
5979 if (remove)
5980 *pc = OMP_CLAUSE_CHAIN (c);
5981 else
5982 pc = &OMP_CLAUSE_CHAIN (c);
5985 bitmap_obstack_release (NULL);
5986 return clauses;
5989 /* For all variables in the tree_list VARS, mark them as thread local. */
5991 void
5992 finish_omp_threadprivate (tree vars)
5994 tree t;
5996 /* Mark every variable in VARS to be assigned thread local storage. */
5997 for (t = vars; t; t = TREE_CHAIN (t))
5999 tree v = TREE_PURPOSE (t);
6001 if (error_operand_p (v))
6003 else if (!VAR_P (v))
6004 error ("%<threadprivate%> %qD is not file, namespace "
6005 "or block scope variable", v);
6006 /* If V had already been marked threadprivate, it doesn't matter
6007 whether it had been used prior to this point. */
6008 else if (TREE_USED (v)
6009 && (DECL_LANG_SPECIFIC (v) == NULL
6010 || !CP_DECL_THREADPRIVATE_P (v)))
6011 error ("%qE declared %<threadprivate%> after first use", v);
6012 else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
6013 error ("automatic variable %qE cannot be %<threadprivate%>", v);
6014 else if (! COMPLETE_TYPE_P (complete_type (TREE_TYPE (v))))
6015 error ("%<threadprivate%> %qE has incomplete type", v);
6016 else if (TREE_STATIC (v) && TYPE_P (CP_DECL_CONTEXT (v))
6017 && CP_DECL_CONTEXT (v) != current_class_type)
6018 error ("%<threadprivate%> %qE directive not "
6019 "in %qT definition", v, CP_DECL_CONTEXT (v));
6020 else
6022 /* Allocate a LANG_SPECIFIC structure for V, if needed. */
6023 if (DECL_LANG_SPECIFIC (v) == NULL)
6025 retrofit_lang_decl (v);
6027 /* Make sure that DECL_DISCRIMINATOR_P continues to be true
6028 after the allocation of the lang_decl structure. */
6029 if (DECL_DISCRIMINATOR_P (v))
6030 DECL_LANG_SPECIFIC (v)->u.base.u2sel = 1;
6033 if (! DECL_THREAD_LOCAL_P (v))
6035 set_decl_tls_model (v, decl_default_tls_model (v));
6036 /* If rtl has been already set for this var, call
6037 make_decl_rtl once again, so that encode_section_info
6038 has a chance to look at the new decl flags. */
6039 if (DECL_RTL_SET_P (v))
6040 make_decl_rtl (v);
6042 CP_DECL_THREADPRIVATE_P (v) = 1;
6047 /* Build an OpenMP structured block. */
6049 tree
6050 begin_omp_structured_block (void)
6052 return do_pushlevel (sk_omp);
6055 tree
6056 finish_omp_structured_block (tree block)
6058 return do_poplevel (block);
6061 /* Similarly, except force the retention of the BLOCK. */
6063 tree
6064 begin_omp_parallel (void)
6066 keep_next_level (true);
6067 return begin_omp_structured_block ();
6070 tree
6071 finish_omp_parallel (tree clauses, tree body)
6073 tree stmt;
6075 body = finish_omp_structured_block (body);
6077 stmt = make_node (OMP_PARALLEL);
6078 TREE_TYPE (stmt) = void_type_node;
6079 OMP_PARALLEL_CLAUSES (stmt) = clauses;
6080 OMP_PARALLEL_BODY (stmt) = body;
6082 return add_stmt (stmt);
6085 tree
6086 begin_omp_task (void)
6088 keep_next_level (true);
6089 return begin_omp_structured_block ();
6092 tree
6093 finish_omp_task (tree clauses, tree body)
6095 tree stmt;
6097 body = finish_omp_structured_block (body);
6099 stmt = make_node (OMP_TASK);
6100 TREE_TYPE (stmt) = void_type_node;
6101 OMP_TASK_CLAUSES (stmt) = clauses;
6102 OMP_TASK_BODY (stmt) = body;
6104 return add_stmt (stmt);
6107 /* Helper function for finish_omp_for. Convert Ith random access iterator
6108 into integral iterator. Return FALSE if successful. */
6110 static bool
6111 handle_omp_for_class_iterator (int i, location_t locus, tree declv, tree initv,
6112 tree condv, tree incrv, tree *body,
6113 tree *pre_body, tree clauses, tree *lastp)
6115 tree diff, iter_init, iter_incr = NULL, last;
6116 tree incr_var = NULL, orig_pre_body, orig_body, c;
6117 tree decl = TREE_VEC_ELT (declv, i);
6118 tree init = TREE_VEC_ELT (initv, i);
6119 tree cond = TREE_VEC_ELT (condv, i);
6120 tree incr = TREE_VEC_ELT (incrv, i);
6121 tree iter = decl;
6122 location_t elocus = locus;
6124 if (init && EXPR_HAS_LOCATION (init))
6125 elocus = EXPR_LOCATION (init);
6127 switch (TREE_CODE (cond))
6129 case GT_EXPR:
6130 case GE_EXPR:
6131 case LT_EXPR:
6132 case LE_EXPR:
6133 case NE_EXPR:
6134 if (TREE_OPERAND (cond, 1) == iter)
6135 cond = build2 (swap_tree_comparison (TREE_CODE (cond)),
6136 TREE_TYPE (cond), iter, TREE_OPERAND (cond, 0));
6137 if (TREE_OPERAND (cond, 0) != iter)
6138 cond = error_mark_node;
6139 else
6141 tree tem = build_x_binary_op (EXPR_LOCATION (cond),
6142 TREE_CODE (cond),
6143 iter, ERROR_MARK,
6144 TREE_OPERAND (cond, 1), ERROR_MARK,
6145 NULL, tf_warning_or_error);
6146 if (error_operand_p (tem))
6147 return true;
6149 break;
6150 default:
6151 cond = error_mark_node;
6152 break;
6154 if (cond == error_mark_node)
6156 error_at (elocus, "invalid controlling predicate");
6157 return true;
6159 diff = build_x_binary_op (elocus, MINUS_EXPR, TREE_OPERAND (cond, 1),
6160 ERROR_MARK, iter, ERROR_MARK, NULL,
6161 tf_warning_or_error);
6162 if (error_operand_p (diff))
6163 return true;
6164 if (TREE_CODE (TREE_TYPE (diff)) != INTEGER_TYPE)
6166 error_at (elocus, "difference between %qE and %qD does not have integer type",
6167 TREE_OPERAND (cond, 1), iter);
6168 return true;
6171 switch (TREE_CODE (incr))
6173 case PREINCREMENT_EXPR:
6174 case PREDECREMENT_EXPR:
6175 case POSTINCREMENT_EXPR:
6176 case POSTDECREMENT_EXPR:
6177 if (TREE_OPERAND (incr, 0) != iter)
6179 incr = error_mark_node;
6180 break;
6182 iter_incr = build_x_unary_op (EXPR_LOCATION (incr),
6183 TREE_CODE (incr), iter,
6184 tf_warning_or_error);
6185 if (error_operand_p (iter_incr))
6186 return true;
6187 else if (TREE_CODE (incr) == PREINCREMENT_EXPR
6188 || TREE_CODE (incr) == POSTINCREMENT_EXPR)
6189 incr = integer_one_node;
6190 else
6191 incr = integer_minus_one_node;
6192 break;
6193 case MODIFY_EXPR:
6194 if (TREE_OPERAND (incr, 0) != iter)
6195 incr = error_mark_node;
6196 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
6197 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
6199 tree rhs = TREE_OPERAND (incr, 1);
6200 if (TREE_OPERAND (rhs, 0) == iter)
6202 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 1)))
6203 != INTEGER_TYPE)
6204 incr = error_mark_node;
6205 else
6207 iter_incr = build_x_modify_expr (EXPR_LOCATION (rhs),
6208 iter, TREE_CODE (rhs),
6209 TREE_OPERAND (rhs, 1),
6210 tf_warning_or_error);
6211 if (error_operand_p (iter_incr))
6212 return true;
6213 incr = TREE_OPERAND (rhs, 1);
6214 incr = cp_convert (TREE_TYPE (diff), incr,
6215 tf_warning_or_error);
6216 if (TREE_CODE (rhs) == MINUS_EXPR)
6218 incr = build1 (NEGATE_EXPR, TREE_TYPE (diff), incr);
6219 incr = fold_if_not_in_template (incr);
6221 if (TREE_CODE (incr) != INTEGER_CST
6222 && (TREE_CODE (incr) != NOP_EXPR
6223 || (TREE_CODE (TREE_OPERAND (incr, 0))
6224 != INTEGER_CST)))
6225 iter_incr = NULL;
6228 else if (TREE_OPERAND (rhs, 1) == iter)
6230 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 0))) != INTEGER_TYPE
6231 || TREE_CODE (rhs) != PLUS_EXPR)
6232 incr = error_mark_node;
6233 else
6235 iter_incr = build_x_binary_op (EXPR_LOCATION (rhs),
6236 PLUS_EXPR,
6237 TREE_OPERAND (rhs, 0),
6238 ERROR_MARK, iter,
6239 ERROR_MARK, NULL,
6240 tf_warning_or_error);
6241 if (error_operand_p (iter_incr))
6242 return true;
6243 iter_incr = build_x_modify_expr (EXPR_LOCATION (rhs),
6244 iter, NOP_EXPR,
6245 iter_incr,
6246 tf_warning_or_error);
6247 if (error_operand_p (iter_incr))
6248 return true;
6249 incr = TREE_OPERAND (rhs, 0);
6250 iter_incr = NULL;
6253 else
6254 incr = error_mark_node;
6256 else
6257 incr = error_mark_node;
6258 break;
6259 default:
6260 incr = error_mark_node;
6261 break;
6264 if (incr == error_mark_node)
6266 error_at (elocus, "invalid increment expression");
6267 return true;
6270 incr = cp_convert (TREE_TYPE (diff), incr, tf_warning_or_error);
6271 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
6272 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6273 && OMP_CLAUSE_DECL (c) == iter)
6274 break;
6276 decl = create_temporary_var (TREE_TYPE (diff));
6277 pushdecl (decl);
6278 add_decl_expr (decl);
6279 last = create_temporary_var (TREE_TYPE (diff));
6280 pushdecl (last);
6281 add_decl_expr (last);
6282 if (c && iter_incr == NULL)
6284 incr_var = create_temporary_var (TREE_TYPE (diff));
6285 pushdecl (incr_var);
6286 add_decl_expr (incr_var);
6288 gcc_assert (stmts_are_full_exprs_p ());
6290 orig_pre_body = *pre_body;
6291 *pre_body = push_stmt_list ();
6292 if (orig_pre_body)
6293 add_stmt (orig_pre_body);
6294 if (init != NULL)
6295 finish_expr_stmt (build_x_modify_expr (elocus,
6296 iter, NOP_EXPR, init,
6297 tf_warning_or_error));
6298 init = build_int_cst (TREE_TYPE (diff), 0);
6299 if (c && iter_incr == NULL)
6301 finish_expr_stmt (build_x_modify_expr (elocus,
6302 incr_var, NOP_EXPR,
6303 incr, tf_warning_or_error));
6304 incr = incr_var;
6305 iter_incr = build_x_modify_expr (elocus,
6306 iter, PLUS_EXPR, incr,
6307 tf_warning_or_error);
6309 finish_expr_stmt (build_x_modify_expr (elocus,
6310 last, NOP_EXPR, init,
6311 tf_warning_or_error));
6312 *pre_body = pop_stmt_list (*pre_body);
6314 cond = cp_build_binary_op (elocus,
6315 TREE_CODE (cond), decl, diff,
6316 tf_warning_or_error);
6317 incr = build_modify_expr (elocus, decl, NULL_TREE, PLUS_EXPR,
6318 elocus, incr, NULL_TREE);
6320 orig_body = *body;
6321 *body = push_stmt_list ();
6322 iter_init = build2 (MINUS_EXPR, TREE_TYPE (diff), decl, last);
6323 iter_init = build_x_modify_expr (elocus,
6324 iter, PLUS_EXPR, iter_init,
6325 tf_warning_or_error);
6326 iter_init = build1 (NOP_EXPR, void_type_node, iter_init);
6327 finish_expr_stmt (iter_init);
6328 finish_expr_stmt (build_x_modify_expr (elocus,
6329 last, NOP_EXPR, decl,
6330 tf_warning_or_error));
6331 add_stmt (orig_body);
6332 *body = pop_stmt_list (*body);
6334 if (c)
6336 OMP_CLAUSE_LASTPRIVATE_STMT (c) = push_stmt_list ();
6337 finish_expr_stmt (iter_incr);
6338 OMP_CLAUSE_LASTPRIVATE_STMT (c)
6339 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (c));
6342 TREE_VEC_ELT (declv, i) = decl;
6343 TREE_VEC_ELT (initv, i) = init;
6344 TREE_VEC_ELT (condv, i) = cond;
6345 TREE_VEC_ELT (incrv, i) = incr;
6346 *lastp = last;
6348 return false;
6351 /* Build and validate an OMP_FOR statement. CLAUSES, BODY, COND, INCR
6352 are directly for their associated operands in the statement. DECL
6353 and INIT are a combo; if DECL is NULL then INIT ought to be a
6354 MODIFY_EXPR, and the DECL should be extracted. PRE_BODY are
6355 optional statements that need to go before the loop into its
6356 sk_omp scope. */
6358 tree
6359 finish_omp_for (location_t locus, enum tree_code code, tree declv, tree initv,
6360 tree condv, tree incrv, tree body, tree pre_body, tree clauses)
6362 tree omp_for = NULL, orig_incr = NULL;
6363 tree decl = NULL, init, cond, incr, orig_decl = NULL_TREE, block = NULL_TREE;
6364 tree last = NULL_TREE;
6365 location_t elocus;
6366 int i;
6368 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv));
6369 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv));
6370 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv));
6371 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
6373 decl = TREE_VEC_ELT (declv, i);
6374 init = TREE_VEC_ELT (initv, i);
6375 cond = TREE_VEC_ELT (condv, i);
6376 incr = TREE_VEC_ELT (incrv, i);
6377 elocus = locus;
6379 if (decl == NULL)
6381 if (init != NULL)
6382 switch (TREE_CODE (init))
6384 case MODIFY_EXPR:
6385 decl = TREE_OPERAND (init, 0);
6386 init = TREE_OPERAND (init, 1);
6387 break;
6388 case MODOP_EXPR:
6389 if (TREE_CODE (TREE_OPERAND (init, 1)) == NOP_EXPR)
6391 decl = TREE_OPERAND (init, 0);
6392 init = TREE_OPERAND (init, 2);
6394 break;
6395 default:
6396 break;
6399 if (decl == NULL)
6401 error_at (locus,
6402 "expected iteration declaration or initialization");
6403 return NULL;
6407 if (init && EXPR_HAS_LOCATION (init))
6408 elocus = EXPR_LOCATION (init);
6410 if (cond == NULL)
6412 error_at (elocus, "missing controlling predicate");
6413 return NULL;
6416 if (incr == NULL)
6418 error_at (elocus, "missing increment expression");
6419 return NULL;
6422 TREE_VEC_ELT (declv, i) = decl;
6423 TREE_VEC_ELT (initv, i) = init;
6426 if (dependent_omp_for_p (declv, initv, condv, incrv))
6428 tree stmt;
6430 stmt = make_node (code);
6432 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
6434 /* This is really just a place-holder. We'll be decomposing this
6435 again and going through the cp_build_modify_expr path below when
6436 we instantiate the thing. */
6437 TREE_VEC_ELT (initv, i)
6438 = build2 (MODIFY_EXPR, void_type_node, TREE_VEC_ELT (declv, i),
6439 TREE_VEC_ELT (initv, i));
6442 TREE_TYPE (stmt) = void_type_node;
6443 OMP_FOR_INIT (stmt) = initv;
6444 OMP_FOR_COND (stmt) = condv;
6445 OMP_FOR_INCR (stmt) = incrv;
6446 OMP_FOR_BODY (stmt) = body;
6447 OMP_FOR_PRE_BODY (stmt) = pre_body;
6448 OMP_FOR_CLAUSES (stmt) = clauses;
6450 SET_EXPR_LOCATION (stmt, locus);
6451 return add_stmt (stmt);
6454 if (processing_template_decl)
6455 orig_incr = make_tree_vec (TREE_VEC_LENGTH (incrv));
6457 for (i = 0; i < TREE_VEC_LENGTH (declv); )
6459 decl = TREE_VEC_ELT (declv, i);
6460 init = TREE_VEC_ELT (initv, i);
6461 cond = TREE_VEC_ELT (condv, i);
6462 incr = TREE_VEC_ELT (incrv, i);
6463 if (orig_incr)
6464 TREE_VEC_ELT (orig_incr, i) = incr;
6465 elocus = locus;
6467 if (init && EXPR_HAS_LOCATION (init))
6468 elocus = EXPR_LOCATION (init);
6470 if (!DECL_P (decl))
6472 error_at (elocus, "expected iteration declaration or initialization");
6473 return NULL;
6476 if (incr && TREE_CODE (incr) == MODOP_EXPR)
6478 if (orig_incr)
6479 TREE_VEC_ELT (orig_incr, i) = incr;
6480 incr = cp_build_modify_expr (TREE_OPERAND (incr, 0),
6481 TREE_CODE (TREE_OPERAND (incr, 1)),
6482 TREE_OPERAND (incr, 2),
6483 tf_warning_or_error);
6486 if (CLASS_TYPE_P (TREE_TYPE (decl)))
6488 if (code == OMP_SIMD)
6490 error_at (elocus, "%<#pragma omp simd%> used with class "
6491 "iteration variable %qE", decl);
6492 return NULL;
6494 if (code == CILK_FOR && i == 0)
6495 orig_decl = decl;
6496 if (handle_omp_for_class_iterator (i, locus, declv, initv, condv,
6497 incrv, &body, &pre_body,
6498 clauses, &last))
6499 return NULL;
6500 continue;
6503 if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))
6504 && !TYPE_PTR_P (TREE_TYPE (decl)))
6506 error_at (elocus, "invalid type for iteration variable %qE", decl);
6507 return NULL;
6510 if (!processing_template_decl)
6512 init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
6513 init = cp_build_modify_expr (decl, NOP_EXPR, init, tf_warning_or_error);
6515 else
6516 init = build2 (MODIFY_EXPR, void_type_node, decl, init);
6517 if (cond
6518 && TREE_SIDE_EFFECTS (cond)
6519 && COMPARISON_CLASS_P (cond)
6520 && !processing_template_decl)
6522 tree t = TREE_OPERAND (cond, 0);
6523 if (TREE_SIDE_EFFECTS (t)
6524 && t != decl
6525 && (TREE_CODE (t) != NOP_EXPR
6526 || TREE_OPERAND (t, 0) != decl))
6527 TREE_OPERAND (cond, 0)
6528 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6530 t = TREE_OPERAND (cond, 1);
6531 if (TREE_SIDE_EFFECTS (t)
6532 && t != decl
6533 && (TREE_CODE (t) != NOP_EXPR
6534 || TREE_OPERAND (t, 0) != decl))
6535 TREE_OPERAND (cond, 1)
6536 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6538 if (decl == error_mark_node || init == error_mark_node)
6539 return NULL;
6541 TREE_VEC_ELT (declv, i) = decl;
6542 TREE_VEC_ELT (initv, i) = init;
6543 TREE_VEC_ELT (condv, i) = cond;
6544 TREE_VEC_ELT (incrv, i) = incr;
6545 i++;
6548 if (IS_EMPTY_STMT (pre_body))
6549 pre_body = NULL;
6551 if (code == CILK_FOR && !processing_template_decl)
6552 block = push_stmt_list ();
6554 omp_for = c_finish_omp_for (locus, code, declv, initv, condv, incrv,
6555 body, pre_body);
6557 if (omp_for == NULL)
6559 if (block)
6560 pop_stmt_list (block);
6561 return NULL;
6564 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++)
6566 decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i), 0);
6567 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i);
6569 if (TREE_CODE (incr) != MODIFY_EXPR)
6570 continue;
6572 if (TREE_SIDE_EFFECTS (TREE_OPERAND (incr, 1))
6573 && BINARY_CLASS_P (TREE_OPERAND (incr, 1))
6574 && !processing_template_decl)
6576 tree t = TREE_OPERAND (TREE_OPERAND (incr, 1), 0);
6577 if (TREE_SIDE_EFFECTS (t)
6578 && t != decl
6579 && (TREE_CODE (t) != NOP_EXPR
6580 || TREE_OPERAND (t, 0) != decl))
6581 TREE_OPERAND (TREE_OPERAND (incr, 1), 0)
6582 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6584 t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
6585 if (TREE_SIDE_EFFECTS (t)
6586 && t != decl
6587 && (TREE_CODE (t) != NOP_EXPR
6588 || TREE_OPERAND (t, 0) != decl))
6589 TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
6590 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
6593 if (orig_incr)
6594 TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i) = TREE_VEC_ELT (orig_incr, i);
6596 OMP_FOR_CLAUSES (omp_for) = clauses;
6598 if (block)
6600 tree omp_par = make_node (OMP_PARALLEL);
6601 TREE_TYPE (omp_par) = void_type_node;
6602 OMP_PARALLEL_CLAUSES (omp_par) = NULL_TREE;
6603 tree bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6604 TREE_SIDE_EFFECTS (bind) = 1;
6605 BIND_EXPR_BODY (bind) = pop_stmt_list (block);
6606 OMP_PARALLEL_BODY (omp_par) = bind;
6607 if (OMP_FOR_PRE_BODY (omp_for))
6609 add_stmt (OMP_FOR_PRE_BODY (omp_for));
6610 OMP_FOR_PRE_BODY (omp_for) = NULL_TREE;
6612 init = TREE_VEC_ELT (OMP_FOR_INIT (omp_for), 0);
6613 decl = TREE_OPERAND (init, 0);
6614 cond = TREE_VEC_ELT (OMP_FOR_COND (omp_for), 0);
6615 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), 0);
6616 tree t = TREE_OPERAND (cond, 1), c, clauses, *pc;
6617 clauses = OMP_FOR_CLAUSES (omp_for);
6618 OMP_FOR_CLAUSES (omp_for) = NULL_TREE;
6619 for (pc = &clauses; *pc; )
6620 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_SCHEDULE)
6622 gcc_assert (OMP_FOR_CLAUSES (omp_for) == NULL_TREE);
6623 OMP_FOR_CLAUSES (omp_for) = *pc;
6624 *pc = OMP_CLAUSE_CHAIN (*pc);
6625 OMP_CLAUSE_CHAIN (OMP_FOR_CLAUSES (omp_for)) = NULL_TREE;
6627 else
6629 gcc_assert (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE);
6630 pc = &OMP_CLAUSE_CHAIN (*pc);
6632 if (TREE_CODE (t) != INTEGER_CST)
6634 TREE_OPERAND (cond, 1) = get_temp_regvar (TREE_TYPE (t), t);
6635 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6636 OMP_CLAUSE_DECL (c) = TREE_OPERAND (cond, 1);
6637 OMP_CLAUSE_CHAIN (c) = clauses;
6638 clauses = c;
6640 if (TREE_CODE (incr) == MODIFY_EXPR)
6642 t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
6643 if (TREE_CODE (t) != INTEGER_CST)
6645 TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
6646 = get_temp_regvar (TREE_TYPE (t), t);
6647 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6648 OMP_CLAUSE_DECL (c) = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
6649 OMP_CLAUSE_CHAIN (c) = clauses;
6650 clauses = c;
6653 t = TREE_OPERAND (init, 1);
6654 if (TREE_CODE (t) != INTEGER_CST)
6656 TREE_OPERAND (init, 1) = get_temp_regvar (TREE_TYPE (t), t);
6657 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6658 OMP_CLAUSE_DECL (c) = TREE_OPERAND (init, 1);
6659 OMP_CLAUSE_CHAIN (c) = clauses;
6660 clauses = c;
6662 if (orig_decl && orig_decl != decl)
6664 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6665 OMP_CLAUSE_DECL (c) = orig_decl;
6666 OMP_CLAUSE_CHAIN (c) = clauses;
6667 clauses = c;
6669 if (last)
6671 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6672 OMP_CLAUSE_DECL (c) = last;
6673 OMP_CLAUSE_CHAIN (c) = clauses;
6674 clauses = c;
6676 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
6677 OMP_CLAUSE_DECL (c) = decl;
6678 OMP_CLAUSE_CHAIN (c) = clauses;
6679 clauses = c;
6680 c = build_omp_clause (input_location, OMP_CLAUSE__CILK_FOR_COUNT_);
6681 OMP_CLAUSE_OPERAND (c, 0)
6682 = cilk_for_number_of_iterations (omp_for);
6683 OMP_CLAUSE_CHAIN (c) = clauses;
6684 OMP_PARALLEL_CLAUSES (omp_par) = finish_omp_clauses (c);
6685 add_stmt (omp_par);
6686 return omp_par;
6688 else if (code == CILK_FOR && processing_template_decl)
6690 tree c, clauses = OMP_FOR_CLAUSES (omp_for);
6691 if (orig_decl && orig_decl != decl)
6693 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6694 OMP_CLAUSE_DECL (c) = orig_decl;
6695 OMP_CLAUSE_CHAIN (c) = clauses;
6696 clauses = c;
6698 if (last)
6700 c = build_omp_clause (input_location, OMP_CLAUSE_FIRSTPRIVATE);
6701 OMP_CLAUSE_DECL (c) = last;
6702 OMP_CLAUSE_CHAIN (c) = clauses;
6703 clauses = c;
6705 OMP_FOR_CLAUSES (omp_for) = clauses;
6707 return omp_for;
6710 void
6711 finish_omp_atomic (enum tree_code code, enum tree_code opcode, tree lhs,
6712 tree rhs, tree v, tree lhs1, tree rhs1, bool seq_cst)
6714 tree orig_lhs;
6715 tree orig_rhs;
6716 tree orig_v;
6717 tree orig_lhs1;
6718 tree orig_rhs1;
6719 bool dependent_p;
6720 tree stmt;
6722 orig_lhs = lhs;
6723 orig_rhs = rhs;
6724 orig_v = v;
6725 orig_lhs1 = lhs1;
6726 orig_rhs1 = rhs1;
6727 dependent_p = false;
6728 stmt = NULL_TREE;
6730 /* Even in a template, we can detect invalid uses of the atomic
6731 pragma if neither LHS nor RHS is type-dependent. */
6732 if (processing_template_decl)
6734 dependent_p = (type_dependent_expression_p (lhs)
6735 || (rhs && type_dependent_expression_p (rhs))
6736 || (v && type_dependent_expression_p (v))
6737 || (lhs1 && type_dependent_expression_p (lhs1))
6738 || (rhs1 && type_dependent_expression_p (rhs1)));
6739 if (!dependent_p)
6741 lhs = build_non_dependent_expr (lhs);
6742 if (rhs)
6743 rhs = build_non_dependent_expr (rhs);
6744 if (v)
6745 v = build_non_dependent_expr (v);
6746 if (lhs1)
6747 lhs1 = build_non_dependent_expr (lhs1);
6748 if (rhs1)
6749 rhs1 = build_non_dependent_expr (rhs1);
6752 if (!dependent_p)
6754 bool swapped = false;
6755 if (rhs1 && cp_tree_equal (lhs, rhs))
6757 tree tem = rhs;
6758 rhs = rhs1;
6759 rhs1 = tem;
6760 swapped = !commutative_tree_code (opcode);
6762 if (rhs1 && !cp_tree_equal (lhs, rhs1))
6764 if (code == OMP_ATOMIC)
6765 error ("%<#pragma omp atomic update%> uses two different "
6766 "expressions for memory");
6767 else
6768 error ("%<#pragma omp atomic capture%> uses two different "
6769 "expressions for memory");
6770 return;
6772 if (lhs1 && !cp_tree_equal (lhs, lhs1))
6774 if (code == OMP_ATOMIC)
6775 error ("%<#pragma omp atomic update%> uses two different "
6776 "expressions for memory");
6777 else
6778 error ("%<#pragma omp atomic capture%> uses two different "
6779 "expressions for memory");
6780 return;
6782 stmt = c_finish_omp_atomic (input_location, code, opcode, lhs, rhs,
6783 v, lhs1, rhs1, swapped, seq_cst);
6784 if (stmt == error_mark_node)
6785 return;
6787 if (processing_template_decl)
6789 if (code == OMP_ATOMIC_READ)
6791 stmt = build_min_nt_loc (EXPR_LOCATION (orig_lhs),
6792 OMP_ATOMIC_READ, orig_lhs);
6793 OMP_ATOMIC_SEQ_CST (stmt) = seq_cst;
6794 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
6796 else
6798 if (opcode == NOP_EXPR)
6799 stmt = build2 (MODIFY_EXPR, void_type_node, orig_lhs, orig_rhs);
6800 else
6801 stmt = build2 (opcode, void_type_node, orig_lhs, orig_rhs);
6802 if (orig_rhs1)
6803 stmt = build_min_nt_loc (EXPR_LOCATION (orig_rhs1),
6804 COMPOUND_EXPR, orig_rhs1, stmt);
6805 if (code != OMP_ATOMIC)
6807 stmt = build_min_nt_loc (EXPR_LOCATION (orig_lhs1),
6808 code, orig_lhs1, stmt);
6809 OMP_ATOMIC_SEQ_CST (stmt) = seq_cst;
6810 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
6813 stmt = build2 (OMP_ATOMIC, void_type_node, integer_zero_node, stmt);
6814 OMP_ATOMIC_SEQ_CST (stmt) = seq_cst;
6816 finish_expr_stmt (stmt);
6819 void
6820 finish_omp_barrier (void)
6822 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_BARRIER);
6823 vec<tree, va_gc> *vec = make_tree_vector ();
6824 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
6825 release_tree_vector (vec);
6826 finish_expr_stmt (stmt);
6829 void
6830 finish_omp_flush (void)
6832 tree fn = builtin_decl_explicit (BUILT_IN_SYNC_SYNCHRONIZE);
6833 vec<tree, va_gc> *vec = make_tree_vector ();
6834 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
6835 release_tree_vector (vec);
6836 finish_expr_stmt (stmt);
6839 void
6840 finish_omp_taskwait (void)
6842 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKWAIT);
6843 vec<tree, va_gc> *vec = make_tree_vector ();
6844 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
6845 release_tree_vector (vec);
6846 finish_expr_stmt (stmt);
6849 void
6850 finish_omp_taskyield (void)
6852 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKYIELD);
6853 vec<tree, va_gc> *vec = make_tree_vector ();
6854 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
6855 release_tree_vector (vec);
6856 finish_expr_stmt (stmt);
6859 void
6860 finish_omp_cancel (tree clauses)
6862 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_CANCEL);
6863 int mask = 0;
6864 if (find_omp_clause (clauses, OMP_CLAUSE_PARALLEL))
6865 mask = 1;
6866 else if (find_omp_clause (clauses, OMP_CLAUSE_FOR))
6867 mask = 2;
6868 else if (find_omp_clause (clauses, OMP_CLAUSE_SECTIONS))
6869 mask = 4;
6870 else if (find_omp_clause (clauses, OMP_CLAUSE_TASKGROUP))
6871 mask = 8;
6872 else
6874 error ("%<#pragma omp cancel must specify one of "
6875 "%<parallel%>, %<for%>, %<sections%> or %<taskgroup%> clauses");
6876 return;
6878 vec<tree, va_gc> *vec = make_tree_vector ();
6879 tree ifc = find_omp_clause (clauses, OMP_CLAUSE_IF);
6880 if (ifc != NULL_TREE)
6882 tree type = TREE_TYPE (OMP_CLAUSE_IF_EXPR (ifc));
6883 ifc = fold_build2_loc (OMP_CLAUSE_LOCATION (ifc), NE_EXPR,
6884 boolean_type_node, OMP_CLAUSE_IF_EXPR (ifc),
6885 build_zero_cst (type));
6887 else
6888 ifc = boolean_true_node;
6889 vec->quick_push (build_int_cst (integer_type_node, mask));
6890 vec->quick_push (ifc);
6891 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
6892 release_tree_vector (vec);
6893 finish_expr_stmt (stmt);
6896 void
6897 finish_omp_cancellation_point (tree clauses)
6899 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_CANCELLATION_POINT);
6900 int mask = 0;
6901 if (find_omp_clause (clauses, OMP_CLAUSE_PARALLEL))
6902 mask = 1;
6903 else if (find_omp_clause (clauses, OMP_CLAUSE_FOR))
6904 mask = 2;
6905 else if (find_omp_clause (clauses, OMP_CLAUSE_SECTIONS))
6906 mask = 4;
6907 else if (find_omp_clause (clauses, OMP_CLAUSE_TASKGROUP))
6908 mask = 8;
6909 else
6911 error ("%<#pragma omp cancellation point must specify one of "
6912 "%<parallel%>, %<for%>, %<sections%> or %<taskgroup%> clauses");
6913 return;
6915 vec<tree, va_gc> *vec
6916 = make_tree_vector_single (build_int_cst (integer_type_node, mask));
6917 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
6918 release_tree_vector (vec);
6919 finish_expr_stmt (stmt);
6922 /* Begin a __transaction_atomic or __transaction_relaxed statement.
6923 If PCOMPOUND is non-null, this is for a function-transaction-block, and we
6924 should create an extra compound stmt. */
6926 tree
6927 begin_transaction_stmt (location_t loc, tree *pcompound, int flags)
6929 tree r;
6931 if (pcompound)
6932 *pcompound = begin_compound_stmt (0);
6934 r = build_stmt (loc, TRANSACTION_EXPR, NULL_TREE);
6936 /* Only add the statement to the function if support enabled. */
6937 if (flag_tm)
6938 add_stmt (r);
6939 else
6940 error_at (loc, ((flags & TM_STMT_ATTR_RELAXED) != 0
6941 ? G_("%<__transaction_relaxed%> without "
6942 "transactional memory support enabled")
6943 : G_("%<__transaction_atomic%> without "
6944 "transactional memory support enabled")));
6946 TRANSACTION_EXPR_BODY (r) = push_stmt_list ();
6947 TREE_SIDE_EFFECTS (r) = 1;
6948 return r;
6951 /* End a __transaction_atomic or __transaction_relaxed statement.
6952 If COMPOUND_STMT is non-null, this is for a function-transaction-block,
6953 and we should end the compound. If NOEX is non-NULL, we wrap the body in
6954 a MUST_NOT_THROW_EXPR with NOEX as condition. */
6956 void
6957 finish_transaction_stmt (tree stmt, tree compound_stmt, int flags, tree noex)
6959 TRANSACTION_EXPR_BODY (stmt) = pop_stmt_list (TRANSACTION_EXPR_BODY (stmt));
6960 TRANSACTION_EXPR_OUTER (stmt) = (flags & TM_STMT_ATTR_OUTER) != 0;
6961 TRANSACTION_EXPR_RELAXED (stmt) = (flags & TM_STMT_ATTR_RELAXED) != 0;
6962 TRANSACTION_EXPR_IS_STMT (stmt) = 1;
6964 /* noexcept specifications are not allowed for function transactions. */
6965 gcc_assert (!(noex && compound_stmt));
6966 if (noex)
6968 tree body = build_must_not_throw_expr (TRANSACTION_EXPR_BODY (stmt),
6969 noex);
6970 /* This may not be true when the STATEMENT_LIST is empty. */
6971 if (EXPR_P (body))
6972 SET_EXPR_LOCATION (body, EXPR_LOCATION (TRANSACTION_EXPR_BODY (stmt)));
6973 TREE_SIDE_EFFECTS (body) = 1;
6974 TRANSACTION_EXPR_BODY (stmt) = body;
6977 if (compound_stmt)
6978 finish_compound_stmt (compound_stmt);
6981 /* Build a __transaction_atomic or __transaction_relaxed expression. If
6982 NOEX is non-NULL, we wrap the body in a MUST_NOT_THROW_EXPR with NOEX as
6983 condition. */
6985 tree
6986 build_transaction_expr (location_t loc, tree expr, int flags, tree noex)
6988 tree ret;
6989 if (noex)
6991 expr = build_must_not_throw_expr (expr, noex);
6992 if (EXPR_P (expr))
6993 SET_EXPR_LOCATION (expr, loc);
6994 TREE_SIDE_EFFECTS (expr) = 1;
6996 ret = build1 (TRANSACTION_EXPR, TREE_TYPE (expr), expr);
6997 if (flags & TM_STMT_ATTR_RELAXED)
6998 TRANSACTION_EXPR_RELAXED (ret) = 1;
6999 TREE_SIDE_EFFECTS (ret) = 1;
7000 SET_EXPR_LOCATION (ret, loc);
7001 return ret;
7004 void
7005 init_cp_semantics (void)
7009 /* Build a STATIC_ASSERT for a static assertion with the condition
7010 CONDITION and the message text MESSAGE. LOCATION is the location
7011 of the static assertion in the source code. When MEMBER_P, this
7012 static assertion is a member of a class. */
7013 void
7014 finish_static_assert (tree condition, tree message, location_t location,
7015 bool member_p)
7017 if (message == NULL_TREE
7018 || message == error_mark_node
7019 || condition == NULL_TREE
7020 || condition == error_mark_node)
7021 return;
7023 if (check_for_bare_parameter_packs (condition))
7024 condition = error_mark_node;
7026 if (type_dependent_expression_p (condition)
7027 || value_dependent_expression_p (condition))
7029 /* We're in a template; build a STATIC_ASSERT and put it in
7030 the right place. */
7031 tree assertion;
7033 assertion = make_node (STATIC_ASSERT);
7034 STATIC_ASSERT_CONDITION (assertion) = condition;
7035 STATIC_ASSERT_MESSAGE (assertion) = message;
7036 STATIC_ASSERT_SOURCE_LOCATION (assertion) = location;
7038 if (member_p)
7039 maybe_add_class_template_decl_list (current_class_type,
7040 assertion,
7041 /*friend_p=*/0);
7042 else
7043 add_stmt (assertion);
7045 return;
7048 /* Fold the expression and convert it to a boolean value. */
7049 condition = instantiate_non_dependent_expr (condition);
7050 condition = cp_convert (boolean_type_node, condition, tf_warning_or_error);
7051 condition = maybe_constant_value (condition);
7053 if (TREE_CODE (condition) == INTEGER_CST && !integer_zerop (condition))
7054 /* Do nothing; the condition is satisfied. */
7056 else
7058 location_t saved_loc = input_location;
7060 input_location = location;
7061 if (TREE_CODE (condition) == INTEGER_CST
7062 && integer_zerop (condition))
7063 /* Report the error. */
7064 error ("static assertion failed: %s", TREE_STRING_POINTER (message));
7065 else if (condition && condition != error_mark_node)
7067 error ("non-constant condition for static assertion");
7068 if (require_potential_rvalue_constant_expression (condition))
7069 cxx_constant_value (condition);
7071 input_location = saved_loc;
7075 /* Implements the C++0x decltype keyword. Returns the type of EXPR,
7076 suitable for use as a type-specifier.
7078 ID_EXPRESSION_OR_MEMBER_ACCESS_P is true when EXPR was parsed as an
7079 id-expression or a class member access, FALSE when it was parsed as
7080 a full expression. */
7082 tree
7083 finish_decltype_type (tree expr, bool id_expression_or_member_access_p,
7084 tsubst_flags_t complain)
7086 tree type = NULL_TREE;
7088 if (!expr || error_operand_p (expr))
7089 return error_mark_node;
7091 if (TYPE_P (expr)
7092 || TREE_CODE (expr) == TYPE_DECL
7093 || (TREE_CODE (expr) == BIT_NOT_EXPR
7094 && TYPE_P (TREE_OPERAND (expr, 0))))
7096 if (complain & tf_error)
7097 error ("argument to decltype must be an expression");
7098 return error_mark_node;
7101 /* Depending on the resolution of DR 1172, we may later need to distinguish
7102 instantiation-dependent but not type-dependent expressions so that, say,
7103 A<decltype(sizeof(T))>::U doesn't require 'typename'. */
7104 if (instantiation_dependent_expression_p (expr))
7106 type = cxx_make_type (DECLTYPE_TYPE);
7107 DECLTYPE_TYPE_EXPR (type) = expr;
7108 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type)
7109 = id_expression_or_member_access_p;
7110 SET_TYPE_STRUCTURAL_EQUALITY (type);
7112 return type;
7115 /* The type denoted by decltype(e) is defined as follows: */
7117 expr = resolve_nondeduced_context (expr);
7119 if (invalid_nonstatic_memfn_p (expr, complain))
7120 return error_mark_node;
7122 if (type_unknown_p (expr))
7124 if (complain & tf_error)
7125 error ("decltype cannot resolve address of overloaded function");
7126 return error_mark_node;
7129 /* To get the size of a static data member declared as an array of
7130 unknown bound, we need to instantiate it. */
7131 if (VAR_P (expr)
7132 && VAR_HAD_UNKNOWN_BOUND (expr)
7133 && DECL_TEMPLATE_INSTANTIATION (expr))
7134 instantiate_decl (expr, /*defer_ok*/true, /*expl_inst_mem*/false);
7136 if (id_expression_or_member_access_p)
7138 /* If e is an id-expression or a class member access (5.2.5
7139 [expr.ref]), decltype(e) is defined as the type of the entity
7140 named by e. If there is no such entity, or e names a set of
7141 overloaded functions, the program is ill-formed. */
7142 if (identifier_p (expr))
7143 expr = lookup_name (expr);
7145 if (INDIRECT_REF_P (expr))
7146 /* This can happen when the expression is, e.g., "a.b". Just
7147 look at the underlying operand. */
7148 expr = TREE_OPERAND (expr, 0);
7150 if (TREE_CODE (expr) == OFFSET_REF
7151 || TREE_CODE (expr) == MEMBER_REF
7152 || TREE_CODE (expr) == SCOPE_REF)
7153 /* We're only interested in the field itself. If it is a
7154 BASELINK, we will need to see through it in the next
7155 step. */
7156 expr = TREE_OPERAND (expr, 1);
7158 if (BASELINK_P (expr))
7159 /* See through BASELINK nodes to the underlying function. */
7160 expr = BASELINK_FUNCTIONS (expr);
7162 switch (TREE_CODE (expr))
7164 case FIELD_DECL:
7165 if (DECL_BIT_FIELD_TYPE (expr))
7167 type = DECL_BIT_FIELD_TYPE (expr);
7168 break;
7170 /* Fall through for fields that aren't bitfields. */
7172 case FUNCTION_DECL:
7173 case VAR_DECL:
7174 case CONST_DECL:
7175 case PARM_DECL:
7176 case RESULT_DECL:
7177 case TEMPLATE_PARM_INDEX:
7178 expr = mark_type_use (expr);
7179 type = TREE_TYPE (expr);
7180 break;
7182 case ERROR_MARK:
7183 type = error_mark_node;
7184 break;
7186 case COMPONENT_REF:
7187 case COMPOUND_EXPR:
7188 mark_type_use (expr);
7189 type = is_bitfield_expr_with_lowered_type (expr);
7190 if (!type)
7191 type = TREE_TYPE (TREE_OPERAND (expr, 1));
7192 break;
7194 case BIT_FIELD_REF:
7195 gcc_unreachable ();
7197 case INTEGER_CST:
7198 case PTRMEM_CST:
7199 /* We can get here when the id-expression refers to an
7200 enumerator or non-type template parameter. */
7201 type = TREE_TYPE (expr);
7202 break;
7204 default:
7205 /* Handle instantiated template non-type arguments. */
7206 type = TREE_TYPE (expr);
7207 break;
7210 else
7212 /* Within a lambda-expression:
7214 Every occurrence of decltype((x)) where x is a possibly
7215 parenthesized id-expression that names an entity of
7216 automatic storage duration is treated as if x were
7217 transformed into an access to a corresponding data member
7218 of the closure type that would have been declared if x
7219 were a use of the denoted entity. */
7220 if (outer_automatic_var_p (expr)
7221 && current_function_decl
7222 && LAMBDA_FUNCTION_P (current_function_decl))
7223 type = capture_decltype (expr);
7224 else if (error_operand_p (expr))
7225 type = error_mark_node;
7226 else if (expr == current_class_ptr)
7227 /* If the expression is just "this", we want the
7228 cv-unqualified pointer for the "this" type. */
7229 type = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
7230 else
7232 /* Otherwise, where T is the type of e, if e is an lvalue,
7233 decltype(e) is defined as T&; if an xvalue, T&&; otherwise, T. */
7234 cp_lvalue_kind clk = lvalue_kind (expr);
7235 type = unlowered_expr_type (expr);
7236 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
7238 /* For vector types, pick a non-opaque variant. */
7239 if (TREE_CODE (type) == VECTOR_TYPE)
7240 type = strip_typedefs (type);
7242 if (clk != clk_none && !(clk & clk_class))
7243 type = cp_build_reference_type (type, (clk & clk_rvalueref));
7247 return type;
7250 /* Called from trait_expr_value to evaluate either __has_nothrow_assign or
7251 __has_nothrow_copy, depending on assign_p. */
7253 static bool
7254 classtype_has_nothrow_assign_or_copy_p (tree type, bool assign_p)
7256 tree fns;
7258 if (assign_p)
7260 int ix;
7261 ix = lookup_fnfields_1 (type, ansi_assopname (NOP_EXPR));
7262 if (ix < 0)
7263 return false;
7264 fns = (*CLASSTYPE_METHOD_VEC (type))[ix];
7266 else if (TYPE_HAS_COPY_CTOR (type))
7268 /* If construction of the copy constructor was postponed, create
7269 it now. */
7270 if (CLASSTYPE_LAZY_COPY_CTOR (type))
7271 lazily_declare_fn (sfk_copy_constructor, type);
7272 if (CLASSTYPE_LAZY_MOVE_CTOR (type))
7273 lazily_declare_fn (sfk_move_constructor, type);
7274 fns = CLASSTYPE_CONSTRUCTORS (type);
7276 else
7277 return false;
7279 for (; fns; fns = OVL_NEXT (fns))
7281 tree fn = OVL_CURRENT (fns);
7283 if (assign_p)
7285 if (copy_fn_p (fn) == 0)
7286 continue;
7288 else if (copy_fn_p (fn) <= 0)
7289 continue;
7291 maybe_instantiate_noexcept (fn);
7292 if (!TYPE_NOTHROW_P (TREE_TYPE (fn)))
7293 return false;
7296 return true;
7299 /* Actually evaluates the trait. */
7301 static bool
7302 trait_expr_value (cp_trait_kind kind, tree type1, tree type2)
7304 enum tree_code type_code1;
7305 tree t;
7307 type_code1 = TREE_CODE (type1);
7309 switch (kind)
7311 case CPTK_HAS_NOTHROW_ASSIGN:
7312 type1 = strip_array_types (type1);
7313 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
7314 && (trait_expr_value (CPTK_HAS_TRIVIAL_ASSIGN, type1, type2)
7315 || (CLASS_TYPE_P (type1)
7316 && classtype_has_nothrow_assign_or_copy_p (type1,
7317 true))));
7319 case CPTK_HAS_TRIVIAL_ASSIGN:
7320 /* ??? The standard seems to be missing the "or array of such a class
7321 type" wording for this trait. */
7322 type1 = strip_array_types (type1);
7323 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
7324 && (trivial_type_p (type1)
7325 || (CLASS_TYPE_P (type1)
7326 && TYPE_HAS_TRIVIAL_COPY_ASSIGN (type1))));
7328 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
7329 type1 = strip_array_types (type1);
7330 return (trait_expr_value (CPTK_HAS_TRIVIAL_CONSTRUCTOR, type1, type2)
7331 || (CLASS_TYPE_P (type1)
7332 && (t = locate_ctor (type1))
7333 && (maybe_instantiate_noexcept (t),
7334 TYPE_NOTHROW_P (TREE_TYPE (t)))));
7336 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
7337 type1 = strip_array_types (type1);
7338 return (trivial_type_p (type1)
7339 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_DFLT (type1)));
7341 case CPTK_HAS_NOTHROW_COPY:
7342 type1 = strip_array_types (type1);
7343 return (trait_expr_value (CPTK_HAS_TRIVIAL_COPY, type1, type2)
7344 || (CLASS_TYPE_P (type1)
7345 && classtype_has_nothrow_assign_or_copy_p (type1, false)));
7347 case CPTK_HAS_TRIVIAL_COPY:
7348 /* ??? The standard seems to be missing the "or array of such a class
7349 type" wording for this trait. */
7350 type1 = strip_array_types (type1);
7351 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
7352 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_COPY_CTOR (type1)));
7354 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
7355 type1 = strip_array_types (type1);
7356 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
7357 || (CLASS_TYPE_P (type1)
7358 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type1)));
7360 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
7361 return type_has_virtual_destructor (type1);
7363 case CPTK_IS_ABSTRACT:
7364 return (ABSTRACT_CLASS_TYPE_P (type1));
7366 case CPTK_IS_BASE_OF:
7367 return (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
7368 && (same_type_ignoring_top_level_qualifiers_p (type1, type2)
7369 || DERIVED_FROM_P (type1, type2)));
7371 case CPTK_IS_CLASS:
7372 return (NON_UNION_CLASS_TYPE_P (type1));
7374 case CPTK_IS_EMPTY:
7375 return (NON_UNION_CLASS_TYPE_P (type1) && CLASSTYPE_EMPTY_P (type1));
7377 case CPTK_IS_ENUM:
7378 return (type_code1 == ENUMERAL_TYPE);
7380 case CPTK_IS_FINAL:
7381 return (CLASS_TYPE_P (type1) && CLASSTYPE_FINAL (type1));
7383 case CPTK_IS_LITERAL_TYPE:
7384 return (literal_type_p (type1));
7386 case CPTK_IS_POD:
7387 return (pod_type_p (type1));
7389 case CPTK_IS_POLYMORPHIC:
7390 return (CLASS_TYPE_P (type1) && TYPE_POLYMORPHIC_P (type1));
7392 case CPTK_IS_STD_LAYOUT:
7393 return (std_layout_type_p (type1));
7395 case CPTK_IS_TRIVIAL:
7396 return (trivial_type_p (type1));
7398 case CPTK_IS_TRIVIALLY_ASSIGNABLE:
7399 return is_trivially_xible (MODIFY_EXPR, type1, type2);
7401 case CPTK_IS_TRIVIALLY_CONSTRUCTIBLE:
7402 return is_trivially_xible (INIT_EXPR, type1, type2);
7404 case CPTK_IS_TRIVIALLY_COPYABLE:
7405 return (trivially_copyable_p (type1));
7407 case CPTK_IS_UNION:
7408 return (type_code1 == UNION_TYPE);
7410 default:
7411 gcc_unreachable ();
7412 return false;
7416 /* If TYPE is an array of unknown bound, or (possibly cv-qualified)
7417 void, or a complete type, returns true, otherwise false. */
7419 static bool
7420 check_trait_type (tree type)
7422 if (type == NULL_TREE)
7423 return true;
7425 if (TREE_CODE (type) == TREE_LIST)
7426 return (check_trait_type (TREE_VALUE (type))
7427 && check_trait_type (TREE_CHAIN (type)));
7429 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
7430 && COMPLETE_TYPE_P (TREE_TYPE (type)))
7431 return true;
7433 if (VOID_TYPE_P (type))
7434 return true;
7436 return !!complete_type_or_else (strip_array_types (type), NULL_TREE);
7439 /* Process a trait expression. */
7441 tree
7442 finish_trait_expr (cp_trait_kind kind, tree type1, tree type2)
7444 if (type1 == error_mark_node
7445 || type2 == error_mark_node)
7446 return error_mark_node;
7448 if (processing_template_decl)
7450 tree trait_expr = make_node (TRAIT_EXPR);
7451 TREE_TYPE (trait_expr) = boolean_type_node;
7452 TRAIT_EXPR_TYPE1 (trait_expr) = type1;
7453 TRAIT_EXPR_TYPE2 (trait_expr) = type2;
7454 TRAIT_EXPR_KIND (trait_expr) = kind;
7455 return trait_expr;
7458 switch (kind)
7460 case CPTK_HAS_NOTHROW_ASSIGN:
7461 case CPTK_HAS_TRIVIAL_ASSIGN:
7462 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
7463 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
7464 case CPTK_HAS_NOTHROW_COPY:
7465 case CPTK_HAS_TRIVIAL_COPY:
7466 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
7467 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
7468 case CPTK_IS_ABSTRACT:
7469 case CPTK_IS_EMPTY:
7470 case CPTK_IS_FINAL:
7471 case CPTK_IS_LITERAL_TYPE:
7472 case CPTK_IS_POD:
7473 case CPTK_IS_POLYMORPHIC:
7474 case CPTK_IS_STD_LAYOUT:
7475 case CPTK_IS_TRIVIAL:
7476 case CPTK_IS_TRIVIALLY_COPYABLE:
7477 if (!check_trait_type (type1))
7478 return error_mark_node;
7479 break;
7481 case CPTK_IS_TRIVIALLY_ASSIGNABLE:
7482 case CPTK_IS_TRIVIALLY_CONSTRUCTIBLE:
7483 if (!check_trait_type (type1)
7484 || !check_trait_type (type2))
7485 return error_mark_node;
7486 break;
7488 case CPTK_IS_BASE_OF:
7489 if (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
7490 && !same_type_ignoring_top_level_qualifiers_p (type1, type2)
7491 && !complete_type_or_else (type2, NULL_TREE))
7492 /* We already issued an error. */
7493 return error_mark_node;
7494 break;
7496 case CPTK_IS_CLASS:
7497 case CPTK_IS_ENUM:
7498 case CPTK_IS_UNION:
7499 break;
7501 default:
7502 gcc_unreachable ();
7505 return (trait_expr_value (kind, type1, type2)
7506 ? boolean_true_node : boolean_false_node);
7509 /* Do-nothing variants of functions to handle pragma FLOAT_CONST_DECIMAL64,
7510 which is ignored for C++. */
7512 void
7513 set_float_const_decimal64 (void)
7517 void
7518 clear_float_const_decimal64 (void)
7522 bool
7523 float_const_decimal64_p (void)
7525 return 0;
7529 /* Return true if T designates the implied `this' parameter. */
7531 bool
7532 is_this_parameter (tree t)
7534 if (!DECL_P (t) || DECL_NAME (t) != this_identifier)
7535 return false;
7536 gcc_assert (TREE_CODE (t) == PARM_DECL || is_capture_proxy (t));
7537 return true;
7540 /* Insert the deduced return type for an auto function. */
7542 void
7543 apply_deduced_return_type (tree fco, tree return_type)
7545 tree result;
7547 if (return_type == error_mark_node)
7548 return;
7550 if (LAMBDA_FUNCTION_P (fco))
7552 tree lambda = CLASSTYPE_LAMBDA_EXPR (current_class_type);
7553 LAMBDA_EXPR_RETURN_TYPE (lambda) = return_type;
7556 if (DECL_CONV_FN_P (fco))
7557 DECL_NAME (fco) = mangle_conv_op_name_for_type (return_type);
7559 TREE_TYPE (fco) = change_return_type (return_type, TREE_TYPE (fco));
7561 result = DECL_RESULT (fco);
7562 if (result == NULL_TREE)
7563 return;
7564 if (TREE_TYPE (result) == return_type)
7565 return;
7567 /* We already have a DECL_RESULT from start_preparsed_function.
7568 Now we need to redo the work it and allocate_struct_function
7569 did to reflect the new type. */
7570 gcc_assert (current_function_decl == fco);
7571 result = build_decl (input_location, RESULT_DECL, NULL_TREE,
7572 TYPE_MAIN_VARIANT (return_type));
7573 DECL_ARTIFICIAL (result) = 1;
7574 DECL_IGNORED_P (result) = 1;
7575 cp_apply_type_quals_to_decl (cp_type_quals (return_type),
7576 result);
7578 DECL_RESULT (fco) = result;
7580 if (!processing_template_decl)
7582 if (!VOID_TYPE_P (TREE_TYPE (result)))
7583 complete_type_or_else (TREE_TYPE (result), NULL_TREE);
7584 bool aggr = aggregate_value_p (result, fco);
7585 #ifdef PCC_STATIC_STRUCT_RETURN
7586 cfun->returns_pcc_struct = aggr;
7587 #endif
7588 cfun->returns_struct = aggr;
7593 /* DECL is a local variable or parameter from the surrounding scope of a
7594 lambda-expression. Returns the decltype for a use of the capture field
7595 for DECL even if it hasn't been captured yet. */
7597 static tree
7598 capture_decltype (tree decl)
7600 tree lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
7601 /* FIXME do lookup instead of list walk? */
7602 tree cap = value_member (decl, LAMBDA_EXPR_CAPTURE_LIST (lam));
7603 tree type;
7605 if (cap)
7606 type = TREE_TYPE (TREE_PURPOSE (cap));
7607 else
7608 switch (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam))
7610 case CPLD_NONE:
7611 error ("%qD is not captured", decl);
7612 return error_mark_node;
7614 case CPLD_COPY:
7615 type = TREE_TYPE (decl);
7616 if (TREE_CODE (type) == REFERENCE_TYPE
7617 && TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE)
7618 type = TREE_TYPE (type);
7619 break;
7621 case CPLD_REFERENCE:
7622 type = TREE_TYPE (decl);
7623 if (TREE_CODE (type) != REFERENCE_TYPE)
7624 type = build_reference_type (TREE_TYPE (decl));
7625 break;
7627 default:
7628 gcc_unreachable ();
7631 if (TREE_CODE (type) != REFERENCE_TYPE)
7633 if (!LAMBDA_EXPR_MUTABLE_P (lam))
7634 type = cp_build_qualified_type (type, (cp_type_quals (type)
7635 |TYPE_QUAL_CONST));
7636 type = build_reference_type (type);
7638 return type;
7641 #include "gt-cp-semantics.h"