]> gcc.gnu.org Git - gcc.git/blame - gcc/cp/semantics.c
tree-inline.c (tree_function_versioning): Call cgraph_get_node instead of cgraph_node...
[gcc.git] / gcc / cp / semantics.c
CommitLineData
ad321293
MM
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
c8094d83 4 and during the instantiation of template functions.
ad321293 5
b2ebd268 6 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
95cc031f 7 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
ad321293 8 Written by Mark Mitchell (mmitchell@usa.net) based on code found
c8094d83 9 formerly in parse.y and pt.c.
ad321293 10
f5adbb8d 11 This file is part of GCC.
ad321293 12
f5adbb8d 13 GCC is free software; you can redistribute it and/or modify it
ad321293 14 under the terms of the GNU General Public License as published by
e77f031d 15 the Free Software Foundation; either version 3, or (at your option)
ad321293 16 any later version.
c8094d83 17
f5adbb8d 18 GCC is distributed in the hope that it will be useful, but
ad321293
MM
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
c8094d83 22
e77f031d
NC
23You should have received a copy of the GNU General Public License
24along with GCC; see the file COPYING3. If not see
25<http://www.gnu.org/licenses/>. */
ad321293
MM
26
27#include "config.h"
8d052bc7 28#include "system.h"
4977bab6
ZW
29#include "coretypes.h"
30#include "tm.h"
ad321293
MM
31#include "tree.h"
32#include "cp-tree.h"
39dabefd 33#include "c-family/c-common.h"
61d3ce20 34#include "c-family/c-objc.h"
25af8512 35#include "tree-inline.h"
6de9cd9a 36#include "tree-mudflap.h"
12027a89 37#include "toplev.h"
84df082b 38#include "flags.h"
225ff119 39#include "output.h"
ea11ca7e 40#include "timevar.h"
6de9cd9a 41#include "diagnostic.h"
8cd2462c 42#include "cgraph.h"
325c3691 43#include "tree-iterator.h"
3e1f1ba5 44#include "vec.h"
44d10c10 45#include "target.h"
726a989a 46#include "gimple.h"
7a8cba34 47#include "bitmap.h"
ad321293
MM
48
49/* There routines provide a modular interface to perform many parsing
50 operations. They may therefore be used during actual parsing, or
51 during template instantiation, which may be regarded as a
0b4d5576 52 degenerate form of parsing. */
ad321293 53
3a978d72 54static tree maybe_convert_cond (tree);
6de9cd9a 55static tree finalize_nrv_r (tree *, int *, void *);
d5f4eddd 56static tree capture_decltype (tree);
9660afe0 57static tree thisify_lambda_field (tree);
4985cde3 58
558475f0 59
8d241e0b
KL
60/* Deferred Access Checking Overview
61 ---------------------------------
62
63 Most C++ expressions and declarations require access checking
64 to be performed during parsing. However, in several cases,
65 this has to be treated differently.
66
67 For member declarations, access checking has to be deferred
68 until more information about the declaration is known. For
69 example:
70
71 class A {
0cbd7506 72 typedef int X;
8d241e0b 73 public:
0cbd7506 74 X f();
8d241e0b
KL
75 };
76
77 A::X A::f();
78 A::X g();
79
80 When we are parsing the function return type `A::X', we don't
81 really know if this is allowed until we parse the function name.
82
83 Furthermore, some contexts require that access checking is
84 never performed at all. These include class heads, and template
85 instantiations.
86
87 Typical use of access checking functions is described here:
c8094d83 88
8d241e0b
KL
89 1. When we enter a context that requires certain access checking
90 mode, the function `push_deferring_access_checks' is called with
91 DEFERRING argument specifying the desired mode. Access checking
92 may be performed immediately (dk_no_deferred), deferred
93 (dk_deferred), or not performed (dk_no_check).
94
95 2. When a declaration such as a type, or a variable, is encountered,
96 the function `perform_or_defer_access_check' is called. It
d6b418fa 97 maintains a VEC of all deferred checks.
8d241e0b
KL
98
99 3. The global `current_class_type' or `current_function_decl' is then
100 setup by the parser. `enforce_access' relies on these information
101 to check access.
102
103 4. Upon exiting the context mentioned in step 1,
104 `perform_deferred_access_checks' is called to check all declaration
d6b418fa 105 stored in the VEC. `pop_deferring_access_checks' is then
8d241e0b
KL
106 called to restore the previous access checking mode.
107
108 In case of parsing error, we simply call `pop_deferring_access_checks'
109 without `perform_deferred_access_checks'. */
110
d1b38208 111typedef struct GTY(()) deferred_access {
d6b418fa 112 /* A VEC representing name-lookups for which we have deferred
3e1f1ba5
NS
113 checking access controls. We cannot check the accessibility of
114 names used in a decl-specifier-seq until we know what is being
115 declared because code like:
116
c8094d83 117 class A {
0cbd7506
MS
118 class B {};
119 B* f();
3e1f1ba5
NS
120 }
121
122 A::B* A::f() { return 0; }
123
d6b418fa
SM
124 is valid, even though `A::B' is not generally accessible. */
125 VEC (deferred_access_check,gc)* GTY(()) deferred_access_checks;
c8094d83 126
3e1f1ba5
NS
127 /* The current mode of access checks. */
128 enum deferring_kind deferring_access_checks_kind;
c8094d83 129
3e1f1ba5 130} deferred_access;
d4e6fecb
NS
131DEF_VEC_O (deferred_access);
132DEF_VEC_ALLOC_O (deferred_access,gc);
3e1f1ba5 133
cf22909c 134/* Data for deferred access checking. */
d4e6fecb 135static GTY(()) VEC(deferred_access,gc) *deferred_access_stack;
3e1f1ba5 136static GTY(()) unsigned deferred_access_no_check;
cf22909c
KL
137
138/* Save the current deferred access states and start deferred
139 access checking iff DEFER_P is true. */
140
572c2b17
AP
141void
142push_deferring_access_checks (deferring_kind deferring)
cf22909c 143{
78757caa
KL
144 /* For context like template instantiation, access checking
145 disabling applies to all nested context. */
3e1f1ba5
NS
146 if (deferred_access_no_check || deferring == dk_no_check)
147 deferred_access_no_check++;
cf22909c 148 else
3e1f1ba5
NS
149 {
150 deferred_access *ptr;
cf22909c 151
d4e6fecb 152 ptr = VEC_safe_push (deferred_access, gc, deferred_access_stack, NULL);
d6b418fa 153 ptr->deferred_access_checks = NULL;
3e1f1ba5
NS
154 ptr->deferring_access_checks_kind = deferring;
155 }
cf22909c
KL
156}
157
158/* Resume deferring access checks again after we stopped doing
159 this previously. */
160
572c2b17
AP
161void
162resume_deferring_access_checks (void)
cf22909c 163{
3e1f1ba5
NS
164 if (!deferred_access_no_check)
165 VEC_last (deferred_access, deferred_access_stack)
166 ->deferring_access_checks_kind = dk_deferred;
cf22909c
KL
167}
168
169/* Stop deferring access checks. */
170
572c2b17
AP
171void
172stop_deferring_access_checks (void)
cf22909c 173{
3e1f1ba5
NS
174 if (!deferred_access_no_check)
175 VEC_last (deferred_access, deferred_access_stack)
176 ->deferring_access_checks_kind = dk_no_deferred;
cf22909c
KL
177}
178
179/* Discard the current deferred access checks and restore the
180 previous states. */
181
572c2b17
AP
182void
183pop_deferring_access_checks (void)
cf22909c 184{
3e1f1ba5
NS
185 if (deferred_access_no_check)
186 deferred_access_no_check--;
187 else
188 VEC_pop (deferred_access, deferred_access_stack);
cf22909c
KL
189}
190
c8094d83
MS
191/* Returns a TREE_LIST representing the deferred checks.
192 The TREE_PURPOSE of each node is the type through which the
cf22909c
KL
193 access occurred; the TREE_VALUE is the declaration named.
194 */
195
d6b418fa 196VEC (deferred_access_check,gc)*
572c2b17 197get_deferred_access_checks (void)
cf22909c 198{
3e1f1ba5
NS
199 if (deferred_access_no_check)
200 return NULL;
201 else
202 return (VEC_last (deferred_access, deferred_access_stack)
203 ->deferred_access_checks);
cf22909c
KL
204}
205
206/* Take current deferred checks and combine with the
207 previous states if we also defer checks previously.
208 Otherwise perform checks now. */
209
572c2b17
AP
210void
211pop_to_parent_deferring_access_checks (void)
cf22909c 212{
3e1f1ba5
NS
213 if (deferred_access_no_check)
214 deferred_access_no_check--;
215 else
216 {
d6b418fa 217 VEC (deferred_access_check,gc) *checks;
3e1f1ba5
NS
218 deferred_access *ptr;
219
220 checks = (VEC_last (deferred_access, deferred_access_stack)
221 ->deferred_access_checks);
222
223 VEC_pop (deferred_access, deferred_access_stack);
224 ptr = VEC_last (deferred_access, deferred_access_stack);
225 if (ptr->deferring_access_checks_kind == dk_no_deferred)
226 {
227 /* Check access. */
d6b418fa 228 perform_access_checks (checks);
3e1f1ba5
NS
229 }
230 else
231 {
232 /* Merge with parent. */
d6b418fa
SM
233 int i, j;
234 deferred_access_check *chk, *probe;
c8094d83 235
ac47786e 236 FOR_EACH_VEC_ELT (deferred_access_check, checks, i, chk)
3e1f1ba5 237 {
ac47786e
NF
238 FOR_EACH_VEC_ELT (deferred_access_check,
239 ptr->deferred_access_checks, j, probe)
d6b418fa
SM
240 {
241 if (probe->binfo == chk->binfo &&
242 probe->decl == chk->decl &&
243 probe->diag_decl == chk->diag_decl)
244 goto found;
245 }
3e1f1ba5 246 /* Insert into parent's checks. */
d6b418fa
SM
247 VEC_safe_push (deferred_access_check, gc,
248 ptr->deferred_access_checks, chk);
3e1f1ba5
NS
249 found:;
250 }
251 }
252 }
cf22909c
KL
253}
254
6b648482
MM
255/* Perform the access checks in CHECKS. The TREE_PURPOSE of each node
256 is the BINFO indicating the qualifying scope used to access the
257 DECL node stored in the TREE_VALUE of the node. */
258
259void
d6b418fa 260perform_access_checks (VEC (deferred_access_check,gc)* checks)
6b648482 261{
d6b418fa
SM
262 int i;
263 deferred_access_check *chk;
264
265 if (!checks)
266 return;
267
ac47786e 268 FOR_EACH_VEC_ELT (deferred_access_check, checks, i, chk)
d6b418fa 269 enforce_access (chk->binfo, chk->decl, chk->diag_decl);
6b648482
MM
270}
271
25903d03
KL
272/* Perform the deferred access checks.
273
274 After performing the checks, we still have to keep the list
275 `deferred_access_stack->deferred_access_checks' since we may want
276 to check access for them again later in a different context.
277 For example:
278
279 class A {
280 typedef int X;
281 static X a;
282 };
283 A::X A::a, x; // No error for `A::a', error for `x'
284
285 We have to perform deferred access of `A::X', first with `A::a',
286 next with `x'. */
cf22909c 287
572c2b17
AP
288void
289perform_deferred_access_checks (void)
cf22909c 290{
6b648482 291 perform_access_checks (get_deferred_access_checks ());
cf22909c
KL
292}
293
294/* Defer checking the accessibility of DECL, when looked up in
02022f3a 295 BINFO. DIAG_DECL is the declaration to use to print diagnostics. */
cf22909c 296
572c2b17 297void
02022f3a 298perform_or_defer_access_check (tree binfo, tree decl, tree diag_decl)
cf22909c 299{
d6b418fa 300 int i;
3e1f1ba5 301 deferred_access *ptr;
d6b418fa
SM
302 deferred_access_check *chk;
303 deferred_access_check *new_access;
304
cf22909c 305
3e1f1ba5
NS
306 /* Exit if we are in a context that no access checking is performed.
307 */
308 if (deferred_access_no_check)
0f2a66c9 309 return;
c8094d83 310
50bc768d 311 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
0f2a66c9 312
3e1f1ba5 313 ptr = VEC_last (deferred_access, deferred_access_stack);
c8094d83 314
cf22909c 315 /* If we are not supposed to defer access checks, just check now. */
3e1f1ba5 316 if (ptr->deferring_access_checks_kind == dk_no_deferred)
cf22909c 317 {
02022f3a 318 enforce_access (binfo, decl, diag_decl);
cf22909c
KL
319 return;
320 }
c8094d83 321
cf22909c 322 /* See if we are already going to perform this check. */
ac47786e
NF
323 FOR_EACH_VEC_ELT (deferred_access_check,
324 ptr->deferred_access_checks, i, chk)
d6b418fa
SM
325 {
326 if (chk->decl == decl && chk->binfo == binfo &&
327 chk->diag_decl == diag_decl)
328 {
329 return;
330 }
331 }
cf22909c 332 /* If not, record the check. */
d6b418fa
SM
333 new_access =
334 VEC_safe_push (deferred_access_check, gc,
335 ptr->deferred_access_checks, 0);
336 new_access->binfo = binfo;
337 new_access->decl = decl;
338 new_access->diag_decl = diag_decl;
cf22909c
KL
339}
340
f7d042e2
JM
341/* Used by build_over_call in LOOKUP_SPECULATIVE mode: return whether DECL
342 is accessible in BINFO, and possibly complain if not. If we're not
343 checking access, everything is accessible. */
344
345bool
346speculative_access_check (tree binfo, tree decl, tree diag_decl,
347 bool complain)
348{
349 if (deferred_access_no_check)
350 return true;
351
352 /* If we're checking for implicit delete, we don't want access
353 control errors. */
354 if (!accessible_p (binfo, decl, true))
355 {
356 /* Unless we're under maybe_explain_implicit_delete. */
357 if (complain)
358 enforce_access (binfo, decl, diag_decl);
359 return false;
360 }
361
362 return true;
363}
364
838dfd8a 365/* Returns nonzero if the current statement is a full expression,
f2c5f623
BC
366 i.e. temporaries created during that statement should be destroyed
367 at the end of the statement. */
35b1567d 368
f2c5f623 369int
3a978d72 370stmts_are_full_exprs_p (void)
f2c5f623 371{
ae499cce
MM
372 return current_stmt_tree ()->stmts_are_full_exprs_p;
373}
374
ed3d0b14
ILT
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. */
378
379tree
380add_stmt (tree t)
381{
382 enum tree_code code = TREE_CODE (t);
383
384 if (EXPR_P (t) && code != LABEL_EXPR)
385 {
386 if (!EXPR_HAS_LOCATION (t))
387 SET_EXPR_LOCATION (t, input_location);
388
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 ();
392 }
393
394 /* Add T to the statement-tree. Non-side-effect statements need to be
395 recorded during statement expressions. */
396 append_to_statement_list_force (t, &cur_stmt_list);
397
398 return t;
399}
400
e8924938 401/* Returns the stmt_tree to which statements are currently being added. */
ae499cce
MM
402
403stmt_tree
3a978d72 404current_stmt_tree (void)
ae499cce 405{
c8094d83
MS
406 return (cfun
407 ? &cfun->language->base.x_stmt_tree
ae499cce 408 : &scope_chain->x_stmt_tree);
f2c5f623 409}
35b1567d 410
543a0daa
RH
411/* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR. */
412
413static tree
414maybe_cleanup_point_expr (tree expr)
415{
416 if (!processing_template_decl && stmts_are_full_exprs_p ())
0ad28dde 417 expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
543a0daa
RH
418 return expr;
419}
420
0ad28dde 421/* Like maybe_cleanup_point_expr except have the type of the new expression be
22423a1f
KH
422 void so we don't need to create a temporary variable to hold the inner
423 expression. The reason why we do this is because the original type might be
424 an aggregate and we cannot create a temporary variable for that type. */
0ad28dde
AP
425
426static tree
427maybe_cleanup_point_expr_void (tree expr)
428{
429 if (!processing_template_decl && stmts_are_full_exprs_p ())
430 expr = fold_build_cleanup_point_expr (void_type_node, expr);
431 return expr;
432}
433
434
435
543a0daa
RH
436/* Create a declaration statement for the declaration given by the DECL. */
437
438void
350fae66 439add_decl_expr (tree decl)
543a0daa 440{
c2255bc4 441 tree r = build_stmt (input_location, DECL_EXPR, decl);
b187901e
AP
442 if (DECL_INITIAL (decl)
443 || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
0ad28dde 444 r = maybe_cleanup_point_expr_void (r);
543a0daa
RH
445 add_stmt (r);
446}
447
f2c5f623 448/* Finish a scope. */
35b1567d 449
20aff0b3 450tree
325c3691 451do_poplevel (tree stmt_list)
35b1567d 452{
325c3691 453 tree block = NULL;
35b1567d 454
f2c5f623 455 if (stmts_are_full_exprs_p ())
325c3691 456 block = poplevel (kept_level_p (), 1, 0);
f2c5f623 457
325c3691 458 stmt_list = pop_stmt_list (stmt_list);
c8094d83 459
325c3691
RH
460 if (!processing_template_decl)
461 {
c2255bc4 462 stmt_list = c_build_bind_expr (input_location, block, stmt_list);
325c3691 463 /* ??? See c_end_compound_stmt re statement expressions. */
35b1567d
BC
464 }
465
325c3691 466 return stmt_list;
35b1567d
BC
467}
468
c8094d83 469/* Begin a new scope. */
35b1567d 470
325c3691 471static tree
92bc1323 472do_pushlevel (scope_kind sk)
35b1567d 473{
325c3691 474 tree ret = push_stmt_list ();
f2c5f623 475 if (stmts_are_full_exprs_p ())
325c3691
RH
476 begin_scope (sk, NULL);
477 return ret;
478}
5a508662
RH
479
480/* Queue a cleanup. CLEANUP is an expression/statement to be executed
481 when the current scope is exited. EH_ONLY is true when this is not
482 meant to apply to normal control flow transfer. */
483
484void
485push_cleanup (tree decl, tree cleanup, bool eh_only)
486{
c2255bc4 487 tree stmt = build_stmt (input_location, CLEANUP_STMT, NULL, cleanup, decl);
5a508662
RH
488 CLEANUP_EH_ONLY (stmt) = eh_only;
489 add_stmt (stmt);
490 CLEANUP_BODY (stmt) = push_stmt_list ();
491}
325c3691 492
caf2523d
RH
493/* Begin a conditional that might contain a declaration. When generating
494 normal code, we want the declaration to appear before the statement
495 containing the conditional. When generating template code, we want the
350fae66 496 conditional to be rendered as the raw DECL_EXPR. */
325c3691
RH
497
498static void
caf2523d 499begin_cond (tree *cond_p)
325c3691 500{
caf2523d
RH
501 if (processing_template_decl)
502 *cond_p = push_stmt_list ();
503}
504
505/* Finish such a conditional. */
506
507static void
508finish_cond (tree *cond_p, tree expr)
509{
510 if (processing_template_decl)
35b1567d 511 {
caf2523d 512 tree cond = pop_stmt_list (*cond_p);
350fae66 513 if (TREE_CODE (cond) == DECL_EXPR)
caf2523d 514 expr = cond;
5d80a306 515
7b3e2d46 516 if (check_for_bare_parameter_packs (expr))
4439d02f 517 *cond_p = error_mark_node;
35b1567d 518 }
caf2523d 519 *cond_p = expr;
35b1567d
BC
520}
521
325c3691
RH
522/* If *COND_P specifies a conditional with a declaration, transform the
523 loop such that
0cbd7506
MS
524 while (A x = 42) { }
525 for (; A x = 42;) { }
325c3691 526 becomes
0cbd7506
MS
527 while (true) { A x = 42; if (!x) break; }
528 for (;;) { A x = 42; if (!x) break; }
caf2523d
RH
529 The statement list for BODY will be empty if the conditional did
530 not declare anything. */
c8094d83 531
325c3691 532static void
caf2523d 533simplify_loop_decl_cond (tree *cond_p, tree body)
325c3691 534{
caf2523d 535 tree cond, if_stmt;
325c3691 536
caf2523d
RH
537 if (!TREE_SIDE_EFFECTS (body))
538 return;
325c3691 539
caf2523d
RH
540 cond = *cond_p;
541 *cond_p = boolean_true_node;
c8094d83 542
caf2523d 543 if_stmt = begin_if_stmt ();
5ade1ed2 544 cond = cp_build_unary_op (TRUTH_NOT_EXPR, cond, 0, tf_warning_or_error);
caf2523d
RH
545 finish_if_stmt_cond (cond, if_stmt);
546 finish_break_stmt ();
547 finish_then_clause (if_stmt);
548 finish_if_stmt (if_stmt);
549}
325c3691 550
35b1567d
BC
551/* Finish a goto-statement. */
552
3e4d04a1 553tree
3a978d72 554finish_goto_stmt (tree destination)
35b1567d
BC
555{
556 if (TREE_CODE (destination) == IDENTIFIER_NODE)
557 destination = lookup_label (destination);
558
559 /* We warn about unused labels with -Wunused. That means we have to
560 mark the used labels as used. */
561 if (TREE_CODE (destination) == LABEL_DECL)
562 TREE_USED (destination) = 1;
fc2b8477
MM
563 else
564 {
84628aa8 565 destination = mark_rvalue_use (destination);
fc2b8477 566 if (!processing_template_decl)
f5651df1 567 {
f5651df1
JJ
568 destination = cp_convert (ptr_type_node, destination);
569 if (error_operand_p (destination))
570 return NULL_TREE;
571 }
fc2b8477
MM
572 /* We don't inline calls to functions with computed gotos.
573 Those functions are typically up to some funny business,
574 and may be depending on the labels being at particular
575 addresses, or some such. */
576 DECL_UNINLINABLE (current_function_decl) = 1;
577 }
c8094d83 578
35b1567d
BC
579 check_goto (destination);
580
c2255bc4 581 return add_stmt (build_stmt (input_location, GOTO_EXPR, destination));
35b1567d
BC
582}
583
ed5511d9 584/* COND is the condition-expression for an if, while, etc.,
d4033c81
MLI
585 statement. Convert it to a boolean value, if appropriate.
586 In addition, verify sequence points if -Wsequence-point is enabled. */
ed5511d9 587
8ce33230 588static tree
3a978d72 589maybe_convert_cond (tree cond)
ed5511d9
MM
590{
591 /* Empty conditions remain empty. */
592 if (!cond)
593 return NULL_TREE;
594
595 /* Wait until we instantiate templates before doing conversion. */
596 if (processing_template_decl)
597 return cond;
598
d4033c81
MLI
599 if (warn_sequence_point)
600 verify_sequence_points (cond);
601
ed5511d9
MM
602 /* Do the conversion. */
603 cond = convert_from_reference (cond);
fbc8d2d3
ILT
604
605 if (TREE_CODE (cond) == MODIFY_EXPR
606 && !TREE_NO_WARNING (cond)
607 && warn_parentheses)
608 {
609 warning (OPT_Wparentheses,
610 "suggest parentheses around assignment used as truth value");
611 TREE_NO_WARNING (cond) = 1;
612 }
613
ed5511d9
MM
614 return condition_conversion (cond);
615}
616
9bfadf57 617/* Finish an expression-statement, whose EXPRESSION is as indicated. */
a7e4cfa0 618
3e4d04a1 619tree
3a978d72 620finish_expr_stmt (tree expr)
ad321293 621{
3e4d04a1
RH
622 tree r = NULL_TREE;
623
ce4a0391 624 if (expr != NULL_TREE)
ad321293 625 {
a5bcc582 626 if (!processing_template_decl)
3a5b9284
RH
627 {
628 if (warn_sequence_point)
629 verify_sequence_points (expr);
ebeb2c24 630 expr = convert_to_void (expr, ICV_STATEMENT, tf_warning_or_error);
3a5b9284 631 }
47d4c811 632 else if (!type_dependent_expression_p (expr))
ebeb2c24 633 convert_to_void (build_non_dependent_expr (expr), ICV_STATEMENT,
5ade1ed2 634 tf_warning_or_error);
325c3691 635
7b3e2d46 636 if (check_for_bare_parameter_packs (expr))
4439d02f 637 expr = error_mark_node;
5d80a306 638
325c3691 639 /* Simplification of inner statement expressions, compound exprs,
ca5b80f3 640 etc can result in us already having an EXPR_STMT. */
543a0daa
RH
641 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
642 {
643 if (TREE_CODE (expr) != EXPR_STMT)
c2255bc4 644 expr = build_stmt (input_location, EXPR_STMT, expr);
0ad28dde 645 expr = maybe_cleanup_point_expr_void (expr);
543a0daa
RH
646 }
647
325c3691 648 r = add_stmt (expr);
35b1567d 649 }
364460b6 650
35b1567d 651 finish_stmt ();
558475f0 652
3e4d04a1 653 return r;
35b1567d
BC
654}
655
35b1567d 656
ad321293
MM
657/* Begin an if-statement. Returns a newly created IF_STMT if
658 appropriate. */
659
660tree
3a978d72 661begin_if_stmt (void)
ad321293 662{
325c3691
RH
663 tree r, scope;
664 scope = do_pushlevel (sk_block);
c2255bc4 665 r = build_stmt (input_location, IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
325c3691 666 TREE_CHAIN (r) = scope;
caf2523d 667 begin_cond (&IF_COND (r));
ad321293
MM
668 return r;
669}
670
671/* Process the COND of an if-statement, which may be given by
672 IF_STMT. */
673
c8094d83 674void
3a978d72 675finish_if_stmt_cond (tree cond, tree if_stmt)
ad321293 676{
caf2523d
RH
677 finish_cond (&IF_COND (if_stmt), maybe_convert_cond (cond));
678 add_stmt (if_stmt);
325c3691 679 THEN_CLAUSE (if_stmt) = push_stmt_list ();
ad321293
MM
680}
681
682/* Finish the then-clause of an if-statement, which may be given by
683 IF_STMT. */
684
685tree
3a978d72 686finish_then_clause (tree if_stmt)
ad321293 687{
325c3691 688 THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
35b1567d 689 return if_stmt;
ad321293
MM
690}
691
692/* Begin the else-clause of an if-statement. */
693
325c3691
RH
694void
695begin_else_clause (tree if_stmt)
ad321293 696{
325c3691 697 ELSE_CLAUSE (if_stmt) = push_stmt_list ();
ad321293
MM
698}
699
700/* Finish the else-clause of an if-statement, which may be given by
701 IF_STMT. */
702
703void
3a978d72 704finish_else_clause (tree if_stmt)
ad321293 705{
325c3691 706 ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
ad321293
MM
707}
708
dfbb4f34 709/* Finish an if-statement. */
ad321293 710
c8094d83 711void
325c3691 712finish_if_stmt (tree if_stmt)
ad321293 713{
325c3691
RH
714 tree scope = TREE_CHAIN (if_stmt);
715 TREE_CHAIN (if_stmt) = NULL;
716 add_stmt (do_poplevel (scope));
ad321293 717 finish_stmt ();
35b1567d
BC
718}
719
ad321293
MM
720/* Begin a while-statement. Returns a newly created WHILE_STMT if
721 appropriate. */
722
723tree
3a978d72 724begin_while_stmt (void)
ad321293
MM
725{
726 tree r;
c2255bc4 727 r = build_stmt (input_location, WHILE_STMT, NULL_TREE, NULL_TREE);
ae499cce 728 add_stmt (r);
325c3691 729 WHILE_BODY (r) = do_pushlevel (sk_block);
caf2523d 730 begin_cond (&WHILE_COND (r));
ad321293
MM
731 return r;
732}
733
27d26ee7 734/* Process the COND of a while-statement, which may be given by
ad321293
MM
735 WHILE_STMT. */
736
c8094d83 737void
3a978d72 738finish_while_stmt_cond (tree cond, tree while_stmt)
ad321293 739{
caf2523d
RH
740 finish_cond (&WHILE_COND (while_stmt), maybe_convert_cond (cond));
741 simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
ad321293
MM
742}
743
744/* Finish a while-statement, which may be given by WHILE_STMT. */
745
c8094d83 746void
3a978d72 747finish_while_stmt (tree while_stmt)
ad321293 748{
325c3691 749 WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
ad321293
MM
750 finish_stmt ();
751}
752
753/* Begin a do-statement. Returns a newly created DO_STMT if
754 appropriate. */
755
756tree
3a978d72 757begin_do_stmt (void)
ad321293 758{
c2255bc4 759 tree r = build_stmt (input_location, DO_STMT, NULL_TREE, NULL_TREE);
ae499cce 760 add_stmt (r);
325c3691 761 DO_BODY (r) = push_stmt_list ();
35b1567d 762 return r;
ad321293
MM
763}
764
765/* Finish the body of a do-statement, which may be given by DO_STMT. */
766
767void
3a978d72 768finish_do_body (tree do_stmt)
ad321293 769{
62e00e94
DM
770 tree body = DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
771
772 if (TREE_CODE (body) == STATEMENT_LIST && STATEMENT_LIST_TAIL (body))
773 body = STATEMENT_LIST_TAIL (body)->stmt;
774
775 if (IS_EMPTY_STMT (body))
776 warning (OPT_Wempty_body,
777 "suggest explicit braces around empty body in %<do%> statement");
ad321293
MM
778}
779
780/* Finish a do-statement, which may be given by DO_STMT, and whose
781 COND is as indicated. */
782
783void
3a978d72 784finish_do_stmt (tree cond, tree do_stmt)
ad321293 785{
ed5511d9 786 cond = maybe_convert_cond (cond);
35b1567d
BC
787 DO_COND (do_stmt) = cond;
788 finish_stmt ();
789}
ed5511d9 790
ad321293
MM
791/* Finish a return-statement. The EXPRESSION returned, if any, is as
792 indicated. */
793
3e4d04a1 794tree
3a978d72 795finish_return_stmt (tree expr)
ad321293 796{
3e4d04a1 797 tree r;
0c9b182b 798 bool no_warning;
3e4d04a1 799
0c9b182b 800 expr = check_return_expr (expr, &no_warning);
1799e5d5
RH
801
802 if (flag_openmp && !check_omp_return ())
803 return error_mark_node;
35b1567d 804 if (!processing_template_decl)
efee38a9 805 {
d4033c81
MLI
806 if (warn_sequence_point)
807 verify_sequence_points (expr);
808
44d10c10 809 if (DECL_DESTRUCTOR_P (current_function_decl)
c8094d83 810 || (DECL_CONSTRUCTOR_P (current_function_decl)
44d10c10 811 && targetm.cxx.cdtor_returns_this ()))
efee38a9
MM
812 {
813 /* Similarly, all destructors must run destructors for
814 base-classes before returning. So, all returns in a
dfbb4f34 815 destructor get sent to the DTOR_LABEL; finish_function emits
efee38a9 816 code to return a value there. */
44d10c10 817 return finish_goto_stmt (cdtor_label);
efee38a9
MM
818 }
819 }
543a0daa 820
c2255bc4 821 r = build_stmt (input_location, RETURN_EXPR, expr);
0c9b182b 822 TREE_NO_WARNING (r) |= no_warning;
0ad28dde 823 r = maybe_cleanup_point_expr_void (r);
543a0daa 824 r = add_stmt (r);
35b1567d 825 finish_stmt ();
3e4d04a1
RH
826
827 return r;
35b1567d 828}
efee38a9 829
3f43ac31
RRC
830/* Begin the scope of a for-statement or a range-for-statement.
831 Both the returned trees are to be used in a call to
832 begin_for_stmt or begin_range_for_stmt. */
ad321293
MM
833
834tree
3f43ac31
RRC
835begin_for_scope (tree *init)
836{
837 tree scope = NULL_TREE;
838 if (flag_new_for_scope > 0)
839 scope = do_pushlevel (sk_for);
840
841 if (processing_template_decl)
842 *init = push_stmt_list ();
843 else
844 *init = NULL_TREE;
845
846 return scope;
847}
848
849/* Begin a for-statement. Returns a new FOR_STMT.
850 SCOPE and INIT should be the return of begin_for_scope,
851 or both NULL_TREE */
852
853tree
854begin_for_stmt (tree scope, tree init)
ad321293
MM
855{
856 tree r;
857
c2255bc4 858 r = build_stmt (input_location, FOR_STMT, NULL_TREE, NULL_TREE,
0dfdeca6 859 NULL_TREE, NULL_TREE);
325c3691 860
3f43ac31
RRC
861 if (scope == NULL_TREE)
862 {
95cc031f
JJ
863 gcc_assert (!init || !(flag_new_for_scope > 0));
864 if (!init)
865 scope = begin_for_scope (&init);
3f43ac31
RRC
866 }
867 FOR_INIT_STMT (r) = init;
868 TREE_CHAIN (r) = scope;
894ca2c9 869
ad321293
MM
870 return r;
871}
872
873/* Finish the for-init-statement of a for-statement, which may be
874 given by FOR_STMT. */
875
876void
3a978d72 877finish_for_init_stmt (tree for_stmt)
ad321293 878{
894ca2c9
RH
879 if (processing_template_decl)
880 FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
325c3691
RH
881 add_stmt (for_stmt);
882 FOR_BODY (for_stmt) = do_pushlevel (sk_block);
caf2523d 883 begin_cond (&FOR_COND (for_stmt));
ad321293
MM
884}
885
886/* Finish the COND of a for-statement, which may be given by
887 FOR_STMT. */
888
889void
3a978d72 890finish_for_cond (tree cond, tree for_stmt)
ad321293 891{
caf2523d
RH
892 finish_cond (&FOR_COND (for_stmt), maybe_convert_cond (cond));
893 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
ad321293
MM
894}
895
896/* Finish the increment-EXPRESSION in a for-statement, which may be
897 given by FOR_STMT. */
898
899void
3a978d72 900finish_for_expr (tree expr, tree for_stmt)
ad321293 901{
543a0daa
RH
902 if (!expr)
903 return;
6f69173e
MM
904 /* If EXPR is an overloaded function, issue an error; there is no
905 context available to use to perform overload resolution. */
543a0daa 906 if (type_unknown_p (expr))
6f69173e
MM
907 {
908 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
909 expr = error_mark_node;
910 }
bcd46a7c
AP
911 if (!processing_template_decl)
912 {
913 if (warn_sequence_point)
0cbd7506 914 verify_sequence_points (expr);
ebeb2c24 915 expr = convert_to_void (expr, ICV_THIRD_IN_FOR,
5ade1ed2 916 tf_warning_or_error);
bcd46a7c
AP
917 }
918 else if (!type_dependent_expression_p (expr))
ebeb2c24 919 convert_to_void (build_non_dependent_expr (expr), ICV_THIRD_IN_FOR,
5ade1ed2 920 tf_warning_or_error);
0ad28dde 921 expr = maybe_cleanup_point_expr_void (expr);
7b3e2d46 922 if (check_for_bare_parameter_packs (expr))
4439d02f 923 expr = error_mark_node;
35b1567d 924 FOR_EXPR (for_stmt) = expr;
ad321293
MM
925}
926
927/* Finish the body of a for-statement, which may be given by
928 FOR_STMT. The increment-EXPR for the loop must be
f9132eb7
RRC
929 provided.
930 It can also finish RANGE_FOR_STMT. */
ad321293
MM
931
932void
3a978d72 933finish_for_stmt (tree for_stmt)
ad321293 934{
f9132eb7 935 if (TREE_CODE (for_stmt) == RANGE_FOR_STMT)
a8733ebf 936 RANGE_FOR_BODY (for_stmt) = do_poplevel (RANGE_FOR_BODY (for_stmt));
f9132eb7 937 else
a8733ebf 938 FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
325c3691 939
ad321293 940 /* Pop the scope for the body of the loop. */
a8733ebf 941 if (flag_new_for_scope > 0)
325c3691
RH
942 {
943 tree scope = TREE_CHAIN (for_stmt);
944 TREE_CHAIN (for_stmt) = NULL;
945 add_stmt (do_poplevel (scope));
946 }
947
c8094d83 948 finish_stmt ();
ad321293
MM
949}
950
f9132eb7 951/* Begin a range-for-statement. Returns a new RANGE_FOR_STMT.
3f43ac31
RRC
952 SCOPE and INIT should be the return of begin_for_scope,
953 or both NULL_TREE .
f9132eb7
RRC
954 To finish it call finish_for_stmt(). */
955
956tree
3f43ac31 957begin_range_for_stmt (tree scope, tree init)
f9132eb7
RRC
958{
959 tree r;
a8733ebf 960
f9132eb7
RRC
961 r = build_stmt (input_location, RANGE_FOR_STMT,
962 NULL_TREE, NULL_TREE, NULL_TREE);
a8733ebf 963
3f43ac31
RRC
964 if (scope == NULL_TREE)
965 {
95cc031f
JJ
966 gcc_assert (!init || !(flag_new_for_scope > 0));
967 if (!init)
968 scope = begin_for_scope (&init);
3f43ac31
RRC
969 }
970
971 /* RANGE_FOR_STMTs do not use nor save the init tree, so we
972 pop it now. */
973 if (init)
974 pop_stmt_list (init);
975 TREE_CHAIN (r) = scope;
f9132eb7
RRC
976
977 return r;
978}
979
980/* Finish the head of a range-based for statement, which may
981 be given by RANGE_FOR_STMT. DECL must be the declaration
982 and EXPR must be the loop expression. */
983
984void
985finish_range_for_decl (tree range_for_stmt, tree decl, tree expr)
986{
987 RANGE_FOR_DECL (range_for_stmt) = decl;
988 RANGE_FOR_EXPR (range_for_stmt) = expr;
989 add_stmt (range_for_stmt);
990 RANGE_FOR_BODY (range_for_stmt) = do_pushlevel (sk_block);
991}
992
ad321293
MM
993/* Finish a break-statement. */
994
3e4d04a1 995tree
3a978d72 996finish_break_stmt (void)
ad321293 997{
c2255bc4 998 return add_stmt (build_stmt (input_location, BREAK_STMT));
35b1567d
BC
999}
1000
ad321293
MM
1001/* Finish a continue-statement. */
1002
3e4d04a1 1003tree
3a978d72 1004finish_continue_stmt (void)
ad321293 1005{
c2255bc4 1006 return add_stmt (build_stmt (input_location, CONTINUE_STMT));
ad321293
MM
1007}
1008
35b1567d
BC
1009/* Begin a switch-statement. Returns a new SWITCH_STMT if
1010 appropriate. */
1011
1012tree
3a978d72 1013begin_switch_stmt (void)
35b1567d 1014{
325c3691
RH
1015 tree r, scope;
1016
c2255bc4 1017 r = build_stmt (input_location, SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
325c3691
RH
1018
1019 scope = do_pushlevel (sk_block);
1020 TREE_CHAIN (r) = scope;
ebaae582 1021 begin_cond (&SWITCH_STMT_COND (r));
325c3691 1022
527f0080 1023 return r;
ad321293
MM
1024}
1025
527f0080 1026/* Finish the cond of a switch-statement. */
ad321293 1027
527f0080 1028void
3a978d72 1029finish_switch_cond (tree cond, tree switch_stmt)
ad321293 1030{
6f9fdf4d 1031 tree orig_type = NULL;
35b1567d 1032 if (!processing_template_decl)
373eb3b3 1033 {
35b1567d 1034 /* Convert the condition to an integer or enumeration type. */
b746c5dc 1035 cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
35b1567d 1036 if (cond == NULL_TREE)
373eb3b3 1037 {
35b1567d
BC
1038 error ("switch quantity not an integer");
1039 cond = error_mark_node;
1040 }
6f9fdf4d 1041 orig_type = TREE_TYPE (cond);
35b1567d
BC
1042 if (cond != error_mark_node)
1043 {
0a72704b
MM
1044 /* [stmt.switch]
1045
1046 Integral promotions are performed. */
1047 cond = perform_integral_promotions (cond);
543a0daa 1048 cond = maybe_cleanup_point_expr (cond);
373eb3b3 1049 }
ad321293 1050 }
7b3e2d46 1051 if (check_for_bare_parameter_packs (cond))
4439d02f 1052 cond = error_mark_node;
d4033c81
MLI
1053 else if (!processing_template_decl && warn_sequence_point)
1054 verify_sequence_points (cond);
1055
ebaae582
SB
1056 finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
1057 SWITCH_STMT_TYPE (switch_stmt) = orig_type;
caf2523d 1058 add_stmt (switch_stmt);
56cb9733 1059 push_switch (switch_stmt);
ebaae582 1060 SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
ad321293
MM
1061}
1062
1063/* Finish the body of a switch-statement, which may be given by
1064 SWITCH_STMT. The COND to switch on is indicated. */
1065
1066void
3a978d72 1067finish_switch_stmt (tree switch_stmt)
ad321293 1068{
325c3691
RH
1069 tree scope;
1070
ebaae582
SB
1071 SWITCH_STMT_BODY (switch_stmt) =
1072 pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
c8094d83 1073 pop_switch ();
ad321293 1074 finish_stmt ();
325c3691
RH
1075
1076 scope = TREE_CHAIN (switch_stmt);
1077 TREE_CHAIN (switch_stmt) = NULL;
1078 add_stmt (do_poplevel (scope));
ad321293
MM
1079}
1080
ad321293
MM
1081/* Begin a try-block. Returns a newly-created TRY_BLOCK if
1082 appropriate. */
1083
1084tree
3a978d72 1085begin_try_block (void)
ad321293 1086{
c2255bc4 1087 tree r = build_stmt (input_location, TRY_BLOCK, NULL_TREE, NULL_TREE);
ae499cce 1088 add_stmt (r);
325c3691 1089 TRY_STMTS (r) = push_stmt_list ();
35b1567d 1090 return r;
ad321293
MM
1091}
1092
eaf6fb90
MM
1093/* Likewise, for a function-try-block. The block returned in
1094 *COMPOUND_STMT is an artificial outer scope, containing the
1095 function-try-block. */
0dde4175
JM
1096
1097tree
eaf6fb90 1098begin_function_try_block (tree *compound_stmt)
0dde4175 1099{
eaf6fb90
MM
1100 tree r;
1101 /* This outer scope does not exist in the C++ standard, but we need
1102 a place to put __FUNCTION__ and similar variables. */
1103 *compound_stmt = begin_compound_stmt (0);
1104 r = begin_try_block ();
35b1567d 1105 FN_TRY_BLOCK_P (r) = 1;
35b1567d 1106 return r;
0dde4175
JM
1107}
1108
ad321293
MM
1109/* Finish a try-block, which may be given by TRY_BLOCK. */
1110
1111void
3a978d72 1112finish_try_block (tree try_block)
ad321293 1113{
325c3691
RH
1114 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1115 TRY_HANDLERS (try_block) = push_stmt_list ();
ad321293
MM
1116}
1117
efa8eda3
MM
1118/* Finish the body of a cleanup try-block, which may be given by
1119 TRY_BLOCK. */
1120
62409b39 1121void
3a978d72 1122finish_cleanup_try_block (tree try_block)
62409b39 1123{
325c3691 1124 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
62409b39
MM
1125}
1126
f1dedc31
MM
1127/* Finish an implicitly generated try-block, with a cleanup is given
1128 by CLEANUP. */
1129
1130void
3a978d72 1131finish_cleanup (tree cleanup, tree try_block)
f1dedc31 1132{
35b1567d
BC
1133 TRY_HANDLERS (try_block) = cleanup;
1134 CLEANUP_P (try_block) = 1;
f1dedc31
MM
1135}
1136
0dde4175
JM
1137/* Likewise, for a function-try-block. */
1138
1139void
3a978d72 1140finish_function_try_block (tree try_block)
0dde4175 1141{
325c3691
RH
1142 finish_try_block (try_block);
1143 /* FIXME : something queer about CTOR_INITIALIZER somehow following
1144 the try block, but moving it inside. */
b35d4555 1145 in_function_try_handler = 1;
0dde4175
JM
1146}
1147
ad321293
MM
1148/* Finish a handler-sequence for a try-block, which may be given by
1149 TRY_BLOCK. */
1150
1151void
3a978d72 1152finish_handler_sequence (tree try_block)
ad321293 1153{
325c3691 1154 TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
35b1567d 1155 check_handlers (TRY_HANDLERS (try_block));
ad321293
MM
1156}
1157
eaf6fb90
MM
1158/* Finish the handler-seq for a function-try-block, given by
1159 TRY_BLOCK. COMPOUND_STMT is the outer block created by
1160 begin_function_try_block. */
0dde4175
JM
1161
1162void
eaf6fb90 1163finish_function_handler_sequence (tree try_block, tree compound_stmt)
0dde4175 1164{
b35d4555 1165 in_function_try_handler = 0;
325c3691 1166 finish_handler_sequence (try_block);
eaf6fb90 1167 finish_compound_stmt (compound_stmt);
35b1567d
BC
1168}
1169
ad321293
MM
1170/* Begin a handler. Returns a HANDLER if appropriate. */
1171
1172tree
3a978d72 1173begin_handler (void)
ad321293
MM
1174{
1175 tree r;
325c3691 1176
c2255bc4 1177 r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE);
ae499cce 1178 add_stmt (r);
325c3691 1179
1a6025b4
JM
1180 /* Create a binding level for the eh_info and the exception object
1181 cleanup. */
325c3691
RH
1182 HANDLER_BODY (r) = do_pushlevel (sk_catch);
1183
ad321293
MM
1184 return r;
1185}
1186
1187/* Finish the handler-parameters for a handler, which may be given by
b35d4555
MM
1188 HANDLER. DECL is the declaration for the catch parameter, or NULL
1189 if this is a `catch (...)' clause. */
ad321293 1190
1a6025b4 1191void
3a978d72 1192finish_handler_parms (tree decl, tree handler)
b35d4555 1193{
1a6025b4 1194 tree type = NULL_TREE;
b35d4555
MM
1195 if (processing_template_decl)
1196 {
1197 if (decl)
1198 {
1199 decl = pushdecl (decl);
1200 decl = push_template_decl (decl);
325c3691 1201 HANDLER_PARMS (handler) = decl;
1a6025b4 1202 type = TREE_TYPE (decl);
b35d4555
MM
1203 }
1204 }
35b1567d 1205 else
1a6025b4 1206 type = expand_start_catch_block (decl);
1a6025b4 1207 HANDLER_TYPE (handler) = type;
b80cfdcd 1208 if (!processing_template_decl && type)
6cad4e17 1209 mark_used (eh_type_info (type));
35b1567d
BC
1210}
1211
1212/* Finish a handler, which may be given by HANDLER. The BLOCKs are
1213 the return value from the matching call to finish_handler_parms. */
1214
1215void
3a978d72 1216finish_handler (tree handler)
35b1567d
BC
1217{
1218 if (!processing_template_decl)
1a6025b4 1219 expand_end_catch_block ();
325c3691 1220 HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
35b1567d
BC
1221}
1222
5882f0f3 1223/* Begin a compound statement. FLAGS contains some bits that control the
5995ebfb 1224 behavior and context. If BCS_NO_SCOPE is set, the compound statement
5882f0f3 1225 does not define a scope. If BCS_FN_BODY is set, this is the outermost
c8094d83 1226 block of a function. If BCS_TRY_BLOCK is set, this is the block
5882f0f3
RH
1227 created on behalf of a TRY statement. Returns a token to be passed to
1228 finish_compound_stmt. */
ad321293
MM
1229
1230tree
325c3691 1231begin_compound_stmt (unsigned int flags)
ad321293 1232{
325c3691 1233 tree r;
558475f0 1234
325c3691
RH
1235 if (flags & BCS_NO_SCOPE)
1236 {
1237 r = push_stmt_list ();
1238 STATEMENT_LIST_NO_SCOPE (r) = 1;
1239
1240 /* Normally, we try hard to keep the BLOCK for a statement-expression.
1241 But, if it's a statement-expression with a scopeless block, there's
1242 nothing to keep, and we don't want to accidentally keep a block
c8094d83 1243 *inside* the scopeless block. */
325c3691
RH
1244 keep_next_level (false);
1245 }
f1dedc31 1246 else
325c3691
RH
1247 r = do_pushlevel (flags & BCS_TRY_BLOCK ? sk_try : sk_block);
1248
5882f0f3
RH
1249 /* When processing a template, we need to remember where the braces were,
1250 so that we can set up identical scopes when instantiating the template
1251 later. BIND_EXPR is a handy candidate for this.
1252 Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1253 result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1254 processing templates. */
1255 if (processing_template_decl)
325c3691 1256 {
f293ce4b 1257 r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
5882f0f3
RH
1258 BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1259 BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
325c3691
RH
1260 TREE_SIDE_EFFECTS (r) = 1;
1261 }
ad321293
MM
1262
1263 return r;
1264}
1265
5882f0f3 1266/* Finish a compound-statement, which is given by STMT. */
ad321293 1267
325c3691
RH
1268void
1269finish_compound_stmt (tree stmt)
ad321293 1270{
5882f0f3 1271 if (TREE_CODE (stmt) == BIND_EXPR)
e02927a1
JM
1272 {
1273 tree body = do_poplevel (BIND_EXPR_BODY (stmt));
1274 /* If the STATEMENT_LIST is empty and this BIND_EXPR isn't special,
1275 discard the BIND_EXPR so it can be merged with the containing
1276 STATEMENT_LIST. */
1277 if (TREE_CODE (body) == STATEMENT_LIST
1278 && STATEMENT_LIST_HEAD (body) == NULL
1279 && !BIND_EXPR_BODY_BLOCK (stmt)
1280 && !BIND_EXPR_TRY_BLOCK (stmt))
1281 stmt = body;
1282 else
1283 BIND_EXPR_BODY (stmt) = body;
1284 }
325c3691
RH
1285 else if (STATEMENT_LIST_NO_SCOPE (stmt))
1286 stmt = pop_stmt_list (stmt);
7a3397c7 1287 else
5f070bc7
ZL
1288 {
1289 /* Destroy any ObjC "super" receivers that may have been
1290 created. */
1291 objc_clear_super_receiver ();
1292
1293 stmt = do_poplevel (stmt);
1294 }
ad321293 1295
325c3691
RH
1296 /* ??? See c_end_compound_stmt wrt statement expressions. */
1297 add_stmt (stmt);
ad321293 1298 finish_stmt ();
ad321293
MM
1299}
1300
6de9cd9a 1301/* Finish an asm-statement, whose components are a STRING, some
1c384bf1
RH
1302 OUTPUT_OPERANDS, some INPUT_OPERANDS, some CLOBBERS and some
1303 LABELS. Also note whether the asm-statement should be
1304 considered volatile. */
7dc5bd62 1305
3e4d04a1 1306tree
6de9cd9a 1307finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1c384bf1 1308 tree input_operands, tree clobbers, tree labels)
35b1567d
BC
1309{
1310 tree r;
abfc8a36 1311 tree t;
5544530a
PB
1312 int ninputs = list_length (input_operands);
1313 int noutputs = list_length (output_operands);
abfc8a36 1314
abfc8a36 1315 if (!processing_template_decl)
40b18c0a 1316 {
74f0c611
RH
1317 const char *constraint;
1318 const char **oconstraints;
1319 bool allows_mem, allows_reg, is_inout;
1320 tree operand;
40b18c0a 1321 int i;
40b18c0a 1322
86b8fed1 1323 oconstraints = XALLOCAVEC (const char *, noutputs);
74f0c611
RH
1324
1325 string = resolve_asm_operand_names (string, output_operands,
1c384bf1 1326 input_operands, labels);
74f0c611
RH
1327
1328 for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
40b18c0a 1329 {
74f0c611
RH
1330 operand = TREE_VALUE (t);
1331
1332 /* ??? Really, this should not be here. Users should be using a
1333 proper lvalue, dammit. But there's a long history of using
1334 casts in the output operands. In cases like longlong.h, this
1335 becomes a primitive form of typechecking -- if the cast can be
1336 removed, then the output operand had a type of the proper width;
1337 otherwise we'll get an error. Gross, but ... */
1338 STRIP_NOPS (operand);
1339
03a904b5
JJ
1340 operand = mark_lvalue_use (operand);
1341
5ade1ed2 1342 if (!lvalue_or_else (operand, lv_asm, tf_warning_or_error))
74f0c611
RH
1343 operand = error_mark_node;
1344
3db45ab5 1345 if (operand != error_mark_node
5544530a
PB
1346 && (TREE_READONLY (operand)
1347 || CP_TYPE_CONST_P (TREE_TYPE (operand))
3db45ab5
MS
1348 /* Functions are not modifiable, even though they are
1349 lvalues. */
1350 || TREE_CODE (TREE_TYPE (operand)) == FUNCTION_TYPE
1351 || TREE_CODE (TREE_TYPE (operand)) == METHOD_TYPE
1352 /* If it's an aggregate and any field is const, then it is
1353 effectively const. */
1354 || (CLASS_TYPE_P (TREE_TYPE (operand))
1355 && C_TYPE_FIELDS_READONLY (TREE_TYPE (operand)))))
4816c593 1356 cxx_readonly_error (operand, lv_asm);
5544530a 1357
74f0c611
RH
1358 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1359 oconstraints[i] = constraint;
1360
1361 if (parse_output_constraint (&constraint, i, ninputs, noutputs,
1362 &allows_mem, &allows_reg, &is_inout))
1363 {
1364 /* If the operand is going to end up in memory,
1365 mark it addressable. */
1366 if (!allows_reg && !cxx_mark_addressable (operand))
1367 operand = error_mark_node;
1368 }
1369 else
1370 operand = error_mark_node;
1371
1372 TREE_VALUE (t) = operand;
1373 }
1374
1375 for (i = 0, t = input_operands; t; ++i, t = TREE_CHAIN (t))
1376 {
1377 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
c8094d83 1378 operand = decay_conversion (TREE_VALUE (t));
74f0c611 1379
40b18c0a
MM
1380 /* If the type of the operand hasn't been determined (e.g.,
1381 because it involves an overloaded function), then issue
1382 an error message. There's no context available to
1383 resolve the overloading. */
74f0c611 1384 if (TREE_TYPE (operand) == unknown_type_node)
40b18c0a 1385 {
c8094d83 1386 error ("type of asm operand %qE could not be determined",
0cbd7506 1387 TREE_VALUE (t));
74f0c611 1388 operand = error_mark_node;
40b18c0a 1389 }
40b18c0a 1390
74f0c611
RH
1391 if (parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
1392 oconstraints, &allows_mem, &allows_reg))
40b18c0a 1393 {
74f0c611
RH
1394 /* If the operand is going to end up in memory,
1395 mark it addressable. */
b4c33883
AP
1396 if (!allows_reg && allows_mem)
1397 {
1398 /* Strip the nops as we allow this case. FIXME, this really
1399 should be rejected or made deprecated. */
1400 STRIP_NOPS (operand);
1401 if (!cxx_mark_addressable (operand))
1402 operand = error_mark_node;
1403 }
40b18c0a 1404 }
74f0c611
RH
1405 else
1406 operand = error_mark_node;
40b18c0a 1407
74f0c611 1408 TREE_VALUE (t) = operand;
40b18c0a
MM
1409 }
1410 }
abfc8a36 1411
c2255bc4 1412 r = build_stmt (input_location, ASM_EXPR, string,
0dfdeca6 1413 output_operands, input_operands,
1c384bf1 1414 clobbers, labels);
5544530a 1415 ASM_VOLATILE_P (r) = volatile_p || noutputs == 0;
0ad28dde 1416 r = maybe_cleanup_point_expr_void (r);
3e4d04a1 1417 return add_stmt (r);
ad321293 1418}
b4c4a9ec 1419
5bca4e80 1420/* Finish a label with the indicated NAME. Returns the new label. */
f01b0acb 1421
a723baf1 1422tree
3a978d72 1423finish_label_stmt (tree name)
f01b0acb 1424{
5b030314 1425 tree decl = define_label (input_location, name);
417fa55b 1426
5bca4e80 1427 if (decl == error_mark_node)
417fa55b
LM
1428 return error_mark_node;
1429
c2255bc4 1430 add_stmt (build_stmt (input_location, LABEL_EXPR, decl));
5bca4e80
ILT
1431
1432 return decl;
f01b0acb
MM
1433}
1434
acef433b
MM
1435/* Finish a series of declarations for local labels. G++ allows users
1436 to declare "local" labels, i.e., labels with scope. This extension
1437 is useful when writing code involving statement-expressions. */
1438
1439void
3a978d72 1440finish_label_decl (tree name)
acef433b 1441{
a6d76a95
PC
1442 if (!at_function_scope_p ())
1443 {
1444 error ("__label__ declarations are only allowed in function scopes");
1445 return;
1446 }
1447
1448 add_decl_expr (declare_local_label (name));
acef433b
MM
1449}
1450
659e5a7a 1451/* When DECL goes out of scope, make sure that CLEANUP is executed. */
f1dedc31 1452
c8094d83 1453void
3a978d72 1454finish_decl_cleanup (tree decl, tree cleanup)
f1dedc31 1455{
325c3691 1456 push_cleanup (decl, cleanup, false);
35b1567d
BC
1457}
1458
659e5a7a 1459/* If the current scope exits with an exception, run CLEANUP. */
24bef158 1460
659e5a7a 1461void
3a978d72 1462finish_eh_cleanup (tree cleanup)
24bef158 1463{
325c3691 1464 push_cleanup (NULL, cleanup, true);
35b1567d
BC
1465}
1466
2282d28d
MM
1467/* The MEM_INITS is a list of mem-initializers, in reverse of the
1468 order they were written by the user. Each node is as for
1469 emit_mem_initializers. */
bf3428d0
MM
1470
1471void
2282d28d 1472finish_mem_initializers (tree mem_inits)
bf3428d0 1473{
2282d28d
MM
1474 /* Reorder the MEM_INITS so that they are in the order they appeared
1475 in the source program. */
1476 mem_inits = nreverse (mem_inits);
bf3428d0 1477
a0de9d20 1478 if (processing_template_decl)
5d80a306
DG
1479 {
1480 tree mem;
1481
1482 for (mem = mem_inits; mem; mem = TREE_CHAIN (mem))
1483 {
1484 /* If the TREE_PURPOSE is a TYPE_PACK_EXPANSION, skip the
1485 check for bare parameter packs in the TREE_VALUE, because
1486 any parameter packs in the TREE_VALUE have already been
1487 bound as part of the TREE_PURPOSE. See
1488 make_pack_expansion for more information. */
4439d02f 1489 if (TREE_CODE (TREE_PURPOSE (mem)) != TYPE_PACK_EXPANSION
7b3e2d46 1490 && check_for_bare_parameter_packs (TREE_VALUE (mem)))
4439d02f 1491 TREE_VALUE (mem) = error_mark_node;
5d80a306
DG
1492 }
1493
1494 add_stmt (build_min_nt (CTOR_INITIALIZER, mem_inits));
1495 }
cdd2559c 1496 else
2282d28d 1497 emit_mem_initializers (mem_inits);
558475f0
MM
1498}
1499
b4c4a9ec
MM
1500/* Finish a parenthesized expression EXPR. */
1501
1502tree
3a978d72 1503finish_parenthesized_expr (tree expr)
b4c4a9ec 1504{
6615c446 1505 if (EXPR_P (expr))
78ef5b89 1506 /* This inhibits warnings in c_common_truthvalue_conversion. */
31ec7d2f 1507 TREE_NO_WARNING (expr) = 1;
b4c4a9ec 1508
19420d00
NS
1509 if (TREE_CODE (expr) == OFFSET_REF)
1510 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1511 enclosed in parentheses. */
1512 PTRMEM_OK_P (expr) = 0;
c8094d83 1513
7a8380ae
NS
1514 if (TREE_CODE (expr) == STRING_CST)
1515 PAREN_STRING_LITERAL_P (expr) = 1;
c8094d83 1516
b4c4a9ec
MM
1517 return expr;
1518}
1519
a723baf1
MM
1520/* Finish a reference to a non-static data member (DECL) that is not
1521 preceded by `.' or `->'. */
1522
1523tree
a3f10e50 1524finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
a723baf1 1525{
50bc768d 1526 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
a723baf1 1527
2defb926 1528 if (!object)
51fc2d02 1529 {
51fc2d02
JM
1530 tree scope = qualifying_scope;
1531 if (scope == NULL_TREE)
1532 scope = context_for_name_lookup (decl);
1533 object = maybe_dummy_object (scope, NULL);
1534 }
1535
1496e7d6
PC
1536 if (object == error_mark_node)
1537 return error_mark_node;
1538
2defb926
JM
1539 /* DR 613: Can use non-static data members without an associated
1540 object in sizeof/decltype/alignof. */
1541 if (is_dummy_object (object) && cp_unevaluated_operand == 0
1542 && (!processing_template_decl || !current_class_ref))
a723baf1 1543 {
c8094d83 1544 if (current_function_decl
a723baf1 1545 && DECL_STATIC_FUNCTION_P (current_function_decl))
dee15844 1546 error ("invalid use of member %q+D in static member function", decl);
a723baf1 1547 else
dee15844 1548 error ("invalid use of non-static data member %q+D", decl);
a723baf1
MM
1549 error ("from this location");
1550
1551 return error_mark_node;
1552 }
d5f4eddd 1553
51fc2d02
JM
1554 if (current_class_ptr)
1555 TREE_USED (current_class_ptr) = 1;
58e1d54c 1556 if (processing_template_decl && !qualifying_scope)
a723baf1 1557 {
a3f10e50 1558 tree type = TREE_TYPE (decl);
a723baf1 1559
a3f10e50
NS
1560 if (TREE_CODE (type) == REFERENCE_TYPE)
1561 type = TREE_TYPE (type);
1562 else
1563 {
f4f206f4 1564 /* Set the cv qualifiers. */
51fc2d02
JM
1565 int quals = (current_class_ref
1566 ? cp_type_quals (TREE_TYPE (current_class_ref))
1567 : TYPE_UNQUALIFIED);
c8094d83 1568
a3f10e50
NS
1569 if (DECL_MUTABLE_P (decl))
1570 quals &= ~TYPE_QUAL_CONST;
9e95d15f 1571
a3f10e50
NS
1572 quals |= cp_type_quals (TREE_TYPE (decl));
1573 type = cp_build_qualified_type (type, quals);
1574 }
c8094d83 1575
44de5aeb 1576 return build_min (COMPONENT_REF, type, object, decl, NULL_TREE);
a3f10e50 1577 }
ab11c13f
JM
1578 /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1579 QUALIFYING_SCOPE is also non-null. Wrap this in a SCOPE_REF
1580 for now. */
1581 else if (processing_template_decl)
1582 return build_qualified_name (TREE_TYPE (decl),
1583 qualifying_scope,
1584 DECL_NAME (decl),
1585 /*template_p=*/false);
a3f10e50
NS
1586 else
1587 {
1588 tree access_type = TREE_TYPE (object);
9f01ded6 1589
02022f3a
SM
1590 perform_or_defer_access_check (TYPE_BINFO (access_type), decl,
1591 decl);
a723baf1
MM
1592
1593 /* If the data member was named `C::M', convert `*this' to `C'
1594 first. */
1595 if (qualifying_scope)
1596 {
1597 tree binfo = NULL_TREE;
1598 object = build_scoped_ref (object, qualifying_scope,
1599 &binfo);
1600 }
1601
1602 return build_class_member_access_expr (object, decl,
1603 /*access_path=*/NULL_TREE,
5ade1ed2
DG
1604 /*preserve_reference=*/false,
1605 tf_warning_or_error);
a723baf1
MM
1606 }
1607}
1608
aa373032
DS
1609/* If we are currently parsing a template and we encountered a typedef
1610 TYPEDEF_DECL that is being accessed though CONTEXT, this function
1611 adds the typedef to a list tied to the current template.
1612 At tempate instantiatin time, that list is walked and access check
1613 performed for each typedef.
1614 LOCATION is the location of the usage point of TYPEDEF_DECL. */
1615
1616void
1617add_typedef_to_current_template_for_access_check (tree typedef_decl,
1618 tree context,
1619 location_t location)
1620{
1621 tree template_info = NULL;
1622 tree cs = current_scope ();
1623
1624 if (!is_typedef_decl (typedef_decl)
1625 || !context
1626 || !CLASS_TYPE_P (context)
1627 || !cs)
1628 return;
1629
1630 if (CLASS_TYPE_P (cs) || TREE_CODE (cs) == FUNCTION_DECL)
1631 template_info = get_template_info (cs);
1632
1633 if (template_info
1634 && TI_TEMPLATE (template_info)
1635 && !currently_open_class (context))
1636 append_type_to_template_for_access_check (cs, typedef_decl,
1637 context, location);
1638}
1639
ee76b931
MM
1640/* DECL was the declaration to which a qualified-id resolved. Issue
1641 an error message if it is not accessible. If OBJECT_TYPE is
1642 non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1643 type of `*x', or `x', respectively. If the DECL was named as
1644 `A::B' then NESTED_NAME_SPECIFIER is `A'. */
1645
1646void
c8094d83
MS
1647check_accessibility_of_qualified_id (tree decl,
1648 tree object_type,
ee76b931
MM
1649 tree nested_name_specifier)
1650{
1651 tree scope;
1652 tree qualifying_type = NULL_TREE;
95b4aca6 1653
d0940d56
DS
1654 /* If we are parsing a template declaration and if decl is a typedef,
1655 add it to a list tied to the template.
1656 At template instantiation time, that list will be walked and
1657 access check performed. */
aa373032
DS
1658 add_typedef_to_current_template_for_access_check (decl,
1659 nested_name_specifier
1660 ? nested_name_specifier
1661 : DECL_CONTEXT (decl),
1662 input_location);
d0940d56 1663
77880ae4 1664 /* If we're not checking, return immediately. */
95b4aca6
NS
1665 if (deferred_access_no_check)
1666 return;
c8094d83 1667
ee76b931
MM
1668 /* Determine the SCOPE of DECL. */
1669 scope = context_for_name_lookup (decl);
1670 /* If the SCOPE is not a type, then DECL is not a member. */
1671 if (!TYPE_P (scope))
1672 return;
1673 /* Compute the scope through which DECL is being accessed. */
c8094d83 1674 if (object_type
ee76b931
MM
1675 /* OBJECT_TYPE might not be a class type; consider:
1676
1677 class A { typedef int I; };
1678 I *p;
1679 p->A::I::~I();
1680
0cbd7506 1681 In this case, we will have "A::I" as the DECL, but "I" as the
ee76b931
MM
1682 OBJECT_TYPE. */
1683 && CLASS_TYPE_P (object_type)
1684 && DERIVED_FROM_P (scope, object_type))
1685 /* If we are processing a `->' or `.' expression, use the type of the
1686 left-hand side. */
1687 qualifying_type = object_type;
1688 else if (nested_name_specifier)
1689 {
1690 /* If the reference is to a non-static member of the
1691 current class, treat it as if it were referenced through
1692 `this'. */
1693 if (DECL_NONSTATIC_MEMBER_P (decl)
1694 && current_class_ptr
1695 && DERIVED_FROM_P (scope, current_class_type))
1696 qualifying_type = current_class_type;
1697 /* Otherwise, use the type indicated by the
1698 nested-name-specifier. */
1699 else
1700 qualifying_type = nested_name_specifier;
1701 }
1702 else
1703 /* Otherwise, the name must be from the current class or one of
1704 its bases. */
1705 qualifying_type = currently_open_derived_class (scope);
1706
fc429748
MM
1707 if (qualifying_type
1708 /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1709 or similar in a default argument value. */
1710 && CLASS_TYPE_P (qualifying_type)
1711 && !dependent_type_p (qualifying_type))
02022f3a
SM
1712 perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl,
1713 decl);
ee76b931
MM
1714}
1715
1716/* EXPR is the result of a qualified-id. The QUALIFYING_CLASS was the
1717 class named to the left of the "::" operator. DONE is true if this
1718 expression is a complete postfix-expression; it is false if this
1719 expression is followed by '->', '[', '(', etc. ADDRESS_P is true
02ed62dd
MM
1720 iff this expression is the operand of '&'. TEMPLATE_P is true iff
1721 the qualified-id was of the form "A::template B". TEMPLATE_ARG_P
1722 is true iff this qualified name appears as a template argument. */
ee76b931
MM
1723
1724tree
3db45ab5
MS
1725finish_qualified_id_expr (tree qualifying_class,
1726 tree expr,
02ed62dd 1727 bool done,
3db45ab5 1728 bool address_p,
02ed62dd
MM
1729 bool template_p,
1730 bool template_arg_p)
ee76b931 1731{
d4f0f205
MM
1732 gcc_assert (TYPE_P (qualifying_class));
1733
5e08432e
MM
1734 if (error_operand_p (expr))
1735 return error_mark_node;
1736
7eab6e7b 1737 if (DECL_P (expr) || BASELINK_P (expr))
d4f0f205 1738 mark_used (expr);
d4f0f205 1739
02ed62dd
MM
1740 if (template_p)
1741 check_template_keyword (expr);
1742
ee76b931
MM
1743 /* If EXPR occurs as the operand of '&', use special handling that
1744 permits a pointer-to-member. */
1745 if (address_p && done)
1746 {
1747 if (TREE_CODE (expr) == SCOPE_REF)
1748 expr = TREE_OPERAND (expr, 1);
c8094d83 1749 expr = build_offset_ref (qualifying_class, expr,
a5ac359a 1750 /*address_p=*/true);
ee76b931
MM
1751 return expr;
1752 }
1753
02ed62dd
MM
1754 /* Within the scope of a class, turn references to non-static
1755 members into expression of the form "this->...". */
1756 if (template_arg_p)
1757 /* But, within a template argument, we do not want make the
1758 transformation, as there is no "this" pointer. */
1759 ;
1760 else if (TREE_CODE (expr) == FIELD_DECL)
43854f72
SB
1761 {
1762 push_deferring_access_checks (dk_no_check);
2defb926 1763 expr = finish_non_static_data_member (expr, NULL_TREE,
43854f72
SB
1764 qualifying_class);
1765 pop_deferring_access_checks ();
1766 }
ee76b931
MM
1767 else if (BASELINK_P (expr) && !processing_template_decl)
1768 {
38f1276b 1769 tree ob;
ee76b931
MM
1770
1771 /* See if any of the functions are non-static members. */
7e361ae6 1772 /* If so, the expression may be relative to 'this'. */
294e855f 1773 if (!shared_member_p (expr)
38f1276b
JM
1774 && (ob = maybe_dummy_object (qualifying_class, NULL),
1775 !is_dummy_object (ob)))
c8094d83 1776 expr = (build_class_member_access_expr
38f1276b 1777 (ob,
ee76b931
MM
1778 expr,
1779 BASELINK_ACCESS_BINFO (expr),
5ade1ed2
DG
1780 /*preserve_reference=*/false,
1781 tf_warning_or_error));
ee76b931 1782 else if (done)
a5ac359a
MM
1783 /* The expression is a qualified name whose address is not
1784 being taken. */
1785 expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false);
ee76b931
MM
1786 }
1787
1788 return expr;
1789}
1790
b69b1501
MM
1791/* Begin a statement-expression. The value returned must be passed to
1792 finish_stmt_expr. */
b4c4a9ec 1793
c8094d83 1794tree
3a978d72 1795begin_stmt_expr (void)
b4c4a9ec 1796{
325c3691 1797 return push_stmt_list ();
35b1567d
BC
1798}
1799
a5bcc582 1800/* Process the final expression of a statement expression. EXPR can be
85a56c9d
MM
1801 NULL, if the final expression is empty. Return a STATEMENT_LIST
1802 containing all the statements in the statement-expression, or
1803 ERROR_MARK_NODE if there was an error. */
a5bcc582
NS
1804
1805tree
325c3691 1806finish_stmt_expr_expr (tree expr, tree stmt_expr)
a5bcc582 1807{
72e4661a 1808 if (error_operand_p (expr))
76b9a2a1
AP
1809 {
1810 /* The type of the statement-expression is the type of the last
1811 expression. */
1812 TREE_TYPE (stmt_expr) = error_mark_node;
1813 return error_mark_node;
1814 }
c8094d83 1815
85a56c9d 1816 /* If the last statement does not have "void" type, then the value
3db45ab5 1817 of the last statement is the value of the entire expression. */
a5bcc582
NS
1818 if (expr)
1819 {
c6c7698d
JM
1820 tree type = TREE_TYPE (expr);
1821
1822 if (processing_template_decl)
1823 {
c2255bc4 1824 expr = build_stmt (input_location, EXPR_STMT, expr);
c6c7698d
JM
1825 expr = add_stmt (expr);
1826 /* Mark the last statement so that we can recognize it as such at
1827 template-instantiation time. */
1828 EXPR_STMT_STMT_EXPR_RESULT (expr) = 1;
1829 }
1830 else if (VOID_TYPE_P (type))
a5bcc582 1831 {
c6c7698d
JM
1832 /* Just treat this like an ordinary statement. */
1833 expr = finish_expr_stmt (expr);
1834 }
1835 else
1836 {
1837 /* It actually has a value we need to deal with. First, force it
1838 to be an rvalue so that we won't need to build up a copy
1839 constructor call later when we try to assign it to something. */
1840 expr = force_rvalue (expr);
85a56c9d
MM
1841 if (error_operand_p (expr))
1842 return error_mark_node;
c6c7698d
JM
1843
1844 /* Update for array-to-pointer decay. */
2692eb7d 1845 type = TREE_TYPE (expr);
c6c7698d
JM
1846
1847 /* Wrap it in a CLEANUP_POINT_EXPR and add it to the list like a
1848 normal statement, but don't convert to void or actually add
1849 the EXPR_STMT. */
1850 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
1851 expr = maybe_cleanup_point_expr (expr);
1852 add_stmt (expr);
85a56c9d 1853 }
c6c7698d 1854
85a56c9d
MM
1855 /* The type of the statement-expression is the type of the last
1856 expression. */
1857 TREE_TYPE (stmt_expr) = type;
a5bcc582 1858 }
c8094d83 1859
85a56c9d 1860 return stmt_expr;
a5bcc582
NS
1861}
1862
303b7406
NS
1863/* Finish a statement-expression. EXPR should be the value returned
1864 by the previous begin_stmt_expr. Returns an expression
1865 representing the statement-expression. */
b4c4a9ec 1866
c8094d83 1867tree
325c3691 1868finish_stmt_expr (tree stmt_expr, bool has_no_scope)
b4c4a9ec 1869{
85a56c9d
MM
1870 tree type;
1871 tree result;
325c3691 1872
85a56c9d 1873 if (error_operand_p (stmt_expr))
d7b5fa31
JJ
1874 {
1875 pop_stmt_list (stmt_expr);
1876 return error_mark_node;
1877 }
325c3691 1878
85a56c9d 1879 gcc_assert (TREE_CODE (stmt_expr) == STATEMENT_LIST);
325c3691 1880
85a56c9d
MM
1881 type = TREE_TYPE (stmt_expr);
1882 result = pop_stmt_list (stmt_expr);
c6c7698d 1883 TREE_TYPE (result) = type;
6f80451c 1884
a5bcc582 1885 if (processing_template_decl)
325c3691
RH
1886 {
1887 result = build_min (STMT_EXPR, type, result);
1888 TREE_SIDE_EFFECTS (result) = 1;
1889 STMT_EXPR_NO_SCOPE (result) = has_no_scope;
1890 }
c6c7698d 1891 else if (CLASS_TYPE_P (type))
a5bcc582 1892 {
c6c7698d
JM
1893 /* Wrap the statement-expression in a TARGET_EXPR so that the
1894 temporary object created by the final expression is destroyed at
1895 the end of the full-expression containing the
1896 statement-expression. */
1897 result = force_target_expr (type, result);
a5bcc582 1898 }
325c3691 1899
b4c4a9ec
MM
1900 return result;
1901}
1902
c2acde1e
JM
1903/* Returns the expression which provides the value of STMT_EXPR. */
1904
1905tree
1906stmt_expr_value_expr (tree stmt_expr)
1907{
1908 tree t = STMT_EXPR_STMT (stmt_expr);
1909
1910 if (TREE_CODE (t) == BIND_EXPR)
1911 t = BIND_EXPR_BODY (t);
1912
9de0e916 1913 if (TREE_CODE (t) == STATEMENT_LIST && STATEMENT_LIST_TAIL (t))
c2acde1e
JM
1914 t = STATEMENT_LIST_TAIL (t)->stmt;
1915
1916 if (TREE_CODE (t) == EXPR_STMT)
1917 t = EXPR_STMT_EXPR (t);
1918
1919 return t;
1920}
1921
9af66ed1
DS
1922/* Return TRUE iff EXPR_STMT is an empty list of
1923 expression statements. */
1924
1925bool
1926empty_expr_stmt_p (tree expr_stmt)
1927{
1928 tree body = NULL_TREE;
1929
489df541
DS
1930 if (expr_stmt == void_zero_node)
1931 return true;
1932
9af66ed1
DS
1933 if (expr_stmt)
1934 {
1935 if (TREE_CODE (expr_stmt) == EXPR_STMT)
1936 body = EXPR_STMT_EXPR (expr_stmt);
1937 else if (TREE_CODE (expr_stmt) == STATEMENT_LIST)
1938 body = expr_stmt;
1939 }
1940
489df541
DS
1941 if (body)
1942 {
1943 if (TREE_CODE (body) == STATEMENT_LIST)
1944 return tsi_end_p (tsi_start (body));
1945 else
1946 return empty_expr_stmt_p (body);
1947 }
9af66ed1
DS
1948 return false;
1949}
1950
b3445994 1951/* Perform Koenig lookup. FN is the postfix-expression representing
fa531100 1952 the function (or functions) to call; ARGS are the arguments to the
f9132eb7
RRC
1953 call; if INCLUDE_STD then the `std' namespace is automatically
1954 considered an associated namespace (used in range-based for loops).
1955 Returns the functions to be considered by overload resolution. */
b3445994
MM
1956
1957tree
f9132eb7 1958perform_koenig_lookup (tree fn, VEC(tree,gc) *args, bool include_std)
b3445994
MM
1959{
1960 tree identifier = NULL_TREE;
1961 tree functions = NULL_TREE;
d095e03c 1962 tree tmpl_args = NULL_TREE;
4e6a9725 1963 bool template_id = false;
d095e03c
JM
1964
1965 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
1966 {
4e6a9725
JM
1967 /* Use a separate flag to handle null args. */
1968 template_id = true;
d095e03c
JM
1969 tmpl_args = TREE_OPERAND (fn, 1);
1970 fn = TREE_OPERAND (fn, 0);
1971 }
b3445994
MM
1972
1973 /* Find the name of the overloaded function. */
1974 if (TREE_CODE (fn) == IDENTIFIER_NODE)
1975 identifier = fn;
1976 else if (is_overloaded_fn (fn))
1977 {
1978 functions = fn;
1979 identifier = DECL_NAME (get_first_fn (functions));
1980 }
1981 else if (DECL_P (fn))
1982 {
1983 functions = fn;
1984 identifier = DECL_NAME (fn);
1985 }
1986
1987 /* A call to a namespace-scope function using an unqualified name.
1988
1989 Do Koenig lookup -- unless any of the arguments are
1990 type-dependent. */
d095e03c
JM
1991 if (!any_type_dependent_arguments_p (args)
1992 && !any_dependent_template_arguments_p (tmpl_args))
b3445994 1993 {
f9132eb7 1994 fn = lookup_arg_dependent (identifier, functions, args, include_std);
b3445994
MM
1995 if (!fn)
1996 /* The unqualified name could not be resolved. */
1997 fn = unqualified_fn_lookup_error (identifier);
1998 }
b3445994 1999
4e6a9725
JM
2000 if (fn && template_id)
2001 fn = build2 (TEMPLATE_ID_EXPR, unknown_type_node, fn, tmpl_args);
d095e03c 2002
b3445994
MM
2003 return fn;
2004}
2005
c166b898
ILT
2006/* Generate an expression for `FN (ARGS)'. This may change the
2007 contents of ARGS.
4ba126e4
MM
2008
2009 If DISALLOW_VIRTUAL is true, the call to FN will be not generated
2010 as a virtual call, even if FN is virtual. (This flag is set when
2011 encountering an expression where the function name is explicitly
2012 qualified. For example a call to `X::f' never generates a virtual
2013 call.)
2014
2015 Returns code for the call. */
b4c4a9ec 2016
c8094d83 2017tree
c166b898
ILT
2018finish_call_expr (tree fn, VEC(tree,gc) **args, bool disallow_virtual,
2019 bool koenig_p, tsubst_flags_t complain)
b4c4a9ec 2020{
d17811fd
MM
2021 tree result;
2022 tree orig_fn;
c166b898 2023 VEC(tree,gc) *orig_args = NULL;
d17811fd 2024
c166b898 2025 if (fn == error_mark_node)
4ba126e4
MM
2026 return error_mark_node;
2027
4860b874 2028 gcc_assert (!TYPE_P (fn));
a759e627 2029
d17811fd 2030 orig_fn = fn;
d17811fd
MM
2031
2032 if (processing_template_decl)
2033 {
1770aeed
DS
2034 /* If the call expression is dependent, build a CALL_EXPR node
2035 with no type; type_dependent_expression_p recognizes
2036 expressions with no type as being dependent. */
d17811fd 2037 if (type_dependent_expression_p (fn)
1770aeed
DS
2038 || any_type_dependent_arguments_p (*args)
2039 /* For a non-static member function, we need to specifically
2040 test the type dependency of the "this" pointer because it
2041 is not included in *ARGS even though it is considered to
2042 be part of the list of arguments. Note that this is
2043 related to CWG issues 515 and 1005. */
2044 || ((TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
2045 && current_class_ref
2046 && type_dependent_expression_p (current_class_ref)))
6d80c4b9 2047 {
c166b898 2048 result = build_nt_call_vec (fn, *args);
5094a795 2049 KOENIG_LOOKUP_P (result) = koenig_p;
be461b8f
JJ
2050 if (cfun)
2051 {
2052 do
2053 {
2054 tree fndecl = OVL_CURRENT (fn);
2055 if (TREE_CODE (fndecl) != FUNCTION_DECL
2056 || !TREE_THIS_VOLATILE (fndecl))
2057 break;
2058 fn = OVL_NEXT (fn);
2059 }
2060 while (fn);
2061 if (!fn)
2062 current_function_returns_abnormally = 1;
2063 }
6d80c4b9
MM
2064 return result;
2065 }
c166b898 2066 orig_args = make_tree_vector_copy (*args);
d17811fd
MM
2067 if (!BASELINK_P (fn)
2068 && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
2069 && TREE_TYPE (fn) != unknown_type_node)
2070 fn = build_non_dependent_expr (fn);
c166b898 2071 make_args_non_dependent (*args);
d17811fd
MM
2072 }
2073
eff3a276
MM
2074 if (is_overloaded_fn (fn))
2075 fn = baselink_for_fns (fn);
a723baf1 2076
d17811fd 2077 result = NULL_TREE;
4ba126e4 2078 if (BASELINK_P (fn))
03d82991 2079 {
4ba126e4
MM
2080 tree object;
2081
2082 /* A call to a member function. From [over.call.func]:
2083
2084 If the keyword this is in scope and refers to the class of
2085 that member function, or a derived class thereof, then the
2086 function call is transformed into a qualified function call
2087 using (*this) as the postfix-expression to the left of the
2088 . operator.... [Otherwise] a contrived object of type T
c8094d83 2089 becomes the implied object argument.
4ba126e4 2090
38f1276b 2091 In this situation:
4ba126e4
MM
2092
2093 struct A { void f(); };
2094 struct B : public A {};
2095 struct C : public A { void g() { B::f(); }};
2096
38f1276b
JM
2097 "the class of that member function" refers to `A'. But 11.2
2098 [class.access.base] says that we need to convert 'this' to B* as
2099 part of the access, so we pass 'B' to maybe_dummy_object. */
b4c4a9ec 2100
38f1276b
JM
2101 object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
2102 NULL);
b4c4a9ec 2103
d17811fd
MM
2104 if (processing_template_decl)
2105 {
2106 if (type_dependent_expression_p (object))
c166b898
ILT
2107 {
2108 tree ret = build_nt_call_vec (orig_fn, orig_args);
2109 release_tree_vector (orig_args);
2110 return ret;
2111 }
d17811fd
MM
2112 object = build_non_dependent_expr (object);
2113 }
2114
2115 result = build_new_method_call (object, fn, args, NULL_TREE,
c8094d83 2116 (disallow_virtual
63c9a190 2117 ? LOOKUP_NONVIRTUAL : 0),
5ade1ed2
DG
2118 /*fn_p=*/NULL,
2119 complain);
4ba126e4
MM
2120 }
2121 else if (is_overloaded_fn (fn))
16c35a1f
RH
2122 {
2123 /* If the function is an overloaded builtin, resolve it. */
2124 if (TREE_CODE (fn) == FUNCTION_DECL
58646b77
PB
2125 && (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2126 || DECL_BUILT_IN_CLASS (fn) == BUILT_IN_MD))
c2255bc4 2127 result = resolve_overloaded_builtin (input_location, fn, *args);
16c35a1f
RH
2128
2129 if (!result)
2130 /* A call to a namespace-scope function. */
5094a795 2131 result = build_new_function_call (fn, args, koenig_p, complain);
16c35a1f 2132 }
a723baf1
MM
2133 else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
2134 {
c166b898 2135 if (!VEC_empty (tree, *args))
a723baf1
MM
2136 error ("arguments to destructor are not allowed");
2137 /* Mark the pseudo-destructor call as having side-effects so
2138 that we do not issue warnings about its use. */
2139 result = build1 (NOP_EXPR,
2140 void_type_node,
2141 TREE_OPERAND (fn, 0));
2142 TREE_SIDE_EFFECTS (result) = 1;
a723baf1 2143 }
4ba126e4 2144 else if (CLASS_TYPE_P (TREE_TYPE (fn)))
d17811fd
MM
2145 /* If the "function" is really an object of class type, it might
2146 have an overloaded `operator ()'. */
c166b898 2147 result = build_op_call (fn, args, complain);
16c35a1f 2148
d17811fd
MM
2149 if (!result)
2150 /* A call where the function is unknown. */
c166b898 2151 result = cp_build_function_call_vec (fn, args, complain);
4ba126e4 2152
bb4586d3 2153 if (processing_template_decl && result != error_mark_node)
6d80c4b9 2154 {
bb4586d3
JM
2155 if (TREE_CODE (result) == INDIRECT_REF)
2156 result = TREE_OPERAND (result, 0);
c166b898 2157 result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
5094a795 2158 KOENIG_LOOKUP_P (result) = koenig_p;
c166b898 2159 release_tree_vector (orig_args);
bb4586d3 2160 result = convert_from_reference (result);
6d80c4b9 2161 }
c166b898 2162
3a2cb4d0
JM
2163 if (koenig_p)
2164 {
2165 /* Free garbage OVERLOADs from arg-dependent lookup. */
2166 tree next = NULL_TREE;
2167 for (fn = orig_fn;
2168 fn && TREE_CODE (fn) == OVERLOAD && OVL_ARG_DEPENDENT (fn);
2169 fn = next)
2170 {
2171 if (processing_template_decl)
2172 /* In a template, we'll re-use them at instantiation time. */
2173 OVL_ARG_DEPENDENT (fn) = false;
2174 else
2175 {
2176 next = OVL_CHAIN (fn);
2177 ggc_free (fn);
2178 }
2179 }
2180 }
2181
d17811fd 2182 return result;
b4c4a9ec
MM
2183}
2184
2185/* Finish a call to a postfix increment or decrement or EXPR. (Which
2186 is indicated by CODE, which should be POSTINCREMENT_EXPR or
2187 POSTDECREMENT_EXPR.) */
2188
c8094d83 2189tree
3a978d72 2190finish_increment_expr (tree expr, enum tree_code code)
b4c4a9ec 2191{
5ade1ed2 2192 return build_x_unary_op (code, expr, tf_warning_or_error);
b4c4a9ec
MM
2193}
2194
2195/* Finish a use of `this'. Returns an expression for `this'. */
2196
c8094d83 2197tree
3a978d72 2198finish_this_expr (void)
b4c4a9ec
MM
2199{
2200 tree result;
2201
c6be04ad
JM
2202 if (current_class_ptr)
2203 {
2204 tree type = TREE_TYPE (current_class_ref);
2205
2206 /* In a lambda expression, 'this' refers to the captured 'this'. */
2207 if (LAMBDA_TYPE_P (type))
2208 result = lambda_expr_this_capture (CLASSTYPE_LAMBDA_EXPR (type));
2209 else
2210 result = current_class_ptr;
2211
2212 }
b4c4a9ec
MM
2213 else if (current_function_decl
2214 && DECL_STATIC_FUNCTION_P (current_function_decl))
2215 {
9e637a26 2216 error ("%<this%> is unavailable for static member functions");
b4c4a9ec
MM
2217 result = error_mark_node;
2218 }
2219 else
2220 {
2221 if (current_function_decl)
9e637a26 2222 error ("invalid use of %<this%> in non-member function");
b4c4a9ec 2223 else
9e637a26 2224 error ("invalid use of %<this%> at top level");
b4c4a9ec
MM
2225 result = error_mark_node;
2226 }
2227
2228 return result;
2229}
2230
a723baf1
MM
2231/* Finish a pseudo-destructor expression. If SCOPE is NULL, the
2232 expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
2233 the TYPE for the type given. If SCOPE is non-NULL, the expression
2234 was of the form `OBJECT.SCOPE::~DESTRUCTOR'. */
b4c4a9ec 2235
c8094d83 2236tree
3a978d72 2237finish_pseudo_destructor_expr (tree object, tree scope, tree destructor)
b4c4a9ec 2238{
09b1ccd6 2239 if (object == error_mark_node || destructor == error_mark_node)
a723baf1 2240 return error_mark_node;
40242ccf 2241
50bc768d 2242 gcc_assert (TYPE_P (destructor));
b4c4a9ec 2243
a723baf1
MM
2244 if (!processing_template_decl)
2245 {
2246 if (scope == error_mark_node)
2247 {
2248 error ("invalid qualifying scope in pseudo-destructor name");
2249 return error_mark_node;
2250 }
5cf10afb
AP
2251 if (scope && TYPE_P (scope) && !check_dtor_name (scope, destructor))
2252 {
2253 error ("qualified type %qT does not match destructor name ~%qT",
2254 scope, destructor);
2255 return error_mark_node;
2256 }
2257
c8094d83 2258
26bcf8fc
MM
2259 /* [expr.pseudo] says both:
2260
0cbd7506 2261 The type designated by the pseudo-destructor-name shall be
26bcf8fc
MM
2262 the same as the object type.
2263
0cbd7506 2264 and:
26bcf8fc 2265
0cbd7506 2266 The cv-unqualified versions of the object type and of the
26bcf8fc
MM
2267 type designated by the pseudo-destructor-name shall be the
2268 same type.
2269
0cbd7506
MS
2270 We implement the more generous second sentence, since that is
2271 what most other compilers do. */
c8094d83 2272 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
26bcf8fc 2273 destructor))
a723baf1 2274 {
a82e1a7d 2275 error ("%qE is not of type %qT", object, destructor);
a723baf1
MM
2276 return error_mark_node;
2277 }
2278 }
b4c4a9ec 2279
f293ce4b 2280 return build3 (PSEUDO_DTOR_EXPR, void_type_node, object, scope, destructor);
b4c4a9ec
MM
2281}
2282
ce4a0391
MM
2283/* Finish an expression of the form CODE EXPR. */
2284
2285tree
3a978d72 2286finish_unary_op_expr (enum tree_code code, tree expr)
ce4a0391 2287{
5ade1ed2 2288 tree result = build_x_unary_op (code, expr, tf_warning_or_error);
7c355bca
ML
2289 /* Inside a template, build_x_unary_op does not fold the
2290 expression. So check whether the result is folded before
2291 setting TREE_NEGATED_INT. */
2292 if (code == NEGATE_EXPR && TREE_CODE (expr) == INTEGER_CST
88b4335f 2293 && TREE_CODE (result) == INTEGER_CST
8df83eae 2294 && !TYPE_UNSIGNED (TREE_TYPE (result))
88b4335f 2295 && INT_CST_LT (result, integer_zero_node))
6fc98adf
MM
2296 {
2297 /* RESULT may be a cached INTEGER_CST, so we must copy it before
2298 setting TREE_NEGATED_INT. */
2299 result = copy_node (result);
2300 TREE_NEGATED_INT (result) = 1;
2301 }
59c0753d 2302 if (TREE_OVERFLOW_P (result) && !TREE_OVERFLOW_P (expr))
c2255bc4 2303 overflow_warning (input_location, result);
59c0753d 2304
ce4a0391
MM
2305 return result;
2306}
2307
a723baf1 2308/* Finish a compound-literal expression. TYPE is the type to which
09357846 2309 the CONSTRUCTOR in COMPOUND_LITERAL is being cast. */
a723baf1
MM
2310
2311tree
834aa426
JM
2312finish_compound_literal (tree type, tree compound_literal,
2313 tsubst_flags_t complain)
a723baf1 2314{
326a4d4e
JJ
2315 if (type == error_mark_node)
2316 return error_mark_node;
2317
76186d20
JM
2318 if (TREE_CODE (type) == REFERENCE_TYPE)
2319 {
2320 compound_literal
2321 = finish_compound_literal (TREE_TYPE (type), compound_literal,
2322 complain);
2323 return cp_build_c_cast (type, compound_literal, complain);
2324 }
2325
2b643eda
MM
2326 if (!TYPE_OBJ_P (type))
2327 {
834aa426
JM
2328 if (complain & tf_error)
2329 error ("compound literal of non-object type %qT", type);
2b643eda
MM
2330 return error_mark_node;
2331 }
2332
a723baf1 2333 if (processing_template_decl)
a723baf1 2334 {
e92fb501
MM
2335 TREE_TYPE (compound_literal) = type;
2336 /* Mark the expression as a compound literal. */
2337 TREE_HAS_CONSTRUCTOR (compound_literal) = 1;
2338 return compound_literal;
a723baf1
MM
2339 }
2340
df794884 2341 type = complete_type (type);
09357846
JM
2342
2343 if (TYPE_NON_AGGREGATE_CLASS (type))
2344 {
2345 /* Trying to deal with a CONSTRUCTOR instead of a TREE_LIST
2346 everywhere that deals with function arguments would be a pain, so
2347 just wrap it in a TREE_LIST. The parser set a flag so we know
2348 that it came from T{} rather than T({}). */
2349 CONSTRUCTOR_IS_DIRECT_INIT (compound_literal) = 1;
2350 compound_literal = build_tree_list (NULL_TREE, compound_literal);
834aa426 2351 return build_functional_cast (type, compound_literal, complain);
09357846
JM
2352 }
2353
23bee8f4
JJ
2354 if (TREE_CODE (type) == ARRAY_TYPE
2355 && check_array_initializer (NULL_TREE, type, compound_literal))
2356 return error_mark_node;
df794884 2357 compound_literal = reshape_init (type, compound_literal);
80c6dcf5
JM
2358 if (TREE_CODE (type) == ARRAY_TYPE
2359 && TYPE_DOMAIN (type) == NULL_TREE)
2360 {
2361 cp_complete_array_type_or_error (&type, compound_literal,
2362 false, complain);
2363 if (type == error_mark_node)
2364 return error_mark_node;
2365 }
df794884 2366 compound_literal = digest_init (type, compound_literal);
a63940ba
JM
2367 /* Put static/constant array temporaries in static variables, but always
2368 represent class temporaries with TARGET_EXPR so we elide copies. */
2369 if ((!at_function_scope_p () || CP_TYPE_CONST_P (type))
2370 && TREE_CODE (type) == ARRAY_TYPE
2371 && initializer_constant_valid_p (compound_literal, type))
2372 {
2373 tree decl = create_temporary_var (type);
2374 DECL_INITIAL (decl) = compound_literal;
2375 TREE_STATIC (decl) = 1;
2376 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
2377 {
2378 /* 5.19 says that a constant expression can include an
2379 lvalue-rvalue conversion applied to "a glvalue of literal type
2380 that refers to a non-volatile temporary object initialized
2381 with a constant expression". Rather than try to communicate
2382 that this VAR_DECL is a temporary, just mark it constexpr. */
2383 DECL_DECLARED_CONSTEXPR_P (decl) = true;
2384 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
2385 TREE_CONSTANT (decl) = true;
2386 }
2387 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
2388 decl = pushdecl_top_level (decl);
2389 DECL_NAME (decl) = make_anon_name ();
2390 SET_DECL_ASSEMBLER_NAME (decl, DECL_NAME (decl));
2391 return decl;
2392 }
2393 else
2394 return get_target_expr (compound_literal);
a723baf1
MM
2395}
2396
5f261ba9
MM
2397/* Return the declaration for the function-name variable indicated by
2398 ID. */
2399
2400tree
2401finish_fname (tree id)
2402{
2403 tree decl;
c8094d83 2404
3ba09659 2405 decl = fname_decl (input_location, C_RID_CODE (id), id);
be771f25 2406 if (processing_template_decl && current_function_decl)
10b1d5e7 2407 decl = DECL_NAME (decl);
5f261ba9
MM
2408 return decl;
2409}
2410
8014a339 2411/* Finish a translation unit. */
ce4a0391 2412
c8094d83 2413void
3a978d72 2414finish_translation_unit (void)
ce4a0391
MM
2415{
2416 /* In case there were missing closebraces,
2417 get us back to the global binding level. */
273a708f 2418 pop_everything ();
ce4a0391
MM
2419 while (current_namespace != global_namespace)
2420 pop_namespace ();
0ba8a114 2421
c6002625 2422 /* Do file scope __FUNCTION__ et al. */
0ba8a114 2423 finish_fname_decls ();
ce4a0391
MM
2424}
2425
b4c4a9ec
MM
2426/* Finish a template type parameter, specified as AGGR IDENTIFIER.
2427 Returns the parameter. */
2428
c8094d83 2429tree
3a978d72 2430finish_template_type_parm (tree aggr, tree identifier)
b4c4a9ec 2431{
6eabb241 2432 if (aggr != class_type_node)
b4c4a9ec 2433 {
cbe5f3b3 2434 permerror (input_location, "template type parameters must use the keyword %<class%> or %<typename%>");
b4c4a9ec
MM
2435 aggr = class_type_node;
2436 }
2437
2438 return build_tree_list (aggr, identifier);
2439}
2440
2441/* Finish a template template parameter, specified as AGGR IDENTIFIER.
2442 Returns the parameter. */
2443
c8094d83 2444tree
3a978d72 2445finish_template_template_parm (tree aggr, tree identifier)
b4c4a9ec 2446{
c2255bc4
AH
2447 tree decl = build_decl (input_location,
2448 TYPE_DECL, identifier, NULL_TREE);
b4c4a9ec
MM
2449 tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2450 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2451 DECL_TEMPLATE_RESULT (tmpl) = decl;
c727aa5e 2452 DECL_ARTIFICIAL (decl) = 1;
b4c4a9ec
MM
2453 end_template_decl ();
2454
50bc768d 2455 gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
b37bf5bd 2456
85d85234
DG
2457 check_default_tmpl_args (decl, DECL_TEMPLATE_PARMS (tmpl),
2458 /*is_primary=*/true, /*is_partial=*/false,
2459 /*is_friend=*/0);
2460
b4c4a9ec
MM
2461 return finish_template_type_parm (aggr, tmpl);
2462}
ce4a0391 2463
8ba658ee
MM
2464/* ARGUMENT is the default-argument value for a template template
2465 parameter. If ARGUMENT is invalid, issue error messages and return
2466 the ERROR_MARK_NODE. Otherwise, ARGUMENT itself is returned. */
2467
2468tree
2469check_template_template_default_arg (tree argument)
2470{
2471 if (TREE_CODE (argument) != TEMPLATE_DECL
2472 && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
8ba658ee
MM
2473 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
2474 {
a3a503a5 2475 if (TREE_CODE (argument) == TYPE_DECL)
e488a090
VR
2476 error ("invalid use of type %qT as a default value for a template "
2477 "template-parameter", TREE_TYPE (argument));
a3a503a5
GB
2478 else
2479 error ("invalid default argument for a template template parameter");
8ba658ee
MM
2480 return error_mark_node;
2481 }
2482
2483 return argument;
2484}
2485
ce4a0391
MM
2486/* Begin a class definition, as indicated by T. */
2487
2488tree
b9e75696 2489begin_class_definition (tree t, tree attributes)
ce4a0391 2490{
7d2f0ecd 2491 if (error_operand_p (t) || error_operand_p (TYPE_MAIN_DECL (t)))
7437519c
ZW
2492 return error_mark_node;
2493
522d6614
NS
2494 if (processing_template_parmlist)
2495 {
a82e1a7d 2496 error ("definition of %q#T inside template parameter list", t);
522d6614
NS
2497 return error_mark_node;
2498 }
ebf0bf7f
JJ
2499
2500 /* According to the C++ ABI, decimal classes defined in ISO/IEC TR 24733
2501 are passed the same as decimal scalar types. */
cd924144
JM
2502 if (TREE_CODE (t) == RECORD_TYPE
2503 && !processing_template_decl)
ebf0bf7f 2504 {
cd924144
JM
2505 tree ns = TYPE_CONTEXT (t);
2506 if (ns && TREE_CODE (ns) == NAMESPACE_DECL
2507 && DECL_CONTEXT (ns) == std_node
935c0a5d 2508 && DECL_NAME (ns)
cd924144
JM
2509 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (ns)), "decimal"))
2510 {
2511 const char *n = TYPE_NAME_STRING (t);
2512 if ((strcmp (n, "decimal32") == 0)
2513 || (strcmp (n, "decimal64") == 0)
2514 || (strcmp (n, "decimal128") == 0))
2515 TYPE_TRANSPARENT_AGGR (t) = 1;
2516 }
ebf0bf7f
JJ
2517 }
2518
47ee8904
MM
2519 /* A non-implicit typename comes from code like:
2520
2521 template <typename T> struct A {
0cbd7506 2522 template <typename U> struct A<T>::B ...
47ee8904
MM
2523
2524 This is erroneous. */
2525 else if (TREE_CODE (t) == TYPENAME_TYPE)
2526 {
a82e1a7d 2527 error ("invalid definition of qualified type %qT", t);
47ee8904
MM
2528 t = error_mark_node;
2529 }
2530
9e1e64ec 2531 if (t == error_mark_node || ! MAYBE_CLASS_TYPE_P (t))
ce4a0391 2532 {
9e1e64ec 2533 t = make_class_type (RECORD_TYPE);
bd3d082e 2534 pushtag (make_anon_name (), t, /*tag_scope=*/ts_current);
ce4a0391 2535 }
830fcda8 2536
4c571114 2537 if (TYPE_BEING_DEFINED (t))
ce4a0391 2538 {
9e1e64ec 2539 t = make_class_type (TREE_CODE (t));
bd3d082e 2540 pushtag (TYPE_IDENTIFIER (t), t, /*tag_scope=*/ts_current);
ce4a0391 2541 }
ff350acd 2542 maybe_process_partial_specialization (t);
29370796 2543 pushclass (t);
ce4a0391 2544 TYPE_BEING_DEFINED (t) = 1;
b9e75696
JM
2545
2546 cplus_decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
8943989d 2547 fixup_attribute_variants (t);
b9e75696 2548
c0694c4b
MM
2549 if (flag_pack_struct)
2550 {
2551 tree v;
2552 TYPE_PACKED (t) = 1;
2553 /* Even though the type is being defined for the first time
2554 here, there might have been a forward declaration, so there
2555 might be cv-qualified variants of T. */
2556 for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
2557 TYPE_PACKED (v) = 1;
2558 }
ce4a0391
MM
2559 /* Reset the interface data, at the earliest possible
2560 moment, as it might have been set via a class foo;
2561 before. */
1951a1b6
JM
2562 if (! TYPE_ANONYMOUS_P (t))
2563 {
c533e34d 2564 struct c_fileinfo *finfo = get_fileinfo (input_filename);
5d709b00 2565 CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
1951a1b6 2566 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
5d709b00 2567 (t, finfo->interface_unknown);
1951a1b6 2568 }
ce4a0391 2569 reset_specialization();
c8094d83 2570
b7975aed
MM
2571 /* Make a declaration for this class in its own scope. */
2572 build_self_reference ();
2573
830fcda8 2574 return t;
ce4a0391
MM
2575}
2576
61a127b3
MM
2577/* Finish the member declaration given by DECL. */
2578
2579void
3a978d72 2580finish_member_declaration (tree decl)
61a127b3
MM
2581{
2582 if (decl == error_mark_node || decl == NULL_TREE)
2583 return;
2584
2585 if (decl == void_type_node)
2586 /* The COMPONENT was a friend, not a member, and so there's
2587 nothing for us to do. */
2588 return;
2589
2590 /* We should see only one DECL at a time. */
910ad8de 2591 gcc_assert (DECL_CHAIN (decl) == NULL_TREE);
61a127b3
MM
2592
2593 /* Set up access control for DECL. */
c8094d83 2594 TREE_PRIVATE (decl)
61a127b3 2595 = (current_access_specifier == access_private_node);
c8094d83 2596 TREE_PROTECTED (decl)
61a127b3
MM
2597 = (current_access_specifier == access_protected_node);
2598 if (TREE_CODE (decl) == TEMPLATE_DECL)
2599 {
17aec3eb
RK
2600 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
2601 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
61a127b3
MM
2602 }
2603
2604 /* Mark the DECL as a member of the current class. */
4f1c5b7d 2605 DECL_CONTEXT (decl) = current_class_type;
61a127b3 2606
b1d7b1c0 2607 /* Check for bare parameter packs in the member variable declaration. */
1ad8aeeb 2608 if (TREE_CODE (decl) == FIELD_DECL)
4439d02f 2609 {
7b3e2d46 2610 if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
4439d02f 2611 TREE_TYPE (decl) = error_mark_node;
7b3e2d46 2612 if (check_for_bare_parameter_packs (DECL_ATTRIBUTES (decl)))
4439d02f
DG
2613 DECL_ATTRIBUTES (decl) = NULL_TREE;
2614 }
b1d7b1c0 2615
421844e7
MM
2616 /* [dcl.link]
2617
2618 A C language linkage is ignored for the names of class members
2619 and the member function type of class member functions. */
2620 if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
5d2ed28c 2621 SET_DECL_LANGUAGE (decl, lang_cplusplus);
421844e7 2622
61a127b3
MM
2623 /* Put functions on the TYPE_METHODS list and everything else on the
2624 TYPE_FIELDS list. Note that these are built up in reverse order.
2625 We reverse them (to obtain declaration order) in finish_struct. */
c8094d83 2626 if (TREE_CODE (decl) == FUNCTION_DECL
61a127b3
MM
2627 || DECL_FUNCTION_TEMPLATE_P (decl))
2628 {
2629 /* We also need to add this function to the
2630 CLASSTYPE_METHOD_VEC. */
b77fe7b4
NS
2631 if (add_method (current_class_type, decl, NULL_TREE))
2632 {
910ad8de 2633 DECL_CHAIN (decl) = TYPE_METHODS (current_class_type);
b77fe7b4 2634 TYPE_METHODS (current_class_type) = decl;
f139561c 2635
b77fe7b4
NS
2636 maybe_add_class_template_decl_list (current_class_type, decl,
2637 /*friend_p=*/0);
2638 }
61a127b3 2639 }
f139561c 2640 /* Enter the DECL into the scope of the class. */
98ed9dae 2641 else if ((TREE_CODE (decl) == USING_DECL && !DECL_DEPENDENT_P (decl))
399dedb9 2642 || pushdecl_class_level (decl))
61a127b3
MM
2643 {
2644 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
2645 go at the beginning. The reason is that lookup_field_1
2646 searches the list in order, and we want a field name to
2647 override a type name so that the "struct stat hack" will
2648 work. In particular:
2649
2650 struct S { enum E { }; int E } s;
2651 s.E = 3;
2652
0e339752 2653 is valid. In addition, the FIELD_DECLs must be maintained in
61a127b3
MM
2654 declaration order so that class layout works as expected.
2655 However, we don't need that order until class layout, so we
2656 save a little time by putting FIELD_DECLs on in reverse order
2657 here, and then reversing them in finish_struct_1. (We could
2658 also keep a pointer to the correct insertion points in the
2659 list.) */
2660
2661 if (TREE_CODE (decl) == TYPE_DECL)
c8094d83 2662 TYPE_FIELDS (current_class_type)
61a127b3
MM
2663 = chainon (TYPE_FIELDS (current_class_type), decl);
2664 else
2665 {
910ad8de 2666 DECL_CHAIN (decl) = TYPE_FIELDS (current_class_type);
61a127b3
MM
2667 TYPE_FIELDS (current_class_type) = decl;
2668 }
8f032717 2669
c8094d83 2670 maybe_add_class_template_decl_list (current_class_type, decl,
f139561c 2671 /*friend_p=*/0);
61a127b3 2672 }
5e2f4cd2
MM
2673
2674 if (pch_file)
2675 note_decl_for_pch (decl);
2676}
2677
2678/* DECL has been declared while we are building a PCH file. Perform
2679 actions that we might normally undertake lazily, but which can be
2680 performed now so that they do not have to be performed in
2681 translation units which include the PCH file. */
2682
2683void
2684note_decl_for_pch (tree decl)
2685{
2686 gcc_assert (pch_file);
2687
5e2f4cd2
MM
2688 /* There's a good chance that we'll have to mangle names at some
2689 point, even if only for emission in debugging information. */
ec0897de
JM
2690 if ((TREE_CODE (decl) == VAR_DECL
2691 || TREE_CODE (decl) == FUNCTION_DECL)
2692 && !processing_template_decl)
5e2f4cd2 2693 mangle_decl (decl);
61a127b3
MM
2694}
2695
306ef644 2696/* Finish processing a complete template declaration. The PARMS are
36a117a5
MM
2697 the template parameters. */
2698
2699void
3a978d72 2700finish_template_decl (tree parms)
36a117a5
MM
2701{
2702 if (parms)
2703 end_template_decl ();
2704 else
2705 end_specialization ();
2706}
2707
509fc277 2708/* Finish processing a template-id (which names a type) of the form
36a117a5 2709 NAME < ARGS >. Return the TYPE_DECL for the type named by the
838dfd8a 2710 template-id. If ENTERING_SCOPE is nonzero we are about to enter
36a117a5
MM
2711 the scope of template-id indicated. */
2712
2713tree
3a978d72 2714finish_template_type (tree name, tree args, int entering_scope)
36a117a5
MM
2715{
2716 tree decl;
2717
2718 decl = lookup_template_class (name, args,
42eaed49 2719 NULL_TREE, NULL_TREE, entering_scope,
23fca1f5 2720 tf_warning_or_error | tf_user);
36a117a5
MM
2721 if (decl != error_mark_node)
2722 decl = TYPE_STUB_DECL (decl);
2723
2724 return decl;
2725}
648f19f6 2726
ea6021e8
MM
2727/* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
2728 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
2729 BASE_CLASS, or NULL_TREE if an error occurred. The
aba649ba 2730 ACCESS_SPECIFIER is one of
809e3e7f
NS
2731 access_{default,public,protected_private}_node. For a virtual base
2732 we set TREE_TYPE. */
ea6021e8 2733
c8094d83 2734tree
dbbf88d1 2735finish_base_specifier (tree base, tree access, bool virtual_p)
ea6021e8 2736{
ea6021e8
MM
2737 tree result;
2738
dbbf88d1 2739 if (base == error_mark_node)
acb044ee
GDR
2740 {
2741 error ("invalid base-class specification");
2742 result = NULL_TREE;
2743 }
9e1e64ec
PC
2744 else if (! MAYBE_CLASS_TYPE_P (base))
2745 {
2746 error ("%qT is not a class type", base);
2747 result = NULL_TREE;
2748 }
ea6021e8 2749 else
bb92901d 2750 {
dbbf88d1 2751 if (cp_type_quals (base) != 0)
0cbd7506
MS
2752 {
2753 error ("base class %qT has cv qualifiers", base);
2754 base = TYPE_MAIN_VARIANT (base);
2755 }
dbbf88d1 2756 result = build_tree_list (access, base);
809e3e7f
NS
2757 if (virtual_p)
2758 TREE_TYPE (result) = integer_type_node;
bb92901d 2759 }
ea6021e8
MM
2760
2761 return result;
2762}
61a127b3 2763
eff3a276
MM
2764/* If FNS is a member function, a set of member functions, or a
2765 template-id referring to one or more member functions, return a
2766 BASELINK for FNS, incorporating the current access context.
2767 Otherwise, return FNS unchanged. */
2768
2769tree
2770baselink_for_fns (tree fns)
2771{
2772 tree fn;
2773 tree cl;
2774
2775 if (BASELINK_P (fns)
eff3a276
MM
2776 || error_operand_p (fns))
2777 return fns;
2778
2779 fn = fns;
2780 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2781 fn = TREE_OPERAND (fn, 0);
2782 fn = get_first_fn (fn);
2783 if (!DECL_FUNCTION_MEMBER_P (fn))
2784 return fns;
2785
2786 cl = currently_open_derived_class (DECL_CONTEXT (fn));
2787 if (!cl)
2788 cl = DECL_CONTEXT (fn);
2789 cl = TYPE_BINFO (cl);
5a40306b 2790 return build_baselink (cl, cl, fns, /*optype=*/NULL_TREE);
eff3a276
MM
2791}
2792
d5f4eddd
JM
2793/* Returns true iff DECL is an automatic variable from a function outside
2794 the current one. */
2795
2796static bool
2797outer_automatic_var_p (tree decl)
2798{
2799 return ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
2800 && DECL_FUNCTION_SCOPE_P (decl)
2801 && !TREE_STATIC (decl)
2802 && DECL_CONTEXT (decl) != current_function_decl);
2803}
2804
9660afe0
JM
2805/* Returns true iff DECL is a capture field from a lambda that is not our
2806 immediate context. */
2807
2808static bool
2809outer_lambda_capture_p (tree decl)
2810{
2811 return (TREE_CODE (decl) == FIELD_DECL
2812 && LAMBDA_TYPE_P (DECL_CONTEXT (decl))
19030d77
JM
2813 && (!current_class_type
2814 || !DERIVED_FROM_P (DECL_CONTEXT (decl), current_class_type)));
9660afe0
JM
2815}
2816
b3445994
MM
2817/* ID_EXPRESSION is a representation of parsed, but unprocessed,
2818 id-expression. (See cp_parser_id_expression for details.) SCOPE,
2819 if non-NULL, is the type or namespace used to explicitly qualify
2820 ID_EXPRESSION. DECL is the entity to which that name has been
c8094d83 2821 resolved.
b3445994
MM
2822
2823 *CONSTANT_EXPRESSION_P is true if we are presently parsing a
2824 constant-expression. In that case, *NON_CONSTANT_EXPRESSION_P will
2825 be set to true if this expression isn't permitted in a
2826 constant-expression, but it is otherwise not set by this function.
2827 *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
2828 constant-expression, but a non-constant expression is also
2829 permissible.
2830
02ed62dd
MM
2831 DONE is true if this expression is a complete postfix-expression;
2832 it is false if this expression is followed by '->', '[', '(', etc.
2833 ADDRESS_P is true iff this expression is the operand of '&'.
2834 TEMPLATE_P is true iff the qualified-id was of the form
2835 "A::template B". TEMPLATE_ARG_P is true iff this qualified name
2836 appears as a template argument.
2837
b3445994
MM
2838 If an error occurs, and it is the kind of error that might cause
2839 the parser to abort a tentative parse, *ERROR_MSG is filled in. It
2840 is the caller's responsibility to issue the message. *ERROR_MSG
2841 will be a string with static storage duration, so the caller need
2842 not "free" it.
2843
2844 Return an expression for the entity, after issuing appropriate
2845 diagnostics. This function is also responsible for transforming a
2846 reference to a non-static member into a COMPONENT_REF that makes
c8094d83 2847 the use of "this" explicit.
b3445994
MM
2848
2849 Upon return, *IDK will be filled in appropriately. */
b3445994 2850tree
c8094d83 2851finish_id_expression (tree id_expression,
b3445994
MM
2852 tree decl,
2853 tree scope,
2854 cp_id_kind *idk,
67c03833
JM
2855 bool integral_constant_expression_p,
2856 bool allow_non_integral_constant_expression_p,
2857 bool *non_integral_constant_expression_p,
02ed62dd
MM
2858 bool template_p,
2859 bool done,
2860 bool address_p,
2861 bool template_arg_p,
2b7a3abf
DS
2862 const char **error_msg,
2863 location_t location)
b3445994
MM
2864{
2865 /* Initialize the output parameters. */
2866 *idk = CP_ID_KIND_NONE;
2867 *error_msg = NULL;
2868
2869 if (id_expression == error_mark_node)
2870 return error_mark_node;
2871 /* If we have a template-id, then no further lookup is
2872 required. If the template-id was for a template-class, we
2873 will sometimes have a TYPE_DECL at this point. */
2874 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
ee935db4 2875 || TREE_CODE (decl) == TYPE_DECL)
b3445994
MM
2876 ;
2877 /* Look up the name. */
c8094d83 2878 else
b3445994
MM
2879 {
2880 if (decl == error_mark_node)
2881 {
2882 /* Name lookup failed. */
c8094d83
MS
2883 if (scope
2884 && (!TYPE_P (scope)
4546865e
MM
2885 || (!dependent_type_p (scope)
2886 && !(TREE_CODE (id_expression) == IDENTIFIER_NODE
2887 && IDENTIFIER_TYPENAME_P (id_expression)
2888 && dependent_type_p (TREE_TYPE (id_expression))))))
b3445994 2889 {
4546865e
MM
2890 /* If the qualifying type is non-dependent (and the name
2891 does not name a conversion operator to a dependent
2892 type), issue an error. */
2b7a3abf 2893 qualified_name_lookup_error (scope, id_expression, decl, location);
b3445994
MM
2894 return error_mark_node;
2895 }
2896 else if (!scope)
2897 {
2898 /* It may be resolved via Koenig lookup. */
2899 *idk = CP_ID_KIND_UNQUALIFIED;
2900 return id_expression;
2901 }
4546865e
MM
2902 else
2903 decl = id_expression;
b3445994
MM
2904 }
2905 /* If DECL is a variable that would be out of scope under
2906 ANSI/ISO rules, but in scope in the ARM, name lookup
2907 will succeed. Issue a diagnostic here. */
2908 else
2909 decl = check_for_out_of_scope_variable (decl);
2910
2911 /* Remember that the name was used in the definition of
2912 the current class so that we can check later to see if
2913 the meaning would have been different after the class
2914 was entirely defined. */
c97c25c0
JM
2915 if (!scope && decl != error_mark_node
2916 && TREE_CODE (id_expression) == IDENTIFIER_NODE)
b3445994 2917 maybe_note_name_used_in_class (id_expression, decl);
8ca4bf25 2918
d5f4eddd
JM
2919 /* Disallow uses of local variables from containing functions, except
2920 within lambda-expressions. */
9660afe0
JM
2921 if ((outer_automatic_var_p (decl)
2922 || outer_lambda_capture_p (decl))
d5f4eddd
JM
2923 /* It's not a use (3.2) if we're in an unevaluated context. */
2924 && !cp_unevaluated_operand)
8ca4bf25 2925 {
d5f4eddd
JM
2926 tree context = DECL_CONTEXT (decl);
2927 tree containing_function = current_function_decl;
2928 tree lambda_stack = NULL_TREE;
2929 tree lambda_expr = NULL_TREE;
9660afe0 2930 tree initializer = decl;
d5f4eddd
JM
2931
2932 /* Core issue 696: "[At the July 2009 meeting] the CWG expressed
2933 support for an approach in which a reference to a local
2934 [constant] automatic variable in a nested class or lambda body
2935 would enter the expression as an rvalue, which would reduce
2936 the complexity of the problem"
2937
2938 FIXME update for final resolution of core issue 696. */
aef4a215 2939 if (decl_constant_var_p (decl))
d5f4eddd
JM
2940 return integral_constant_value (decl);
2941
9660afe0
JM
2942 if (TYPE_P (context))
2943 {
2944 /* Implicit capture of an explicit capture. */
2945 context = lambda_function (context);
2946 initializer = thisify_lambda_field (decl);
2947 }
2948
d5f4eddd
JM
2949 /* If we are in a lambda function, we can move out until we hit
2950 1. the context,
2951 2. a non-lambda function, or
2952 3. a non-default capturing lambda function. */
2953 while (context != containing_function
2954 && LAMBDA_FUNCTION_P (containing_function))
2955 {
2956 lambda_expr = CLASSTYPE_LAMBDA_EXPR
2957 (DECL_CONTEXT (containing_function));
2958
2959 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr)
2960 == CPLD_NONE)
2961 break;
2962
2963 lambda_stack = tree_cons (NULL_TREE,
2964 lambda_expr,
2965 lambda_stack);
2966
2967 containing_function
2968 = decl_function_context (containing_function);
2969 }
2970
2971 if (context == containing_function)
2972 {
2973 decl = add_default_capture (lambda_stack,
2974 /*id=*/DECL_NAME (decl),
9660afe0 2975 initializer);
d5f4eddd
JM
2976 }
2977 else if (lambda_expr)
2978 {
2979 error ("%qD is not captured", decl);
2980 return error_mark_node;
2981 }
2982 else
8ca4bf25
MM
2983 {
2984 error (TREE_CODE (decl) == VAR_DECL
2985 ? "use of %<auto%> variable from containing function"
2986 : "use of parameter from containing function");
2987 error (" %q+#D declared here", decl);
2988 return error_mark_node;
2989 }
2990 }
da9bc840
JM
2991
2992 /* Also disallow uses of function parameters outside the function
2993 body, except inside an unevaluated context (i.e. decltype). */
2994 if (TREE_CODE (decl) == PARM_DECL
2995 && DECL_CONTEXT (decl) == NULL_TREE
2996 && !cp_unevaluated_operand)
2997 {
2998 error ("use of parameter %qD outside function body", decl);
2999 return error_mark_node;
3000 }
b3445994
MM
3001 }
3002
3003 /* If we didn't find anything, or what we found was a type,
3004 then this wasn't really an id-expression. */
3005 if (TREE_CODE (decl) == TEMPLATE_DECL
3006 && !DECL_FUNCTION_TEMPLATE_P (decl))
3007 {
3008 *error_msg = "missing template arguments";
3009 return error_mark_node;
3010 }
3011 else if (TREE_CODE (decl) == TYPE_DECL
3012 || TREE_CODE (decl) == NAMESPACE_DECL)
3013 {
3014 *error_msg = "expected primary-expression";
3015 return error_mark_node;
3016 }
3017
3018 /* If the name resolved to a template parameter, there is no
931a9c05
GB
3019 need to look it up again later. */
3020 if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
3021 || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
b3445994 3022 {
db24eb1f 3023 tree r;
c8094d83 3024
b3445994 3025 *idk = CP_ID_KIND_NONE;
931a9c05
GB
3026 if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3027 decl = TEMPLATE_PARM_DECL (decl);
db24eb1f 3028 r = convert_from_reference (DECL_INITIAL (decl));
c8094d83
MS
3029
3030 if (integral_constant_expression_p
68deab91 3031 && !dependent_type_p (TREE_TYPE (decl))
db24eb1f 3032 && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r))))
931a9c05 3033 {
67c03833 3034 if (!allow_non_integral_constant_expression_p)
a82e1a7d 3035 error ("template parameter %qD of type %qT is not allowed in "
931a9c05
GB
3036 "an integral constant expression because it is not of "
3037 "integral or enumeration type", decl, TREE_TYPE (decl));
67c03833 3038 *non_integral_constant_expression_p = true;
931a9c05 3039 }
db24eb1f 3040 return r;
931a9c05 3041 }
c8094d83 3042 /* Similarly, we resolve enumeration constants to their
931a9c05
GB
3043 underlying values. */
3044 else if (TREE_CODE (decl) == CONST_DECL)
3045 {
3046 *idk = CP_ID_KIND_NONE;
3047 if (!processing_template_decl)
6193b8b7
DJ
3048 {
3049 used_types_insert (TREE_TYPE (decl));
3050 return DECL_INITIAL (decl);
3051 }
b3445994
MM
3052 return decl;
3053 }
3054 else
3055 {
3056 bool dependent_p;
3057
3058 /* If the declaration was explicitly qualified indicate
3059 that. The semantics of `A::f(3)' are different than
3060 `f(3)' if `f' is virtual. */
c8094d83 3061 *idk = (scope
b3445994
MM
3062 ? CP_ID_KIND_QUALIFIED
3063 : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3064 ? CP_ID_KIND_TEMPLATE_ID
3065 : CP_ID_KIND_UNQUALIFIED));
3066
3067
3068 /* [temp.dep.expr]
3069
3070 An id-expression is type-dependent if it contains an
3071 identifier that was declared with a dependent type.
3072
b3445994
MM
3073 The standard is not very specific about an id-expression that
3074 names a set of overloaded functions. What if some of them
3075 have dependent types and some of them do not? Presumably,
3076 such a name should be treated as a dependent name. */
3077 /* Assume the name is not dependent. */
3078 dependent_p = false;
3079 if (!processing_template_decl)
3080 /* No names are dependent outside a template. */
3081 ;
3082 /* A template-id where the name of the template was not resolved
3083 is definitely dependent. */
3084 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
c8094d83 3085 && (TREE_CODE (TREE_OPERAND (decl, 0))
b3445994
MM
3086 == IDENTIFIER_NODE))
3087 dependent_p = true;
3088 /* For anything except an overloaded function, just check its
3089 type. */
3090 else if (!is_overloaded_fn (decl))
c8094d83 3091 dependent_p
b3445994
MM
3092 = dependent_type_p (TREE_TYPE (decl));
3093 /* For a set of overloaded functions, check each of the
3094 functions. */
3095 else
3096 {
3097 tree fns = decl;
3098
3099 if (BASELINK_P (fns))
3100 fns = BASELINK_FUNCTIONS (fns);
3101
3102 /* For a template-id, check to see if the template
3103 arguments are dependent. */
3104 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
3105 {
3106 tree args = TREE_OPERAND (fns, 1);
3107 dependent_p = any_dependent_template_arguments_p (args);
3108 /* The functions are those referred to by the
3109 template-id. */
3110 fns = TREE_OPERAND (fns, 0);
3111 }
3112
3113 /* If there are no dependent template arguments, go through
cd0be382 3114 the overloaded functions. */
b3445994
MM
3115 while (fns && !dependent_p)
3116 {
3117 tree fn = OVL_CURRENT (fns);
3118
3119 /* Member functions of dependent classes are
3120 dependent. */
3121 if (TREE_CODE (fn) == FUNCTION_DECL
3122 && type_dependent_expression_p (fn))
3123 dependent_p = true;
3124 else if (TREE_CODE (fn) == TEMPLATE_DECL
3125 && dependent_template_p (fn))
3126 dependent_p = true;
3127
3128 fns = OVL_NEXT (fns);
3129 }
3130 }
3131
3132 /* If the name was dependent on a template parameter, we will
3133 resolve the name at instantiation time. */
3134 if (dependent_p)
3135 {
3136 /* Create a SCOPE_REF for qualified names, if the scope is
3137 dependent. */
3138 if (scope)
3139 {
02ed62dd
MM
3140 if (TYPE_P (scope))
3141 {
3142 if (address_p && done)
3143 decl = finish_qualified_id_expr (scope, decl,
3144 done, address_p,
3145 template_p,
3146 template_arg_p);
7e361ae6
JM
3147 else
3148 {
3149 tree type = NULL_TREE;
3150 if (DECL_P (decl) && !dependent_scope_p (scope))
3151 type = TREE_TYPE (decl);
3152 decl = build_qualified_name (type,
3153 scope,
3154 id_expression,
3155 template_p);
3156 }
02ed62dd
MM
3157 }
3158 if (TREE_TYPE (decl))
3159 decl = convert_from_reference (decl);
3160 return decl;
b3445994
MM
3161 }
3162 /* A TEMPLATE_ID already contains all the information we
3163 need. */
3164 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR)
3165 return id_expression;
10b1d5e7 3166 *idk = CP_ID_KIND_UNQUALIFIED_DEPENDENT;
5a98fa7b
MM
3167 /* If we found a variable, then name lookup during the
3168 instantiation will always resolve to the same VAR_DECL
3169 (or an instantiation thereof). */
3c398f34
MM
3170 if (TREE_CODE (decl) == VAR_DECL
3171 || TREE_CODE (decl) == PARM_DECL)
db24eb1f 3172 return convert_from_reference (decl);
bad1f462
KL
3173 /* The same is true for FIELD_DECL, but we also need to
3174 make sure that the syntax is correct. */
3175 else if (TREE_CODE (decl) == FIELD_DECL)
a26ddf11
KL
3176 {
3177 /* Since SCOPE is NULL here, this is an unqualified name.
3178 Access checking has been performed during name lookup
3179 already. Turn off checking to avoid duplicate errors. */
3180 push_deferring_access_checks (dk_no_check);
3181 decl = finish_non_static_data_member
2defb926 3182 (decl, NULL_TREE,
a26ddf11
KL
3183 /*qualifying_scope=*/NULL_TREE);
3184 pop_deferring_access_checks ();
3185 return decl;
3186 }
10b1d5e7 3187 return id_expression;
b3445994
MM
3188 }
3189
415d4636 3190 if (TREE_CODE (decl) == NAMESPACE_DECL)
9e95d15f 3191 {
a82e1a7d 3192 error ("use of namespace %qD as expression", decl);
9e95d15f
NS
3193 return error_mark_node;
3194 }
3195 else if (DECL_CLASS_TEMPLATE_P (decl))
3196 {
a82e1a7d 3197 error ("use of class template %qT as expression", decl);
9e95d15f
NS
3198 return error_mark_node;
3199 }
3200 else if (TREE_CODE (decl) == TREE_LIST)
3201 {
3202 /* Ambiguous reference to base members. */
a82e1a7d 3203 error ("request for member %qD is ambiguous in "
9e95d15f
NS
3204 "multiple inheritance lattice", id_expression);
3205 print_candidates (decl);
3206 return error_mark_node;
3207 }
415d4636
MM
3208
3209 /* Mark variable-like entities as used. Functions are similarly
3210 marked either below or after overload resolution. */
3211 if (TREE_CODE (decl) == VAR_DECL
3212 || TREE_CODE (decl) == PARM_DECL
3213 || TREE_CODE (decl) == RESULT_DECL)
3214 mark_used (decl);
3215
aef4a215
JM
3216 /* Only certain kinds of names are allowed in constant
3217 expression. Enumerators and template parameters have already
3218 been handled above. */
7f7d4b12
DS
3219 if (! error_operand_p (decl)
3220 && integral_constant_expression_p
aef4a215
JM
3221 && ! decl_constant_var_p (decl)
3222 && ! builtin_valid_in_constant_expr_p (decl))
3223 {
3224 if (!allow_non_integral_constant_expression_p)
3225 {
3226 error ("%qD cannot appear in a constant-expression", decl);
3227 return error_mark_node;
3228 }
3229 *non_integral_constant_expression_p = true;
3230 }
3231
415d4636
MM
3232 if (scope)
3233 {
c8094d83 3234 decl = (adjust_result_of_qualified_name_lookup
415d4636 3235 (decl, scope, current_class_type));
e20bcc5e
JH
3236
3237 if (TREE_CODE (decl) == FUNCTION_DECL)
3238 mark_used (decl);
3239
415d4636 3240 if (TREE_CODE (decl) == FIELD_DECL || BASELINK_P (decl))
02ed62dd
MM
3241 decl = finish_qualified_id_expr (scope,
3242 decl,
3243 done,
3244 address_p,
3245 template_p,
3246 template_arg_p);
db24eb1f
NS
3247 else
3248 {
3249 tree r = convert_from_reference (decl);
c8094d83 3250
d3a79fcc
JM
3251 /* In a template, return a SCOPE_REF for most qualified-ids
3252 so that we can check access at instantiation time. But if
3253 we're looking at a member of the current instantiation, we
3254 know we have access and building up the SCOPE_REF confuses
3255 non-type template argument handling. */
3256 if (processing_template_decl && TYPE_P (scope)
3257 && !currently_open_class (scope))
02ed62dd
MM
3258 r = build_qualified_name (TREE_TYPE (r),
3259 scope, decl,
3260 template_p);
db24eb1f
NS
3261 decl = r;
3262 }
415d4636 3263 }
9e95d15f 3264 else if (TREE_CODE (decl) == FIELD_DECL)
a26ddf11
KL
3265 {
3266 /* Since SCOPE is NULL here, this is an unqualified name.
3267 Access checking has been performed during name lookup
3268 already. Turn off checking to avoid duplicate errors. */
3269 push_deferring_access_checks (dk_no_check);
2defb926 3270 decl = finish_non_static_data_member (decl, NULL_TREE,
a26ddf11
KL
3271 /*qualifying_scope=*/NULL_TREE);
3272 pop_deferring_access_checks ();
3273 }
9e95d15f
NS
3274 else if (is_overloaded_fn (decl))
3275 {
eff3a276 3276 tree first_fn;
b3445994 3277
294e855f 3278 first_fn = get_first_fn (decl);
9e95d15f
NS
3279 if (TREE_CODE (first_fn) == TEMPLATE_DECL)
3280 first_fn = DECL_TEMPLATE_RESULT (first_fn);
415d4636
MM
3281
3282 if (!really_overloaded_fn (decl))
3283 mark_used (first_fn);
3284
02ed62dd
MM
3285 if (!template_arg_p
3286 && TREE_CODE (first_fn) == FUNCTION_DECL
821eaf2a
MM
3287 && DECL_FUNCTION_MEMBER_P (first_fn)
3288 && !shared_member_p (decl))
9e95d15f
NS
3289 {
3290 /* A set of member functions. */
3291 decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
02ed62dd 3292 return finish_class_member_access_expr (decl, id_expression,
5ade1ed2
DG
3293 /*template_p=*/false,
3294 tf_warning_or_error);
9e95d15f 3295 }
eff3a276
MM
3296
3297 decl = baselink_for_fns (decl);
9e95d15f
NS
3298 }
3299 else
3300 {
9e95d15f 3301 if (DECL_P (decl) && DECL_NONLOCAL (decl)
24f58e74 3302 && DECL_CLASS_SCOPE_P (decl))
9e95d15f 3303 {
24f58e74
PC
3304 tree context = context_for_name_lookup (decl);
3305 if (context != current_class_type)
3306 {
3307 tree path = currently_open_derived_class (context);
3308 perform_or_defer_access_check (TYPE_BINFO (path),
3309 decl, decl);
3310 }
9e95d15f 3311 }
c8094d83 3312
db24eb1f 3313 decl = convert_from_reference (decl);
9e95d15f 3314 }
b3445994
MM
3315 }
3316
3317 if (TREE_DEPRECATED (decl))
9b86d6bb 3318 warn_deprecated_use (decl, NULL_TREE);
b3445994
MM
3319
3320 return decl;
3321}
3322
0213a355
JM
3323/* Implement the __typeof keyword: Return the type of EXPR, suitable for
3324 use as a type-specifier. */
3325
b894fc05 3326tree
3a978d72 3327finish_typeof (tree expr)
b894fc05 3328{
65a5559b
MM
3329 tree type;
3330
dffbbe80 3331 if (type_dependent_expression_p (expr))
b894fc05 3332 {
9e1e64ec 3333 type = cxx_make_type (TYPEOF_TYPE);
eb34af89 3334 TYPEOF_TYPE_EXPR (type) = expr;
3ad6a8e1 3335 SET_TYPE_STRUCTURAL_EQUALITY (type);
b894fc05 3336
65a5559b 3337 return type;
b894fc05
JM
3338 }
3339
03a904b5
JJ
3340 expr = mark_type_use (expr);
3341
3c38f0ff 3342 type = unlowered_expr_type (expr);
65a5559b
MM
3343
3344 if (!type || type == unknown_type_node)
3345 {
a82e1a7d 3346 error ("type of %qE is unknown", expr);
65a5559b
MM
3347 return error_mark_node;
3348 }
3349
3350 return type;
b894fc05 3351}
558475f0 3352
c291f8b1
VR
3353/* Perform C++-specific checks for __builtin_offsetof before calling
3354 fold_offsetof. */
3355
3356tree
3357finish_offsetof (tree expr)
3358{
4c65a534
VR
3359 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
3360 {
3361 error ("cannot apply %<offsetof%> to destructor %<~%T%>",
3362 TREE_OPERAND (expr, 2));
3363 return error_mark_node;
3364 }
c291f8b1
VR
3365 if (TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
3366 || TREE_CODE (TREE_TYPE (expr)) == METHOD_TYPE
fbfc8363 3367 || TREE_TYPE (expr) == unknown_type_node)
c291f8b1 3368 {
1916c916
VR
3369 if (TREE_CODE (expr) == COMPONENT_REF
3370 || TREE_CODE (expr) == COMPOUND_EXPR)
0a9367cb
VR
3371 expr = TREE_OPERAND (expr, 1);
3372 error ("cannot apply %<offsetof%> to member function %qD", expr);
c291f8b1
VR
3373 return error_mark_node;
3374 }
60c4d135
JJ
3375 if (TREE_CODE (expr) == INDIRECT_REF && REFERENCE_REF_P (expr))
3376 expr = TREE_OPERAND (expr, 0);
6d4d7b0e 3377 return fold_offsetof (expr, NULL_TREE);
c291f8b1
VR
3378}
3379
9eeb200f
JM
3380/* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR. This
3381 function is broken out from the above for the benefit of the tree-ssa
3382 project. */
3383
3384void
3385simplify_aggr_init_expr (tree *tp)
3386{
3387 tree aggr_init_expr = *tp;
3388
3eb24f73 3389 /* Form an appropriate CALL_EXPR. */
5039610b
SL
3390 tree fn = AGGR_INIT_EXPR_FN (aggr_init_expr);
3391 tree slot = AGGR_INIT_EXPR_SLOT (aggr_init_expr);
2692eb7d 3392 tree type = TREE_TYPE (slot);
9eeb200f
JM
3393
3394 tree call_expr;
3395 enum style_t { ctor, arg, pcc } style;
4977bab6 3396
3eb24f73 3397 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
4977bab6
ZW
3398 style = ctor;
3399#ifdef PCC_STATIC_STRUCT_RETURN
3400 else if (1)
3401 style = pcc;
3402#endif
4977bab6 3403 else
315fb5db
NS
3404 {
3405 gcc_assert (TREE_ADDRESSABLE (type));
3406 style = arg;
3407 }
4977bab6 3408
db3927fb
AH
3409 call_expr = build_call_array_loc (input_location,
3410 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
3411 fn,
3412 aggr_init_expr_nargs (aggr_init_expr),
3413 AGGR_INIT_EXPR_ARGP (aggr_init_expr));
d8a0d13e 3414 TREE_NOTHROW (call_expr) = TREE_NOTHROW (aggr_init_expr);
5039610b 3415
fa47911c 3416 if (style == ctor)
3eb24f73 3417 {
fa47911c
JM
3418 /* Replace the first argument to the ctor with the address of the
3419 slot. */
dffd7eb6 3420 cxx_mark_addressable (slot);
5039610b
SL
3421 CALL_EXPR_ARG (call_expr, 0) =
3422 build1 (ADDR_EXPR, build_pointer_type (type), slot);
3eb24f73 3423 }
5039610b 3424 else if (style == arg)
fa47911c
JM
3425 {
3426 /* Just mark it addressable here, and leave the rest to
3427 expand_call{,_inline}. */
3428 cxx_mark_addressable (slot);
3429 CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true;
941f78d1 3430 call_expr = build2 (INIT_EXPR, TREE_TYPE (call_expr), slot, call_expr);
fa47911c 3431 }
4977bab6 3432 else if (style == pcc)
3eb24f73 3433 {
4977bab6
ZW
3434 /* If we're using the non-reentrant PCC calling convention, then we
3435 need to copy the returned value out of the static buffer into the
3436 SLOT. */
78757caa 3437 push_deferring_access_checks (dk_no_check);
46af705a 3438 call_expr = build_aggr_init (slot, call_expr,
5ade1ed2
DG
3439 DIRECT_BIND | LOOKUP_ONLYCONVERTING,
3440 tf_warning_or_error);
78757caa 3441 pop_deferring_access_checks ();
d17791d6 3442 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot);
3eb24f73 3443 }
3eb24f73 3444
450a927a
JM
3445 if (AGGR_INIT_ZERO_FIRST (aggr_init_expr))
3446 {
3447 tree init = build_zero_init (type, NULL_TREE,
3448 /*static_storage_p=*/false);
3449 init = build2 (INIT_EXPR, void_type_node, slot, init);
3450 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (call_expr),
3451 init, call_expr);
3452 }
3453
3eb24f73 3454 *tp = call_expr;
3eb24f73
MM
3455}
3456
31f8e4f3
MM
3457/* Emit all thunks to FN that should be emitted when FN is emitted. */
3458
e89d6010 3459void
3a978d72 3460emit_associated_thunks (tree fn)
31f8e4f3
MM
3461{
3462 /* When we use vcall offsets, we emit thunks with the virtual
3463 functions to which they thunk. The whole point of vcall offsets
3464 is so that you can know statically the entire set of thunks that
3465 will ever be needed for a given virtual function, thereby
3466 enabling you to output all the thunks with the function itself. */
4537ec0c
DN
3467 if (DECL_VIRTUAL_P (fn)
3468 /* Do not emit thunks for extern template instantiations. */
3469 && ! DECL_REALLY_EXTERN (fn))
31f8e4f3 3470 {
bb5e8a7f 3471 tree thunk;
c8094d83 3472
910ad8de 3473 for (thunk = DECL_THUNKS (fn); thunk; thunk = DECL_CHAIN (thunk))
4977bab6 3474 {
e00853fd 3475 if (!THUNK_ALIAS (thunk))
4977bab6 3476 {
bb885938
NS
3477 use_thunk (thunk, /*emit_p=*/1);
3478 if (DECL_RESULT_THUNK_P (thunk))
3479 {
3480 tree probe;
c8094d83 3481
bb885938 3482 for (probe = DECL_THUNKS (thunk);
910ad8de 3483 probe; probe = DECL_CHAIN (probe))
bb885938
NS
3484 use_thunk (probe, /*emit_p=*/1);
3485 }
4977bab6 3486 }
bb885938 3487 else
50bc768d 3488 gcc_assert (!DECL_THUNKS (thunk));
4977bab6 3489 }
31f8e4f3
MM
3490 }
3491}
3492
558475f0
MM
3493/* Generate RTL for FN. */
3494
b2583345
JJ
3495bool
3496expand_or_defer_fn_1 (tree fn)
8cd2462c
JH
3497{
3498 /* When the parser calls us after finishing the body of a template
c353b8e3
MM
3499 function, we don't really want to expand the body. */
3500 if (processing_template_decl)
8cd2462c
JH
3501 {
3502 /* Normally, collection only occurs in rest_of_compilation. So,
3503 if we don't collect here, we never collect junk generated
3504 during the processing of templates until we hit a
27250734
MM
3505 non-template function. It's not safe to do this inside a
3506 nested class, though, as the parser may have local state that
3507 is not a GC root. */
3508 if (!function_depth)
3509 ggc_collect ();
b2583345 3510 return false;
8cd2462c
JH
3511 }
3512
a406865a 3513 gcc_assert (DECL_SAVED_TREE (fn));
726a989a 3514
8cd2462c
JH
3515 /* If this is a constructor or destructor body, we have to clone
3516 it. */
3517 if (maybe_clone_body (fn))
3518 {
3519 /* We don't want to process FN again, so pretend we've written
3520 it out, even though we haven't. */
3521 TREE_ASM_WRITTEN (fn) = 1;
c6a21142 3522 DECL_SAVED_TREE (fn) = NULL_TREE;
b2583345 3523 return false;
8cd2462c
JH
3524 }
3525
4684cd27
MM
3526 /* We make a decision about linkage for these functions at the end
3527 of the compilation. Until that point, we do not want the back
3528 end to output them -- but we do want it to see the bodies of
1a10290c 3529 these functions so that it can inline them as appropriate. */
4684cd27
MM
3530 if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
3531 {
1ef0df47
MM
3532 if (DECL_INTERFACE_KNOWN (fn))
3533 /* We've already made a decision as to how this function will
3534 be handled. */;
3535 else if (!at_eof)
4684cd27
MM
3536 {
3537 DECL_EXTERNAL (fn) = 1;
3538 DECL_NOT_REALLY_EXTERN (fn) = 1;
3539 note_vague_linkage_fn (fn);
1ef0df47
MM
3540 /* A non-template inline function with external linkage will
3541 always be COMDAT. As we must eventually determine the
3542 linkage of all functions, and as that causes writes to
3543 the data mapped in from the PCH file, it's advantageous
3544 to mark the functions at this point. */
3545 if (!DECL_IMPLICIT_INSTANTIATION (fn))
3546 {
3547 /* This function must have external linkage, as
3548 otherwise DECL_INTERFACE_KNOWN would have been
3549 set. */
3550 gcc_assert (TREE_PUBLIC (fn));
3551 comdat_linkage (fn);
3552 DECL_INTERFACE_KNOWN (fn) = 1;
3553 }
4684cd27
MM
3554 }
3555 else
3556 import_export_decl (fn);
1a10290c
MM
3557
3558 /* If the user wants us to keep all inline functions, then mark
3559 this function as needed so that finish_file will make sure to
fe2978fb
MM
3560 output it later. Similarly, all dllexport'd functions must
3561 be emitted; there may be callers in other DLLs. */
3fc20697
RG
3562 if ((flag_keep_inline_functions
3563 && DECL_DECLARED_INLINE_P (fn)
3564 && !DECL_REALLY_EXTERN (fn))
47ea1edf
DK
3565 || (flag_keep_inline_dllexport
3566 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (fn))))
1a10290c 3567 mark_needed (fn);
4684cd27
MM
3568 }
3569
8cd2462c
JH
3570 /* There's no reason to do any of the work here if we're only doing
3571 semantic analysis; this code just generates RTL. */
3572 if (flag_syntax_only)
b2583345
JJ
3573 return false;
3574
3575 return true;
3576}
8cd2462c 3577
b2583345
JJ
3578void
3579expand_or_defer_fn (tree fn)
3580{
3581 if (expand_or_defer_fn_1 (fn))
3582 {
3583 function_depth++;
99edd65d 3584
b2583345
JJ
3585 /* Expand or defer, at the whim of the compilation unit manager. */
3586 cgraph_finalize_function (fn, function_depth > 1);
6744a6ab 3587 emit_associated_thunks (fn);
99edd65d 3588
b2583345
JJ
3589 function_depth--;
3590 }
8cd2462c
JH
3591}
3592
6de9cd9a
DN
3593struct nrv_data
3594{
3595 tree var;
3596 tree result;
3597 htab_t visited;
3598};
0d97bf4c 3599
6de9cd9a
DN
3600/* Helper function for walk_tree, used by finalize_nrv below. */
3601
3602static tree
3603finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
0d97bf4c 3604{
6de9cd9a
DN
3605 struct nrv_data *dp = (struct nrv_data *)data;
3606 void **slot;
07b2f2fd
JM
3607
3608 /* No need to walk into types. There wouldn't be any need to walk into
3609 non-statements, except that we have to consider STMT_EXPRs. */
0d97bf4c
JM
3610 if (TYPE_P (*tp))
3611 *walk_subtrees = 0;
6de9cd9a
DN
3612 /* Change all returns to just refer to the RESULT_DECL; this is a nop,
3613 but differs from using NULL_TREE in that it indicates that we care
3614 about the value of the RESULT_DECL. */
5088b058
RH
3615 else if (TREE_CODE (*tp) == RETURN_EXPR)
3616 TREE_OPERAND (*tp, 0) = dp->result;
6de9cd9a
DN
3617 /* Change all cleanups for the NRV to only run when an exception is
3618 thrown. */
07b2f2fd 3619 else if (TREE_CODE (*tp) == CLEANUP_STMT
6de9cd9a 3620 && CLEANUP_DECL (*tp) == dp->var)
659e5a7a 3621 CLEANUP_EH_ONLY (*tp) = 1;
350fae66 3622 /* Replace the DECL_EXPR for the NRV with an initialization of the
6de9cd9a 3623 RESULT_DECL, if needed. */
350fae66
RK
3624 else if (TREE_CODE (*tp) == DECL_EXPR
3625 && DECL_EXPR_DECL (*tp) == dp->var)
6de9cd9a
DN
3626 {
3627 tree init;
3628 if (DECL_INITIAL (dp->var)
3629 && DECL_INITIAL (dp->var) != error_mark_node)
2d188530
JJ
3630 init = build2 (INIT_EXPR, void_type_node, dp->result,
3631 DECL_INITIAL (dp->var));
6de9cd9a 3632 else
c2255bc4 3633 init = build_empty_stmt (EXPR_LOCATION (*tp));
2d188530 3634 DECL_INITIAL (dp->var) = NULL_TREE;
5e278028 3635 SET_EXPR_LOCATION (init, EXPR_LOCATION (*tp));
6de9cd9a
DN
3636 *tp = init;
3637 }
3638 /* And replace all uses of the NRV with the RESULT_DECL. */
3639 else if (*tp == dp->var)
3640 *tp = dp->result;
3641
3642 /* Avoid walking into the same tree more than once. Unfortunately, we
3643 can't just use walk_tree_without duplicates because it would only call
3644 us for the first occurrence of dp->var in the function body. */
3645 slot = htab_find_slot (dp->visited, *tp, INSERT);
3646 if (*slot)
3647 *walk_subtrees = 0;
3648 else
3649 *slot = *tp;
0d97bf4c
JM
3650
3651 /* Keep iterating. */
3652 return NULL_TREE;
3653}
3654
6de9cd9a 3655/* Called from finish_function to implement the named return value
5088b058 3656 optimization by overriding all the RETURN_EXPRs and pertinent
6de9cd9a
DN
3657 CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
3658 RESULT_DECL for the function. */
f444e36b 3659
4985cde3 3660void
6de9cd9a 3661finalize_nrv (tree *tp, tree var, tree result)
f444e36b 3662{
6de9cd9a
DN
3663 struct nrv_data data;
3664
add86e09 3665 /* Copy name from VAR to RESULT. */
6de9cd9a 3666 DECL_NAME (result) = DECL_NAME (var);
6de9cd9a
DN
3667 /* Don't forget that we take its address. */
3668 TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
add86e09
JJ
3669 /* Finally set DECL_VALUE_EXPR to avoid assigning
3670 a stack slot at -O0 for the original var and debug info
3671 uses RESULT location for VAR. */
3672 SET_DECL_VALUE_EXPR (var, result);
3673 DECL_HAS_VALUE_EXPR_P (var) = 1;
6de9cd9a
DN
3674
3675 data.var = var;
3676 data.result = result;
3677 data.visited = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
14588106 3678 cp_walk_tree (tp, finalize_nrv_r, &data, 0);
6de9cd9a 3679 htab_delete (data.visited);
b850de4f 3680}
1799e5d5 3681\f
a68ab351
JJ
3682/* Create CP_OMP_CLAUSE_INFO for clause C. Returns true if it is invalid. */
3683
3684bool
3685cxx_omp_create_clause_info (tree c, tree type, bool need_default_ctor,
3686 bool need_copy_ctor, bool need_copy_assignment)
3687{
3688 int save_errorcount = errorcount;
3689 tree info, t;
3690
3691 /* Always allocate 3 elements for simplicity. These are the
3692 function decls for the ctor, dtor, and assignment op.
3693 This layout is known to the three lang hooks,
3694 cxx_omp_clause_default_init, cxx_omp_clause_copy_init,
3695 and cxx_omp_clause_assign_op. */
3696 info = make_tree_vec (3);
3697 CP_OMP_CLAUSE_INFO (c) = info;
3698
ac177431 3699 if (need_default_ctor || need_copy_ctor)
a68ab351
JJ
3700 {
3701 if (need_default_ctor)
ac177431 3702 t = get_default_ctor (type);
a68ab351 3703 else
ac177431
JM
3704 t = get_copy_ctor (type);
3705
3706 if (t && !trivial_fn_p (t))
3707 TREE_VEC_ELT (info, 0) = t;
a68ab351
JJ
3708 }
3709
3710 if ((need_default_ctor || need_copy_ctor)
3711 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
ac177431 3712 TREE_VEC_ELT (info, 1) = get_dtor (type);
a68ab351 3713
ac177431 3714 if (need_copy_assignment)
a68ab351 3715 {
ac177431
JM
3716 t = get_copy_assign (type);
3717
3718 if (t && !trivial_fn_p (t))
3719 TREE_VEC_ELT (info, 2) = t;
a68ab351
JJ
3720 }
3721
3722 return errorcount != save_errorcount;
3723}
3724
1799e5d5
RH
3725/* For all elements of CLAUSES, validate them vs OpenMP constraints.
3726 Remove any elements from the list that are invalid. */
3727
3728tree
3729finish_omp_clauses (tree clauses)
3730{
3731 bitmap_head generic_head, firstprivate_head, lastprivate_head;
3732 tree c, t, *pc = &clauses;
3733 const char *name;
3734
3735 bitmap_obstack_initialize (NULL);
3736 bitmap_initialize (&generic_head, &bitmap_default_obstack);
3737 bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
3738 bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
3739
3740 for (pc = &clauses, c = clauses; c ; c = *pc)
3741 {
3742 bool remove = false;
3743
3744 switch (OMP_CLAUSE_CODE (c))
3745 {
3746 case OMP_CLAUSE_SHARED:
3747 name = "shared";
3748 goto check_dup_generic;
3749 case OMP_CLAUSE_PRIVATE:
3750 name = "private";
3751 goto check_dup_generic;
3752 case OMP_CLAUSE_REDUCTION:
3753 name = "reduction";
3754 goto check_dup_generic;
3755 case OMP_CLAUSE_COPYPRIVATE:
3756 name = "copyprivate";
3757 goto check_dup_generic;
3758 case OMP_CLAUSE_COPYIN:
3759 name = "copyin";
3760 goto check_dup_generic;
3761 check_dup_generic:
3762 t = OMP_CLAUSE_DECL (c);
3763 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3764 {
3765 if (processing_template_decl)
3766 break;
76dc15d4
JJ
3767 if (DECL_P (t))
3768 error ("%qD is not a variable in clause %qs", t, name);
3769 else
3770 error ("%qE is not a variable in clause %qs", t, name);
1799e5d5
RH
3771 remove = true;
3772 }
3773 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
3774 || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
3775 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
3776 {
76dc15d4 3777 error ("%qD appears more than once in data clauses", t);
1799e5d5
RH
3778 remove = true;
3779 }
3780 else
3781 bitmap_set_bit (&generic_head, DECL_UID (t));
3782 break;
3783
3784 case OMP_CLAUSE_FIRSTPRIVATE:
3785 t = OMP_CLAUSE_DECL (c);
3786 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3787 {
3788 if (processing_template_decl)
3789 break;
85b20612
JJ
3790 if (DECL_P (t))
3791 error ("%qD is not a variable in clause %<firstprivate%>", t);
3792 else
3793 error ("%qE is not a variable in clause %<firstprivate%>", t);
1799e5d5
RH
3794 remove = true;
3795 }
3796 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
3797 || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
3798 {
85b20612 3799 error ("%qD appears more than once in data clauses", t);
1799e5d5
RH
3800 remove = true;
3801 }
3802 else
3803 bitmap_set_bit (&firstprivate_head, DECL_UID (t));
3804 break;
3805
3806 case OMP_CLAUSE_LASTPRIVATE:
3807 t = OMP_CLAUSE_DECL (c);
3808 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3809 {
3810 if (processing_template_decl)
3811 break;
85b20612
JJ
3812 if (DECL_P (t))
3813 error ("%qD is not a variable in clause %<lastprivate%>", t);
3814 else
3815 error ("%qE is not a variable in clause %<lastprivate%>", t);
1799e5d5
RH
3816 remove = true;
3817 }
3818 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
3819 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
3820 {
85b20612 3821 error ("%qD appears more than once in data clauses", t);
1799e5d5
RH
3822 remove = true;
3823 }
3824 else
3825 bitmap_set_bit (&lastprivate_head, DECL_UID (t));
3826 break;
3827
3828 case OMP_CLAUSE_IF:
3829 t = OMP_CLAUSE_IF_EXPR (c);
3830 t = maybe_convert_cond (t);
3831 if (t == error_mark_node)
3832 remove = true;
3833 OMP_CLAUSE_IF_EXPR (c) = t;
3834 break;
3835
3836 case OMP_CLAUSE_NUM_THREADS:
3837 t = OMP_CLAUSE_NUM_THREADS_EXPR (c);
3838 if (t == error_mark_node)
3839 remove = true;
6e684eee
JJ
3840 else if (!type_dependent_expression_p (t)
3841 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
1799e5d5
RH
3842 {
3843 error ("num_threads expression must be integral");
3844 remove = true;
3845 }
3846 break;
3847
3848 case OMP_CLAUSE_SCHEDULE:
3849 t = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c);
3850 if (t == NULL)
3851 ;
3852 else if (t == error_mark_node)
3853 remove = true;
6e684eee
JJ
3854 else if (!type_dependent_expression_p (t)
3855 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
1799e5d5
RH
3856 {
3857 error ("schedule chunk size expression must be integral");
3858 remove = true;
3859 }
3860 break;
3861
3862 case OMP_CLAUSE_NOWAIT:
3863 case OMP_CLAUSE_ORDERED:
3864 case OMP_CLAUSE_DEFAULT:
a68ab351
JJ
3865 case OMP_CLAUSE_UNTIED:
3866 case OMP_CLAUSE_COLLAPSE:
1799e5d5
RH
3867 break;
3868
3869 default:
3870 gcc_unreachable ();
3871 }
3872
3873 if (remove)
3874 *pc = OMP_CLAUSE_CHAIN (c);
3875 else
3876 pc = &OMP_CLAUSE_CHAIN (c);
3877 }
3878
3879 for (pc = &clauses, c = clauses; c ; c = *pc)
3880 {
81f40b79 3881 enum omp_clause_code c_kind = OMP_CLAUSE_CODE (c);
1799e5d5
RH
3882 bool remove = false;
3883 bool need_complete_non_reference = false;
3884 bool need_default_ctor = false;
3885 bool need_copy_ctor = false;
3886 bool need_copy_assignment = false;
3887 bool need_implicitly_determined = false;
3888 tree type, inner_type;
3889
3890 switch (c_kind)
3891 {
3892 case OMP_CLAUSE_SHARED:
3893 name = "shared";
3894 need_implicitly_determined = true;
3895 break;
3896 case OMP_CLAUSE_PRIVATE:
3897 name = "private";
3898 need_complete_non_reference = true;
3899 need_default_ctor = true;
3900 need_implicitly_determined = true;
3901 break;
3902 case OMP_CLAUSE_FIRSTPRIVATE:
3903 name = "firstprivate";
3904 need_complete_non_reference = true;
3905 need_copy_ctor = true;
3906 need_implicitly_determined = true;
3907 break;
3908 case OMP_CLAUSE_LASTPRIVATE:
3909 name = "lastprivate";
3910 need_complete_non_reference = true;
3911 need_copy_assignment = true;
3912 need_implicitly_determined = true;
3913 break;
3914 case OMP_CLAUSE_REDUCTION:
3915 name = "reduction";
3916 need_implicitly_determined = true;
3917 break;
3918 case OMP_CLAUSE_COPYPRIVATE:
3919 name = "copyprivate";
3920 need_copy_assignment = true;
3921 break;
3922 case OMP_CLAUSE_COPYIN:
3923 name = "copyin";
3924 need_copy_assignment = true;
3925 break;
3926 default:
3927 pc = &OMP_CLAUSE_CHAIN (c);
3928 continue;
3929 }
3930
3931 t = OMP_CLAUSE_DECL (c);
3932 if (processing_template_decl
3933 && TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3934 {
3935 pc = &OMP_CLAUSE_CHAIN (c);
3936 continue;
3937 }
3938
3939 switch (c_kind)
3940 {
3941 case OMP_CLAUSE_LASTPRIVATE:
3942 if (!bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
3943 need_default_ctor = true;
3944 break;
3945
3946 case OMP_CLAUSE_REDUCTION:
3947 if (AGGREGATE_TYPE_P (TREE_TYPE (t))
3948 || POINTER_TYPE_P (TREE_TYPE (t)))
3949 {
3950 error ("%qE has invalid type for %<reduction%>", t);
3951 remove = true;
3952 }
3953 else if (FLOAT_TYPE_P (TREE_TYPE (t)))
3954 {
3955 enum tree_code r_code = OMP_CLAUSE_REDUCTION_CODE (c);
3956 switch (r_code)
3957 {
3958 case PLUS_EXPR:
3959 case MULT_EXPR:
3960 case MINUS_EXPR:
3961 break;
3962 default:
3963 error ("%qE has invalid type for %<reduction(%s)%>",
3964 t, operator_name_info[r_code].name);
3965 remove = true;
3966 }
3967 }
3968 break;
3969
3970 case OMP_CLAUSE_COPYIN:
3971 if (TREE_CODE (t) != VAR_DECL || !DECL_THREAD_LOCAL_P (t))
3972 {
3973 error ("%qE must be %<threadprivate%> for %<copyin%>", t);
3974 remove = true;
3975 }
3976 break;
3977
3978 default:
3979 break;
3980 }
3981
3982 if (need_complete_non_reference)
3983 {
3984 t = require_complete_type (t);
3985 if (t == error_mark_node)
3986 remove = true;
3987 else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
3988 {
3989 error ("%qE has reference type for %qs", t, name);
3990 remove = true;
3991 }
3992 }
3993 if (need_implicitly_determined)
3994 {
3995 const char *share_name = NULL;
3996
3997 if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
3998 share_name = "threadprivate";
3999 else switch (cxx_omp_predetermined_sharing (t))
4000 {
4001 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
4002 break;
4003 case OMP_CLAUSE_DEFAULT_SHARED:
4004 share_name = "shared";
4005 break;
4006 case OMP_CLAUSE_DEFAULT_PRIVATE:
4007 share_name = "private";
4008 break;
4009 default:
4010 gcc_unreachable ();
4011 }
4012 if (share_name)
4013 {
4014 error ("%qE is predetermined %qs for %qs",
4015 t, share_name, name);
4016 remove = true;
4017 }
4018 }
4019
4020 /* We're interested in the base element, not arrays. */
4021 inner_type = type = TREE_TYPE (t);
4022 while (TREE_CODE (inner_type) == ARRAY_TYPE)
4023 inner_type = TREE_TYPE (inner_type);
4024
84dc00e8 4025 /* Check for special function availability by building a call to one.
1799e5d5
RH
4026 Save the results, because later we won't be in the right context
4027 for making these queries. */
4028 if (CLASS_TYPE_P (inner_type)
6f719560 4029 && (need_default_ctor || need_copy_ctor || need_copy_assignment)
a68ab351
JJ
4030 && !type_dependent_expression_p (t)
4031 && cxx_omp_create_clause_info (c, inner_type, need_default_ctor,
4032 need_copy_ctor, need_copy_assignment))
4033 remove = true;
1799e5d5
RH
4034
4035 if (remove)
4036 *pc = OMP_CLAUSE_CHAIN (c);
4037 else
4038 pc = &OMP_CLAUSE_CHAIN (c);
4039 }
4040
4041 bitmap_obstack_release (NULL);
4042 return clauses;
4043}
4044
4045/* For all variables in the tree_list VARS, mark them as thread local. */
4046
4047void
4048finish_omp_threadprivate (tree vars)
4049{
4050 tree t;
4051
4052 /* Mark every variable in VARS to be assigned thread local storage. */
4053 for (t = vars; t; t = TREE_CHAIN (t))
4054 {
4055 tree v = TREE_PURPOSE (t);
4056
edb6000e
JJ
4057 if (error_operand_p (v))
4058 ;
4059 else if (TREE_CODE (v) != VAR_DECL)
4060 error ("%<threadprivate%> %qD is not file, namespace "
4061 "or block scope variable", v);
1799e5d5
RH
4062 /* If V had already been marked threadprivate, it doesn't matter
4063 whether it had been used prior to this point. */
edb6000e 4064 else if (TREE_USED (v)
1799e5d5
RH
4065 && (DECL_LANG_SPECIFIC (v) == NULL
4066 || !CP_DECL_THREADPRIVATE_P (v)))
4067 error ("%qE declared %<threadprivate%> after first use", v);
4068 else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
4069 error ("automatic variable %qE cannot be %<threadprivate%>", v);
4070 else if (! COMPLETE_TYPE_P (TREE_TYPE (v)))
4071 error ("%<threadprivate%> %qE has incomplete type", v);
a68ab351
JJ
4072 else if (TREE_STATIC (v) && TYPE_P (CP_DECL_CONTEXT (v))
4073 && CP_DECL_CONTEXT (v) != current_class_type)
4074 error ("%<threadprivate%> %qE directive not "
4075 "in %qT definition", v, CP_DECL_CONTEXT (v));
1799e5d5
RH
4076 else
4077 {
4078 /* Allocate a LANG_SPECIFIC structure for V, if needed. */
4079 if (DECL_LANG_SPECIFIC (v) == NULL)
4080 {
4081 retrofit_lang_decl (v);
4082
4083 /* Make sure that DECL_DISCRIMINATOR_P continues to be true
4084 after the allocation of the lang_decl structure. */
4085 if (DECL_DISCRIMINATOR_P (v))
b97e8a14 4086 DECL_LANG_SPECIFIC (v)->u.base.u2sel = 1;
1799e5d5
RH
4087 }
4088
4089 if (! DECL_THREAD_LOCAL_P (v))
4090 {
4091 DECL_TLS_MODEL (v) = decl_default_tls_model (v);
4092 /* If rtl has been already set for this var, call
4093 make_decl_rtl once again, so that encode_section_info
4094 has a chance to look at the new decl flags. */
4095 if (DECL_RTL_SET_P (v))
4096 make_decl_rtl (v);
4097 }
4098 CP_DECL_THREADPRIVATE_P (v) = 1;
4099 }
4100 }
4101}
4102
4103/* Build an OpenMP structured block. */
4104
4105tree
4106begin_omp_structured_block (void)
4107{
4108 return do_pushlevel (sk_omp);
4109}
4110
4111tree
4112finish_omp_structured_block (tree block)
4113{
4114 return do_poplevel (block);
4115}
4116
84dc00e8 4117/* Similarly, except force the retention of the BLOCK. */
1799e5d5
RH
4118
4119tree
4120begin_omp_parallel (void)
4121{
4122 keep_next_level (true);
4123 return begin_omp_structured_block ();
4124}
4125
4126tree
4127finish_omp_parallel (tree clauses, tree body)
4128{
4129 tree stmt;
4130
4131 body = finish_omp_structured_block (body);
b850de4f 4132
1799e5d5
RH
4133 stmt = make_node (OMP_PARALLEL);
4134 TREE_TYPE (stmt) = void_type_node;
4135 OMP_PARALLEL_CLAUSES (stmt) = clauses;
4136 OMP_PARALLEL_BODY (stmt) = body;
54f7877c 4137
1799e5d5
RH
4138 return add_stmt (stmt);
4139}
4140
a68ab351
JJ
4141tree
4142begin_omp_task (void)
4143{
4144 keep_next_level (true);
4145 return begin_omp_structured_block ();
4146}
4147
4148tree
4149finish_omp_task (tree clauses, tree body)
4150{
4151 tree stmt;
4152
4153 body = finish_omp_structured_block (body);
4154
4155 stmt = make_node (OMP_TASK);
4156 TREE_TYPE (stmt) = void_type_node;
4157 OMP_TASK_CLAUSES (stmt) = clauses;
4158 OMP_TASK_BODY (stmt) = body;
4159
4160 return add_stmt (stmt);
4161}
4162
4163/* Helper function for finish_omp_for. Convert Ith random access iterator
4164 into integral iterator. Return FALSE if successful. */
4165
4166static bool
4167handle_omp_for_class_iterator (int i, location_t locus, tree declv, tree initv,
4168 tree condv, tree incrv, tree *body,
4169 tree *pre_body, tree clauses)
4170{
4171 tree diff, iter_init, iter_incr = NULL, last;
4172 tree incr_var = NULL, orig_pre_body, orig_body, c;
4173 tree decl = TREE_VEC_ELT (declv, i);
4174 tree init = TREE_VEC_ELT (initv, i);
4175 tree cond = TREE_VEC_ELT (condv, i);
4176 tree incr = TREE_VEC_ELT (incrv, i);
4177 tree iter = decl;
4178 location_t elocus = locus;
4179
4180 if (init && EXPR_HAS_LOCATION (init))
4181 elocus = EXPR_LOCATION (init);
4182
4183 switch (TREE_CODE (cond))
4184 {
4185 case GT_EXPR:
4186 case GE_EXPR:
4187 case LT_EXPR:
4188 case LE_EXPR:
c5cdb03f
JJ
4189 if (TREE_OPERAND (cond, 1) == iter)
4190 cond = build2 (swap_tree_comparison (TREE_CODE (cond)),
4191 TREE_TYPE (cond), iter, TREE_OPERAND (cond, 0));
a68ab351
JJ
4192 if (TREE_OPERAND (cond, 0) != iter)
4193 cond = error_mark_node;
4194 else
4195 {
4196 tree tem = build_x_binary_op (TREE_CODE (cond), iter, ERROR_MARK,
4197 TREE_OPERAND (cond, 1), ERROR_MARK,
4198 NULL, tf_warning_or_error);
4199 if (error_operand_p (tem))
4200 return true;
4201 }
4202 break;
4203 default:
4204 cond = error_mark_node;
4205 break;
4206 }
4207 if (cond == error_mark_node)
4208 {
69bc6bff 4209 error_at (elocus, "invalid controlling predicate");
a68ab351
JJ
4210 return true;
4211 }
4212 diff = build_x_binary_op (MINUS_EXPR, TREE_OPERAND (cond, 1),
4213 ERROR_MARK, iter, ERROR_MARK, NULL,
4214 tf_warning_or_error);
4215 if (error_operand_p (diff))
4216 return true;
4217 if (TREE_CODE (TREE_TYPE (diff)) != INTEGER_TYPE)
4218 {
69bc6bff
MLI
4219 error_at (elocus, "difference between %qE and %qD does not have integer type",
4220 TREE_OPERAND (cond, 1), iter);
a68ab351
JJ
4221 return true;
4222 }
4223
4224 switch (TREE_CODE (incr))
4225 {
4226 case PREINCREMENT_EXPR:
4227 case PREDECREMENT_EXPR:
4228 case POSTINCREMENT_EXPR:
4229 case POSTDECREMENT_EXPR:
4230 if (TREE_OPERAND (incr, 0) != iter)
4231 {
4232 incr = error_mark_node;
4233 break;
4234 }
4235 iter_incr = build_x_unary_op (TREE_CODE (incr), iter,
4236 tf_warning_or_error);
4237 if (error_operand_p (iter_incr))
4238 return true;
4239 else if (TREE_CODE (incr) == PREINCREMENT_EXPR
4240 || TREE_CODE (incr) == POSTINCREMENT_EXPR)
4241 incr = integer_one_node;
4242 else
4243 incr = integer_minus_one_node;
4244 break;
4245 case MODIFY_EXPR:
4246 if (TREE_OPERAND (incr, 0) != iter)
4247 incr = error_mark_node;
4248 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
4249 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
4250 {
4251 tree rhs = TREE_OPERAND (incr, 1);
4252 if (TREE_OPERAND (rhs, 0) == iter)
4253 {
4254 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 1)))
4255 != INTEGER_TYPE)
4256 incr = error_mark_node;
4257 else
4258 {
4259 iter_incr = build_x_modify_expr (iter, TREE_CODE (rhs),
4260 TREE_OPERAND (rhs, 1),
4261 tf_warning_or_error);
4262 if (error_operand_p (iter_incr))
4263 return true;
4264 incr = TREE_OPERAND (rhs, 1);
4265 incr = cp_convert (TREE_TYPE (diff), incr);
4266 if (TREE_CODE (rhs) == MINUS_EXPR)
4267 {
4268 incr = build1 (NEGATE_EXPR, TREE_TYPE (diff), incr);
4269 incr = fold_if_not_in_template (incr);
4270 }
4271 if (TREE_CODE (incr) != INTEGER_CST
4272 && (TREE_CODE (incr) != NOP_EXPR
4273 || (TREE_CODE (TREE_OPERAND (incr, 0))
4274 != INTEGER_CST)))
4275 iter_incr = NULL;
4276 }
4277 }
4278 else if (TREE_OPERAND (rhs, 1) == iter)
4279 {
4280 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 0))) != INTEGER_TYPE
4281 || TREE_CODE (rhs) != PLUS_EXPR)
4282 incr = error_mark_node;
4283 else
4284 {
4285 iter_incr = build_x_binary_op (PLUS_EXPR,
4286 TREE_OPERAND (rhs, 0),
4287 ERROR_MARK, iter,
4288 ERROR_MARK, NULL,
4289 tf_warning_or_error);
4290 if (error_operand_p (iter_incr))
4291 return true;
4292 iter_incr = build_x_modify_expr (iter, NOP_EXPR,
4293 iter_incr,
4294 tf_warning_or_error);
4295 if (error_operand_p (iter_incr))
4296 return true;
4297 incr = TREE_OPERAND (rhs, 0);
4298 iter_incr = NULL;
4299 }
4300 }
4301 else
4302 incr = error_mark_node;
4303 }
4304 else
4305 incr = error_mark_node;
4306 break;
4307 default:
4308 incr = error_mark_node;
4309 break;
4310 }
4311
4312 if (incr == error_mark_node)
4313 {
69bc6bff 4314 error_at (elocus, "invalid increment expression");
a68ab351
JJ
4315 return true;
4316 }
4317
4318 incr = cp_convert (TREE_TYPE (diff), incr);
4319 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
4320 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
4321 && OMP_CLAUSE_DECL (c) == iter)
4322 break;
4323
4324 decl = create_temporary_var (TREE_TYPE (diff));
4325 pushdecl (decl);
4326 add_decl_expr (decl);
4327 last = create_temporary_var (TREE_TYPE (diff));
4328 pushdecl (last);
4329 add_decl_expr (last);
4330 if (c && iter_incr == NULL)
4331 {
4332 incr_var = create_temporary_var (TREE_TYPE (diff));
4333 pushdecl (incr_var);
4334 add_decl_expr (incr_var);
4335 }
4336 gcc_assert (stmts_are_full_exprs_p ());
4337
4338 orig_pre_body = *pre_body;
4339 *pre_body = push_stmt_list ();
4340 if (orig_pre_body)
4341 add_stmt (orig_pre_body);
4342 if (init != NULL)
4343 finish_expr_stmt (build_x_modify_expr (iter, NOP_EXPR, init,
4344 tf_warning_or_error));
4345 init = build_int_cst (TREE_TYPE (diff), 0);
4346 if (c && iter_incr == NULL)
4347 {
4348 finish_expr_stmt (build_x_modify_expr (incr_var, NOP_EXPR,
4349 incr, tf_warning_or_error));
4350 incr = incr_var;
4351 iter_incr = build_x_modify_expr (iter, PLUS_EXPR, incr,
4352 tf_warning_or_error);
4353 }
4354 finish_expr_stmt (build_x_modify_expr (last, NOP_EXPR, init,
4355 tf_warning_or_error));
4356 *pre_body = pop_stmt_list (*pre_body);
4357
ba47d38d
AH
4358 cond = cp_build_binary_op (elocus,
4359 TREE_CODE (cond), decl, diff,
a68ab351 4360 tf_warning_or_error);
32e8bb8e 4361 incr = build_modify_expr (elocus, decl, NULL_TREE, PLUS_EXPR,
c2255bc4 4362 elocus, incr, NULL_TREE);
a68ab351
JJ
4363
4364 orig_body = *body;
4365 *body = push_stmt_list ();
4366 iter_init = build2 (MINUS_EXPR, TREE_TYPE (diff), decl, last);
4367 iter_init = build_x_modify_expr (iter, PLUS_EXPR, iter_init,
4368 tf_warning_or_error);
4369 iter_init = build1 (NOP_EXPR, void_type_node, iter_init);
4370 finish_expr_stmt (iter_init);
4371 finish_expr_stmt (build_x_modify_expr (last, NOP_EXPR, decl,
4372 tf_warning_or_error));
4373 add_stmt (orig_body);
4374 *body = pop_stmt_list (*body);
4375
4376 if (c)
4377 {
4378 OMP_CLAUSE_LASTPRIVATE_STMT (c) = push_stmt_list ();
4379 finish_expr_stmt (iter_incr);
4380 OMP_CLAUSE_LASTPRIVATE_STMT (c)
4381 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (c));
4382 }
4383
4384 TREE_VEC_ELT (declv, i) = decl;
4385 TREE_VEC_ELT (initv, i) = init;
4386 TREE_VEC_ELT (condv, i) = cond;
4387 TREE_VEC_ELT (incrv, i) = incr;
4388
4389 return false;
4390}
4391
1799e5d5
RH
4392/* Build and validate an OMP_FOR statement. CLAUSES, BODY, COND, INCR
4393 are directly for their associated operands in the statement. DECL
4394 and INIT are a combo; if DECL is NULL then INIT ought to be a
4395 MODIFY_EXPR, and the DECL should be extracted. PRE_BODY are
4396 optional statements that need to go before the loop into its
4397 sk_omp scope. */
4398
4399tree
a68ab351
JJ
4400finish_omp_for (location_t locus, tree declv, tree initv, tree condv,
4401 tree incrv, tree body, tree pre_body, tree clauses)
4402{
4403 tree omp_for = NULL, orig_incr = NULL;
4404 tree decl, init, cond, incr;
4405 location_t elocus;
4406 int i;
4407
4408 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv));
4409 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv));
4410 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv));
4411 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4412 {
4413 decl = TREE_VEC_ELT (declv, i);
4414 init = TREE_VEC_ELT (initv, i);
4415 cond = TREE_VEC_ELT (condv, i);
4416 incr = TREE_VEC_ELT (incrv, i);
4417 elocus = locus;
4418
4419 if (decl == NULL)
4420 {
4421 if (init != NULL)
4422 switch (TREE_CODE (init))
1799e5d5 4423 {
a68ab351 4424 case MODIFY_EXPR:
1799e5d5 4425 decl = TREE_OPERAND (init, 0);
a68ab351
JJ
4426 init = TREE_OPERAND (init, 1);
4427 break;
4428 case MODOP_EXPR:
4429 if (TREE_CODE (TREE_OPERAND (init, 1)) == NOP_EXPR)
4430 {
4431 decl = TREE_OPERAND (init, 0);
4432 init = TREE_OPERAND (init, 2);
4433 }
4434 break;
4435 default:
4436 break;
1799e5d5 4437 }
1799e5d5 4438
a68ab351
JJ
4439 if (decl == NULL)
4440 {
69bc6bff
MLI
4441 error_at (locus,
4442 "expected iteration declaration or initialization");
a68ab351
JJ
4443 return NULL;
4444 }
1799e5d5 4445 }
1799e5d5 4446
a68ab351
JJ
4447 if (init && EXPR_HAS_LOCATION (init))
4448 elocus = EXPR_LOCATION (init);
1799e5d5
RH
4449
4450 if (cond == NULL)
4451 {
69bc6bff 4452 error_at (elocus, "missing controlling predicate");
1799e5d5
RH
4453 return NULL;
4454 }
4455
4456 if (incr == NULL)
4457 {
69bc6bff 4458 error_at (elocus, "missing increment expression");
1799e5d5
RH
4459 return NULL;
4460 }
4461
a68ab351
JJ
4462 TREE_VEC_ELT (declv, i) = decl;
4463 TREE_VEC_ELT (initv, i) = init;
4464 }
4465
4466 if (dependent_omp_for_p (declv, initv, condv, incrv))
4467 {
4468 tree stmt;
4469
1799e5d5
RH
4470 stmt = make_node (OMP_FOR);
4471
a68ab351
JJ
4472 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4473 {
4474 /* This is really just a place-holder. We'll be decomposing this
4475 again and going through the cp_build_modify_expr path below when
4476 we instantiate the thing. */
4477 TREE_VEC_ELT (initv, i)
4478 = build2 (MODIFY_EXPR, void_type_node, TREE_VEC_ELT (declv, i),
4479 TREE_VEC_ELT (initv, i));
4480 }
1799e5d5
RH
4481
4482 TREE_TYPE (stmt) = void_type_node;
a68ab351
JJ
4483 OMP_FOR_INIT (stmt) = initv;
4484 OMP_FOR_COND (stmt) = condv;
4485 OMP_FOR_INCR (stmt) = incrv;
1799e5d5
RH
4486 OMP_FOR_BODY (stmt) = body;
4487 OMP_FOR_PRE_BODY (stmt) = pre_body;
a68ab351 4488 OMP_FOR_CLAUSES (stmt) = clauses;
1799e5d5
RH
4489
4490 SET_EXPR_LOCATION (stmt, locus);
4491 return add_stmt (stmt);
4492 }
4493
a68ab351
JJ
4494 if (processing_template_decl)
4495 orig_incr = make_tree_vec (TREE_VEC_LENGTH (incrv));
1799e5d5 4496
a68ab351 4497 for (i = 0; i < TREE_VEC_LENGTH (declv); )
dadb19e0 4498 {
a68ab351
JJ
4499 decl = TREE_VEC_ELT (declv, i);
4500 init = TREE_VEC_ELT (initv, i);
4501 cond = TREE_VEC_ELT (condv, i);
4502 incr = TREE_VEC_ELT (incrv, i);
4503 if (orig_incr)
4504 TREE_VEC_ELT (orig_incr, i) = incr;
4505 elocus = locus;
4506
4507 if (init && EXPR_HAS_LOCATION (init))
dadb19e0 4508 elocus = EXPR_LOCATION (init);
dadb19e0 4509
a68ab351
JJ
4510 if (!DECL_P (decl))
4511 {
69bc6bff 4512 error_at (elocus, "expected iteration declaration or initialization");
a68ab351
JJ
4513 return NULL;
4514 }
969c111d 4515
a68ab351
JJ
4516 if (incr && TREE_CODE (incr) == MODOP_EXPR)
4517 {
4518 if (orig_incr)
4519 TREE_VEC_ELT (orig_incr, i) = incr;
4520 incr = cp_build_modify_expr (TREE_OPERAND (incr, 0),
4521 TREE_CODE (TREE_OPERAND (incr, 1)),
4522 TREE_OPERAND (incr, 2),
4523 tf_warning_or_error);
4524 }
4525
4526 if (CLASS_TYPE_P (TREE_TYPE (decl)))
4527 {
4528 if (handle_omp_for_class_iterator (i, locus, declv, initv, condv,
4529 incrv, &body, &pre_body, clauses))
4530 return NULL;
4531 continue;
4532 }
4533
4534 if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))
4535 && TREE_CODE (TREE_TYPE (decl)) != POINTER_TYPE)
4536 {
69bc6bff 4537 error_at (elocus, "invalid type for iteration variable %qE", decl);
a68ab351
JJ
4538 return NULL;
4539 }
969c111d 4540
b2ebd268 4541 if (!processing_template_decl)
8569b2d0
JJ
4542 {
4543 init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
4544 init = cp_build_modify_expr (decl, NOP_EXPR, init, tf_warning_or_error);
4545 }
4546 else
4547 init = build2 (MODIFY_EXPR, void_type_node, decl, init);
e4ebaef3
JJ
4548 if (cond
4549 && TREE_SIDE_EFFECTS (cond)
4550 && COMPARISON_CLASS_P (cond)
4551 && !processing_template_decl)
a68ab351 4552 {
e4ebaef3
JJ
4553 tree t = TREE_OPERAND (cond, 0);
4554 if (TREE_SIDE_EFFECTS (t)
4555 && t != decl
4556 && (TREE_CODE (t) != NOP_EXPR
4557 || TREE_OPERAND (t, 0) != decl))
4558 TREE_OPERAND (cond, 0)
4559 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
a68ab351 4560
e4ebaef3
JJ
4561 t = TREE_OPERAND (cond, 1);
4562 if (TREE_SIDE_EFFECTS (t)
4563 && t != decl
4564 && (TREE_CODE (t) != NOP_EXPR
4565 || TREE_OPERAND (t, 0) != decl))
4566 TREE_OPERAND (cond, 1)
a68ab351
JJ
4567 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4568 }
4569 if (decl == error_mark_node || init == error_mark_node)
4570 return NULL;
4571
4572 TREE_VEC_ELT (declv, i) = decl;
4573 TREE_VEC_ELT (initv, i) = init;
4574 TREE_VEC_ELT (condv, i) = cond;
4575 TREE_VEC_ELT (incrv, i) = incr;
4576 i++;
969c111d 4577 }
a68ab351
JJ
4578
4579 if (IS_EMPTY_STMT (pre_body))
4580 pre_body = NULL;
4581
4582 omp_for = c_finish_omp_for (locus, declv, initv, condv, incrv,
4583 body, pre_body);
4584
4585 if (omp_for == NULL)
4586 return NULL;
4587
4588 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++)
969c111d 4589 {
e4ebaef3
JJ
4590 decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i), 0);
4591 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i);
969c111d 4592
a68ab351
JJ
4593 if (TREE_CODE (incr) != MODIFY_EXPR)
4594 continue;
4595
4596 if (TREE_SIDE_EFFECTS (TREE_OPERAND (incr, 1))
e4ebaef3
JJ
4597 && BINARY_CLASS_P (TREE_OPERAND (incr, 1))
4598 && !processing_template_decl)
a68ab351 4599 {
e4ebaef3
JJ
4600 tree t = TREE_OPERAND (TREE_OPERAND (incr, 1), 0);
4601 if (TREE_SIDE_EFFECTS (t)
4602 && t != decl
4603 && (TREE_CODE (t) != NOP_EXPR
4604 || TREE_OPERAND (t, 0) != decl))
4605 TREE_OPERAND (TREE_OPERAND (incr, 1), 0)
4606 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
a68ab351 4607
e4ebaef3
JJ
4608 t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
4609 if (TREE_SIDE_EFFECTS (t)
4610 && t != decl
4611 && (TREE_CODE (t) != NOP_EXPR
4612 || TREE_OPERAND (t, 0) != decl))
4613 TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
4614 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
a68ab351
JJ
4615 }
4616
4617 if (orig_incr)
4618 TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i) = TREE_VEC_ELT (orig_incr, i);
969c111d 4619 }
a68ab351
JJ
4620 if (omp_for != NULL)
4621 OMP_FOR_CLAUSES (omp_for) = clauses;
969c111d 4622 return omp_for;
1799e5d5
RH
4623}
4624
4625void
4626finish_omp_atomic (enum tree_code code, tree lhs, tree rhs)
4627{
239371f9
JJ
4628 tree orig_lhs;
4629 tree orig_rhs;
4630 bool dependent_p;
e6bd5565
MM
4631 tree stmt;
4632
239371f9
JJ
4633 orig_lhs = lhs;
4634 orig_rhs = rhs;
4635 dependent_p = false;
4636 stmt = NULL_TREE;
4637
4638 /* Even in a template, we can detect invalid uses of the atomic
4639 pragma if neither LHS nor RHS is type-dependent. */
4640 if (processing_template_decl)
e6bd5565 4641 {
239371f9
JJ
4642 dependent_p = (type_dependent_expression_p (lhs)
4643 || type_dependent_expression_p (rhs));
4644 if (!dependent_p)
e6bd5565
MM
4645 {
4646 lhs = build_non_dependent_expr (lhs);
4647 rhs = build_non_dependent_expr (rhs);
4648 }
239371f9
JJ
4649 }
4650 if (!dependent_p)
4651 {
c2255bc4 4652 stmt = c_finish_omp_atomic (input_location, code, lhs, rhs);
239371f9
JJ
4653 if (stmt == error_mark_node)
4654 return;
e6bd5565 4655 }
239371f9
JJ
4656 if (processing_template_decl)
4657 stmt = build2 (OMP_ATOMIC, void_type_node, integer_zero_node,
4658 build2 (code, void_type_node, orig_lhs, orig_rhs));
4659 add_stmt (stmt);
1799e5d5
RH
4660}
4661
4662void
4663finish_omp_barrier (void)
4664{
4665 tree fn = built_in_decls[BUILT_IN_GOMP_BARRIER];
c166b898
ILT
4666 VEC(tree,gc) *vec = make_tree_vector ();
4667 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4668 release_tree_vector (vec);
1799e5d5
RH
4669 finish_expr_stmt (stmt);
4670}
4671
4672void
4673finish_omp_flush (void)
4674{
4675 tree fn = built_in_decls[BUILT_IN_SYNCHRONIZE];
c166b898
ILT
4676 VEC(tree,gc) *vec = make_tree_vector ();
4677 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4678 release_tree_vector (vec);
1799e5d5
RH
4679 finish_expr_stmt (stmt);
4680}
4681
a68ab351
JJ
4682void
4683finish_omp_taskwait (void)
1799e5d5 4684{
a68ab351 4685 tree fn = built_in_decls[BUILT_IN_GOMP_TASKWAIT];
c166b898
ILT
4686 VEC(tree,gc) *vec = make_tree_vector ();
4687 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4688 release_tree_vector (vec);
a68ab351 4689 finish_expr_stmt (stmt);
1799e5d5
RH
4690}
4691\f
54f7877c 4692void
3a978d72 4693init_cp_semantics (void)
54f7877c 4694{
54f7877c 4695}
55a3debe
DG
4696\f
4697/* Build a STATIC_ASSERT for a static assertion with the condition
4698 CONDITION and the message text MESSAGE. LOCATION is the location
4699 of the static assertion in the source code. When MEMBER_P, this
4700 static assertion is a member of a class. */
4701void
4702finish_static_assert (tree condition, tree message, location_t location,
4703 bool member_p)
4704{
7b3e2d46
DG
4705 if (check_for_bare_parameter_packs (condition))
4706 condition = error_mark_node;
4707
55a3debe
DG
4708 if (type_dependent_expression_p (condition)
4709 || value_dependent_expression_p (condition))
4710 {
4711 /* We're in a template; build a STATIC_ASSERT and put it in
4712 the right place. */
4713 tree assertion;
4714
4715 assertion = make_node (STATIC_ASSERT);
4716 STATIC_ASSERT_CONDITION (assertion) = condition;
4717 STATIC_ASSERT_MESSAGE (assertion) = message;
4718 STATIC_ASSERT_SOURCE_LOCATION (assertion) = location;
4719
4720 if (member_p)
4721 maybe_add_class_template_decl_list (current_class_type,
4722 assertion,
4723 /*friend_p=*/0);
4724 else
4725 add_stmt (assertion);
4726
4727 return;
4728 }
4729
4730 /* Fold the expression and convert it to a boolean value. */
4731 condition = fold_non_dependent_expr (condition);
4732 condition = cp_convert (boolean_type_node, condition);
fa2200cb 4733 condition = maybe_constant_value (condition);
55a3debe
DG
4734
4735 if (TREE_CODE (condition) == INTEGER_CST && !integer_zerop (condition))
4736 /* Do nothing; the condition is satisfied. */
4737 ;
4738 else
4739 {
4740 location_t saved_loc = input_location;
4741
4742 input_location = location;
4743 if (TREE_CODE (condition) == INTEGER_CST
4744 && integer_zerop (condition))
4745 /* Report the error. */
4746 error ("static assertion failed: %E", message);
4747 else if (condition && condition != error_mark_node)
fa2200cb
JM
4748 {
4749 error ("non-constant condition for static assertion");
4750 cxx_constant_value (condition);
4751 }
55a3debe
DG
4752 input_location = saved_loc;
4753 }
4754}
3ad6a8e1 4755\f
4b4a42c4
JM
4756/* Returns the type of EXPR for cases where we can determine it even though
4757 EXPR is a type-dependent expression. */
a77f94e2
JM
4758
4759tree
4760describable_type (tree expr)
4761{
4762 tree type = NULL_TREE;
4763
a77f94e2
JM
4764 if (! type_dependent_expression_p (expr)
4765 && ! type_unknown_p (expr))
4766 {
aef8bce8 4767 type = unlowered_expr_type (expr);
a77f94e2
JM
4768 if (real_lvalue_p (expr))
4769 type = build_reference_type (type);
4770 }
a77f94e2
JM
4771
4772 if (type)
4773 return type;
4774
4775 switch (TREE_CODE (expr))
4776 {
4777 case VAR_DECL:
4778 case PARM_DECL:
4779 case RESULT_DECL:
4780 case FUNCTION_DECL:
4b4a42c4 4781 return TREE_TYPE (expr);
a77f94e2
JM
4782 break;
4783
4784 case NEW_EXPR:
4785 case CONST_DECL:
4786 case TEMPLATE_PARM_INDEX:
4787 case CAST_EXPR:
4788 case STATIC_CAST_EXPR:
4789 case REINTERPRET_CAST_EXPR:
4790 case CONST_CAST_EXPR:
4791 case DYNAMIC_CAST_EXPR:
4792 type = TREE_TYPE (expr);
4793 break;
4794
4795 case INDIRECT_REF:
4796 {
4797 tree ptrtype = describable_type (TREE_OPERAND (expr, 0));
4798 if (ptrtype && POINTER_TYPE_P (ptrtype))
4799 type = build_reference_type (TREE_TYPE (ptrtype));
4800 }
4801 break;
4802
4803 default:
4804 if (TREE_CODE_CLASS (TREE_CODE (expr)) == tcc_constant)
4805 type = TREE_TYPE (expr);
4806 break;
4807 }
4808
4809 if (type && type_uses_auto (type))
4810 return NULL_TREE;
4811 else
4812 return type;
4813}
4814
3ad6a8e1
DG
4815/* Implements the C++0x decltype keyword. Returns the type of EXPR,
4816 suitable for use as a type-specifier.
4817
4818 ID_EXPRESSION_OR_MEMBER_ACCESS_P is true when EXPR was parsed as an
4819 id-expression or a class member access, FALSE when it was parsed as
4820 a full expression. */
a77f94e2 4821
3ad6a8e1 4822tree
5b97c77f
JM
4823finish_decltype_type (tree expr, bool id_expression_or_member_access_p,
4824 tsubst_flags_t complain)
3ad6a8e1 4825{
056dd1af 4826 tree type = NULL_TREE;
3ad6a8e1 4827
e4fd5b87
DG
4828 if (!expr || error_operand_p (expr))
4829 return error_mark_node;
4830
7a547b93
JJ
4831 if (TYPE_P (expr)
4832 || TREE_CODE (expr) == TYPE_DECL
4833 || (TREE_CODE (expr) == BIT_NOT_EXPR
4834 && TYPE_P (TREE_OPERAND (expr, 0))))
4835 {
5b97c77f
JM
4836 if (complain & tf_error)
4837 error ("argument to decltype must be an expression");
7a547b93
JJ
4838 return error_mark_node;
4839 }
4840
67e18edb 4841 /* FIXME instantiation-dependent */
21920fd1
JM
4842 if (type_dependent_expression_p (expr)
4843 /* In a template, a COMPONENT_REF has an IDENTIFIER_NODE for op1 even
4844 if it isn't dependent, so that we can check access control at
4845 instantiation time, so defer the decltype as well (PR 42277). */
4846 || (id_expression_or_member_access_p
4847 && processing_template_decl
4848 && TREE_CODE (expr) == COMPONENT_REF))
3ad6a8e1 4849 {
9e1e64ec 4850 type = cxx_make_type (DECLTYPE_TYPE);
3ad6a8e1
DG
4851 DECLTYPE_TYPE_EXPR (type) = expr;
4852 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type)
4853 = id_expression_or_member_access_p;
4854 SET_TYPE_STRUCTURAL_EQUALITY (type);
4855
4856 return type;
4857 }
4858
4859 /* The type denoted by decltype(e) is defined as follows: */
4860
ccb05613 4861 expr = resolve_nondeduced_context (expr);
48326487 4862
6cdb1428
JM
4863 if (type_unknown_p (expr))
4864 {
4865 if (complain & tf_error)
4866 error ("decltype cannot resolve address of overloaded function");
4867 return error_mark_node;
4868 }
4869
48326487
JM
4870 /* To get the size of a static data member declared as an array of
4871 unknown bound, we need to instantiate it. */
4872 if (TREE_CODE (expr) == VAR_DECL
4873 && VAR_HAD_UNKNOWN_BOUND (expr)
4874 && DECL_TEMPLATE_INSTANTIATION (expr))
4875 instantiate_decl (expr, /*defer_ok*/true, /*expl_inst_mem*/false);
4876
3ad6a8e1
DG
4877 if (id_expression_or_member_access_p)
4878 {
4879 /* If e is an id-expression or a class member access (5.2.5
4880 [expr.ref]), decltype(e) is defined as the type of the entity
4881 named by e. If there is no such entity, or e names a set of
4882 overloaded functions, the program is ill-formed. */
4883 if (TREE_CODE (expr) == IDENTIFIER_NODE)
4884 expr = lookup_name (expr);
4885
4886 if (TREE_CODE (expr) == INDIRECT_REF)
4887 /* This can happen when the expression is, e.g., "a.b". Just
4888 look at the underlying operand. */
4889 expr = TREE_OPERAND (expr, 0);
4890
4891 if (TREE_CODE (expr) == OFFSET_REF
4892 || TREE_CODE (expr) == MEMBER_REF)
4893 /* We're only interested in the field itself. If it is a
4894 BASELINK, we will need to see through it in the next
4895 step. */
4896 expr = TREE_OPERAND (expr, 1);
4897
4898 if (TREE_CODE (expr) == BASELINK)
6cdb1428 4899 /* See through BASELINK nodes to the underlying function. */
3ad6a8e1
DG
4900 expr = BASELINK_FUNCTIONS (expr);
4901
3ad6a8e1
DG
4902 switch (TREE_CODE (expr))
4903 {
4904 case FIELD_DECL:
e76d7cc7 4905 if (DECL_BIT_FIELD_TYPE (expr))
3ad6a8e1
DG
4906 {
4907 type = DECL_BIT_FIELD_TYPE (expr);
4908 break;
4909 }
4910 /* Fall through for fields that aren't bitfields. */
4911
4912 case FUNCTION_DECL:
4913 case VAR_DECL:
4914 case CONST_DECL:
4915 case PARM_DECL:
4916 case RESULT_DECL:
088d4f95 4917 case TEMPLATE_PARM_INDEX:
03a904b5 4918 expr = mark_type_use (expr);
3ad6a8e1
DG
4919 type = TREE_TYPE (expr);
4920 break;
4921
4922 case ERROR_MARK:
4923 type = error_mark_node;
4924 break;
4925
4926 case COMPONENT_REF:
03a904b5 4927 mark_type_use (expr);
3ad6a8e1
DG
4928 type = is_bitfield_expr_with_lowered_type (expr);
4929 if (!type)
4930 type = TREE_TYPE (TREE_OPERAND (expr, 1));
4931 break;
4932
4933 case BIT_FIELD_REF:
4934 gcc_unreachable ();
4935
4936 case INTEGER_CST:
4937 /* We can get here when the id-expression refers to an
4938 enumerator. */
4939 type = TREE_TYPE (expr);
4940 break;
4941
4942 default:
6cdb1428 4943 gcc_unreachable ();
3ad6a8e1
DG
4944 return error_mark_node;
4945 }
4946 }
4947 else
4948 {
c1e41527
JM
4949 /* Within a lambda-expression:
4950
4951 Every occurrence of decltype((x)) where x is a possibly
4952 parenthesized id-expression that names an entity of
4953 automatic storage duration is treated as if x were
4954 transformed into an access to a corresponding data member
4955 of the closure type that would have been declared if x
4956 were a use of the denoted entity. */
4957 if (outer_automatic_var_p (expr)
4958 && current_function_decl
4959 && LAMBDA_FUNCTION_P (current_function_decl))
4960 type = capture_decltype (expr);
4961 else if (error_operand_p (expr))
4962 type = error_mark_node;
4963 else if (expr == current_class_ptr)
4964 /* If the expression is just "this", we want the
4965 cv-unqualified pointer for the "this" type. */
4966 type = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
4967 else
4968 {
4969 /* Otherwise, where T is the type of e, if e is an lvalue,
4970 decltype(e) is defined as T&; if an xvalue, T&&; otherwise, T. */
4971 cp_lvalue_kind clk = lvalue_kind (expr);
4972 type = unlowered_expr_type (expr);
4973 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
4974 if (clk != clk_none && !(clk & clk_class))
4975 type = cp_build_reference_type (type, (clk & clk_rvalueref));
4976 }
3ad6a8e1
DG
4977 }
4978
3ad6a8e1
DG
4979 return type;
4980}
cf22909c 4981
b29441ec
PC
4982/* Called from trait_expr_value to evaluate either __has_nothrow_assign or
4983 __has_nothrow_copy, depending on assign_p. */
cb68ec50
PC
4984
4985static bool
b29441ec 4986classtype_has_nothrow_assign_or_copy_p (tree type, bool assign_p)
cb68ec50 4987{
b29441ec 4988 tree fns;
cb68ec50 4989
b29441ec
PC
4990 if (assign_p)
4991 {
4992 int ix;
4993 ix = lookup_fnfields_1 (type, ansi_assopname (NOP_EXPR));
4994 if (ix < 0)
cb68ec50 4995 return false;
b29441ec
PC
4996 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix);
4997 }
066ec0a4 4998 else if (TYPE_HAS_COPY_CTOR (type))
b29441ec
PC
4999 {
5000 /* If construction of the copy constructor was postponed, create
5001 it now. */
5002 if (CLASSTYPE_LAZY_COPY_CTOR (type))
5003 lazily_declare_fn (sfk_copy_constructor, type);
d5f4eddd
JM
5004 if (CLASSTYPE_LAZY_MOVE_CTOR (type))
5005 lazily_declare_fn (sfk_move_constructor, type);
b29441ec 5006 fns = CLASSTYPE_CONSTRUCTORS (type);
cb68ec50
PC
5007 }
5008 else
5009 return false;
5010
b29441ec 5011 for (; fns; fns = OVL_NEXT (fns))
279086c3
PC
5012 {
5013 tree fn = OVL_CURRENT (fns);
5014
5015 if (assign_p)
5016 {
5017 if (copy_fn_p (fn) == 0)
5018 continue;
5019 }
5020 else if (copy_fn_p (fn) <= 0)
5021 continue;
5022
5023 if (!TYPE_NOTHROW_P (TREE_TYPE (fn)))
5024 return false;
5025 }
b29441ec 5026
cb68ec50
PC
5027 return true;
5028}
5029
5030/* Actually evaluates the trait. */
5031
5032static bool
5033trait_expr_value (cp_trait_kind kind, tree type1, tree type2)
5034{
5035 enum tree_code type_code1;
5036 tree t;
5037
5038 type_code1 = TREE_CODE (type1);
5039
5040 switch (kind)
5041 {
5042 case CPTK_HAS_NOTHROW_ASSIGN:
c32097d8 5043 type1 = strip_array_types (type1);
b29441ec
PC
5044 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
5045 && (trait_expr_value (CPTK_HAS_TRIVIAL_ASSIGN, type1, type2)
5046 || (CLASS_TYPE_P (type1)
5047 && classtype_has_nothrow_assign_or_copy_p (type1,
5048 true))));
cb68ec50
PC
5049
5050 case CPTK_HAS_TRIVIAL_ASSIGN:
c32097d8
JM
5051 /* ??? The standard seems to be missing the "or array of such a class
5052 type" wording for this trait. */
5053 type1 = strip_array_types (type1);
cb68ec50 5054 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
c32097d8 5055 && (trivial_type_p (type1)
cb68ec50 5056 || (CLASS_TYPE_P (type1)
066ec0a4 5057 && TYPE_HAS_TRIVIAL_COPY_ASSIGN (type1))));
cb68ec50
PC
5058
5059 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5060 type1 = strip_array_types (type1);
5061 return (trait_expr_value (CPTK_HAS_TRIVIAL_CONSTRUCTOR, type1, type2)
5062 || (CLASS_TYPE_P (type1)
ac177431 5063 && (t = locate_ctor (type1))
e24313f3 5064 && TYPE_NOTHROW_P (TREE_TYPE (t))));
cb68ec50
PC
5065
5066 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5067 type1 = strip_array_types (type1);
c32097d8 5068 return (trivial_type_p (type1)
cb68ec50
PC
5069 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_DFLT (type1)));
5070
5071 case CPTK_HAS_NOTHROW_COPY:
c32097d8 5072 type1 = strip_array_types (type1);
cb68ec50
PC
5073 return (trait_expr_value (CPTK_HAS_TRIVIAL_COPY, type1, type2)
5074 || (CLASS_TYPE_P (type1)
b29441ec 5075 && classtype_has_nothrow_assign_or_copy_p (type1, false)));
cb68ec50
PC
5076
5077 case CPTK_HAS_TRIVIAL_COPY:
c32097d8
JM
5078 /* ??? The standard seems to be missing the "or array of such a class
5079 type" wording for this trait. */
5080 type1 = strip_array_types (type1);
5081 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
066ec0a4 5082 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_COPY_CTOR (type1)));
cb68ec50
PC
5083
5084 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5085 type1 = strip_array_types (type1);
c32097d8 5086 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
cb68ec50
PC
5087 || (CLASS_TYPE_P (type1)
5088 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type1)));
5089
5090 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
46408846 5091 return type_has_virtual_destructor (type1);
cb68ec50
PC
5092
5093 case CPTK_IS_ABSTRACT:
5094 return (CLASS_TYPE_P (type1) && CLASSTYPE_PURE_VIRTUALS (type1));
5095
5096 case CPTK_IS_BASE_OF:
5097 return (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5098 && DERIVED_FROM_P (type1, type2));
5099
5100 case CPTK_IS_CLASS:
5101 return (NON_UNION_CLASS_TYPE_P (type1));
5102
5103 case CPTK_IS_CONVERTIBLE_TO:
5104 /* TODO */
5105 return false;
5106
5107 case CPTK_IS_EMPTY:
5108 return (NON_UNION_CLASS_TYPE_P (type1) && CLASSTYPE_EMPTY_P (type1));
5109
5110 case CPTK_IS_ENUM:
5111 return (type_code1 == ENUMERAL_TYPE);
5112
5113 case CPTK_IS_POD:
5114 return (pod_type_p (type1));
5115
5116 case CPTK_IS_POLYMORPHIC:
5117 return (CLASS_TYPE_P (type1) && TYPE_POLYMORPHIC_P (type1));
5118
c32097d8
JM
5119 case CPTK_IS_STD_LAYOUT:
5120 return (std_layout_type_p (type1));
5121
5122 case CPTK_IS_TRIVIAL:
5123 return (trivial_type_p (type1));
5124
cb68ec50
PC
5125 case CPTK_IS_UNION:
5126 return (type_code1 == UNION_TYPE);
5127
2b08f2c5
JM
5128 case CPTK_IS_LITERAL_TYPE:
5129 return (literal_type_p (type1));
5130
cb68ec50
PC
5131 default:
5132 gcc_unreachable ();
5133 return false;
5134 }
5135}
5136
ff284b4b
PC
5137/* Returns true if TYPE is a complete type, an array of unknown bound,
5138 or (possibly cv-qualified) void, returns false otherwise. */
5139
5140static bool
5141check_trait_type (tree type)
5142{
5143 if (COMPLETE_TYPE_P (type))
5144 return true;
5145
f94ae987
JM
5146 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
5147 && COMPLETE_TYPE_P (TREE_TYPE (type)))
ff284b4b
PC
5148 return true;
5149
5150 if (VOID_TYPE_P (type))
5151 return true;
5152
5153 return false;
5154}
5155
cb68ec50
PC
5156/* Process a trait expression. */
5157
5158tree
5159finish_trait_expr (cp_trait_kind kind, tree type1, tree type2)
5160{
5161 gcc_assert (kind == CPTK_HAS_NOTHROW_ASSIGN
5162 || kind == CPTK_HAS_NOTHROW_CONSTRUCTOR
5163 || kind == CPTK_HAS_NOTHROW_COPY
5164 || kind == CPTK_HAS_TRIVIAL_ASSIGN
5165 || kind == CPTK_HAS_TRIVIAL_CONSTRUCTOR
5166 || kind == CPTK_HAS_TRIVIAL_COPY
5167 || kind == CPTK_HAS_TRIVIAL_DESTRUCTOR
5168 || kind == CPTK_HAS_VIRTUAL_DESTRUCTOR
5169 || kind == CPTK_IS_ABSTRACT
5170 || kind == CPTK_IS_BASE_OF
5171 || kind == CPTK_IS_CLASS
5172 || kind == CPTK_IS_CONVERTIBLE_TO
5173 || kind == CPTK_IS_EMPTY
5174 || kind == CPTK_IS_ENUM
5175 || kind == CPTK_IS_POD
5176 || kind == CPTK_IS_POLYMORPHIC
c32097d8
JM
5177 || kind == CPTK_IS_STD_LAYOUT
5178 || kind == CPTK_IS_TRIVIAL
2b08f2c5 5179 || kind == CPTK_IS_LITERAL_TYPE
cb68ec50
PC
5180 || kind == CPTK_IS_UNION);
5181
5182 if (kind == CPTK_IS_CONVERTIBLE_TO)
5183 {
5184 sorry ("__is_convertible_to");
5185 return error_mark_node;
5186 }
5187
5188 if (type1 == error_mark_node
5189 || ((kind == CPTK_IS_BASE_OF || kind == CPTK_IS_CONVERTIBLE_TO)
5190 && type2 == error_mark_node))
5191 return error_mark_node;
5192
5193 if (processing_template_decl)
5194 {
5195 tree trait_expr = make_node (TRAIT_EXPR);
5196 TREE_TYPE (trait_expr) = boolean_type_node;
5197 TRAIT_EXPR_TYPE1 (trait_expr) = type1;
5198 TRAIT_EXPR_TYPE2 (trait_expr) = type2;
5199 TRAIT_EXPR_KIND (trait_expr) = kind;
5200 return trait_expr;
5201 }
5202
10c1d4af
PC
5203 complete_type (type1);
5204 if (type2)
5205 complete_type (type2);
5206
ff284b4b 5207 switch (kind)
cb68ec50 5208 {
ff284b4b
PC
5209 case CPTK_HAS_NOTHROW_ASSIGN:
5210 case CPTK_HAS_TRIVIAL_ASSIGN:
5211 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5212 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5213 case CPTK_HAS_NOTHROW_COPY:
5214 case CPTK_HAS_TRIVIAL_COPY:
5215 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5216 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
5217 case CPTK_IS_ABSTRACT:
5218 case CPTK_IS_EMPTY:
5219 case CPTK_IS_POD:
5220 case CPTK_IS_POLYMORPHIC:
c32097d8
JM
5221 case CPTK_IS_STD_LAYOUT:
5222 case CPTK_IS_TRIVIAL:
2b08f2c5 5223 case CPTK_IS_LITERAL_TYPE:
ff284b4b
PC
5224 if (!check_trait_type (type1))
5225 {
5226 error ("incomplete type %qT not allowed", type1);
5227 return error_mark_node;
5228 }
5229 break;
5230
5231 case CPTK_IS_BASE_OF:
5232 if (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5233 && !same_type_ignoring_top_level_qualifiers_p (type1, type2)
5234 && !COMPLETE_TYPE_P (type2))
5235 {
5236 error ("incomplete type %qT not allowed", type2);
5237 return error_mark_node;
5238 }
5239 break;
5240
5241 case CPTK_IS_CLASS:
5242 case CPTK_IS_ENUM:
5243 case CPTK_IS_UNION:
5244 break;
5245
5246 case CPTK_IS_CONVERTIBLE_TO:
5247 default:
5248 gcc_unreachable ();
cb68ec50
PC
5249 }
5250
5251 return (trait_expr_value (kind, type1, type2)
5252 ? boolean_true_node : boolean_false_node);
5253}
5254
6ec637a4
JJ
5255/* Do-nothing variants of functions to handle pragma FLOAT_CONST_DECIMAL64,
5256 which is ignored for C++. */
5257
5258void
5259set_float_const_decimal64 (void)
5260{
5261}
5262
5263void
5264clear_float_const_decimal64 (void)
5265{
5266}
5267
5268bool
5269float_const_decimal64_p (void)
5270{
5271 return 0;
5272}
5273
3b49d762 5274\f
7ecbca9d
GDR
5275/* Return true if T is a literal type. */
5276
5277bool
5278literal_type_p (tree t)
5279{
5280 if (SCALAR_TYPE_P (t))
5281 return true;
5282 if (CLASS_TYPE_P (t))
5283 return CLASSTYPE_LITERAL_P (t);
5284 if (TREE_CODE (t) == ARRAY_TYPE)
5285 return literal_type_p (strip_array_types (t));
5286 return false;
5287}
5288
7ecbca9d
GDR
5289/* If DECL is a variable declared `constexpr', require its type
5290 be literal. Return the DECL if OK, otherwise NULL. */
5291
5292tree
5293ensure_literal_type_for_constexpr_object (tree decl)
5294{
5295 tree type = TREE_TYPE (decl);
5296 if (TREE_CODE (decl) == VAR_DECL && DECL_DECLARED_CONSTEXPR_P (decl)
fa2200cb
JM
5297 && !processing_template_decl
5298 /* The call to complete_type is just for initializer_list. */
5299 && !literal_type_p (complete_type (type)))
7ecbca9d
GDR
5300 {
5301 error ("the type %qT of constexpr variable %qD is not literal",
5302 type, decl);
5303 return NULL;
5304 }
5305 return decl;
5306}
5307
66e61a34
JM
5308/* Representation of entries in the constexpr function definition table. */
5309
5310typedef struct GTY(()) constexpr_fundef {
5311 tree decl;
5312 tree body;
5313} constexpr_fundef;
5314
5315/* This table holds all constexpr function definitions seen in
5316 the current translation unit. */
5317
5318static GTY ((param_is (constexpr_fundef))) htab_t constexpr_fundef_table;
5319
66e61a34
JM
5320/* Utility function used for managing the constexpr function table.
5321 Return true if the entries pointed to by P and Q are for the
5322 same constexpr function. */
5323
5324static inline int
5325constexpr_fundef_equal (const void *p, const void *q)
5326{
5327 const constexpr_fundef *lhs = (const constexpr_fundef *) p;
5328 const constexpr_fundef *rhs = (const constexpr_fundef *) q;
5329 return lhs->decl == rhs->decl;
5330}
5331
5332/* Utility function used for managing the constexpr function table.
5333 Return a hash value for the entry pointed to by Q. */
5334
5335static inline hashval_t
5336constexpr_fundef_hash (const void *p)
5337{
5338 const constexpr_fundef *fundef = (const constexpr_fundef *) p;
5339 return DECL_UID (fundef->decl);
5340}
5341
5342/* Return a previously saved definition of function FUN. */
5343
5344static constexpr_fundef *
5345retrieve_constexpr_fundef (tree fun)
5346{
5347 constexpr_fundef fundef = { NULL, NULL };
5348 if (constexpr_fundef_table == NULL)
5349 return NULL;
5350
5351 fundef.decl = fun;
5352 return (constexpr_fundef *) htab_find (constexpr_fundef_table, &fundef);
5353}
5354
91ea6df3
GDR
5355/* Return true if type expression T is a valid parameter type, or
5356 a valid return type, of a constexpr function. */
5357
5358static bool
5359valid_type_in_constexpr_fundecl_p (tree t)
5360{
5361 return (literal_type_p (t)
5362 /* FIXME we allow ref to non-literal; should change standard to
5363 match, or change back if not. */
5364 || TREE_CODE (t) == REFERENCE_TYPE);
5365}
5366
5367/* Check whether the parameter and return types of FUN are valid for a
5368 constexpr function, and complain if COMPLAIN. */
5369
5370static bool
5371is_valid_constexpr_fn (tree fun, bool complain)
5372{
5373 tree parm = FUNCTION_FIRST_USER_PARM (fun);
5374 bool ret = true;
5375 for (; parm != NULL; parm = TREE_CHAIN (parm))
5376 if (!valid_type_in_constexpr_fundecl_p (TREE_TYPE (parm)))
5377 {
5378 ret = false;
5379 if (complain)
915829cc
JM
5380 error ("invalid type for parameter %d of constexpr "
5381 "function %q+#D", DECL_PARM_INDEX (parm), fun);
91ea6df3
GDR
5382 }
5383
5384 if (!DECL_CONSTRUCTOR_P (fun))
5385 {
5386 tree rettype = TREE_TYPE (TREE_TYPE (fun));
5387 if (!valid_type_in_constexpr_fundecl_p (rettype))
5388 {
5389 ret = false;
5390 if (complain)
915829cc 5391 error ("invalid return type %qT of constexpr function %q+D",
91ea6df3
GDR
5392 rettype, fun);
5393 }
5394
5395 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
a90caaa2 5396 && !CLASSTYPE_LITERAL_P (DECL_CONTEXT (fun)))
91ea6df3
GDR
5397 {
5398 ret = false;
5399 if (complain)
915829cc 5400 error ("enclosing class of %q+#D is not a literal type", fun);
91ea6df3
GDR
5401 }
5402 }
5403
5404 return ret;
5405}
5406
7ecbca9d
GDR
5407/* Return non-null if FUN certainly designates a valid constexpr function
5408 declaration. Otherwise return NULL. Issue appropriate diagnostics
5409 if necessary. Note that we only check the declaration, not the body
5410 of the function. */
5411
5412tree
5413validate_constexpr_fundecl (tree fun)
5414{
66e61a34
JM
5415 constexpr_fundef entry;
5416 constexpr_fundef **slot;
5417
91ea6df3 5418 if (processing_template_decl || !DECL_DECLARED_CONSTEXPR_P (fun))
7ecbca9d 5419 return NULL;
91ea6df3
GDR
5420 else if (DECL_CLONED_FUNCTION_P (fun))
5421 /* We already checked the original function. */
7ecbca9d
GDR
5422 return fun;
5423
91ea6df3 5424 if (!is_valid_constexpr_fn (fun, !DECL_TEMPLATE_INSTANTIATION (fun)))
7ecbca9d 5425 {
91ea6df3 5426 DECL_DECLARED_CONSTEXPR_P (fun) = false;
7ecbca9d
GDR
5427 return NULL;
5428 }
91ea6df3 5429
66e61a34
JM
5430 /* Create the constexpr function table if necessary. */
5431 if (constexpr_fundef_table == NULL)
5432 constexpr_fundef_table = htab_create_ggc (101,
5433 constexpr_fundef_hash,
5434 constexpr_fundef_equal,
5435 ggc_free);
5436 entry.decl = fun;
5437 entry.body = NULL;
5438 slot = (constexpr_fundef **)
5439 htab_find_slot (constexpr_fundef_table, &entry, INSERT);
5440 if (*slot == NULL)
5441 {
5442 *slot = ggc_alloc_constexpr_fundef ();
5443 **slot = entry;
5444 }
5445 return fun;
5446}
5447
5448/* Subroutine of build_constexpr_constructor_member_initializers.
5449 The expression tree T represents a data member initialization
5450 in a (constexpr) constructor definition. Build a pairing of
5451 the data member with its initializer, and prepend that pair
5452 to the existing initialization pair INITS. */
5453
5454static bool
5455build_data_member_initialization (tree t, VEC(constructor_elt,gc) **vec)
5456{
5457 tree member, init;
5458 if (TREE_CODE (t) == CLEANUP_POINT_EXPR)
5459 t = TREE_OPERAND (t, 0);
5460 if (TREE_CODE (t) == EXPR_STMT)
5461 t = TREE_OPERAND (t, 0);
5462 if (t == error_mark_node)
5463 return false;
60d237af
JJ
5464 if (TREE_CODE (t) == STATEMENT_LIST)
5465 {
5466 tree_stmt_iterator i;
5467 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
5468 {
5469 if (! build_data_member_initialization (tsi_stmt (i), vec))
5470 return false;
5471 }
5472 return true;
5473 }
66e61a34 5474 if (TREE_CODE (t) == CLEANUP_STMT)
ebb526f9
JJ
5475 {
5476 /* We can't see a CLEANUP_STMT in a constructor for a literal class,
5477 but we can in a constexpr constructor for a non-literal class. Just
5478 ignore it; either all the initialization will be constant, in which
5479 case the cleanup can't run, or it can't be constexpr.
5480 Still recurse into CLEANUP_BODY. */
60d237af 5481 return build_data_member_initialization (CLEANUP_BODY (t), vec);
ebb526f9 5482 }
66e61a34
JM
5483 if (TREE_CODE (t) == CONVERT_EXPR)
5484 t = TREE_OPERAND (t, 0);
5485 if (TREE_CODE (t) == INIT_EXPR
5486 || TREE_CODE (t) == MODIFY_EXPR)
5487 {
5488 member = TREE_OPERAND (t, 0);
5489 init = unshare_expr (TREE_OPERAND (t, 1));
5490 }
5491 else
5492 {
66e61a34
JM
5493 gcc_assert (TREE_CODE (t) == CALL_EXPR);
5494 member = CALL_EXPR_ARG (t, 0);
0e5dcad1
JM
5495 /* We don't use build_cplus_new here because it complains about
5496 abstract bases. Leaving the call unwrapped means that it has the
5497 wrong type, but cxx_eval_constant_expression doesn't care. */
5498 init = unshare_expr (t);
5499 }
5500 if (TREE_CODE (member) == INDIRECT_REF)
5501 member = TREE_OPERAND (member, 0);
5502 if (TREE_CODE (member) == NOP_EXPR)
5503 {
5504 tree op = member;
5505 STRIP_NOPS (op);
5506 if (TREE_CODE (op) == ADDR_EXPR)
66e61a34 5507 {
0e5dcad1
JM
5508 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5509 (TREE_TYPE (TREE_TYPE (op)),
5510 TREE_TYPE (TREE_TYPE (member))));
5511 /* Initializing a cv-qualified member; we need to look through
5512 the const_cast. */
5513 member = op;
66e61a34
JM
5514 }
5515 else
5516 {
0e5dcad1
JM
5517 /* We don't put out anything for an empty base. */
5518 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (member))));
5519 /* But if the initializer isn't constexpr, leave it in so we
5520 complain later. */
d6ed1c89 5521 if (potential_constant_expression (init))
0e5dcad1 5522 return true;
66e61a34 5523 }
66e61a34 5524 }
0e5dcad1
JM
5525 if (TREE_CODE (member) == ADDR_EXPR)
5526 member = TREE_OPERAND (member, 0);
d79b88a1
JM
5527 if (TREE_CODE (member) == COMPONENT_REF
5528 /* If we're initializing a member of a subaggregate, it's a vtable
5529 pointer. Leave it as COMPONENT_REF so we remember the path to get
5530 to the vfield. */
5531 && TREE_CODE (TREE_OPERAND (member, 0)) != COMPONENT_REF)
66e61a34
JM
5532 member = TREE_OPERAND (member, 1);
5533 CONSTRUCTOR_APPEND_ELT (*vec, member, init);
5534 return true;
5535}
5536
9b7d0509
JM
5537/* Make sure that there are no statements after LAST in the constructor
5538 body represented by LIST. */
5539
5540bool
5541check_constexpr_ctor_body (tree last, tree list)
5542{
5543 bool ok = true;
5544 if (TREE_CODE (list) == STATEMENT_LIST)
5545 {
5546 tree_stmt_iterator i = tsi_last (list);
5547 for (; !tsi_end_p (i); tsi_prev (&i))
5548 {
5549 tree t = tsi_stmt (i);
5550 if (t == last)
5551 break;
5552 if (TREE_CODE (t) == BIND_EXPR)
5553 {
5554 if (!check_constexpr_ctor_body (last, BIND_EXPR_BODY (t)))
5555 return false;
5556 else
5557 continue;
5558 }
5559 /* We currently allow typedefs and static_assert.
5560 FIXME allow them in the standard, too. */
5561 if (TREE_CODE (t) != STATIC_ASSERT)
5562 {
5563 ok = false;
5564 break;
5565 }
5566 }
5567 }
5568 else if (list != last
5569 && TREE_CODE (list) != STATIC_ASSERT)
5570 ok = false;
5571 if (!ok)
5572 {
5573 error ("constexpr constructor does not have empty body");
5574 DECL_DECLARED_CONSTEXPR_P (current_function_decl) = false;
5575 }
5576 return ok;
5577}
5578
66e61a34
JM
5579/* Build compile-time evalable representations of member-initializer list
5580 for a constexpr constructor. */
5581
5582static tree
5583build_constexpr_constructor_member_initializers (tree type, tree body)
5584{
5585 VEC(constructor_elt,gc) *vec = NULL;
5586 bool ok = true;
5587 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR
5588 || TREE_CODE (body) == EH_SPEC_BLOCK)
5589 body = TREE_OPERAND (body, 0);
d4e55f30
JM
5590 if (TREE_CODE (body) == STATEMENT_LIST)
5591 body = STATEMENT_LIST_HEAD (body)->stmt;
5592 body = BIND_EXPR_BODY (body);
66e61a34 5593 if (TREE_CODE (body) == CLEANUP_POINT_EXPR)
62f9aedc
JM
5594 {
5595 body = TREE_OPERAND (body, 0);
5596 if (TREE_CODE (body) == EXPR_STMT)
5597 body = TREE_OPERAND (body, 0);
5598 if (TREE_CODE (body) == INIT_EXPR
5599 && (same_type_ignoring_top_level_qualifiers_p
5600 (TREE_TYPE (TREE_OPERAND (body, 0)),
5601 current_class_type)))
5602 {
5603 /* Trivial copy. */
5604 return TREE_OPERAND (body, 1);
5605 }
5606 ok = build_data_member_initialization (body, &vec);
5607 }
0787e2e7 5608 else if (TREE_CODE (body) == STATEMENT_LIST)
66e61a34
JM
5609 {
5610 tree_stmt_iterator i;
66e61a34
JM
5611 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
5612 {
5613 ok = build_data_member_initialization (tsi_stmt (i), &vec);
5614 if (!ok)
5615 break;
5616 }
5617 }
0787e2e7
JM
5618 else
5619 gcc_assert (errorcount > 0);
66e61a34
JM
5620 if (ok)
5621 return build_constructor (type, vec);
5622 else
5623 return error_mark_node;
5624}
5625
62add5e1
JM
5626/* Subroutine of register_constexpr_fundef. BODY is the body of a function
5627 declared to be constexpr, or a sub-statement thereof. Returns the
5628 return value if suitable, error_mark_node for a statement not allowed in
5629 a constexpr function, or NULL_TREE if no return value was found. */
5630
5631static tree
5632constexpr_fn_retval (tree body)
5633{
5634 switch (TREE_CODE (body))
5635 {
5636 case STATEMENT_LIST:
5637 {
5638 tree_stmt_iterator i;
5639 tree expr = NULL_TREE;
5640 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
5641 {
5642 tree s = constexpr_fn_retval (tsi_stmt (i));
5643 if (s == error_mark_node)
5644 return error_mark_node;
5645 else if (s == NULL_TREE)
5646 /* Keep iterating. */;
5647 else if (expr)
5648 /* Multiple return statements. */
5649 return error_mark_node;
5650 else
5651 expr = s;
5652 }
5653 return expr;
5654 }
5655
5656 case RETURN_EXPR:
5657 return unshare_expr (TREE_OPERAND (body, 0));
5658
5659 case DECL_EXPR:
5660 if (TREE_CODE (DECL_EXPR_DECL (body)) == USING_DECL)
5661 return NULL_TREE;
5662 return error_mark_node;
5663
5664 case USING_STMT:
5665 return NULL_TREE;
5666
5667 default:
5668 return error_mark_node;
5669 }
5670}
5671
66e61a34
JM
5672/* We are processing the definition of the constexpr function FUN.
5673 Check that its BODY fulfills the propriate requirements and
5674 enter it in the constexpr function definition table.
5675 For constructor BODY is actually the TREE_LIST of the
5676 member-initializer list. */
5677
5678tree
5679register_constexpr_fundef (tree fun, tree body)
5680{
5681 constexpr_fundef *fundef = retrieve_constexpr_fundef (fun);
5682 gcc_assert (fundef != NULL && fundef->body == NULL);
5683
5684 if (DECL_CONSTRUCTOR_P (fun))
5685 body = build_constexpr_constructor_member_initializers
5686 (DECL_CONTEXT (fun), body);
5687 else
5688 {
5689 if (TREE_CODE (body) == BIND_EXPR)
5690 body = BIND_EXPR_BODY (body);
5691 if (TREE_CODE (body) == EH_SPEC_BLOCK)
5692 body = EH_SPEC_STMTS (body);
5693 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
5694 body = TREE_OPERAND (body, 0);
5695 if (TREE_CODE (body) == CLEANUP_POINT_EXPR)
5696 body = TREE_OPERAND (body, 0);
62add5e1
JM
5697 body = constexpr_fn_retval (body);
5698 if (body == NULL_TREE || body == error_mark_node)
66e61a34
JM
5699 {
5700 error ("body of constexpr function %qD not a return-statement", fun);
5701 DECL_DECLARED_CONSTEXPR_P (fun) = false;
5702 return NULL;
5703 }
66e61a34
JM
5704 }
5705
cb21e9cd 5706 if (!potential_rvalue_constant_expression (body))
66e61a34
JM
5707 {
5708 DECL_DECLARED_CONSTEXPR_P (fun) = false;
d6ed1c89 5709 if (!DECL_TEMPLATE_INSTANTIATION (fun))
cb21e9cd 5710 require_potential_rvalue_constant_expression (body);
66e61a34
JM
5711 return NULL;
5712 }
5713 fundef->body = body;
5714 return fun;
5715}
5716
c41095db
GDR
5717/* Objects of this type represent calls to constexpr functions
5718 along with the bindings of parameters to their arguments, for
5719 the purpose of compile time evaluation. */
5720
5721typedef struct GTY(()) constexpr_call {
5722 /* Description of the constexpr function definition. */
5723 constexpr_fundef *fundef;
5724 /* Parameter bindings enironment. A TREE_LIST where each TREE_PURPOSE
5725 is a parameter _DECL and the TREE_VALUE is the value of the parameter.
5726 Note: This arrangement is made to accomodate the use of
5727 iterative_hash_template_arg (see pt.c). If you change this
5728 representation, also change the hash calculation in
5729 cxx_eval_call_expression. */
5730 tree bindings;
5731 /* Result of the call.
5732 NULL means the call is being evaluated.
5733 error_mark_node means that the evaluation was erroneous;
5734 otherwise, the actuall value of the call. */
5735 tree result;
5736 /* The hash of this call; we remember it here to avoid having to
5737 recalculate it when expanding the hash table. */
5738 hashval_t hash;
5739} constexpr_call;
5740
5741/* A table of all constexpr calls that have been evaluated by the
5742 compiler in this translation unit. */
5743
5744static GTY ((param_is (constexpr_call))) htab_t constexpr_call_table;
5745
5746static tree cxx_eval_constant_expression (const constexpr_call *, tree,
5747 bool, bool, bool *);
5748
5749/* Compute a hash value for a constexpr call representation. */
5750
5751static hashval_t
5752constexpr_call_hash (const void *p)
5753{
5754 const constexpr_call *info = (const constexpr_call *) p;
5755 return info->hash;
5756}
5757
5758/* Return 1 if the objects pointed to by P and Q represent calls
5759 to the same constexpr function with the same arguments.
5760 Otherwise, return 0. */
5761
5762static int
5763constexpr_call_equal (const void *p, const void *q)
5764{
5765 const constexpr_call *lhs = (const constexpr_call *) p;
5766 const constexpr_call *rhs = (const constexpr_call *) q;
5767 tree lhs_bindings;
5768 tree rhs_bindings;
5769 if (lhs == rhs)
5770 return 1;
5771 if (!constexpr_fundef_equal (lhs->fundef, rhs->fundef))
5772 return 0;
5773 lhs_bindings = lhs->bindings;
5774 rhs_bindings = rhs->bindings;
5775 while (lhs_bindings != NULL && rhs_bindings != NULL)
5776 {
5777 tree lhs_arg = TREE_VALUE (lhs_bindings);
5778 tree rhs_arg = TREE_VALUE (rhs_bindings);
5779 gcc_assert (TREE_TYPE (lhs_arg) == TREE_TYPE (rhs_arg));
5780 if (!cp_tree_equal (lhs_arg, rhs_arg))
5781 return 0;
5782 lhs_bindings = TREE_CHAIN (lhs_bindings);
5783 rhs_bindings = TREE_CHAIN (rhs_bindings);
5784 }
5785 return lhs_bindings == rhs_bindings;
5786}
5787
5788/* Initialize the constexpr call table, if needed. */
5789
5790static void
5791maybe_initialize_constexpr_call_table (void)
5792{
5793 if (constexpr_call_table == NULL)
5794 constexpr_call_table = htab_create_ggc (101,
5795 constexpr_call_hash,
5796 constexpr_call_equal,
5797 ggc_free);
5798}
5799
66e61a34
JM
5800/* Return true if T designates the implied `this' parameter. */
5801
5802static inline bool
5803is_this_parameter (tree t)
5804{
5805 return t == current_class_ptr;
5806}
5807
5808/* We have an expression tree T that represents a call, either CALL_EXPR
5809 or AGGR_INIT_EXPR. If the call is lexically to a named function,
5810 retrun the _DECL for that function. */
5811
5812static tree
5813get_function_named_in_call (tree t)
5814{
5815 tree fun = NULL;
5816 switch (TREE_CODE (t))
5817 {
5818 case CALL_EXPR:
5819 fun = CALL_EXPR_FN (t);
5820 break;
5821
5822 case AGGR_INIT_EXPR:
5823 fun = AGGR_INIT_EXPR_FN (t);
5824 break;
5825
5826 default:
5827 gcc_unreachable();
5828 break;
5829 }
5830 if (TREE_CODE (fun) == ADDR_EXPR
5831 && TREE_CODE (TREE_OPERAND (fun, 0)) == FUNCTION_DECL)
5832 fun = TREE_OPERAND (fun, 0);
7ecbca9d
GDR
5833 return fun;
5834}
5835
66e61a34
JM
5836/* We have an expression tree T that represents a call, either CALL_EXPR
5837 or AGGR_INIT_EXPR. Return the Nth argument. */
5838
5839static inline tree
5840get_nth_callarg (tree t, int n)
5841{
5842 switch (TREE_CODE (t))
5843 {
5844 case CALL_EXPR:
5845 return CALL_EXPR_ARG (t, n);
5846
5847 case AGGR_INIT_EXPR:
5848 return AGGR_INIT_EXPR_ARG (t, n);
5849
5850 default:
5851 gcc_unreachable ();
5852 return NULL;
5853 }
5854}
5855
c41095db
GDR
5856/* Look up the binding of the function parameter T in a constexpr
5857 function call context CALL. */
5858
5859static tree
5860lookup_parameter_binding (const constexpr_call *call, tree t)
5861{
5862 tree b = purpose_member (t, call->bindings);
5863 return TREE_VALUE (b);
5864}
5865
5866/* Attempt to evaluate T which represents a call to a builtin function.
5867 We assume here that all builtin functions evaluate to scalar types
5868 represented by _CST nodes. */
5869
5870static tree
5871cxx_eval_builtin_function_call (const constexpr_call *call, tree t,
5872 bool allow_non_constant, bool addr,
5873 bool *non_constant_p)
5874{
5875 const int nargs = call_expr_nargs (t);
5876 tree *args = (tree *) alloca (nargs * sizeof (tree));
5877 tree new_call;
5878 int i;
5879 for (i = 0; i < nargs; ++i)
5880 {
5881 args[i] = cxx_eval_constant_expression (call, CALL_EXPR_ARG (t, i),
5882 allow_non_constant, addr,
5883 non_constant_p);
5884 if (allow_non_constant && *non_constant_p)
5885 return t;
5886 }
5887 if (*non_constant_p)
5888 return t;
5889 new_call = build_call_array_loc (EXPR_LOCATION (t), TREE_TYPE (t),
5890 CALL_EXPR_FN (t), nargs, args);
5891 return fold (new_call);
5892}
5893
5894/* TEMP is the constant value of a temporary object of type TYPE. Adjust
5895 the type of the value to match. */
5896
5897static tree
5898adjust_temp_type (tree type, tree temp)
5899{
5900 if (TREE_TYPE (temp) == type)
5901 return temp;
5902 /* Avoid wrapping an aggregate value in a NOP_EXPR. */
5903 if (TREE_CODE (temp) == CONSTRUCTOR)
5904 return build_constructor (type, CONSTRUCTOR_ELTS (temp));
5905 gcc_assert (SCALAR_TYPE_P (type));
9e115cec 5906 return cp_fold_convert (type, temp);
c41095db
GDR
5907}
5908
5909/* Subroutine of cxx_eval_call_expression.
5910 We are processing a call expression (either CALL_EXPR or
5911 AGGR_INIT_EXPR) in the call context of OLD_CALL. Evaluate
5912 all arguments and bind their values to correspondings
5913 parameters, making up the NEW_CALL context. */
5914
5915static void
5916cxx_bind_parameters_in_call (const constexpr_call *old_call, tree t,
5917 constexpr_call *new_call,
5918 bool allow_non_constant,
5919 bool *non_constant_p)
5920{
5921 const int nargs = call_expr_nargs (t);
5922 tree fun = new_call->fundef->decl;
5923 tree parms = DECL_ARGUMENTS (fun);
5924 int i;
5925 for (i = 0; i < nargs; ++i)
5926 {
5927 tree x, arg;
5928 tree type = parms ? TREE_TYPE (parms) : void_type_node;
5929 /* For member function, the first argument is a pointer to the implied
5930 object. And for an object contruction, don't bind `this' before
5931 it is fully constructed. */
5932 if (i == 0 && DECL_CONSTRUCTOR_P (fun))
5933 goto next;
5934 x = get_nth_callarg (t, i);
5935 arg = cxx_eval_constant_expression (old_call, x, allow_non_constant,
5936 TREE_CODE (type) == REFERENCE_TYPE,
5937 non_constant_p);
5938 /* Don't VERIFY_CONSTANT here. */
5939 if (*non_constant_p && allow_non_constant)
5940 return;
5941 /* Just discard ellipsis args after checking their constantitude. */
5942 if (!parms)
5943 continue;
c6f54c7a
JM
5944 if (*non_constant_p)
5945 /* Don't try to adjust the type of non-constant args. */
5946 goto next;
c41095db
GDR
5947
5948 /* Make sure the binding has the same type as the parm. */
5949 if (TREE_CODE (type) != REFERENCE_TYPE)
5950 arg = adjust_temp_type (type, arg);
5951 new_call->bindings = tree_cons (parms, arg, new_call->bindings);
5952 next:
5953 parms = TREE_CHAIN (parms);
5954 }
5955}
5956
2bfe0527
JM
5957/* Variables and functions to manage constexpr call expansion context.
5958 These do not need to be marked for PCH or GC. */
5959
17bc631c 5960/* FIXME remember and print actual constant arguments. */
2bfe0527
JM
5961static VEC(tree,heap) *call_stack = NULL;
5962static int call_stack_tick;
5963static int last_cx_error_tick;
5964
17bc631c 5965static bool
2bfe0527
JM
5966push_cx_call_context (tree call)
5967{
5968 ++call_stack_tick;
5969 if (!EXPR_HAS_LOCATION (call))
5970 SET_EXPR_LOCATION (call, input_location);
5971 VEC_safe_push (tree, heap, call_stack, call);
17bc631c
JM
5972 if (VEC_length (tree, call_stack) > (unsigned) max_constexpr_depth)
5973 return false;
5974 return true;
2bfe0527
JM
5975}
5976
5977static void
5978pop_cx_call_context (void)
5979{
5980 ++call_stack_tick;
5981 VEC_pop (tree, call_stack);
5982}
5983
5984VEC(tree,heap) *
5985cx_error_context (void)
5986{
5987 VEC(tree,heap) *r = NULL;
5988 if (call_stack_tick != last_cx_error_tick
5989 && !VEC_empty (tree, call_stack))
5990 r = call_stack;
5991 last_cx_error_tick = call_stack_tick;
5992 return r;
5993}
5994
c41095db
GDR
5995/* Subroutine of cxx_eval_constant_expression.
5996 Evaluate the call expression tree T in the context of OLD_CALL expression
5997 evaluation. */
5998
5999static tree
6000cxx_eval_call_expression (const constexpr_call *old_call, tree t,
6001 bool allow_non_constant, bool addr,
6002 bool *non_constant_p)
6003{
2bfe0527 6004 location_t loc = EXPR_LOC_OR_HERE (t);
c41095db
GDR
6005 tree fun = get_function_named_in_call (t);
6006 tree result;
6007 constexpr_call new_call = { NULL, NULL, NULL, 0 };
6008 constexpr_call **slot;
17bc631c
JM
6009 constexpr_call *entry;
6010 bool depth_ok;
6011
c41095db
GDR
6012 if (TREE_CODE (fun) != FUNCTION_DECL)
6013 {
6014 /* Might be a constexpr function pointer. */
6015 fun = cxx_eval_constant_expression (old_call, fun, allow_non_constant,
6016 /*addr*/false, non_constant_p);
6017 if (TREE_CODE (fun) == ADDR_EXPR)
6018 fun = TREE_OPERAND (fun, 0);
6019 }
6020 if (TREE_CODE (fun) != FUNCTION_DECL)
6021 {
6022 if (!allow_non_constant)
6023 error_at (loc, "expression %qE does not designate a constexpr "
6024 "function", fun);
6025 *non_constant_p = true;
6026 return t;
6027 }
6028 if (DECL_CLONED_FUNCTION_P (fun))
6029 fun = DECL_CLONED_FUNCTION (fun);
6030 if (is_builtin_fn (fun))
6031 return cxx_eval_builtin_function_call (old_call, t, allow_non_constant,
6032 addr, non_constant_p);
6033 if (!DECL_DECLARED_CONSTEXPR_P (fun))
6034 {
6035 if (!allow_non_constant)
6036 {
6037 error_at (loc, "%qD is not a constexpr function", fun);
6038 if (DECL_TEMPLATE_INSTANTIATION (fun)
6039 && DECL_DECLARED_CONSTEXPR_P (DECL_TEMPLATE_RESULT
6040 (DECL_TI_TEMPLATE (fun))))
6041 is_valid_constexpr_fn (fun, true);
6042 }
6043 *non_constant_p = true;
6044 return t;
6045 }
6046
06a85dd3
JM
6047 /* Shortcut trivial copy constructor/op=. */
6048 if (call_expr_nargs (t) == 2 && trivial_fn_p (fun))
c62f4cd9
JM
6049 {
6050 tree arg = convert_from_reference (get_nth_callarg (t, 1));
6051 return cxx_eval_constant_expression (old_call, arg, allow_non_constant,
6052 addr, non_constant_p);
6053 }
06a85dd3 6054
c41095db
GDR
6055 /* If in direct recursive call, optimize definition search. */
6056 if (old_call != NULL && old_call->fundef->decl == fun)
6057 new_call.fundef = old_call->fundef;
6058 else
6059 {
6060 new_call.fundef = retrieve_constexpr_fundef (fun);
6061 if (new_call.fundef == NULL || new_call.fundef->body == NULL)
6062 {
6063 if (!allow_non_constant)
6064 error_at (loc, "%qD used before its definition", fun);
6065 *non_constant_p = true;
6066 return t;
6067 }
6068 }
6069 cxx_bind_parameters_in_call (old_call, t, &new_call,
6070 allow_non_constant, non_constant_p);
6071 if (*non_constant_p)
6072 return t;
6073
17bc631c 6074 depth_ok = push_cx_call_context (t);
2bfe0527 6075
c41095db
GDR
6076 new_call.hash
6077 = iterative_hash_template_arg (new_call.bindings,
6078 constexpr_fundef_hash (new_call.fundef));
6079
6080 /* If we have seen this call before, we are done. */
6081 maybe_initialize_constexpr_call_table ();
6082 slot = (constexpr_call **)
6083 htab_find_slot (constexpr_call_table, &new_call, INSERT);
17bc631c
JM
6084 entry = *slot;
6085 if (entry == NULL)
c41095db
GDR
6086 {
6087 /* We need to keep a pointer to the entry, not just the slot, as the
6088 slot can move in the call to cxx_eval_builtin_function_call. */
17bc631c 6089 *slot = entry = ggc_alloc_constexpr_call ();
c41095db 6090 *entry = new_call;
17bc631c
JM
6091 }
6092 /* Calls which are in progress have their result set to NULL
6093 so that we can detect circular dependencies. */
6094 else if (entry->result == NULL)
6095 {
6096 if (!allow_non_constant)
6097 error ("call has circular dependency");
6098 *non_constant_p = true;
6099 entry->result = result = error_mark_node;
6100 }
6101
6102 if (!depth_ok)
6103 {
6104 if (!allow_non_constant)
6105 error ("constexpr evaluation depth exceeds maximum of %d (use "
6106 "-fconstexpr-depth= to increase the maximum)",
6107 max_constexpr_depth);
6108 *non_constant_p = true;
6109 entry->result = result = error_mark_node;
6110 }
6111 else
6112 {
6113 result = entry->result;
6114 if (!result || (result == error_mark_node && !allow_non_constant))
6115 result = (cxx_eval_constant_expression
6116 (&new_call, new_call.fundef->body,
6117 allow_non_constant, addr,
6118 non_constant_p));
6119 if (result == error_mark_node)
6120 *non_constant_p = true;
c41095db
GDR
6121 if (*non_constant_p)
6122 entry->result = result = error_mark_node;
6123 else
6124 {
6125 /* If this was a call to initialize an object, set the type of
6126 the CONSTRUCTOR to the type of that object. */
6127 if (DECL_CONSTRUCTOR_P (fun))
6128 {
6129 tree ob_arg = get_nth_callarg (t, 0);
6130 STRIP_NOPS (ob_arg);
6131 gcc_assert (TREE_CODE (TREE_TYPE (ob_arg)) == POINTER_TYPE
6132 && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (ob_arg))));
6133 result = adjust_temp_type (TREE_TYPE (TREE_TYPE (ob_arg)),
6134 result);
6135 }
6136 entry->result = result;
6137 }
6138 }
6139
2bfe0527 6140 pop_cx_call_context ();
e26ab5ec 6141 return unshare_expr (result);
c41095db
GDR
6142}
6143
9e115cec
JM
6144/* FIXME speed this up, it's taking 16% of compile time on sieve testcase. */
6145
c41095db
GDR
6146bool
6147reduced_constant_expression_p (tree t)
6148{
9e115cec
JM
6149 if (TREE_OVERFLOW_P (t))
6150 /* Integer overflow makes this not a constant expression. */
c41095db
GDR
6151 return false;
6152 /* FIXME are we calling this too much? */
6153 return initializer_constant_valid_p (t, TREE_TYPE (t)) != NULL_TREE;
6154}
6155
6156/* Some expressions may have constant operands but are not constant
6157 themselves, such as 1/0. Call this function (or rather, the macro
6158 following it) to check for that condition.
6159
6160 We only call this in places that require an arithmetic constant, not in
6161 places where we might have a non-constant expression that can be a
6162 component of a constant expression, such as the address of a constexpr
6163 variable that might be dereferenced later. */
6164
6165static bool
6166verify_constant (tree t, bool allow_non_constant, bool *non_constant_p)
6167{
6168 if (!*non_constant_p && !reduced_constant_expression_p (t))
6169 {
6170 if (!allow_non_constant)
9e115cec
JM
6171 {
6172 /* If T was already folded to a _CST with TREE_OVERFLOW set,
6173 printing the folded constant isn't helpful. */
6174 if (TREE_OVERFLOW_P (t))
6175 {
6176 permerror (input_location, "overflow in constant expression");
6177 /* If we're being permissive (and are in an enforcing
6178 context), consider this constant. */
6179 if (flag_permissive)
6180 return false;
6181 }
6182 else
6183 error ("%q+E is not a constant expression", t);
6184 }
c41095db
GDR
6185 *non_constant_p = true;
6186 }
6187 return *non_constant_p;
6188}
6189#define VERIFY_CONSTANT(X) \
6190do { \
6191 if (verify_constant ((X), allow_non_constant, non_constant_p)) \
6192 return t; \
6193 } while (0)
6194
6195/* Subroutine of cxx_eval_constant_expression.
6196 Attempt to reduce the unary expression tree T to a compile time value.
6197 If successful, return the value. Otherwise issue a diagnostic
6198 and return error_mark_node. */
6199
6200static tree
6201cxx_eval_unary_expression (const constexpr_call *call, tree t,
6202 bool allow_non_constant, bool addr,
6203 bool *non_constant_p)
6204{
6205 tree r;
6206 tree orig_arg = TREE_OPERAND (t, 0);
6207 tree arg = cxx_eval_constant_expression (call, orig_arg, allow_non_constant,
6208 addr, non_constant_p);
6209 VERIFY_CONSTANT (arg);
6210 if (arg == orig_arg)
6211 return t;
6212 r = fold_build1 (TREE_CODE (t), TREE_TYPE (t), arg);
6213 VERIFY_CONSTANT (r);
6214 return r;
6215}
6216
6217/* Subroutine of cxx_eval_constant_expression.
6218 Like cxx_eval_unary_expression, except for binary expressions. */
6219
6220static tree
6221cxx_eval_binary_expression (const constexpr_call *call, tree t,
6222 bool allow_non_constant, bool addr,
6223 bool *non_constant_p)
6224{
6225 tree r;
6226 tree orig_lhs = TREE_OPERAND (t, 0);
6227 tree orig_rhs = TREE_OPERAND (t, 1);
6228 tree lhs, rhs;
6229 lhs = cxx_eval_constant_expression (call, orig_lhs,
6230 allow_non_constant, addr,
6231 non_constant_p);
6232 VERIFY_CONSTANT (lhs);
6233 rhs = cxx_eval_constant_expression (call, orig_rhs,
6234 allow_non_constant, addr,
6235 non_constant_p);
6236 VERIFY_CONSTANT (rhs);
6237 if (lhs == orig_lhs && rhs == orig_rhs)
6238 return t;
6239 r = fold_build2 (TREE_CODE (t), TREE_TYPE (t), lhs, rhs);
6240 VERIFY_CONSTANT (r);
6241 return r;
6242}
6243
6244/* Subroutine of cxx_eval_constant_expression.
6245 Attempt to evaluate condition expressions. Dead branches are not
6246 looked into. */
6247
6248static tree
6249cxx_eval_conditional_expression (const constexpr_call *call, tree t,
6250 bool allow_non_constant, bool addr,
6251 bool *non_constant_p)
6252{
6253 tree val = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6254 allow_non_constant, addr,
6255 non_constant_p);
6256 VERIFY_CONSTANT (val);
6257 if (val == boolean_true_node)
6258 return cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6259 allow_non_constant, addr,
6260 non_constant_p);
6261 gcc_assert (val == boolean_false_node);
6262 /* Don't VERIFY_CONSTANT here. */
6263 return cxx_eval_constant_expression (call, TREE_OPERAND (t, 2),
6264 allow_non_constant, addr,
6265 non_constant_p);
6266}
6267
6268/* Subroutine of cxx_eval_constant_expression.
6269 Attempt to reduce a reference to an array slot. */
6270
6271static tree
6272cxx_eval_array_reference (const constexpr_call *call, tree t,
6273 bool allow_non_constant, bool addr,
6274 bool *non_constant_p)
6275{
6276 tree oldary = TREE_OPERAND (t, 0);
6277 tree ary = cxx_eval_constant_expression (call, oldary,
6278 allow_non_constant, addr,
6279 non_constant_p);
6280 tree index, oldidx;
6281 HOST_WIDE_INT i;
6282 unsigned len;
6283 if (*non_constant_p)
6284 return t;
6285 oldidx = TREE_OPERAND (t, 1);
6286 index = cxx_eval_constant_expression (call, oldidx,
6287 allow_non_constant, false,
6288 non_constant_p);
6289 VERIFY_CONSTANT (index);
6290 if (addr && ary == oldary && index == oldidx)
6291 return t;
6292 else if (addr)
6293 return build4 (ARRAY_REF, TREE_TYPE (t), ary, index, NULL, NULL);
6294 len = (TREE_CODE (ary) == CONSTRUCTOR
6295 ? CONSTRUCTOR_NELTS (ary)
6296 : (unsigned)TREE_STRING_LENGTH (ary));
6297 if (compare_tree_int (index, len) >= 0)
6298 {
6299 if (!allow_non_constant)
6300 error ("array subscript out of bound");
6301 *non_constant_p = true;
6302 return t;
6303 }
6304 i = tree_low_cst (index, 0);
6305 if (TREE_CODE (ary) == CONSTRUCTOR)
6306 return VEC_index (constructor_elt, CONSTRUCTOR_ELTS (ary), i)->value;
6307 else
6308 return build_int_cst (cv_unqualified (TREE_TYPE (TREE_TYPE (ary))),
6309 TREE_STRING_POINTER (ary)[i]);
6310 /* Don't VERIFY_CONSTANT here. */
6311}
6312
6313/* Subroutine of cxx_eval_constant_expression.
6314 Attempt to reduce a field access of a value of class type. */
6315
6316static tree
6317cxx_eval_component_reference (const constexpr_call *call, tree t,
6318 bool allow_non_constant, bool addr,
6319 bool *non_constant_p)
6320{
6321 unsigned HOST_WIDE_INT i;
6322 tree field;
6323 tree value;
6324 tree part = TREE_OPERAND (t, 1);
6325 tree orig_whole = TREE_OPERAND (t, 0);
6326 tree whole = cxx_eval_constant_expression (call, orig_whole,
6327 allow_non_constant, addr,
6328 non_constant_p);
6329 if (whole == orig_whole)
6330 return t;
6331 if (addr)
6332 return fold_build3 (COMPONENT_REF, TREE_TYPE (t),
6333 whole, part, NULL_TREE);
6334 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
6335 CONSTRUCTOR. */
6336 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
6337 {
6338 if (!allow_non_constant)
6339 error ("%qE is not a constant expression", orig_whole);
6340 *non_constant_p = true;
6341 }
6342 if (*non_constant_p)
6343 return t;
6344 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
6345 {
6346 if (field == part)
6347 return value;
6348 }
6349 if (TREE_CODE (TREE_TYPE (whole)) == UNION_TYPE)
6350 {
6351 /* FIXME Mike Miller wants this to be OK. */
6352 if (!allow_non_constant)
6353 error ("accessing %qD member instead of initialized %qD member in "
6354 "constant expression", part, CONSTRUCTOR_ELT (whole, 0)->index);
6355 *non_constant_p = true;
6356 return t;
6357 }
6358 gcc_unreachable();
6359 return error_mark_node;
6360}
6361
4ddf1c7f
JM
6362/* Subroutine of cxx_eval_constant_expression.
6363 Attempt to reduce a field access of a value of class type that is
6364 expressed as a BIT_FIELD_REF. */
6365
6366static tree
6367cxx_eval_bit_field_ref (const constexpr_call *call, tree t,
6368 bool allow_non_constant, bool addr,
6369 bool *non_constant_p)
6370{
6371 tree orig_whole = TREE_OPERAND (t, 0);
6372 tree whole = cxx_eval_constant_expression (call, orig_whole,
6373 allow_non_constant, addr,
6374 non_constant_p);
6375 tree start, field, value;
6376 unsigned HOST_WIDE_INT i;
6377
6378 if (whole == orig_whole)
6379 return t;
6380 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
6381 CONSTRUCTOR. */
6382 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
6383 {
6384 if (!allow_non_constant)
6385 error ("%qE is not a constant expression", orig_whole);
6386 *non_constant_p = true;
6387 }
6388 if (*non_constant_p)
6389 return t;
6390
6391 start = TREE_OPERAND (t, 2);
6392 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
6393 {
6394 if (bit_position (field) == start)
6395 return value;
6396 }
6397 gcc_unreachable();
6398 return error_mark_node;
6399}
6400
c41095db
GDR
6401/* Subroutine of cxx_eval_constant_expression.
6402 Evaluate a short-circuited logical expression T in the context
6403 of a given constexpr CALL. BAILOUT_VALUE is the value for
6404 early return. CONTINUE_VALUE is used here purely for
6405 sanity check purposes. */
6406
6407static tree
6408cxx_eval_logical_expression (const constexpr_call *call, tree t,
6409 tree bailout_value, tree continue_value,
6410 bool allow_non_constant, bool addr,
6411 bool *non_constant_p)
6412{
6413 tree r;
6414 tree lhs = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6415 allow_non_constant, addr,
6416 non_constant_p);
6417 VERIFY_CONSTANT (lhs);
6418 if (lhs == bailout_value)
6419 return lhs;
6420 gcc_assert (lhs == continue_value);
6421 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6422 allow_non_constant, addr, non_constant_p);
6423 VERIFY_CONSTANT (r);
6424 return r;
6425}
6426
d79b88a1
JM
6427/* REF is a COMPONENT_REF designating a particular field. V is a vector of
6428 CONSTRUCTOR elements to initialize (part of) an object containing that
6429 field. Return a pointer to the constructor_elt corresponding to the
6430 initialization of the field. */
6431
6432static constructor_elt *
6433base_field_constructor_elt (VEC(constructor_elt,gc) *v, tree ref)
6434{
6435 tree aggr = TREE_OPERAND (ref, 0);
6436 tree field = TREE_OPERAND (ref, 1);
6437 HOST_WIDE_INT i;
6438 constructor_elt *ce;
6439
6440 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
6441
6442 if (TREE_CODE (aggr) == COMPONENT_REF)
6443 {
6444 constructor_elt *base_ce
6445 = base_field_constructor_elt (v, aggr);
6446 v = CONSTRUCTOR_ELTS (base_ce->value);
6447 }
6448
6449 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
6450 if (ce->index == field)
6451 return ce;
6452
6453 gcc_unreachable ();
6454 return NULL;
6455}
6456
c41095db
GDR
6457/* Subroutine of cxx_eval_constant_expression.
6458 The expression tree T denotes a C-style array or a C-style
6459 aggregate. Reduce it to a constant expression. */
6460
6461static tree
6462cxx_eval_bare_aggregate (const constexpr_call *call, tree t,
6463 bool allow_non_constant, bool addr,
6464 bool *non_constant_p)
6465{
6466 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (t);
6467 VEC(constructor_elt,gc) *n = VEC_alloc (constructor_elt, gc,
6468 VEC_length (constructor_elt, v));
6469 constructor_elt *ce;
6470 HOST_WIDE_INT i;
6471 bool changed = false;
c41095db
GDR
6472 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (t));
6473 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
6474 {
6475 tree elt = cxx_eval_constant_expression (call, ce->value,
6476 allow_non_constant, addr,
6477 non_constant_p);
6478 /* Don't VERIFY_CONSTANT here. */
6479 if (allow_non_constant && *non_constant_p)
6480 goto fail;
6481 if (elt != ce->value)
6482 changed = true;
d79b88a1 6483 if (TREE_CODE (ce->index) == COMPONENT_REF)
c41095db 6484 {
d79b88a1
JM
6485 /* This is an initialization of a vfield inside a base
6486 subaggregate that we already initialized; push this
6487 initialization into the previous initialization. */
6488 constructor_elt *inner = base_field_constructor_elt (n, ce->index);
6489 inner->value = elt;
c41095db
GDR
6490 }
6491 else
6492 CONSTRUCTOR_APPEND_ELT (n, ce->index, elt);
6493 }
6494 if (*non_constant_p || !changed)
6495 {
6496 fail:
6497 VEC_free (constructor_elt, gc, n);
6498 return t;
6499 }
6500 t = build_constructor (TREE_TYPE (t), n);
6501 TREE_CONSTANT (t) = true;
6502 return t;
6503}
6504
6505/* Subroutine of cxx_eval_constant_expression.
6506 The expression tree T is a VEC_INIT_EXPR which denotes the desired
6507 initialization of a non-static data member of array type. Reduce it to a
6508 CONSTRUCTOR.
6509
2b00e201
JM
6510 Note that apart from value-initialization (when VALUE_INIT is true),
6511 this is only intended to support value-initialization and the
6512 initializations done by defaulted constructors for classes with
6513 non-static data members of array type. In this case, VEC_INIT_EXPR_INIT
6514 will either be NULL_TREE for the default constructor, or a COMPONENT_REF
6515 for the copy/move constructor. */
c41095db
GDR
6516
6517static tree
6518cxx_eval_vec_init_1 (const constexpr_call *call, tree atype, tree init,
2b00e201 6519 bool value_init, bool allow_non_constant, bool addr,
c41095db
GDR
6520 bool *non_constant_p)
6521{
6522 tree elttype = TREE_TYPE (atype);
6523 int max = tree_low_cst (array_type_nelts (atype), 0);
6524 VEC(constructor_elt,gc) *n = VEC_alloc (constructor_elt, gc, max + 1);
6525 int i;
6526
6527 /* For the default constructor, build up a call to the default
6528 constructor of the element type. We only need to handle class types
6529 here, as for a constructor to be constexpr, all members must be
6530 initialized, which for a defaulted default constructor means they must
6531 be of a class type with a constexpr default constructor. */
2b00e201
JM
6532 if (value_init)
6533 gcc_assert (!init);
6534 else if (!init)
c41095db
GDR
6535 {
6536 VEC(tree,gc) *argvec = make_tree_vector ();
6537 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
6538 &argvec, elttype, LOOKUP_NORMAL,
6539 tf_warning_or_error);
6540 release_tree_vector (argvec);
6541 init = cxx_eval_constant_expression (call, init, allow_non_constant,
6542 addr, non_constant_p);
6543 }
6544
6545 if (*non_constant_p && !allow_non_constant)
6546 goto fail;
6547
6548 for (i = 0; i <= max; ++i)
6549 {
6550 tree idx = build_int_cst (size_type_node, i);
6551 tree eltinit;
6552 if (TREE_CODE (elttype) == ARRAY_TYPE)
6553 {
6554 /* A multidimensional array; recurse. */
2b00e201
JM
6555 if (value_init)
6556 eltinit = NULL_TREE;
6557 else
6558 eltinit = cp_build_array_ref (input_location, init, idx,
6559 tf_warning_or_error);
6560 eltinit = cxx_eval_vec_init_1 (call, elttype, eltinit, value_init,
c41095db
GDR
6561 allow_non_constant, addr,
6562 non_constant_p);
6563 }
2b00e201
JM
6564 else if (value_init)
6565 {
6566 eltinit = build_value_init (elttype, tf_warning_or_error);
6567 eltinit = cxx_eval_constant_expression
6568 (call, eltinit, allow_non_constant, addr, non_constant_p);
6569 }
c41095db
GDR
6570 else if (TREE_CODE (init) == CONSTRUCTOR)
6571 {
6572 /* Initializing an element using the call to the default
6573 constructor we just built above. */
6574 eltinit = unshare_expr (init);
6575 }
6576 else
6577 {
6578 /* Copying an element. */
6579 VEC(tree,gc) *argvec;
6580 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6581 (atype, TREE_TYPE (init)));
6582 eltinit = cp_build_array_ref (input_location, init, idx,
6583 tf_warning_or_error);
6584 if (!real_lvalue_p (init))
6585 eltinit = move (eltinit);
6586 argvec = make_tree_vector ();
6587 VEC_quick_push (tree, argvec, eltinit);
6588 eltinit = (build_special_member_call
6589 (NULL_TREE, complete_ctor_identifier, &argvec,
6590 elttype, LOOKUP_NORMAL, tf_warning_or_error));
6591 release_tree_vector (argvec);
6592 eltinit = cxx_eval_constant_expression
6593 (call, eltinit, allow_non_constant, addr, non_constant_p);
6594 }
6595 if (*non_constant_p && !allow_non_constant)
6596 goto fail;
6597 CONSTRUCTOR_APPEND_ELT (n, idx, eltinit);
6598 }
6599
6600 if (!*non_constant_p)
6601 {
6602 init = build_constructor (TREE_TYPE (atype), n);
6603 TREE_CONSTANT (init) = true;
6604 return init;
6605 }
6606
6607 fail:
6608 VEC_free (constructor_elt, gc, n);
6609 return init;
6610}
6611
6612static tree
6613cxx_eval_vec_init (const constexpr_call *call, tree t,
6614 bool allow_non_constant, bool addr,
6615 bool *non_constant_p)
6616{
6617 tree atype = TREE_TYPE (t);
6618 tree init = VEC_INIT_EXPR_INIT (t);
2b00e201
JM
6619 tree r = cxx_eval_vec_init_1 (call, atype, init,
6620 VEC_INIT_EXPR_VALUE_INIT (t),
6621 allow_non_constant, addr, non_constant_p);
c41095db
GDR
6622 if (*non_constant_p)
6623 return t;
6624 else
6625 return r;
6626}
6627
6628/* A less strict version of fold_indirect_ref_1, which requires cv-quals to
6629 match. We want to be less strict for simple *& folding; if we have a
6630 non-const temporary that we access through a const pointer, that should
6631 work. We handle this here rather than change fold_indirect_ref_1
6632 because we're dealing with things like ADDR_EXPR of INTEGER_CST which
6633 don't really make sense outside of constant expression evaluation. Also
6634 we want to allow folding to COMPONENT_REF, which could cause trouble
6635 with TBAA in fold_indirect_ref_1. */
6636
6637static tree
6638cxx_eval_indirect_ref (const constexpr_call *call, tree t,
6639 bool allow_non_constant, bool addr,
6640 bool *non_constant_p)
6641{
6642 tree orig_op0 = TREE_OPERAND (t, 0);
6643 tree op0 = cxx_eval_constant_expression (call, orig_op0, allow_non_constant,
6644 /*addr*/false, non_constant_p);
6645 tree type, sub, subtype, r;
6646 bool empty_base;
6647
6648 /* Don't VERIFY_CONSTANT here. */
6649 if (*non_constant_p)
6650 return t;
6651
6652 type = TREE_TYPE (t);
6653 sub = op0;
6654 r = NULL_TREE;
6655 empty_base = false;
6656
6657 STRIP_NOPS (sub);
6658 subtype = TREE_TYPE (sub);
6659 gcc_assert (POINTER_TYPE_P (subtype));
6660
6661 if (TREE_CODE (sub) == ADDR_EXPR)
6662 {
6663 tree op = TREE_OPERAND (sub, 0);
6664 tree optype = TREE_TYPE (op);
6665
6666 if (same_type_ignoring_top_level_qualifiers_p (optype, type))
6667 r = op;
6668 /* Also handle conversion to an empty base class, which
6669 is represented with a NOP_EXPR. */
6670 else if (!addr && is_empty_class (type)
6671 && CLASS_TYPE_P (optype)
6672 && DERIVED_FROM_P (type, optype))
6673 {
6674 r = op;
6675 empty_base = true;
6676 }
6677 /* *(foo *)&struct_with_foo_field => COMPONENT_REF */
6678 else if (RECORD_OR_UNION_TYPE_P (optype))
6679 {
6680 tree field = TYPE_FIELDS (optype);
6681 for (; field; field = DECL_CHAIN (field))
6682 if (TREE_CODE (field) == FIELD_DECL
6683 && integer_zerop (byte_position (field))
6684 && (same_type_ignoring_top_level_qualifiers_p
6685 (TREE_TYPE (field), type)))
6686 {
6687 r = fold_build3 (COMPONENT_REF, type, op, field, NULL_TREE);
6688 break;
6689 }
6690 }
6691 }
6692 else if (TREE_CODE (sub) == POINTER_PLUS_EXPR
6693 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
6694 {
6695 tree op00 = TREE_OPERAND (sub, 0);
6696 tree op01 = TREE_OPERAND (sub, 1);
6697
6698 STRIP_NOPS (op00);
6699 if (TREE_CODE (op00) == ADDR_EXPR)
6700 {
6701 tree op00type;
6702 op00 = TREE_OPERAND (op00, 0);
6703 op00type = TREE_TYPE (op00);
6704
6705 /* ((foo *)&struct_with_foo_field)[1] => COMPONENT_REF */
6706 if (RECORD_OR_UNION_TYPE_P (op00type))
6707 {
6708 tree field = TYPE_FIELDS (op00type);
6709 for (; field; field = DECL_CHAIN (field))
6710 if (TREE_CODE (field) == FIELD_DECL
6711 && tree_int_cst_equal (byte_position (field), op01)
6712 && (same_type_ignoring_top_level_qualifiers_p
6713 (TREE_TYPE (field), type)))
6714 {
6715 r = fold_build3 (COMPONENT_REF, type, op00,
6716 field, NULL_TREE);
6717 break;
6718 }
6719 }
6720 }
6721 }
6722
6723 /* Let build_fold_indirect_ref handle the cases it does fine with. */
6724 if (r == NULL_TREE)
6725 r = build_fold_indirect_ref (op0);
6726 if (TREE_CODE (r) != INDIRECT_REF)
6727 r = cxx_eval_constant_expression (call, r, allow_non_constant,
6728 addr, non_constant_p);
6729 else if (TREE_CODE (sub) == ADDR_EXPR
6730 || TREE_CODE (sub) == POINTER_PLUS_EXPR)
6731 {
6732 gcc_assert (!same_type_ignoring_top_level_qualifiers_p
6733 (TREE_TYPE (TREE_TYPE (sub)), TREE_TYPE (t)));
6734 /* FIXME Mike Miller wants this to be OK. */
6735 if (!allow_non_constant)
6736 error ("accessing value of %qE through a %qT glvalue in a "
6737 "constant expression", build_fold_indirect_ref (sub),
6738 TREE_TYPE (t));
6739 *non_constant_p = true;
6740 return t;
6741 }
6742
6743 /* If we're pulling out the value of an empty base, make sure
6744 that the whole object is constant and then return an empty
6745 CONSTRUCTOR. */
6746 if (empty_base)
6747 {
6748 VERIFY_CONSTANT (r);
6749 r = build_constructor (TREE_TYPE (t), NULL);
6750 TREE_CONSTANT (r) = true;
6751 }
6752
6753 if (TREE_CODE (r) == INDIRECT_REF && TREE_OPERAND (r, 0) == orig_op0)
6754 return t;
6755 return r;
6756}
6757
acfd3fff
JM
6758/* Complain about R, a VAR_DECL, not being usable in a constant expression.
6759 Shared between potential_constant_expression and
6760 cxx_eval_constant_expression. */
6761
6762static void
6763non_const_var_error (tree r)
6764{
6765 tree type = TREE_TYPE (r);
6766 error ("the value of %qD is not usable in a constant "
6767 "expression", r);
ef5daa25
JM
6768 /* Avoid error cascade. */
6769 if (DECL_INITIAL (r) == error_mark_node)
6770 return;
acfd3fff
JM
6771 if (DECL_DECLARED_CONSTEXPR_P (r))
6772 inform (DECL_SOURCE_LOCATION (r),
6773 "%qD used in its own initializer", r);
6774 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6775 {
6776 if (!CP_TYPE_CONST_P (type))
6777 inform (DECL_SOURCE_LOCATION (r),
6778 "%q#D is not const", r);
6779 else if (CP_TYPE_VOLATILE_P (type))
6780 inform (DECL_SOURCE_LOCATION (r),
6781 "%q#D is volatile", r);
6782 else if (!DECL_INITIAL (r))
6783 inform (DECL_SOURCE_LOCATION (r),
6784 "%qD was not initialized with a constant "
6785 "expression", r);
6786 else
6787 gcc_unreachable ();
6788 }
6789 else
6790 {
6791 if (cxx_dialect >= cxx0x && !DECL_DECLARED_CONSTEXPR_P (r))
6792 inform (DECL_SOURCE_LOCATION (r),
6793 "%qD was not declared %<constexpr%>", r);
6794 else
6795 inform (DECL_SOURCE_LOCATION (r),
6796 "%qD does not have integral or enumeration type",
6797 r);
6798 }
6799}
6800
c41095db
GDR
6801/* Attempt to reduce the expression T to a constant value.
6802 On failure, issue diagnostic and return error_mark_node. */
6803/* FIXME unify with c_fully_fold */
6804
6805static tree
6806cxx_eval_constant_expression (const constexpr_call *call, tree t,
6807 bool allow_non_constant, bool addr,
6808 bool *non_constant_p)
6809{
6810 tree r = t;
6811
6812 if (t == error_mark_node)
6813 {
6814 *non_constant_p = true;
6815 return t;
6816 }
6817 if (CONSTANT_CLASS_P (t))
6818 {
6819 if (TREE_CODE (t) == PTRMEM_CST)
6820 t = cplus_expand_constant (t);
6821 return t;
6822 }
6823 if (TREE_CODE (t) != NOP_EXPR
6824 && reduced_constant_expression_p (t))
6825 return fold (t);
6826
6827 switch (TREE_CODE (t))
6828 {
6829 case VAR_DECL:
6830 if (addr)
6831 return t;
6832 /* else fall through. */
6833 case CONST_DECL:
6834 r = integral_constant_value (t);
6835 if (TREE_CODE (r) == TARGET_EXPR
6836 && TREE_CODE (TARGET_EXPR_INITIAL (r)) == CONSTRUCTOR)
6837 r = TARGET_EXPR_INITIAL (r);
6838 if (DECL_P (r))
6839 {
6840 if (!allow_non_constant)
acfd3fff 6841 non_const_var_error (r);
c41095db
GDR
6842 *non_constant_p = true;
6843 }
6844 break;
6845
6846 case FUNCTION_DECL:
6847 case LABEL_DECL:
6848 return t;
6849
6850 case PARM_DECL:
6851 if (call && DECL_CONTEXT (t) == call->fundef->decl)
6852 r = lookup_parameter_binding (call, t);
6853 else if (addr)
6854 /* Defer in case this is only used for its type. */;
6855 else
6856 {
6857 if (!allow_non_constant)
6858 error ("%qE is not a constant expression", t);
6859 *non_constant_p = true;
6860 }
6861 break;
6862
6863 case CALL_EXPR:
6864 case AGGR_INIT_EXPR:
6865 r = cxx_eval_call_expression (call, t, allow_non_constant, addr,
6866 non_constant_p);
6867 break;
6868
6869 case TARGET_EXPR:
6870 case INIT_EXPR:
6871 /* Pass false for 'addr' because these codes indicate
6872 initialization of a temporary. */
6873 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6874 allow_non_constant, false,
6875 non_constant_p);
6876 if (!*non_constant_p)
6877 /* Adjust the type of the result to the type of the temporary. */
6878 r = adjust_temp_type (TREE_TYPE (t), r);
6879 break;
6880
6881 case SCOPE_REF:
6882 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6883 allow_non_constant, addr,
6884 non_constant_p);
6885 break;
6886
6887 case RETURN_EXPR:
6888 case NON_LVALUE_EXPR:
6889 case TRY_CATCH_EXPR:
6890 case CLEANUP_POINT_EXPR:
6891 case MUST_NOT_THROW_EXPR:
6892 case SAVE_EXPR:
6893 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6894 allow_non_constant, addr,
6895 non_constant_p);
6896 break;
6897
6898 /* These differ from cxx_eval_unary_expression in that this doesn't
6899 check for a constant operand or result; an address can be
6900 constant without its operand being, and vice versa. */
6901 case INDIRECT_REF:
6902 r = cxx_eval_indirect_ref (call, t, allow_non_constant, addr,
6903 non_constant_p);
6904 break;
6905
6906 case ADDR_EXPR:
6907 {
6908 tree oldop = TREE_OPERAND (t, 0);
6909 tree op = cxx_eval_constant_expression (call, oldop,
6910 allow_non_constant,
6911 /*addr*/true,
6912 non_constant_p);
6913 /* Don't VERIFY_CONSTANT here. */
6914 if (*non_constant_p)
6915 return t;
6916 /* This function does more aggressive folding than fold itself. */
6917 r = build_fold_addr_expr_with_type (op, TREE_TYPE (t));
6918 if (TREE_CODE (r) == ADDR_EXPR && TREE_OPERAND (r, 0) == oldop)
6919 return t;
6920 break;
6921 }
6922
6923 case REALPART_EXPR:
6924 case IMAGPART_EXPR:
6925 case CONJ_EXPR:
6926 case FIX_TRUNC_EXPR:
6927 case FLOAT_EXPR:
6928 case NEGATE_EXPR:
6929 case ABS_EXPR:
6930 case BIT_NOT_EXPR:
6931 case TRUTH_NOT_EXPR:
6932 case FIXED_CONVERT_EXPR:
6933 r = cxx_eval_unary_expression (call, t, allow_non_constant, addr,
6934 non_constant_p);
6935 break;
6936
6937 case COMPOUND_EXPR:
6938 {
6939 /* check_return_expr sometimes wraps a TARGET_EXPR in a
6940 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
6941 introduced by build_call_a. */
6942 tree op0 = TREE_OPERAND (t, 0);
6943 tree op1 = TREE_OPERAND (t, 1);
6944 STRIP_NOPS (op1);
6945 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
6946 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
6947 r = cxx_eval_constant_expression (call, op0, allow_non_constant,
6948 addr, non_constant_p);
6949 else
3f7c7453
JM
6950 {
6951 /* Check that the LHS is constant and then discard it. */
6952 cxx_eval_constant_expression (call, op0, allow_non_constant,
6953 false, non_constant_p);
6954 r = cxx_eval_constant_expression (call, op1, allow_non_constant,
6955 addr, non_constant_p);
6956 }
c41095db
GDR
6957 }
6958 break;
6959
6960 case POINTER_PLUS_EXPR:
6961 case PLUS_EXPR:
6962 case MINUS_EXPR:
6963 case MULT_EXPR:
6964 case TRUNC_DIV_EXPR:
6965 case CEIL_DIV_EXPR:
6966 case FLOOR_DIV_EXPR:
6967 case ROUND_DIV_EXPR:
6968 case TRUNC_MOD_EXPR:
6969 case CEIL_MOD_EXPR:
6970 case ROUND_MOD_EXPR:
6971 case RDIV_EXPR:
6972 case EXACT_DIV_EXPR:
6973 case MIN_EXPR:
6974 case MAX_EXPR:
6975 case LSHIFT_EXPR:
6976 case RSHIFT_EXPR:
6977 case LROTATE_EXPR:
6978 case RROTATE_EXPR:
6979 case BIT_IOR_EXPR:
6980 case BIT_XOR_EXPR:
6981 case BIT_AND_EXPR:
6982 case TRUTH_XOR_EXPR:
6983 case LT_EXPR:
6984 case LE_EXPR:
6985 case GT_EXPR:
6986 case GE_EXPR:
6987 case EQ_EXPR:
6988 case NE_EXPR:
6989 case UNORDERED_EXPR:
6990 case ORDERED_EXPR:
6991 case UNLT_EXPR:
6992 case UNLE_EXPR:
6993 case UNGT_EXPR:
6994 case UNGE_EXPR:
6995 case UNEQ_EXPR:
6996 case RANGE_EXPR:
6997 case COMPLEX_EXPR:
c41095db
GDR
6998 r = cxx_eval_binary_expression (call, t, allow_non_constant, addr,
6999 non_constant_p);
7000 break;
7001
7002 /* fold can introduce non-IF versions of these; still treat them as
7003 short-circuiting. */
7004 case TRUTH_AND_EXPR:
7005 case TRUTH_ANDIF_EXPR:
7006 r = cxx_eval_logical_expression (call, t, boolean_false_node,
7007 boolean_true_node,
7008 allow_non_constant, addr,
7009 non_constant_p);
7010 break;
7011
7012 case TRUTH_OR_EXPR:
7013 case TRUTH_ORIF_EXPR:
7014 r = cxx_eval_logical_expression (call, t, boolean_true_node,
7015 boolean_false_node,
7016 allow_non_constant, addr,
7017 non_constant_p);
7018 break;
7019
7020 case ARRAY_REF:
7021 r = cxx_eval_array_reference (call, t, allow_non_constant, addr,
7022 non_constant_p);
7023 break;
7024
7025 case COMPONENT_REF:
7026 r = cxx_eval_component_reference (call, t, allow_non_constant, addr,
7027 non_constant_p);
7028 break;
7029
4ddf1c7f
JM
7030 case BIT_FIELD_REF:
7031 r = cxx_eval_bit_field_ref (call, t, allow_non_constant, addr,
7032 non_constant_p);
7033 break;
7034
c41095db
GDR
7035 case COND_EXPR:
7036 case VEC_COND_EXPR:
7037 r = cxx_eval_conditional_expression (call, t, allow_non_constant, addr,
7038 non_constant_p);
7039 break;
7040
7041 case CONSTRUCTOR:
7042 r = cxx_eval_bare_aggregate (call, t, allow_non_constant, addr,
7043 non_constant_p);
7044 break;
7045
7046 case VEC_INIT_EXPR:
7047 /* We can get this in a defaulted constructor for a class with a
7048 non-static data member of array type. Either the initializer will
7049 be NULL, meaning default-initialization, or it will be an lvalue
7050 or xvalue of the same type, meaning direct-initialization from the
7051 corresponding member. */
7052 r = cxx_eval_vec_init (call, t, allow_non_constant, addr,
7053 non_constant_p);
7054 break;
7055
7056 case CONVERT_EXPR:
7057 case VIEW_CONVERT_EXPR:
7058 case NOP_EXPR:
7059 {
7060 tree oldop = TREE_OPERAND (t, 0);
7061 tree op = oldop;
7062 tree to = TREE_TYPE (t);
7063 tree source = TREE_TYPE (op);
7064 if (TYPE_PTR_P (source) && ARITHMETIC_TYPE_P (to)
7065 && !(TREE_CODE (op) == COMPONENT_REF
7066 && TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (op, 0)))))
7067 {
7068 if (!allow_non_constant)
7069 error ("conversion of expression %qE of pointer type "
7070 "cannot yield a constant expression", op);
7071 *non_constant_p = true;
7072 return t;
7073 }
7074 op = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
7075 allow_non_constant, addr,
7076 non_constant_p);
7077 if (*non_constant_p)
7078 return t;
7079 if (op == oldop)
7080 /* We didn't fold at the top so we could check for ptr-int
7081 conversion. */
7082 return fold (t);
7083 r = fold_build1 (TREE_CODE (t), to, op);
c598e5fa
JM
7084 /* Conversion of an out-of-range value has implementation-defined
7085 behavior; the language considers it different from arithmetic
7086 overflow, which is undefined. */
7087 if (TREE_OVERFLOW_P (r) && !TREE_OVERFLOW_P (op))
7088 TREE_OVERFLOW (r) = false;
c41095db
GDR
7089 }
7090 break;
7091
7092 case EMPTY_CLASS_EXPR:
7093 /* This is good enough for a function argument that might not get
7094 used, and they can't do anything with it, so just return it. */
7095 return t;
7096
7097 case LAMBDA_EXPR:
7098 case DYNAMIC_CAST_EXPR:
7099 case PSEUDO_DTOR_EXPR:
7100 case PREINCREMENT_EXPR:
7101 case POSTINCREMENT_EXPR:
7102 case PREDECREMENT_EXPR:
7103 case POSTDECREMENT_EXPR:
7104 case NEW_EXPR:
7105 case VEC_NEW_EXPR:
7106 case DELETE_EXPR:
7107 case VEC_DELETE_EXPR:
7108 case THROW_EXPR:
7109 case MODIFY_EXPR:
7110 case MODOP_EXPR:
7111 /* GCC internal stuff. */
7112 case VA_ARG_EXPR:
7113 case OBJ_TYPE_REF:
7114 case WITH_CLEANUP_EXPR:
7115 case STATEMENT_LIST:
7116 case BIND_EXPR:
7117 case NON_DEPENDENT_EXPR:
7118 case BASELINK:
7119 case EXPR_STMT:
0eb35d46 7120 case OFFSET_REF:
c41095db
GDR
7121 if (!allow_non_constant)
7122 error_at (EXPR_LOC_OR_HERE (t),
7123 "expression %qE is not a constant-expression", t);
7124 *non_constant_p = true;
7125 break;
7126
7127 default:
7128 internal_error ("unexpected expression %qE of kind %s", t,
7129 tree_code_name[TREE_CODE (t)]);
7130 *non_constant_p = true;
7131 break;
7132 }
7133
7134 if (r == error_mark_node)
7135 *non_constant_p = true;
7136
7137 if (*non_constant_p)
7138 return t;
7139 else
7140 return r;
7141}
7142
7143static tree
7144cxx_eval_outermost_constant_expr (tree t, bool allow_non_constant)
7145{
7146 bool non_constant_p = false;
7147 tree r = cxx_eval_constant_expression (NULL, t, allow_non_constant,
7148 false, &non_constant_p);
7149
9e115cec 7150 verify_constant (r, allow_non_constant, &non_constant_p);
c41095db
GDR
7151
7152 if (non_constant_p && !allow_non_constant)
7153 return error_mark_node;
7154 else if (non_constant_p && TREE_CONSTANT (t))
7155 {
7156 /* This isn't actually constant, so unset TREE_CONSTANT. */
7157 if (EXPR_P (t) || TREE_CODE (t) == CONSTRUCTOR)
7158 r = copy_node (t);
7159 else
7160 r = build_nop (TREE_TYPE (t), t);
7161 TREE_CONSTANT (r) = false;
7162 return r;
7163 }
7164 else if (non_constant_p || r == t)
7165 return t;
7166 else if (TREE_CODE (r) == CONSTRUCTOR && CLASS_TYPE_P (TREE_TYPE (r)))
7167 {
7168 if (TREE_CODE (t) == TARGET_EXPR
7169 && TARGET_EXPR_INITIAL (t) == r)
7170 return t;
7171 else
7172 {
7173 r = get_target_expr (r);
7174 TREE_CONSTANT (r) = true;
7175 return r;
7176 }
7177 }
7178 else
7179 return r;
7180}
7181
fa2200cb
JM
7182/* Returns true if T is a valid subexpression of a constant expression,
7183 even if it isn't itself a constant expression. */
7184
7185bool
7186is_sub_constant_expr (tree t)
7187{
7188 bool non_constant_p = false;
7189 cxx_eval_constant_expression (NULL, t, true, false, &non_constant_p);
7190 return !non_constant_p;
7191}
7192
c41095db
GDR
7193/* If T represents a constant expression returns its reduced value.
7194 Otherwise return error_mark_node. If T is dependent, then
7195 return NULL. */
7196
7197tree
7198cxx_constant_value (tree t)
7199{
7200 return cxx_eval_outermost_constant_expr (t, false);
7201}
7202
7203/* If T is a constant expression, returns its reduced value.
7204 Otherwise, if T does not have TREE_CONSTANT set, returns T.
7205 Otherwise, returns a version of T without TREE_CONSTANT. */
7206
7207tree
7208maybe_constant_value (tree t)
7209{
7210 tree r;
7211
7212 if (type_dependent_expression_p (t)
4be5e5b1 7213 || type_unknown_p (t)
d6ed1c89 7214 || !potential_constant_expression (t)
c41095db
GDR
7215 || value_dependent_expression_p (t))
7216 return t;
7217
7218 r = cxx_eval_outermost_constant_expr (t, true);
7219#ifdef ENABLE_CHECKING
7220 /* cp_tree_equal looks through NOPs, so allow them. */
7221 gcc_assert (r == t
7222 || CONVERT_EXPR_P (t)
7223 || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
7224 || !cp_tree_equal (r, t));
7225#endif
7226 return r;
7227}
7228
7229/* Like maybe_constant_value, but returns a CONSTRUCTOR directly, rather
7230 than wrapped in a TARGET_EXPR. */
7231
7232tree
7233maybe_constant_init (tree t)
7234{
7235 t = maybe_constant_value (t);
7236 if (TREE_CODE (t) == TARGET_EXPR)
7237 {
7238 tree init = TARGET_EXPR_INITIAL (t);
7239 if (TREE_CODE (init) == CONSTRUCTOR
7240 && TREE_CONSTANT (init))
7241 t = init;
7242 }
7243 return t;
7244}
7245
d6ed1c89
JM
7246#if 0
7247/* FIXME see ADDR_EXPR section in potential_constant_expression_1. */
66e61a34
JM
7248/* Return true if the object referred to by REF has automatic or thread
7249 local storage. */
7ecbca9d 7250
66e61a34
JM
7251enum { ck_ok, ck_bad, ck_unknown };
7252static int
7253check_automatic_or_tls (tree ref)
7254{
7255 enum machine_mode mode;
7256 HOST_WIDE_INT bitsize, bitpos;
7257 tree offset;
7258 int volatilep = 0, unsignedp = 0;
7259 tree decl = get_inner_reference (ref, &bitsize, &bitpos, &offset,
7260 &mode, &unsignedp, &volatilep, false);
7261 duration_kind dk;
7262
7263 /* If there isn't a decl in the middle, we don't know the linkage here,
7264 and this isn't a constant expression anyway. */
7265 if (!DECL_P (decl))
7266 return ck_unknown;
7267 dk = decl_storage_duration (decl);
7268 return (dk == dk_auto || dk == dk_thread) ? ck_bad : ck_ok;
7269}
d6ed1c89 7270#endif
66e61a34
JM
7271
7272/* Return true if the DECL designates a builtin function that is
7273 morally constexpr, in the sense that its parameter types and
7274 return type are literal types and the compiler is allowed to
7275 fold its invocations. */
7276
7277static bool
7278morally_constexpr_builtin_function_p (tree decl)
7279{
7280 tree funtype = TREE_TYPE (decl);
7281 tree t;
7282
7283 if (!is_builtin_fn (decl))
7284 return false;
7285 if (!literal_type_p (TREE_TYPE (funtype)))
7286 return false;
7287 for (t = TYPE_ARG_TYPES (funtype); t != NULL ; t = TREE_CHAIN (t))
7288 {
7289 if (t == void_list_node)
7290 return true;
7291 if (!literal_type_p (TREE_VALUE (t)))
7292 return false;
7293 }
7294 /* We assume no varargs builtins are suitable. */
7295 return t != NULL;
7296}
7297
d6ed1c89
JM
7298/* Return true if T denotes a potentially constant expression. Issue
7299 diagnostic as appropriate under control of FLAGS. If WANT_RVAL is true,
7300 an lvalue-rvalue conversion is implied.
66e61a34 7301
d6ed1c89 7302 C++0x [expr.const] used to say
66e61a34
JM
7303
7304 6 An expression is a potential constant expression if it is
7305 a constant expression where all occurences of function
7306 parameters are replaced by arbitrary constant expressions
7307 of the appropriate type.
7308
7309 2 A conditional expression is a constant expression unless it
7310 involves one of the following as a potentially evaluated
7311 subexpression (3.2), but subexpressions of logical AND (5.14),
7312 logical OR (5.15), and conditional (5.16) operations that are
7313 not evaluated are not considered. */
7314
d6ed1c89
JM
7315static bool
7316potential_constant_expression_1 (tree t, bool want_rval, tsubst_flags_t flags)
66e61a34 7317{
d6ed1c89 7318 enum { any = false, rval = true };
66e61a34
JM
7319 int i;
7320 tree tmp;
d6ed1c89
JM
7321
7322 /* C++98 has different rules for the form of a constant expression that
7323 are enforced in the parser, so we can assume that anything that gets
7324 this far is suitable. */
7325 if (cxx_dialect < cxx0x)
7326 return true;
7327
66e61a34
JM
7328 if (t == error_mark_node)
7329 return false;
d6ed1c89
JM
7330 if (t == NULL_TREE)
7331 return true;
66e61a34
JM
7332 if (TREE_THIS_VOLATILE (t))
7333 {
7334 if (flags & tf_error)
7335 error ("expression %qE has side-effects", t);
7336 return false;
7337 }
7338 if (CONSTANT_CLASS_P (t))
93dd46fb
JM
7339 {
7340 if (TREE_OVERFLOW (t))
7341 {
7342 if (flags & tf_error)
7343 {
7344 permerror (EXPR_LOC_OR_HERE (t),
7345 "overflow in constant expression");
7346 if (flag_permissive)
7347 return true;
7348 }
7349 return false;
7350 }
7351 return true;
7352 }
66e61a34
JM
7353
7354 switch (TREE_CODE (t))
7355 {
7356 case FUNCTION_DECL:
d6ed1c89 7357 case BASELINK:
5b883ca6 7358 case TEMPLATE_DECL:
d6ed1c89
JM
7359 case OVERLOAD:
7360 case TEMPLATE_ID_EXPR:
66e61a34
JM
7361 case LABEL_DECL:
7362 case CONST_DECL:
d6ed1c89
JM
7363 case SIZEOF_EXPR:
7364 case ALIGNOF_EXPR:
7365 case OFFSETOF_EXPR:
7366 case NOEXCEPT_EXPR:
7367 case TEMPLATE_PARM_INDEX:
7368 case TRAIT_EXPR:
7369 case IDENTIFIER_NODE:
66e61a34
JM
7370 return true;
7371
7372 case PARM_DECL:
7373 /* -- this (5.1) unless it appears as the postfix-expression in a
7374 class member access expression, including the result of the
7375 implicit transformation in the body of the non-static
7376 member function (9.3.1); */
f5a28e87
JM
7377 /* FIXME this restriction seems pointless since the standard dropped
7378 "potential constant expression". */
66e61a34
JM
7379 if (is_this_parameter (t))
7380 {
7381 if (flags & tf_error)
7382 error ("%qE is not a potential constant expression", t);
7383 return false;
7384 }
7385 return true;
7386
7387 case AGGR_INIT_EXPR:
7388 case CALL_EXPR:
7389 /* -- an invocation of a function other than a constexpr function
7390 or a constexpr constructor. */
7391 {
7392 tree fun = get_function_named_in_call (t);
7393 const int nargs = call_expr_nargs (t);
f5a28e87
JM
7394 i = 0;
7395
7396 if (is_overloaded_fn (fun))
7397 {
7398 if (TREE_CODE (fun) == FUNCTION_DECL)
7399 {
7400 if (builtin_valid_in_constant_expr_p (fun))
7401 return true;
7402 if (!DECL_DECLARED_CONSTEXPR_P (fun)
7403 && !morally_constexpr_builtin_function_p (fun))
7404 {
7405 if (flags & tf_error)
7406 error ("%qD is not %<constexpr%>", fun);
7407 return false;
7408 }
7409 /* A call to a non-static member function takes the address
7410 of the object as the first argument. But in a constant
7411 expression the address will be folded away, so look
7412 through it now. */
7413 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
7414 && !DECL_CONSTRUCTOR_P (fun))
7415 {
7416 tree x = get_nth_callarg (t, 0);
7417 if (is_this_parameter (x))
7418 /* OK. */;
7419 else if (!potential_constant_expression_1 (x, rval, flags))
7420 {
7421 if (flags & tf_error)
7422 error ("object argument is not a potential "
7423 "constant expression");
7424 return false;
7425 }
7426 i = 1;
7427 }
7428 }
7429 else
7430 fun = get_first_fn (fun);
7431 /* Skip initial arguments to base constructors. */
7432 if (DECL_BASE_CONSTRUCTOR_P (fun))
7433 i = num_artificial_parms_for (fun);
7434 fun = DECL_ORIGIN (fun);
7435 }
66e61a34 7436 else
66e61a34 7437 {
f5a28e87
JM
7438 if (potential_constant_expression_1 (fun, rval, flags))
7439 /* Might end up being a constant function pointer. */;
7440 else
7441 {
7442 if (flags & tf_error)
7443 error ("%qE is not a function name", fun);
7444 return false;
7445 }
66e61a34
JM
7446 }
7447 for (; i < nargs; ++i)
7448 {
7449 tree x = get_nth_callarg (t, i);
f5a28e87 7450 if (!potential_constant_expression_1 (x, rval, flags))
66e61a34
JM
7451 {
7452 if (flags & tf_error)
7453 error ("argument in position %qP is not a "
7454 "potential constant expression", i);
7455 return false;
7456 }
7457 }
7458 return true;
7459 }
7460
7461 case NON_LVALUE_EXPR:
7462 /* -- an lvalue-to-rvalue conversion (4.1) unless it is applied to
7463 -- an lvalue of integral type that refers to a non-volatile
7464 const variable or static data member initialized with
7465 constant expressions, or
7466
7467 -- an lvalue of literal type that refers to non-volatile
7468 object defined with constexpr, or that refers to a
7469 sub-object of such an object; */
d6ed1c89 7470 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval, flags);
66e61a34
JM
7471
7472 case VAR_DECL:
acfd3fff
JM
7473 if (want_rval && !decl_constant_var_p (t)
7474 && !dependent_type_p (TREE_TYPE (t)))
66e61a34
JM
7475 {
7476 if (flags & tf_error)
acfd3fff 7477 non_const_var_error (t);
66e61a34
JM
7478 return false;
7479 }
7480 return true;
7481
7482 case NOP_EXPR:
7483 case CONVERT_EXPR:
7484 case VIEW_CONVERT_EXPR:
7485 /* -- an array-to-pointer conversion that is applied to an lvalue
7486 that designates an object with thread or automatic storage
7487 duration; FIXME not implemented as it breaks constexpr arrays;
7488 need to fix the standard
7489 -- a type conversion from a pointer or pointer-to-member type
7490 to a literal type. */
7491 {
7492 tree from = TREE_OPERAND (t, 0);
7493 tree source = TREE_TYPE (from);
7494 tree target = TREE_TYPE (t);
7495 if (TYPE_PTR_P (source) && ARITHMETIC_TYPE_P (target)
7496 && !(TREE_CODE (from) == COMPONENT_REF
7497 && TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (from, 0)))))
7498 {
7499 if (flags & tf_error)
7500 error ("conversion of expression %qE of pointer type "
7501 "cannot yield a constant expression", from);
7502 return false;
7503 }
d6ed1c89
JM
7504 return (potential_constant_expression_1
7505 (from, TREE_CODE (t) != VIEW_CONVERT_EXPR, flags));
66e61a34
JM
7506 }
7507
7508 case ADDR_EXPR:
7509 /* -- a unary operator & that is applied to an lvalue that
7510 designates an object with thread or automatic storage
7511 duration; */
7512 t = TREE_OPERAND (t, 0);
d6ed1c89
JM
7513#if 0
7514 /* FIXME adjust when issue 1197 is fully resolved. For now don't do
7515 any checking here, as we might dereference the pointer later. If
7516 we remove this code, also remove check_automatic_or_tls. */
66e61a34
JM
7517 i = check_automatic_or_tls (t);
7518 if (i == ck_ok)
7519 return true;
7520 if (i == ck_bad)
7521 {
7522 if (flags & tf_error)
7523 error ("address-of an object %qE with thread local or "
7524 "automatic storage is not a constant expression", t);
7525 return false;
7526 }
d6ed1c89
JM
7527#endif
7528 return potential_constant_expression_1 (t, any, flags);
66e61a34
JM
7529
7530 case COMPONENT_REF:
7531 case BIT_FIELD_REF:
d6ed1c89
JM
7532 case ARROW_EXPR:
7533 case OFFSET_REF:
66e61a34
JM
7534 /* -- a class member access unless its postfix-expression is
7535 of literal type or of pointer to literal type. */
7536 /* This test would be redundant, as it follows from the
7537 postfix-expression being a potential constant expression. */
d6ed1c89
JM
7538 return potential_constant_expression_1 (TREE_OPERAND (t, 0),
7539 want_rval, flags);
7540
7541 case EXPR_PACK_EXPANSION:
7542 return potential_constant_expression_1 (PACK_EXPANSION_PATTERN (t),
7543 want_rval, flags);
66e61a34
JM
7544
7545 case INDIRECT_REF:
7546 {
7547 tree x = TREE_OPERAND (t, 0);
7548 STRIP_NOPS (x);
7549 if (is_this_parameter (x))
cb21e9cd
JM
7550 {
7551 if (DECL_CONSTRUCTOR_P (DECL_CONTEXT (x)) && want_rval)
7552 {
7553 if (flags & tf_error)
00a0d6f3
JM
7554 sorry ("use of the value of the object being constructed "
7555 "in a constant expression");
cb21e9cd
JM
7556 return false;
7557 }
7558 return true;
7559 }
d6ed1c89 7560 return potential_constant_expression_1 (x, rval, flags);
66e61a34
JM
7561 }
7562
7563 case LAMBDA_EXPR:
7564 case DYNAMIC_CAST_EXPR:
7565 case PSEUDO_DTOR_EXPR:
7566 case PREINCREMENT_EXPR:
7567 case POSTINCREMENT_EXPR:
7568 case PREDECREMENT_EXPR:
7569 case POSTDECREMENT_EXPR:
7570 case NEW_EXPR:
7571 case VEC_NEW_EXPR:
7572 case DELETE_EXPR:
7573 case VEC_DELETE_EXPR:
7574 case THROW_EXPR:
7575 case MODIFY_EXPR:
7576 case MODOP_EXPR:
7577 /* GCC internal stuff. */
7578 case VA_ARG_EXPR:
7579 case OBJ_TYPE_REF:
7580 case WITH_CLEANUP_EXPR:
7581 case CLEANUP_POINT_EXPR:
7582 case MUST_NOT_THROW_EXPR:
7583 case TRY_CATCH_EXPR:
7584 case STATEMENT_LIST:
d6ed1c89
JM
7585 /* Don't bother trying to define a subset of statement-expressions to
7586 be constant-expressions, at least for now. */
7587 case STMT_EXPR:
7588 case EXPR_STMT:
66e61a34
JM
7589 case BIND_EXPR:
7590 if (flags & tf_error)
7591 error ("expression %qE is not a constant-expression", t);
7592 return false;
7593
7594 case TYPEID_EXPR:
7595 /* -- a typeid expression whose operand is of polymorphic
7596 class type; */
7597 {
7598 tree e = TREE_OPERAND (t, 0);
d6ed1c89
JM
7599 if (!TYPE_P (e) && !type_dependent_expression_p (e)
7600 && TYPE_POLYMORPHIC_P (TREE_TYPE (e)))
66e61a34
JM
7601 {
7602 if (flags & tf_error)
7603 error ("typeid-expression is not a constant expression "
7604 "because %qE is of polymorphic type", e);
7605 return false;
7606 }
7607 return true;
7608 }
7609
7610 case MINUS_EXPR:
7611 /* -- a subtraction where both operands are pointers. */
7612 if (TYPE_PTR_P (TREE_OPERAND (t, 0))
7613 && TYPE_PTR_P (TREE_OPERAND (t, 1)))
7614 {
7615 if (flags & tf_error)
7616 error ("difference of two pointer expressions is not "
7617 "a constant expression");
7618 return false;
7619 }
d6ed1c89 7620 want_rval = true;
66e61a34
JM
7621 goto binary;
7622
7623 case LT_EXPR:
7624 case LE_EXPR:
7625 case GT_EXPR:
7626 case GE_EXPR:
7627 case EQ_EXPR:
7628 case NE_EXPR:
7629 /* -- a relational or equality operator where at least
7630 one of the operands is a pointer. */
7631 if (TYPE_PTR_P (TREE_OPERAND (t, 0))
7632 || TYPE_PTR_P (TREE_OPERAND (t, 1)))
7633 {
7634 if (flags & tf_error)
7635 error ("pointer comparison expression is not a "
7636 "constant expression");
7637 return false;
7638 }
d6ed1c89 7639 want_rval = true;
66e61a34
JM
7640 goto binary;
7641
7642 case REALPART_EXPR:
7643 case IMAGPART_EXPR:
7644 case CONJ_EXPR:
7645 case SAVE_EXPR:
7646 case FIX_TRUNC_EXPR:
7647 case FLOAT_EXPR:
7648 case NEGATE_EXPR:
7649 case ABS_EXPR:
7650 case BIT_NOT_EXPR:
7651 case TRUTH_NOT_EXPR:
66e61a34 7652 case FIXED_CONVERT_EXPR:
d6ed1c89
JM
7653 case UNARY_PLUS_EXPR:
7654 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval,
7655 flags);
7656
7657 case CAST_EXPR:
7658 case CONST_CAST_EXPR:
7659 case STATIC_CAST_EXPR:
7660 case REINTERPRET_CAST_EXPR:
7661 return (potential_constant_expression_1
7662 (TREE_OPERAND (t, 0),
7663 TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE, flags));
7664
7665 case PAREN_EXPR:
7666 case NON_DEPENDENT_EXPR:
66e61a34
JM
7667 /* For convenience. */
7668 case RETURN_EXPR:
d6ed1c89
JM
7669 return potential_constant_expression_1 (TREE_OPERAND (t, 0),
7670 want_rval, flags);
7671
7672 case SCOPE_REF:
7673 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
7674 want_rval, flags);
66e61a34
JM
7675
7676 case INIT_EXPR:
7677 case TARGET_EXPR:
d6ed1c89
JM
7678 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
7679 rval, flags);
66e61a34
JM
7680
7681 case CONSTRUCTOR:
7682 {
7683 VEC(constructor_elt, gc) *v = CONSTRUCTOR_ELTS (t);
7684 constructor_elt *ce;
7685 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
d6ed1c89 7686 if (!potential_constant_expression_1 (ce->value, want_rval, flags))
66e61a34
JM
7687 return false;
7688 return true;
7689 }
7690
7691 case TREE_LIST:
7692 {
7693 gcc_assert (TREE_PURPOSE (t) == NULL_TREE
7694 || DECL_P (TREE_PURPOSE (t)));
d6ed1c89
JM
7695 if (!potential_constant_expression_1 (TREE_VALUE (t), want_rval,
7696 flags))
66e61a34
JM
7697 return false;
7698 if (TREE_CHAIN (t) == NULL_TREE)
7699 return true;
d6ed1c89
JM
7700 return potential_constant_expression_1 (TREE_CHAIN (t), want_rval,
7701 flags);
66e61a34
JM
7702 }
7703
7704 case TRUNC_DIV_EXPR:
7705 case CEIL_DIV_EXPR:
7706 case FLOOR_DIV_EXPR:
7707 case ROUND_DIV_EXPR:
7708 case TRUNC_MOD_EXPR:
7709 case CEIL_MOD_EXPR:
7710 case ROUND_MOD_EXPR:
d6ed1c89
JM
7711 {
7712 tree denom = TREE_OPERAND (t, 1);
7713 /* We can't call maybe_constant_value on an expression
7714 that hasn't been through fold_non_dependent_expr yet. */
7715 if (!processing_template_decl)
7716 denom = maybe_constant_value (denom);
7717 if (integer_zerop (denom))
7718 {
7719 if (flags & tf_error)
7720 error ("division by zero is not a constant-expression");
7721 return false;
7722 }
7723 else
7724 {
7725 want_rval = true;
7726 goto binary;
7727 }
7728 }
66e61a34
JM
7729
7730 case COMPOUND_EXPR:
7731 {
7732 /* check_return_expr sometimes wraps a TARGET_EXPR in a
7733 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
7734 introduced by build_call_a. */
7735 tree op0 = TREE_OPERAND (t, 0);
7736 tree op1 = TREE_OPERAND (t, 1);
7737 STRIP_NOPS (op1);
7738 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
7739 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
d6ed1c89 7740 return potential_constant_expression_1 (op0, want_rval, flags);
66e61a34
JM
7741 else
7742 goto binary;
7743 }
7744
7745 /* If the first operand is the non-short-circuit constant, look at
7746 the second operand; otherwise we only care about the first one for
7747 potentiality. */
7748 case TRUTH_AND_EXPR:
7749 case TRUTH_ANDIF_EXPR:
7750 tmp = boolean_true_node;
7751 goto truth;
7752 case TRUTH_OR_EXPR:
7753 case TRUTH_ORIF_EXPR:
7754 tmp = boolean_false_node;
7755 truth:
7756 if (TREE_OPERAND (t, 0) == tmp)
d6ed1c89 7757 return potential_constant_expression_1 (TREE_OPERAND (t, 1), rval, flags);
66e61a34 7758 else
d6ed1c89 7759 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval, flags);
66e61a34 7760
66e61a34
JM
7761 case PLUS_EXPR:
7762 case MULT_EXPR:
7763 case POINTER_PLUS_EXPR:
7764 case RDIV_EXPR:
7765 case EXACT_DIV_EXPR:
7766 case MIN_EXPR:
7767 case MAX_EXPR:
7768 case LSHIFT_EXPR:
7769 case RSHIFT_EXPR:
7770 case LROTATE_EXPR:
7771 case RROTATE_EXPR:
7772 case BIT_IOR_EXPR:
7773 case BIT_XOR_EXPR:
7774 case BIT_AND_EXPR:
81cce6f6 7775 case TRUTH_XOR_EXPR:
e0f89433
JM
7776 case UNORDERED_EXPR:
7777 case ORDERED_EXPR:
66e61a34
JM
7778 case UNLT_EXPR:
7779 case UNLE_EXPR:
7780 case UNGT_EXPR:
7781 case UNGE_EXPR:
7782 case UNEQ_EXPR:
7783 case RANGE_EXPR:
7784 case COMPLEX_EXPR:
d6ed1c89
JM
7785 want_rval = true;
7786 /* Fall through. */
7787 case ARRAY_REF:
7788 case ARRAY_RANGE_REF:
7789 case MEMBER_REF:
7790 case DOTSTAR_EXPR:
66e61a34
JM
7791 binary:
7792 for (i = 0; i < 2; ++i)
d6ed1c89
JM
7793 if (!potential_constant_expression_1 (TREE_OPERAND (t, i),
7794 want_rval, flags))
66e61a34
JM
7795 return false;
7796 return true;
7797
7798 case COND_EXPR:
7799 case VEC_COND_EXPR:
7800 /* If the condition is a known constant, we know which of the legs we
7801 care about; otherwise we only require that the condition and
7802 either of the legs be potentially constant. */
7803 tmp = TREE_OPERAND (t, 0);
d6ed1c89 7804 if (!potential_constant_expression_1 (tmp, rval, flags))
66e61a34
JM
7805 return false;
7806 else if (tmp == boolean_true_node)
d6ed1c89
JM
7807 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
7808 want_rval, flags);
66e61a34 7809 else if (tmp == boolean_false_node)
d6ed1c89
JM
7810 return potential_constant_expression_1 (TREE_OPERAND (t, 2),
7811 want_rval, flags);
66e61a34 7812 for (i = 1; i < 3; ++i)
d6ed1c89
JM
7813 if (potential_constant_expression_1 (TREE_OPERAND (t, i),
7814 want_rval, tf_none))
66e61a34
JM
7815 return true;
7816 if (flags & tf_error)
7817 error ("expression %qE is not a constant-expression", t);
7818 return false;
7819
7820 case VEC_INIT_EXPR:
d6ed1c89
JM
7821 if (VEC_INIT_EXPR_IS_CONSTEXPR (t))
7822 return true;
7823 if (flags & tf_error)
262a7d6b
JM
7824 {
7825 error ("non-constant array initialization");
7826 diagnose_non_constexpr_vec_init (t);
7827 }
d6ed1c89 7828 return false;
66e61a34
JM
7829
7830 default:
7831 sorry ("unexpected ast of kind %s", tree_code_name[TREE_CODE (t)]);
7832 gcc_unreachable();
7833 return false;
7834 }
7835}
7836
d6ed1c89
JM
7837/* The main entry point to the above. */
7838
7839bool
7840potential_constant_expression (tree t)
7841{
7842 return potential_constant_expression_1 (t, false, tf_none);
7843}
7844
4be5e5b1
JM
7845/* As above, but require a constant rvalue. */
7846
7847bool
7848potential_rvalue_constant_expression (tree t)
7849{
7850 return potential_constant_expression_1 (t, true, tf_none);
7851}
7852
d6ed1c89
JM
7853/* Like above, but complain about non-constant expressions. */
7854
7855bool
7856require_potential_constant_expression (tree t)
7857{
7858 return potential_constant_expression_1 (t, false, tf_warning_or_error);
7859}
4be5e5b1
JM
7860
7861/* Cross product of the above. */
7862
7863bool
7864require_potential_rvalue_constant_expression (tree t)
7865{
7866 return potential_constant_expression_1 (t, true, tf_warning_or_error);
7867}
66e61a34 7868\f
d5f4eddd
JM
7869/* Constructor for a lambda expression. */
7870
7871tree
7872build_lambda_expr (void)
7873{
7874 tree lambda = make_node (LAMBDA_EXPR);
7875 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE;
7876 LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE;
7877 LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE;
7878 LAMBDA_EXPR_RETURN_TYPE (lambda) = NULL_TREE;
7879 LAMBDA_EXPR_MUTABLE_P (lambda) = false;
7880 return lambda;
7881}
7882
7883/* Create the closure object for a LAMBDA_EXPR. */
7884
7885tree
7886build_lambda_object (tree lambda_expr)
7887{
7888 /* Build aggregate constructor call.
7889 - cp_parser_braced_list
7890 - cp_parser_functional_cast */
7891 VEC(constructor_elt,gc) *elts = NULL;
7892 tree node, expr, type;
7893 location_t saved_loc;
7894
7895 if (processing_template_decl)
7896 return lambda_expr;
7897
7898 /* Make sure any error messages refer to the lambda-introducer. */
7899 saved_loc = input_location;
7900 input_location = LAMBDA_EXPR_LOCATION (lambda_expr);
7901
7902 for (node = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr);
7903 node;
7904 node = TREE_CHAIN (node))
7905 {
7906 tree field = TREE_PURPOSE (node);
7907 tree val = TREE_VALUE (node);
7908
a26e0b81
PC
7909 if (field == error_mark_node)
7910 {
7911 expr = error_mark_node;
7912 goto out;
7913 }
7914
1f4a7a48
JM
7915 if (DECL_P (val))
7916 mark_used (val);
7917
d5f4eddd
JM
7918 /* Mere mortals can't copy arrays with aggregate initialization, so
7919 do some magic to make it work here. */
7920 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE)
7921 val = build_array_copy (val);
37a7519a
JM
7922 else if (DECL_NORMAL_CAPTURE_P (field)
7923 && TREE_CODE (TREE_TYPE (field)) != REFERENCE_TYPE)
7924 {
7925 /* "the entities that are captured by copy are used to
7926 direct-initialize each corresponding non-static data
7927 member of the resulting closure object."
7928
7929 There's normally no way to express direct-initialization
7930 from an element of a CONSTRUCTOR, so we build up a special
7931 TARGET_EXPR to bypass the usual copy-initialization. */
7932 val = force_rvalue (val);
7933 if (TREE_CODE (val) == TARGET_EXPR)
7934 TARGET_EXPR_DIRECT_INIT_P (val) = true;
7935 }
d5f4eddd
JM
7936
7937 CONSTRUCTOR_APPEND_ELT (elts, DECL_NAME (field), val);
7938 }
7939
7940 expr = build_constructor (init_list_type_node, elts);
7941 CONSTRUCTOR_IS_DIRECT_INIT (expr) = 1;
7942
7943 /* N2927: "[The closure] class type is not an aggregate."
7944 But we briefly treat it as an aggregate to make this simpler. */
7945 type = TREE_TYPE (lambda_expr);
7946 CLASSTYPE_NON_AGGREGATE (type) = 0;
834aa426 7947 expr = finish_compound_literal (type, expr, tf_warning_or_error);
d5f4eddd
JM
7948 CLASSTYPE_NON_AGGREGATE (type) = 1;
7949
a26e0b81 7950 out:
d5f4eddd
JM
7951 input_location = saved_loc;
7952 return expr;
7953}
7954
7955/* Return an initialized RECORD_TYPE for LAMBDA.
7956 LAMBDA must have its explicit captures already. */
7957
7958tree
7959begin_lambda_type (tree lambda)
7960{
7961 tree type;
7962
7963 {
7964 /* Unique name. This is just like an unnamed class, but we cannot use
7965 make_anon_name because of certain checks against TYPE_ANONYMOUS_P. */
7966 tree name;
7967 name = make_lambda_name ();
7968
7969 /* Create the new RECORD_TYPE for this lambda. */
7970 type = xref_tag (/*tag_code=*/record_type,
7971 name,
7972 /*scope=*/ts_within_enclosing_non_class,
7973 /*template_header_p=*/false);
7974 }
7975
7976 /* Designate it as a struct so that we can use aggregate initialization. */
7977 CLASSTYPE_DECLARED_CLASS (type) = false;
7978
7979 /* Clear base types. */
7980 xref_basetypes (type, /*bases=*/NULL_TREE);
7981
7982 /* Start the class. */
7983 type = begin_class_definition (type, /*attributes=*/NULL_TREE);
7984
7985 /* Cross-reference the expression and the type. */
7986 TREE_TYPE (lambda) = type;
7987 CLASSTYPE_LAMBDA_EXPR (type) = lambda;
7988
7989 return type;
7990}
7991
7992/* Returns the type to use for the return type of the operator() of a
7993 closure class. */
7994
7995tree
7996lambda_return_type (tree expr)
7997{
7998 tree type;
95b24c84
JM
7999 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
8000 {
8001 warning (0, "cannot deduce lambda return type from a braced-init-list");
8002 return void_type_node;
8003 }
d5f4eddd
JM
8004 if (type_dependent_expression_p (expr))
8005 {
8006 type = cxx_make_type (DECLTYPE_TYPE);
8007 DECLTYPE_TYPE_EXPR (type) = expr;
8008 DECLTYPE_FOR_LAMBDA_RETURN (type) = true;
8009 SET_TYPE_STRUCTURAL_EQUALITY (type);
8010 }
8011 else
8012 type = type_decays_to (unlowered_expr_type (expr));
8013 return type;
8014}
8015
8016/* Given a LAMBDA_EXPR or closure type LAMBDA, return the op() of the
8017 closure type. */
8018
8019tree
8020lambda_function (tree lambda)
8021{
8022 tree type;
8023 if (TREE_CODE (lambda) == LAMBDA_EXPR)
8024 type = TREE_TYPE (lambda);
8025 else
8026 type = lambda;
8027 gcc_assert (LAMBDA_TYPE_P (type));
8028 /* Don't let debug_tree cause instantiation. */
8029 if (CLASSTYPE_TEMPLATE_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
8030 return NULL_TREE;
8031 lambda = lookup_member (type, ansi_opname (CALL_EXPR),
8032 /*protect=*/0, /*want_type=*/false);
8033 if (lambda)
8034 lambda = BASELINK_FUNCTIONS (lambda);
8035 return lambda;
8036}
8037
8038/* Returns the type to use for the FIELD_DECL corresponding to the
8039 capture of EXPR.
8040 The caller should add REFERENCE_TYPE for capture by reference. */
8041
8042tree
8043lambda_capture_field_type (tree expr)
8044{
8045 tree type;
8046 if (type_dependent_expression_p (expr))
8047 {
8048 type = cxx_make_type (DECLTYPE_TYPE);
8049 DECLTYPE_TYPE_EXPR (type) = expr;
8050 DECLTYPE_FOR_LAMBDA_CAPTURE (type) = true;
8051 SET_TYPE_STRUCTURAL_EQUALITY (type);
8052 }
8053 else
8054 type = non_reference (unlowered_expr_type (expr));
8055 return type;
8056}
8057
8058/* Recompute the return type for LAMBDA with body of the form:
8059 { return EXPR ; } */
8060
8061void
8062apply_lambda_return_type (tree lambda, tree return_type)
8063{
8064 tree fco = lambda_function (lambda);
8065 tree result;
8066
8067 LAMBDA_EXPR_RETURN_TYPE (lambda) = return_type;
8068
8069 /* If we got a DECLTYPE_TYPE, don't stick it in the function yet,
8070 it would interfere with instantiating the closure type. */
8071 if (dependent_type_p (return_type))
8072 return;
8073 if (return_type == error_mark_node)
8074 return;
8075
8076 /* TREE_TYPE (FUNCTION_DECL) == METHOD_TYPE
8077 TREE_TYPE (METHOD_TYPE) == return-type */
643d4cd6 8078 TREE_TYPE (fco) = change_return_type (return_type, TREE_TYPE (fco));
d5f4eddd
JM
8079
8080 result = DECL_RESULT (fco);
8081 if (result == NULL_TREE)
8082 return;
8083
8084 /* We already have a DECL_RESULT from start_preparsed_function.
8085 Now we need to redo the work it and allocate_struct_function
8086 did to reflect the new type. */
8087 result = build_decl (input_location, RESULT_DECL, NULL_TREE,
8088 TYPE_MAIN_VARIANT (return_type));
8089 DECL_ARTIFICIAL (result) = 1;
8090 DECL_IGNORED_P (result) = 1;
8091 cp_apply_type_quals_to_decl (cp_type_quals (return_type),
8092 result);
8093
8094 DECL_RESULT (fco) = result;
8095
8096 if (!processing_template_decl && aggregate_value_p (result, fco))
8097 {
8098#ifdef PCC_STATIC_STRUCT_RETURN
8099 cfun->returns_pcc_struct = 1;
8100#endif
8101 cfun->returns_struct = 1;
8102 }
8103
8104}
8105
8106/* DECL is a local variable or parameter from the surrounding scope of a
8107 lambda-expression. Returns the decltype for a use of the capture field
8108 for DECL even if it hasn't been captured yet. */
8109
8110static tree
8111capture_decltype (tree decl)
8112{
8113 tree lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
8114 /* FIXME do lookup instead of list walk? */
8115 tree cap = value_member (decl, LAMBDA_EXPR_CAPTURE_LIST (lam));
8116 tree type;
8117
8118 if (cap)
8119 type = TREE_TYPE (TREE_PURPOSE (cap));
8120 else
8121 switch (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam))
8122 {
8123 case CPLD_NONE:
8124 error ("%qD is not captured", decl);
8125 return error_mark_node;
8126
8127 case CPLD_COPY:
8128 type = TREE_TYPE (decl);
8129 if (TREE_CODE (type) == REFERENCE_TYPE
8130 && TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE)
8131 type = TREE_TYPE (type);
8132 break;
8133
8134 case CPLD_REFERENCE:
8135 type = TREE_TYPE (decl);
8136 if (TREE_CODE (type) != REFERENCE_TYPE)
8137 type = build_reference_type (TREE_TYPE (decl));
8138 break;
8139
8140 default:
8141 gcc_unreachable ();
8142 }
8143
8144 if (TREE_CODE (type) != REFERENCE_TYPE)
8145 {
8146 if (!LAMBDA_EXPR_MUTABLE_P (lam))
a3360e77 8147 type = cp_build_qualified_type (type, (cp_type_quals (type)
d5f4eddd
JM
8148 |TYPE_QUAL_CONST));
8149 type = build_reference_type (type);
8150 }
8151 return type;
8152}
8153
8154/* From an ID and INITIALIZER, create a capture (by reference if
8155 BY_REFERENCE_P is true), add it to the capture-list for LAMBDA,
8156 and return it. */
8157
8158tree
37a7519a
JM
8159add_capture (tree lambda, tree id, tree initializer, bool by_reference_p,
8160 bool explicit_init_p)
d5f4eddd
JM
8161{
8162 tree type;
8163 tree member;
8164
8165 type = lambda_capture_field_type (initializer);
8166 if (by_reference_p)
8167 {
8168 type = build_reference_type (type);
8169 if (!real_lvalue_p (initializer))
8170 error ("cannot capture %qE by reference", initializer);
8171 }
8172
8173 /* Make member variable. */
8174 member = build_lang_decl (FIELD_DECL, id, type);
37a7519a
JM
8175 if (!explicit_init_p)
8176 /* Normal captures are invisible to name lookup but uses are replaced
8177 with references to the capture field; we implement this by only
8178 really making them invisible in unevaluated context; see
8179 qualify_lookup. For now, let's make explicitly initialized captures
8180 always visible. */
8181 DECL_NORMAL_CAPTURE_P (member) = true;
d5f4eddd 8182
19030d77
JM
8183 /* Add it to the appropriate closure class if we've started it. */
8184 if (current_class_type && current_class_type == TREE_TYPE (lambda))
8185 finish_member_declaration (member);
d5f4eddd
JM
8186
8187 LAMBDA_EXPR_CAPTURE_LIST (lambda)
8188 = tree_cons (member, initializer, LAMBDA_EXPR_CAPTURE_LIST (lambda));
8189
8190 if (id == get_identifier ("__this"))
8191 {
8192 if (LAMBDA_EXPR_CAPTURES_THIS_P (lambda))
8193 error ("already captured %<this%> in lambda expression");
8194 LAMBDA_EXPR_THIS_CAPTURE (lambda) = member;
8195 }
8196
8197 return member;
8198}
8199
19030d77
JM
8200/* Register all the capture members on the list CAPTURES, which is the
8201 LAMBDA_EXPR_CAPTURE_LIST for the lambda after the introducer. */
8202
8203void register_capture_members (tree captures)
8204{
8205 if (captures)
8206 {
8207 register_capture_members (TREE_CHAIN (captures));
8208 finish_member_declaration (TREE_PURPOSE (captures));
8209 }
8210}
8211
9660afe0
JM
8212/* Given a FIELD_DECL decl belonging to a closure type, return a
8213 COMPONENT_REF of it relative to the 'this' parameter of the op() for
8214 that type. */
8215
8216static tree
8217thisify_lambda_field (tree decl)
8218{
8219 tree context = lambda_function (DECL_CONTEXT (decl));
8220 tree object = cp_build_indirect_ref (DECL_ARGUMENTS (context),
dd865ef6 8221 RO_NULL,
9660afe0
JM
8222 tf_warning_or_error);
8223 return finish_non_static_data_member (decl, object,
8224 /*qualifying_scope*/NULL_TREE);
8225}
8226
d5f4eddd
JM
8227/* Similar to add_capture, except this works on a stack of nested lambdas.
8228 BY_REFERENCE_P in this case is derived from the default capture mode.
8229 Returns the capture for the lambda at the bottom of the stack. */
8230
8231tree
8232add_default_capture (tree lambda_stack, tree id, tree initializer)
8233{
8234 bool this_capture_p = (id == get_identifier ("__this"));
8235
8236 tree member = NULL_TREE;
8237
8238 tree saved_class_type = current_class_type;
8239
8240 tree node;
8241
8242 for (node = lambda_stack;
8243 node;
8244 node = TREE_CHAIN (node))
8245 {
8246 tree lambda = TREE_VALUE (node);
8247
8248 current_class_type = TREE_TYPE (lambda);
8249 member = add_capture (lambda,
8250 id,
8251 initializer,
8252 /*by_reference_p=*/
8253 (!this_capture_p
8254 && (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda)
37a7519a
JM
8255 == CPLD_REFERENCE)),
8256 /*explicit_init_p=*/false);
9660afe0 8257 initializer = thisify_lambda_field (member);
d5f4eddd
JM
8258 }
8259
8260 current_class_type = saved_class_type;
8261
8262 return member;
d5f4eddd
JM
8263}
8264
8265/* Return the capture pertaining to a use of 'this' in LAMBDA, in the form of an
8266 INDIRECT_REF, possibly adding it through default capturing. */
8267
8268tree
8269lambda_expr_this_capture (tree lambda)
8270{
8271 tree result;
8272
8273 tree this_capture = LAMBDA_EXPR_THIS_CAPTURE (lambda);
8274
8275 /* Try to default capture 'this' if we can. */
8276 if (!this_capture
8277 && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) != CPLD_NONE)
8278 {
8279 tree containing_function = TYPE_CONTEXT (TREE_TYPE (lambda));
8280 tree lambda_stack = tree_cons (NULL_TREE, lambda, NULL_TREE);
71d16049 8281 tree init = NULL_TREE;
d5f4eddd
JM
8282
8283 /* If we are in a lambda function, we can move out until we hit:
8284 1. a non-lambda function,
8285 2. a lambda function capturing 'this', or
8286 3. a non-default capturing lambda function. */
8287 while (LAMBDA_FUNCTION_P (containing_function))
8288 {
8289 tree lambda
8290 = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (containing_function));
8291
71d16049
JM
8292 if (LAMBDA_EXPR_THIS_CAPTURE (lambda))
8293 {
8294 /* An outer lambda has already captured 'this'. */
8295 tree cap = LAMBDA_EXPR_THIS_CAPTURE (lambda);
92de1b37 8296 init = thisify_lambda_field (cap);
71d16049
JM
8297 break;
8298 }
8299
8300 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) == CPLD_NONE)
8301 /* An outer lambda won't let us capture 'this'. */
8302 break;
d5f4eddd
JM
8303
8304 lambda_stack = tree_cons (NULL_TREE,
8305 lambda,
8306 lambda_stack);
8307
8308 containing_function = decl_function_context (containing_function);
8309 }
8310
71d16049
JM
8311 if (!init && DECL_NONSTATIC_MEMBER_FUNCTION_P (containing_function)
8312 && !LAMBDA_FUNCTION_P (containing_function))
8313 /* First parameter is 'this'. */
8314 init = DECL_ARGUMENTS (containing_function);
d5f4eddd 8315
71d16049
JM
8316 if (init)
8317 this_capture = add_default_capture (lambda_stack,
8318 /*id=*/get_identifier ("__this"),
8319 init);
d5f4eddd
JM
8320 }
8321
8322 if (!this_capture)
8323 {
8324 error ("%<this%> was not captured for this lambda function");
8325 result = error_mark_node;
8326 }
8327 else
8328 {
8329 /* To make sure that current_class_ref is for the lambda. */
8330 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref)) == TREE_TYPE (lambda));
8331
8332 result = finish_non_static_data_member (this_capture,
2defb926 8333 NULL_TREE,
d5f4eddd
JM
8334 /*qualifying_scope=*/NULL_TREE);
8335
8336 /* If 'this' is captured, each use of 'this' is transformed into an
8337 access to the corresponding unnamed data member of the closure
8338 type cast (_expr.cast_ 5.4) to the type of 'this'. [ The cast
8339 ensures that the transformed expression is an rvalue. ] */
8340 result = rvalue (result);
8341 }
8342
8343 return result;
8344}
8345
a6846853
JM
8346/* Returns the method basetype of the innermost non-lambda function, or
8347 NULL_TREE if none. */
8348
8349tree
8350nonlambda_method_basetype (void)
8351{
8352 tree fn, type;
8353 if (!current_class_ref)
8354 return NULL_TREE;
8355
8356 type = current_class_type;
8357 if (!LAMBDA_TYPE_P (type))
8358 return type;
8359
8360 /* Find the nearest enclosing non-lambda function. */
8361 fn = TYPE_NAME (type);
8362 do
8363 fn = decl_function_context (fn);
8364 while (fn && LAMBDA_FUNCTION_P (fn));
8365
8366 if (!fn || !DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
8367 return NULL_TREE;
8368
8369 return TYPE_METHOD_BASETYPE (TREE_TYPE (fn));
8370}
8371
b77068f2
JM
8372/* If the closure TYPE has a static op(), also add a conversion to function
8373 pointer. */
8374
8375void
8376maybe_add_lambda_conv_op (tree type)
8377{
8378 bool nested = (current_function_decl != NULL_TREE);
8379 tree callop = lambda_function (type);
8380 tree rettype, name, fntype, fn, body, compound_stmt;
c6be04ad
JM
8381 tree thistype, stattype, statfn, convfn, call, arg;
8382 VEC (tree, gc) *argvec;
b77068f2 8383
c6be04ad 8384 if (LAMBDA_EXPR_CAPTURE_LIST (CLASSTYPE_LAMBDA_EXPR (type)) != NULL_TREE)
b77068f2
JM
8385 return;
8386
c6be04ad
JM
8387 stattype = build_function_type (TREE_TYPE (TREE_TYPE (callop)),
8388 FUNCTION_ARG_CHAIN (callop));
8389
8390 /* First build up the conversion op. */
8391
8392 rettype = build_pointer_type (stattype);
b77068f2 8393 name = mangle_conv_op_name_for_type (rettype);
c6be04ad
JM
8394 thistype = cp_build_qualified_type (type, TYPE_QUAL_CONST);
8395 fntype = build_method_type_directly (thistype, rettype, void_list_node);
8396 fn = convfn = build_lang_decl (FUNCTION_DECL, name, fntype);
b77068f2
JM
8397 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
8398
8399 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
8400 && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
8401 DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
8402
8403 SET_OVERLOADED_OPERATOR_CODE (fn, TYPE_EXPR);
8404 grokclassfn (type, fn, NO_SPECIAL);
8405 set_linkage_according_to_type (type, fn);
8406 rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
8407 DECL_IN_AGGR_P (fn) = 1;
8408 DECL_ARTIFICIAL (fn) = 1;
8409 DECL_NOT_REALLY_EXTERN (fn) = 1;
8410 DECL_DECLARED_INLINE_P (fn) = 1;
c6be04ad
JM
8411 DECL_ARGUMENTS (fn) = build_this_parm (fntype, TYPE_QUAL_CONST);
8412 if (nested)
8413 DECL_INTERFACE_KNOWN (fn) = 1;
8414
8415 add_method (type, fn, NULL_TREE);
8416
8417 /* Generic thunk code fails for varargs; we'll complain in mark_used if
8418 the conversion op is used. */
8419 if (varargs_function_p (callop))
8420 {
8421 DECL_DELETED_FN (fn) = 1;
8422 return;
8423 }
8424
8425 /* Now build up the thunk to be returned. */
8426
8427 name = get_identifier ("_FUN");
8428 fn = statfn = build_lang_decl (FUNCTION_DECL, name, stattype);
8429 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
8430 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
8431 && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
8432 DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
8433 grokclassfn (type, fn, NO_SPECIAL);
8434 set_linkage_according_to_type (type, fn);
8435 rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
8436 DECL_IN_AGGR_P (fn) = 1;
8437 DECL_ARTIFICIAL (fn) = 1;
8438 DECL_NOT_REALLY_EXTERN (fn) = 1;
8439 DECL_DECLARED_INLINE_P (fn) = 1;
b77068f2 8440 DECL_STATIC_FUNCTION_P (fn) = 1;
910ad8de
NF
8441 DECL_ARGUMENTS (fn) = copy_list (DECL_CHAIN (DECL_ARGUMENTS (callop)));
8442 for (arg = DECL_ARGUMENTS (fn); arg; arg = DECL_CHAIN (arg))
c6be04ad 8443 DECL_CONTEXT (arg) = fn;
7a79ff3b
JM
8444 if (nested)
8445 DECL_INTERFACE_KNOWN (fn) = 1;
b77068f2
JM
8446
8447 add_method (type, fn, NULL_TREE);
8448
8449 if (nested)
8450 push_function_context ();
c6be04ad
JM
8451
8452 /* Generate the body of the thunk. */
8453
8454 start_preparsed_function (statfn, NULL_TREE,
8455 SF_PRE_PARSED | SF_INCLASS_INLINE);
8456 if (DECL_ONE_ONLY (statfn))
8457 {
8458 /* Put the thunk in the same comdat group as the call op. */
8459 struct cgraph_node *callop_node, *thunk_node;
8460 DECL_COMDAT_GROUP (statfn) = DECL_COMDAT_GROUP (callop);
8461 callop_node = cgraph_node (callop);
8462 thunk_node = cgraph_node (statfn);
8463 gcc_assert (callop_node->same_comdat_group == NULL);
8464 gcc_assert (thunk_node->same_comdat_group == NULL);
8465 callop_node->same_comdat_group = thunk_node;
8466 thunk_node->same_comdat_group = callop_node;
8467 }
8468 body = begin_function_body ();
8469 compound_stmt = begin_compound_stmt (0);
8470
9542943d
JM
8471 arg = build1 (NOP_EXPR, TREE_TYPE (DECL_ARGUMENTS (callop)),
8472 null_pointer_node);
c6be04ad
JM
8473 argvec = make_tree_vector ();
8474 VEC_quick_push (tree, argvec, arg);
910ad8de 8475 for (arg = DECL_ARGUMENTS (statfn); arg; arg = DECL_CHAIN (arg))
c6be04ad 8476 VEC_safe_push (tree, gc, argvec, arg);
e62e4922
JM
8477 call = build_call_a (callop, VEC_length (tree, argvec),
8478 VEC_address (tree, argvec));
c6be04ad 8479 CALL_FROM_THUNK_P (call) = 1;
e62e4922 8480 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (call)))
362115a9 8481 call = build_cplus_new (TREE_TYPE (call), call, tf_warning_or_error);
e62e4922 8482 call = convert_from_reference (call);
c6be04ad
JM
8483 finish_return_stmt (call);
8484
8485 finish_compound_stmt (compound_stmt);
8486 finish_function_body (body);
8487
8488 expand_or_defer_fn (finish_function (2));
8489
8490 /* Generate the body of the conversion op. */
8491
8492 start_preparsed_function (convfn, NULL_TREE,
b77068f2
JM
8493 SF_PRE_PARSED | SF_INCLASS_INLINE);
8494 body = begin_function_body ();
8495 compound_stmt = begin_compound_stmt (0);
8496
c6be04ad 8497 finish_return_stmt (decay_conversion (statfn));
b77068f2
JM
8498
8499 finish_compound_stmt (compound_stmt);
8500 finish_function_body (body);
8501
8502 expand_or_defer_fn (finish_function (2));
c6be04ad 8503
b77068f2
JM
8504 if (nested)
8505 pop_function_context ();
8506}
cf22909c 8507#include "gt-cp-semantics.h"
This page took 4.336099 seconds and 5 git commands to generate.