]> gcc.gnu.org Git - gcc.git/blame - gcc/cp/semantics.c
re PR libstdc++/23417 (bits/stl_tree.h isn't -Weffc++ clean)
[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
a26ddf11 6 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
5088b058 7 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
MM
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2, or (at your option)
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
ad321293 23 You should have received a copy of the GNU General Public License
f5adbb8d 24 along with GCC; see the file COPYING. If not, write to the Free
1788952f
KC
25 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
26 02110-1301, USA. */
ad321293
MM
27
28#include "config.h"
8d052bc7 29#include "system.h"
4977bab6
ZW
30#include "coretypes.h"
31#include "tm.h"
ad321293
MM
32#include "tree.h"
33#include "cp-tree.h"
5f070bc7 34#include "c-common.h"
25af8512 35#include "tree-inline.h"
6de9cd9a 36#include "tree-mudflap.h"
ad321293 37#include "except.h"
12027a89 38#include "toplev.h"
84df082b 39#include "flags.h"
d9b2d9da 40#include "rtl.h"
d6684bc8 41#include "expr.h"
225ff119 42#include "output.h"
ea11ca7e 43#include "timevar.h"
2b85879e 44#include "debug.h"
6de9cd9a 45#include "diagnostic.h"
8cd2462c 46#include "cgraph.h"
325c3691 47#include "tree-iterator.h"
3e1f1ba5 48#include "vec.h"
44d10c10 49#include "target.h"
ad321293
MM
50
51/* There routines provide a modular interface to perform many parsing
52 operations. They may therefore be used during actual parsing, or
53 during template instantiation, which may be regarded as a
54 degenerate form of parsing. Since the current g++ parser is
55 lacking in several respects, and will be reimplemented, we are
56 attempting to move most code that is not directly related to
57 parsing into this file; that will make implementing the new parser
58 much easier since it will be able to make use of these routines. */
59
3a978d72
NN
60static tree maybe_convert_cond (tree);
61static tree simplify_aggr_init_exprs_r (tree *, int *, void *);
62static void emit_associated_thunks (tree);
6de9cd9a 63static tree finalize_nrv_r (tree *, int *, void *);
4985cde3 64
558475f0 65
8d241e0b
KL
66/* Deferred Access Checking Overview
67 ---------------------------------
68
69 Most C++ expressions and declarations require access checking
70 to be performed during parsing. However, in several cases,
71 this has to be treated differently.
72
73 For member declarations, access checking has to be deferred
74 until more information about the declaration is known. For
75 example:
76
77 class A {
0cbd7506 78 typedef int X;
8d241e0b 79 public:
0cbd7506 80 X f();
8d241e0b
KL
81 };
82
83 A::X A::f();
84 A::X g();
85
86 When we are parsing the function return type `A::X', we don't
87 really know if this is allowed until we parse the function name.
88
89 Furthermore, some contexts require that access checking is
90 never performed at all. These include class heads, and template
91 instantiations.
92
93 Typical use of access checking functions is described here:
c8094d83 94
8d241e0b
KL
95 1. When we enter a context that requires certain access checking
96 mode, the function `push_deferring_access_checks' is called with
97 DEFERRING argument specifying the desired mode. Access checking
98 may be performed immediately (dk_no_deferred), deferred
99 (dk_deferred), or not performed (dk_no_check).
100
101 2. When a declaration such as a type, or a variable, is encountered,
102 the function `perform_or_defer_access_check' is called. It
103 maintains a TREE_LIST of all deferred checks.
104
105 3. The global `current_class_type' or `current_function_decl' is then
106 setup by the parser. `enforce_access' relies on these information
107 to check access.
108
109 4. Upon exiting the context mentioned in step 1,
110 `perform_deferred_access_checks' is called to check all declaration
111 stored in the TREE_LIST. `pop_deferring_access_checks' is then
112 called to restore the previous access checking mode.
113
114 In case of parsing error, we simply call `pop_deferring_access_checks'
115 without `perform_deferred_access_checks'. */
116
3e1f1ba5
NS
117typedef struct deferred_access GTY(())
118{
119 /* A TREE_LIST representing name-lookups for which we have deferred
120 checking access controls. We cannot check the accessibility of
121 names used in a decl-specifier-seq until we know what is being
122 declared because code like:
123
c8094d83 124 class A {
0cbd7506
MS
125 class B {};
126 B* f();
3e1f1ba5
NS
127 }
128
129 A::B* A::f() { return 0; }
130
c8094d83 131 is valid, even though `A::B' is not generally accessible.
3e1f1ba5
NS
132
133 The TREE_PURPOSE of each node is the scope used to qualify the
134 name being looked up; the TREE_VALUE is the DECL to which the
135 name was resolved. */
136 tree deferred_access_checks;
c8094d83 137
3e1f1ba5
NS
138 /* The current mode of access checks. */
139 enum deferring_kind deferring_access_checks_kind;
c8094d83 140
3e1f1ba5 141} deferred_access;
d4e6fecb
NS
142DEF_VEC_O (deferred_access);
143DEF_VEC_ALLOC_O (deferred_access,gc);
3e1f1ba5 144
cf22909c 145/* Data for deferred access checking. */
d4e6fecb 146static GTY(()) VEC(deferred_access,gc) *deferred_access_stack;
3e1f1ba5 147static GTY(()) unsigned deferred_access_no_check;
cf22909c
KL
148
149/* Save the current deferred access states and start deferred
150 access checking iff DEFER_P is true. */
151
572c2b17
AP
152void
153push_deferring_access_checks (deferring_kind deferring)
cf22909c 154{
78757caa
KL
155 /* For context like template instantiation, access checking
156 disabling applies to all nested context. */
3e1f1ba5
NS
157 if (deferred_access_no_check || deferring == dk_no_check)
158 deferred_access_no_check++;
cf22909c 159 else
3e1f1ba5
NS
160 {
161 deferred_access *ptr;
cf22909c 162
d4e6fecb 163 ptr = VEC_safe_push (deferred_access, gc, deferred_access_stack, NULL);
3e1f1ba5
NS
164 ptr->deferred_access_checks = NULL_TREE;
165 ptr->deferring_access_checks_kind = deferring;
166 }
cf22909c
KL
167}
168
169/* Resume deferring access checks again after we stopped doing
170 this previously. */
171
572c2b17
AP
172void
173resume_deferring_access_checks (void)
cf22909c 174{
3e1f1ba5
NS
175 if (!deferred_access_no_check)
176 VEC_last (deferred_access, deferred_access_stack)
177 ->deferring_access_checks_kind = dk_deferred;
cf22909c
KL
178}
179
180/* Stop deferring access checks. */
181
572c2b17
AP
182void
183stop_deferring_access_checks (void)
cf22909c 184{
3e1f1ba5
NS
185 if (!deferred_access_no_check)
186 VEC_last (deferred_access, deferred_access_stack)
187 ->deferring_access_checks_kind = dk_no_deferred;
cf22909c
KL
188}
189
190/* Discard the current deferred access checks and restore the
191 previous states. */
192
572c2b17
AP
193void
194pop_deferring_access_checks (void)
cf22909c 195{
3e1f1ba5
NS
196 if (deferred_access_no_check)
197 deferred_access_no_check--;
198 else
199 VEC_pop (deferred_access, deferred_access_stack);
cf22909c
KL
200}
201
c8094d83
MS
202/* Returns a TREE_LIST representing the deferred checks.
203 The TREE_PURPOSE of each node is the type through which the
cf22909c
KL
204 access occurred; the TREE_VALUE is the declaration named.
205 */
206
572c2b17
AP
207tree
208get_deferred_access_checks (void)
cf22909c 209{
3e1f1ba5
NS
210 if (deferred_access_no_check)
211 return NULL;
212 else
213 return (VEC_last (deferred_access, deferred_access_stack)
214 ->deferred_access_checks);
cf22909c
KL
215}
216
217/* Take current deferred checks and combine with the
218 previous states if we also defer checks previously.
219 Otherwise perform checks now. */
220
572c2b17
AP
221void
222pop_to_parent_deferring_access_checks (void)
cf22909c 223{
3e1f1ba5
NS
224 if (deferred_access_no_check)
225 deferred_access_no_check--;
226 else
227 {
228 tree checks;
229 deferred_access *ptr;
230
231 checks = (VEC_last (deferred_access, deferred_access_stack)
232 ->deferred_access_checks);
233
234 VEC_pop (deferred_access, deferred_access_stack);
235 ptr = VEC_last (deferred_access, deferred_access_stack);
236 if (ptr->deferring_access_checks_kind == dk_no_deferred)
237 {
238 /* Check access. */
c8094d83
MS
239 for (; checks; checks = TREE_CHAIN (checks))
240 enforce_access (TREE_PURPOSE (checks),
3e1f1ba5
NS
241 TREE_VALUE (checks));
242 }
243 else
244 {
245 /* Merge with parent. */
246 tree next;
247 tree original = ptr->deferred_access_checks;
c8094d83 248
3e1f1ba5
NS
249 for (; checks; checks = next)
250 {
251 tree probe;
c8094d83 252
3e1f1ba5
NS
253 next = TREE_CHAIN (checks);
254
255 for (probe = original; probe; probe = TREE_CHAIN (probe))
256 if (TREE_VALUE (probe) == TREE_VALUE (checks)
257 && TREE_PURPOSE (probe) == TREE_PURPOSE (checks))
258 goto found;
259 /* Insert into parent's checks. */
260 TREE_CHAIN (checks) = ptr->deferred_access_checks;
261 ptr->deferred_access_checks = checks;
262 found:;
263 }
264 }
265 }
cf22909c
KL
266}
267
25903d03
KL
268/* Perform the deferred access checks.
269
270 After performing the checks, we still have to keep the list
271 `deferred_access_stack->deferred_access_checks' since we may want
272 to check access for them again later in a different context.
273 For example:
274
275 class A {
276 typedef int X;
277 static X a;
278 };
279 A::X A::a, x; // No error for `A::a', error for `x'
280
281 We have to perform deferred access of `A::X', first with `A::a',
282 next with `x'. */
cf22909c 283
572c2b17
AP
284void
285perform_deferred_access_checks (void)
cf22909c
KL
286{
287 tree deferred_check;
3e1f1ba5 288
856a4ce6 289 for (deferred_check = get_deferred_access_checks ();
cf22909c
KL
290 deferred_check;
291 deferred_check = TREE_CHAIN (deferred_check))
292 /* Check access. */
c8094d83 293 enforce_access (TREE_PURPOSE (deferred_check),
cf22909c 294 TREE_VALUE (deferred_check));
cf22909c
KL
295}
296
297/* Defer checking the accessibility of DECL, when looked up in
6df5158a 298 BINFO. */
cf22909c 299
572c2b17
AP
300void
301perform_or_defer_access_check (tree binfo, tree decl)
cf22909c
KL
302{
303 tree check;
3e1f1ba5 304 deferred_access *ptr;
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 {
6df5158a 318 enforce_access (binfo, decl);
cf22909c
KL
319 return;
320 }
c8094d83 321
cf22909c 322 /* See if we are already going to perform this check. */
3e1f1ba5 323 for (check = ptr->deferred_access_checks;
cf22909c
KL
324 check;
325 check = TREE_CHAIN (check))
6df5158a 326 if (TREE_VALUE (check) == decl && TREE_PURPOSE (check) == binfo)
cf22909c
KL
327 return;
328 /* If not, record the check. */
3e1f1ba5
NS
329 ptr->deferred_access_checks
330 = tree_cons (binfo, decl, ptr->deferred_access_checks);
cf22909c
KL
331}
332
838dfd8a 333/* Returns nonzero if the current statement is a full expression,
f2c5f623
BC
334 i.e. temporaries created during that statement should be destroyed
335 at the end of the statement. */
35b1567d 336
f2c5f623 337int
3a978d72 338stmts_are_full_exprs_p (void)
f2c5f623 339{
ae499cce
MM
340 return current_stmt_tree ()->stmts_are_full_exprs_p;
341}
342
ed3d0b14
ILT
343/* T is a statement. Add it to the statement-tree. This is the C++
344 version. The C/ObjC frontends have a slightly different version of
345 this function. */
346
347tree
348add_stmt (tree t)
349{
350 enum tree_code code = TREE_CODE (t);
351
352 if (EXPR_P (t) && code != LABEL_EXPR)
353 {
354 if (!EXPR_HAS_LOCATION (t))
355 SET_EXPR_LOCATION (t, input_location);
356
357 /* When we expand a statement-tree, we must know whether or not the
358 statements are full-expressions. We record that fact here. */
359 STMT_IS_FULL_EXPR_P (t) = stmts_are_full_exprs_p ();
360 }
361
362 /* Add T to the statement-tree. Non-side-effect statements need to be
363 recorded during statement expressions. */
364 append_to_statement_list_force (t, &cur_stmt_list);
365
366 return t;
367}
368
ae499cce
MM
369/* Returns the stmt_tree (if any) to which statements are currently
370 being added. If there is no active statement-tree, NULL is
371 returned. */
372
373stmt_tree
3a978d72 374current_stmt_tree (void)
ae499cce 375{
c8094d83
MS
376 return (cfun
377 ? &cfun->language->base.x_stmt_tree
ae499cce 378 : &scope_chain->x_stmt_tree);
f2c5f623 379}
35b1567d 380
543a0daa
RH
381/* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR. */
382
383static tree
384maybe_cleanup_point_expr (tree expr)
385{
386 if (!processing_template_decl && stmts_are_full_exprs_p ())
0ad28dde 387 expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
543a0daa
RH
388 return expr;
389}
390
0ad28dde 391/* Like maybe_cleanup_point_expr except have the type of the new expression be
22423a1f
KH
392 void so we don't need to create a temporary variable to hold the inner
393 expression. The reason why we do this is because the original type might be
394 an aggregate and we cannot create a temporary variable for that type. */
0ad28dde
AP
395
396static tree
397maybe_cleanup_point_expr_void (tree expr)
398{
399 if (!processing_template_decl && stmts_are_full_exprs_p ())
400 expr = fold_build_cleanup_point_expr (void_type_node, expr);
401 return expr;
402}
403
404
405
543a0daa
RH
406/* Create a declaration statement for the declaration given by the DECL. */
407
408void
350fae66 409add_decl_expr (tree decl)
543a0daa 410{
350fae66 411 tree r = build_stmt (DECL_EXPR, decl);
b187901e
AP
412 if (DECL_INITIAL (decl)
413 || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
0ad28dde 414 r = maybe_cleanup_point_expr_void (r);
543a0daa
RH
415 add_stmt (r);
416}
417
f2c5f623
BC
418/* Nonzero if TYPE is an anonymous union or struct type. We have to use a
419 flag for this because "A union for which objects or pointers are
420 declared is not an anonymous union" [class.union]. */
35b1567d 421
f2c5f623 422int
3a978d72 423anon_aggr_type_p (tree node)
35b1567d 424{
e2500fed 425 return ANON_AGGR_TYPE_P (node);
35b1567d
BC
426}
427
f2c5f623 428/* Finish a scope. */
35b1567d 429
e58a9aa1 430tree
325c3691 431do_poplevel (tree stmt_list)
35b1567d 432{
325c3691 433 tree block = NULL;
35b1567d 434
f2c5f623 435 if (stmts_are_full_exprs_p ())
325c3691 436 block = poplevel (kept_level_p (), 1, 0);
f2c5f623 437
325c3691 438 stmt_list = pop_stmt_list (stmt_list);
c8094d83 439
325c3691
RH
440 if (!processing_template_decl)
441 {
442 stmt_list = c_build_bind_expr (block, stmt_list);
443 /* ??? See c_end_compound_stmt re statement expressions. */
35b1567d
BC
444 }
445
325c3691 446 return stmt_list;
35b1567d
BC
447}
448
c8094d83 449/* Begin a new scope. */
35b1567d 450
325c3691 451static tree
92bc1323 452do_pushlevel (scope_kind sk)
35b1567d 453{
325c3691 454 tree ret = push_stmt_list ();
f2c5f623 455 if (stmts_are_full_exprs_p ())
325c3691
RH
456 begin_scope (sk, NULL);
457 return ret;
458}
5a508662
RH
459
460/* Queue a cleanup. CLEANUP is an expression/statement to be executed
461 when the current scope is exited. EH_ONLY is true when this is not
462 meant to apply to normal control flow transfer. */
463
464void
465push_cleanup (tree decl, tree cleanup, bool eh_only)
466{
467 tree stmt = build_stmt (CLEANUP_STMT, NULL, cleanup, decl);
468 CLEANUP_EH_ONLY (stmt) = eh_only;
469 add_stmt (stmt);
470 CLEANUP_BODY (stmt) = push_stmt_list ();
471}
325c3691 472
caf2523d
RH
473/* Begin a conditional that might contain a declaration. When generating
474 normal code, we want the declaration to appear before the statement
475 containing the conditional. When generating template code, we want the
350fae66 476 conditional to be rendered as the raw DECL_EXPR. */
325c3691
RH
477
478static void
caf2523d 479begin_cond (tree *cond_p)
325c3691 480{
caf2523d
RH
481 if (processing_template_decl)
482 *cond_p = push_stmt_list ();
483}
484
485/* Finish such a conditional. */
486
487static void
488finish_cond (tree *cond_p, tree expr)
489{
490 if (processing_template_decl)
35b1567d 491 {
caf2523d 492 tree cond = pop_stmt_list (*cond_p);
350fae66 493 if (TREE_CODE (cond) == DECL_EXPR)
caf2523d 494 expr = cond;
35b1567d 495 }
caf2523d 496 *cond_p = expr;
35b1567d
BC
497}
498
325c3691
RH
499/* If *COND_P specifies a conditional with a declaration, transform the
500 loop such that
0cbd7506
MS
501 while (A x = 42) { }
502 for (; A x = 42;) { }
325c3691 503 becomes
0cbd7506
MS
504 while (true) { A x = 42; if (!x) break; }
505 for (;;) { A x = 42; if (!x) break; }
caf2523d
RH
506 The statement list for BODY will be empty if the conditional did
507 not declare anything. */
c8094d83 508
325c3691 509static void
caf2523d 510simplify_loop_decl_cond (tree *cond_p, tree body)
325c3691 511{
caf2523d 512 tree cond, if_stmt;
325c3691 513
caf2523d
RH
514 if (!TREE_SIDE_EFFECTS (body))
515 return;
325c3691 516
caf2523d
RH
517 cond = *cond_p;
518 *cond_p = boolean_true_node;
c8094d83 519
caf2523d
RH
520 if_stmt = begin_if_stmt ();
521 cond = build_unary_op (TRUTH_NOT_EXPR, cond, 0);
522 finish_if_stmt_cond (cond, if_stmt);
523 finish_break_stmt ();
524 finish_then_clause (if_stmt);
525 finish_if_stmt (if_stmt);
526}
325c3691 527
35b1567d
BC
528/* Finish a goto-statement. */
529
3e4d04a1 530tree
3a978d72 531finish_goto_stmt (tree destination)
35b1567d
BC
532{
533 if (TREE_CODE (destination) == IDENTIFIER_NODE)
534 destination = lookup_label (destination);
535
536 /* We warn about unused labels with -Wunused. That means we have to
537 mark the used labels as used. */
538 if (TREE_CODE (destination) == LABEL_DECL)
539 TREE_USED (destination) = 1;
fc2b8477
MM
540 else
541 {
542 /* The DESTINATION is being used as an rvalue. */
543 if (!processing_template_decl)
544 destination = decay_conversion (destination);
545 /* We don't inline calls to functions with computed gotos.
546 Those functions are typically up to some funny business,
547 and may be depending on the labels being at particular
548 addresses, or some such. */
549 DECL_UNINLINABLE (current_function_decl) = 1;
550 }
c8094d83 551
35b1567d
BC
552 check_goto (destination);
553
9e14e18f 554 return add_stmt (build_stmt (GOTO_EXPR, destination));
35b1567d
BC
555}
556
ed5511d9
MM
557/* COND is the condition-expression for an if, while, etc.,
558 statement. Convert it to a boolean value, if appropriate. */
559
8ce33230 560static tree
3a978d72 561maybe_convert_cond (tree cond)
ed5511d9
MM
562{
563 /* Empty conditions remain empty. */
564 if (!cond)
565 return NULL_TREE;
566
567 /* Wait until we instantiate templates before doing conversion. */
568 if (processing_template_decl)
569 return cond;
570
571 /* Do the conversion. */
572 cond = convert_from_reference (cond);
573 return condition_conversion (cond);
574}
575
9bfadf57 576/* Finish an expression-statement, whose EXPRESSION is as indicated. */
a7e4cfa0 577
3e4d04a1 578tree
3a978d72 579finish_expr_stmt (tree expr)
ad321293 580{
3e4d04a1
RH
581 tree r = NULL_TREE;
582
ce4a0391 583 if (expr != NULL_TREE)
ad321293 584 {
a5bcc582 585 if (!processing_template_decl)
3a5b9284
RH
586 {
587 if (warn_sequence_point)
588 verify_sequence_points (expr);
589 expr = convert_to_void (expr, "statement");
590 }
47d4c811
NS
591 else if (!type_dependent_expression_p (expr))
592 convert_to_void (build_non_dependent_expr (expr), "statement");
325c3691
RH
593
594 /* Simplification of inner statement expressions, compound exprs,
ca5b80f3 595 etc can result in us already having an EXPR_STMT. */
543a0daa
RH
596 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
597 {
598 if (TREE_CODE (expr) != EXPR_STMT)
599 expr = build_stmt (EXPR_STMT, expr);
0ad28dde 600 expr = maybe_cleanup_point_expr_void (expr);
543a0daa
RH
601 }
602
325c3691 603 r = add_stmt (expr);
35b1567d 604 }
364460b6 605
35b1567d 606 finish_stmt ();
558475f0 607
3e4d04a1 608 return r;
35b1567d
BC
609}
610
35b1567d 611
ad321293
MM
612/* Begin an if-statement. Returns a newly created IF_STMT if
613 appropriate. */
614
615tree
3a978d72 616begin_if_stmt (void)
ad321293 617{
325c3691
RH
618 tree r, scope;
619 scope = do_pushlevel (sk_block);
0dfdeca6 620 r = build_stmt (IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
325c3691 621 TREE_CHAIN (r) = scope;
caf2523d 622 begin_cond (&IF_COND (r));
ad321293
MM
623 return r;
624}
625
626/* Process the COND of an if-statement, which may be given by
627 IF_STMT. */
628
c8094d83 629void
3a978d72 630finish_if_stmt_cond (tree cond, tree if_stmt)
ad321293 631{
caf2523d
RH
632 finish_cond (&IF_COND (if_stmt), maybe_convert_cond (cond));
633 add_stmt (if_stmt);
325c3691 634 THEN_CLAUSE (if_stmt) = push_stmt_list ();
ad321293
MM
635}
636
637/* Finish the then-clause of an if-statement, which may be given by
638 IF_STMT. */
639
640tree
3a978d72 641finish_then_clause (tree if_stmt)
ad321293 642{
325c3691 643 THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
35b1567d 644 return if_stmt;
ad321293
MM
645}
646
647/* Begin the else-clause of an if-statement. */
648
325c3691
RH
649void
650begin_else_clause (tree if_stmt)
ad321293 651{
325c3691 652 ELSE_CLAUSE (if_stmt) = push_stmt_list ();
ad321293
MM
653}
654
655/* Finish the else-clause of an if-statement, which may be given by
656 IF_STMT. */
657
658void
3a978d72 659finish_else_clause (tree if_stmt)
ad321293 660{
325c3691 661 ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
ad321293
MM
662}
663
dfbb4f34 664/* Finish an if-statement. */
ad321293 665
c8094d83 666void
325c3691 667finish_if_stmt (tree if_stmt)
ad321293 668{
325c3691
RH
669 tree scope = TREE_CHAIN (if_stmt);
670 TREE_CHAIN (if_stmt) = NULL;
671 add_stmt (do_poplevel (scope));
ad321293 672 finish_stmt ();
35b1567d
BC
673}
674
ad321293
MM
675/* Begin a while-statement. Returns a newly created WHILE_STMT if
676 appropriate. */
677
678tree
3a978d72 679begin_while_stmt (void)
ad321293
MM
680{
681 tree r;
0dfdeca6 682 r = build_stmt (WHILE_STMT, NULL_TREE, NULL_TREE);
ae499cce 683 add_stmt (r);
325c3691 684 WHILE_BODY (r) = do_pushlevel (sk_block);
caf2523d 685 begin_cond (&WHILE_COND (r));
ad321293
MM
686 return r;
687}
688
27d26ee7 689/* Process the COND of a while-statement, which may be given by
ad321293
MM
690 WHILE_STMT. */
691
c8094d83 692void
3a978d72 693finish_while_stmt_cond (tree cond, tree while_stmt)
ad321293 694{
caf2523d
RH
695 finish_cond (&WHILE_COND (while_stmt), maybe_convert_cond (cond));
696 simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
ad321293
MM
697}
698
699/* Finish a while-statement, which may be given by WHILE_STMT. */
700
c8094d83 701void
3a978d72 702finish_while_stmt (tree while_stmt)
ad321293 703{
325c3691 704 WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
ad321293
MM
705 finish_stmt ();
706}
707
708/* Begin a do-statement. Returns a newly created DO_STMT if
709 appropriate. */
710
711tree
3a978d72 712begin_do_stmt (void)
ad321293 713{
0dfdeca6 714 tree r = build_stmt (DO_STMT, NULL_TREE, NULL_TREE);
ae499cce 715 add_stmt (r);
325c3691 716 DO_BODY (r) = push_stmt_list ();
35b1567d 717 return r;
ad321293
MM
718}
719
720/* Finish the body of a do-statement, which may be given by DO_STMT. */
721
722void
3a978d72 723finish_do_body (tree do_stmt)
ad321293 724{
325c3691 725 DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
ad321293
MM
726}
727
728/* Finish a do-statement, which may be given by DO_STMT, and whose
729 COND is as indicated. */
730
731void
3a978d72 732finish_do_stmt (tree cond, tree do_stmt)
ad321293 733{
ed5511d9 734 cond = maybe_convert_cond (cond);
35b1567d
BC
735 DO_COND (do_stmt) = cond;
736 finish_stmt ();
737}
ed5511d9 738
ad321293
MM
739/* Finish a return-statement. The EXPRESSION returned, if any, is as
740 indicated. */
741
3e4d04a1 742tree
3a978d72 743finish_return_stmt (tree expr)
ad321293 744{
3e4d04a1 745 tree r;
0c9b182b 746 bool no_warning;
3e4d04a1 747
0c9b182b 748 expr = check_return_expr (expr, &no_warning);
35b1567d 749 if (!processing_template_decl)
efee38a9 750 {
44d10c10 751 if (DECL_DESTRUCTOR_P (current_function_decl)
c8094d83 752 || (DECL_CONSTRUCTOR_P (current_function_decl)
44d10c10 753 && targetm.cxx.cdtor_returns_this ()))
efee38a9
MM
754 {
755 /* Similarly, all destructors must run destructors for
756 base-classes before returning. So, all returns in a
dfbb4f34 757 destructor get sent to the DTOR_LABEL; finish_function emits
efee38a9 758 code to return a value there. */
44d10c10 759 return finish_goto_stmt (cdtor_label);
efee38a9
MM
760 }
761 }
543a0daa 762
5088b058 763 r = build_stmt (RETURN_EXPR, expr);
0c9b182b 764 TREE_NO_WARNING (r) |= no_warning;
0ad28dde 765 r = maybe_cleanup_point_expr_void (r);
543a0daa 766 r = add_stmt (r);
35b1567d 767 finish_stmt ();
3e4d04a1
RH
768
769 return r;
35b1567d 770}
efee38a9 771
ad321293
MM
772/* Begin a for-statement. Returns a new FOR_STMT if appropriate. */
773
774tree
3a978d72 775begin_for_stmt (void)
ad321293
MM
776{
777 tree r;
778
c8094d83 779 r = build_stmt (FOR_STMT, NULL_TREE, NULL_TREE,
0dfdeca6 780 NULL_TREE, NULL_TREE);
325c3691
RH
781
782 if (flag_new_for_scope > 0)
783 TREE_CHAIN (r) = do_pushlevel (sk_for);
ad321293 784
894ca2c9
RH
785 if (processing_template_decl)
786 FOR_INIT_STMT (r) = push_stmt_list ();
787
ad321293
MM
788 return r;
789}
790
791/* Finish the for-init-statement of a for-statement, which may be
792 given by FOR_STMT. */
793
794void
3a978d72 795finish_for_init_stmt (tree for_stmt)
ad321293 796{
894ca2c9
RH
797 if (processing_template_decl)
798 FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
325c3691
RH
799 add_stmt (for_stmt);
800 FOR_BODY (for_stmt) = do_pushlevel (sk_block);
caf2523d 801 begin_cond (&FOR_COND (for_stmt));
ad321293
MM
802}
803
804/* Finish the COND of a for-statement, which may be given by
805 FOR_STMT. */
806
807void
3a978d72 808finish_for_cond (tree cond, tree for_stmt)
ad321293 809{
caf2523d
RH
810 finish_cond (&FOR_COND (for_stmt), maybe_convert_cond (cond));
811 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
ad321293
MM
812}
813
814/* Finish the increment-EXPRESSION in a for-statement, which may be
815 given by FOR_STMT. */
816
817void
3a978d72 818finish_for_expr (tree expr, tree for_stmt)
ad321293 819{
543a0daa
RH
820 if (!expr)
821 return;
6f69173e
MM
822 /* If EXPR is an overloaded function, issue an error; there is no
823 context available to use to perform overload resolution. */
543a0daa 824 if (type_unknown_p (expr))
6f69173e
MM
825 {
826 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
827 expr = error_mark_node;
828 }
bcd46a7c
AP
829 if (!processing_template_decl)
830 {
831 if (warn_sequence_point)
0cbd7506 832 verify_sequence_points (expr);
bcd46a7c
AP
833 expr = convert_to_void (expr, "3rd expression in for");
834 }
835 else if (!type_dependent_expression_p (expr))
836 convert_to_void (build_non_dependent_expr (expr), "3rd expression in for");
0ad28dde 837 expr = maybe_cleanup_point_expr_void (expr);
35b1567d 838 FOR_EXPR (for_stmt) = expr;
ad321293
MM
839}
840
841/* Finish the body of a for-statement, which may be given by
842 FOR_STMT. The increment-EXPR for the loop must be
843 provided. */
844
845void
3a978d72 846finish_for_stmt (tree for_stmt)
ad321293 847{
325c3691
RH
848 FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
849
ad321293 850 /* Pop the scope for the body of the loop. */
325c3691
RH
851 if (flag_new_for_scope > 0)
852 {
853 tree scope = TREE_CHAIN (for_stmt);
854 TREE_CHAIN (for_stmt) = NULL;
855 add_stmt (do_poplevel (scope));
856 }
857
c8094d83 858 finish_stmt ();
ad321293
MM
859}
860
861/* Finish a break-statement. */
862
3e4d04a1 863tree
3a978d72 864finish_break_stmt (void)
ad321293 865{
fbc315db 866 return add_stmt (build_stmt (BREAK_STMT));
35b1567d
BC
867}
868
ad321293
MM
869/* Finish a continue-statement. */
870
3e4d04a1 871tree
3a978d72 872finish_continue_stmt (void)
ad321293 873{
fbc315db 874 return add_stmt (build_stmt (CONTINUE_STMT));
ad321293
MM
875}
876
35b1567d
BC
877/* Begin a switch-statement. Returns a new SWITCH_STMT if
878 appropriate. */
879
880tree
3a978d72 881begin_switch_stmt (void)
35b1567d 882{
325c3691
RH
883 tree r, scope;
884
6f9fdf4d 885 r = build_stmt (SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
325c3691
RH
886
887 scope = do_pushlevel (sk_block);
888 TREE_CHAIN (r) = scope;
ebaae582 889 begin_cond (&SWITCH_STMT_COND (r));
325c3691 890
527f0080 891 return r;
ad321293
MM
892}
893
527f0080 894/* Finish the cond of a switch-statement. */
ad321293 895
527f0080 896void
3a978d72 897finish_switch_cond (tree cond, tree switch_stmt)
ad321293 898{
6f9fdf4d 899 tree orig_type = NULL;
35b1567d 900 if (!processing_template_decl)
373eb3b3 901 {
56cb9733
MM
902 tree index;
903
35b1567d 904 /* Convert the condition to an integer or enumeration type. */
b746c5dc 905 cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
35b1567d 906 if (cond == NULL_TREE)
373eb3b3 907 {
35b1567d
BC
908 error ("switch quantity not an integer");
909 cond = error_mark_node;
910 }
6f9fdf4d 911 orig_type = TREE_TYPE (cond);
35b1567d
BC
912 if (cond != error_mark_node)
913 {
0a72704b
MM
914 /* [stmt.switch]
915
916 Integral promotions are performed. */
917 cond = perform_integral_promotions (cond);
543a0daa 918 cond = maybe_cleanup_point_expr (cond);
373eb3b3 919 }
56cb9733 920
25c8b645
JJ
921 if (cond != error_mark_node)
922 {
923 index = get_unwidened (cond, NULL_TREE);
924 /* We can't strip a conversion from a signed type to an unsigned,
925 because if we did, int_fits_type_p would do the wrong thing
926 when checking case values for being in range,
927 and it's too hard to do the right thing. */
8df83eae
RK
928 if (TYPE_UNSIGNED (TREE_TYPE (cond))
929 == TYPE_UNSIGNED (TREE_TYPE (index)))
25c8b645
JJ
930 cond = index;
931 }
ad321293 932 }
ebaae582
SB
933 finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
934 SWITCH_STMT_TYPE (switch_stmt) = orig_type;
caf2523d 935 add_stmt (switch_stmt);
56cb9733 936 push_switch (switch_stmt);
ebaae582 937 SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
ad321293
MM
938}
939
940/* Finish the body of a switch-statement, which may be given by
941 SWITCH_STMT. The COND to switch on is indicated. */
942
943void
3a978d72 944finish_switch_stmt (tree switch_stmt)
ad321293 945{
325c3691
RH
946 tree scope;
947
ebaae582
SB
948 SWITCH_STMT_BODY (switch_stmt) =
949 pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
c8094d83 950 pop_switch ();
ad321293 951 finish_stmt ();
325c3691
RH
952
953 scope = TREE_CHAIN (switch_stmt);
954 TREE_CHAIN (switch_stmt) = NULL;
955 add_stmt (do_poplevel (scope));
ad321293
MM
956}
957
ad321293
MM
958/* Begin a try-block. Returns a newly-created TRY_BLOCK if
959 appropriate. */
960
961tree
3a978d72 962begin_try_block (void)
ad321293 963{
0dfdeca6 964 tree r = build_stmt (TRY_BLOCK, NULL_TREE, NULL_TREE);
ae499cce 965 add_stmt (r);
325c3691 966 TRY_STMTS (r) = push_stmt_list ();
35b1567d 967 return r;
ad321293
MM
968}
969
0dde4175
JM
970/* Likewise, for a function-try-block. */
971
972tree
3a978d72 973begin_function_try_block (void)
0dde4175 974{
325c3691 975 tree r = begin_try_block ();
35b1567d 976 FN_TRY_BLOCK_P (r) = 1;
35b1567d 977 return r;
0dde4175
JM
978}
979
ad321293
MM
980/* Finish a try-block, which may be given by TRY_BLOCK. */
981
982void
3a978d72 983finish_try_block (tree try_block)
ad321293 984{
325c3691
RH
985 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
986 TRY_HANDLERS (try_block) = push_stmt_list ();
ad321293
MM
987}
988
efa8eda3
MM
989/* Finish the body of a cleanup try-block, which may be given by
990 TRY_BLOCK. */
991
62409b39 992void
3a978d72 993finish_cleanup_try_block (tree try_block)
62409b39 994{
325c3691 995 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
62409b39
MM
996}
997
f1dedc31
MM
998/* Finish an implicitly generated try-block, with a cleanup is given
999 by CLEANUP. */
1000
1001void
3a978d72 1002finish_cleanup (tree cleanup, tree try_block)
f1dedc31 1003{
35b1567d
BC
1004 TRY_HANDLERS (try_block) = cleanup;
1005 CLEANUP_P (try_block) = 1;
f1dedc31
MM
1006}
1007
0dde4175
JM
1008/* Likewise, for a function-try-block. */
1009
1010void
3a978d72 1011finish_function_try_block (tree try_block)
0dde4175 1012{
325c3691
RH
1013 finish_try_block (try_block);
1014 /* FIXME : something queer about CTOR_INITIALIZER somehow following
1015 the try block, but moving it inside. */
b35d4555 1016 in_function_try_handler = 1;
0dde4175
JM
1017}
1018
ad321293
MM
1019/* Finish a handler-sequence for a try-block, which may be given by
1020 TRY_BLOCK. */
1021
1022void
3a978d72 1023finish_handler_sequence (tree try_block)
ad321293 1024{
325c3691 1025 TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
35b1567d 1026 check_handlers (TRY_HANDLERS (try_block));
ad321293
MM
1027}
1028
0dde4175
JM
1029/* Likewise, for a function-try-block. */
1030
1031void
3a978d72 1032finish_function_handler_sequence (tree try_block)
0dde4175 1033{
b35d4555 1034 in_function_try_handler = 0;
325c3691 1035 finish_handler_sequence (try_block);
35b1567d
BC
1036}
1037
ad321293
MM
1038/* Begin a handler. Returns a HANDLER if appropriate. */
1039
1040tree
3a978d72 1041begin_handler (void)
ad321293
MM
1042{
1043 tree r;
325c3691 1044
0dfdeca6 1045 r = build_stmt (HANDLER, NULL_TREE, NULL_TREE);
ae499cce 1046 add_stmt (r);
325c3691 1047
1a6025b4
JM
1048 /* Create a binding level for the eh_info and the exception object
1049 cleanup. */
325c3691
RH
1050 HANDLER_BODY (r) = do_pushlevel (sk_catch);
1051
ad321293
MM
1052 return r;
1053}
1054
1055/* Finish the handler-parameters for a handler, which may be given by
b35d4555
MM
1056 HANDLER. DECL is the declaration for the catch parameter, or NULL
1057 if this is a `catch (...)' clause. */
ad321293 1058
1a6025b4 1059void
3a978d72 1060finish_handler_parms (tree decl, tree handler)
b35d4555 1061{
1a6025b4 1062 tree type = NULL_TREE;
b35d4555
MM
1063 if (processing_template_decl)
1064 {
1065 if (decl)
1066 {
1067 decl = pushdecl (decl);
1068 decl = push_template_decl (decl);
325c3691 1069 HANDLER_PARMS (handler) = decl;
1a6025b4 1070 type = TREE_TYPE (decl);
b35d4555
MM
1071 }
1072 }
35b1567d 1073 else
1a6025b4 1074 type = expand_start_catch_block (decl);
35b1567d 1075
1a6025b4 1076 HANDLER_TYPE (handler) = type;
b80cfdcd 1077 if (!processing_template_decl && type)
6cad4e17 1078 mark_used (eh_type_info (type));
35b1567d
BC
1079}
1080
1081/* Finish a handler, which may be given by HANDLER. The BLOCKs are
1082 the return value from the matching call to finish_handler_parms. */
1083
1084void
3a978d72 1085finish_handler (tree handler)
35b1567d
BC
1086{
1087 if (!processing_template_decl)
1a6025b4 1088 expand_end_catch_block ();
325c3691 1089 HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
35b1567d
BC
1090}
1091
5882f0f3 1092/* Begin a compound statement. FLAGS contains some bits that control the
5995ebfb 1093 behavior and context. If BCS_NO_SCOPE is set, the compound statement
5882f0f3 1094 does not define a scope. If BCS_FN_BODY is set, this is the outermost
c8094d83 1095 block of a function. If BCS_TRY_BLOCK is set, this is the block
5882f0f3
RH
1096 created on behalf of a TRY statement. Returns a token to be passed to
1097 finish_compound_stmt. */
ad321293
MM
1098
1099tree
325c3691 1100begin_compound_stmt (unsigned int flags)
ad321293 1101{
325c3691 1102 tree r;
558475f0 1103
325c3691
RH
1104 if (flags & BCS_NO_SCOPE)
1105 {
1106 r = push_stmt_list ();
1107 STATEMENT_LIST_NO_SCOPE (r) = 1;
1108
1109 /* Normally, we try hard to keep the BLOCK for a statement-expression.
1110 But, if it's a statement-expression with a scopeless block, there's
1111 nothing to keep, and we don't want to accidentally keep a block
c8094d83 1112 *inside* the scopeless block. */
325c3691
RH
1113 keep_next_level (false);
1114 }
f1dedc31 1115 else
325c3691
RH
1116 r = do_pushlevel (flags & BCS_TRY_BLOCK ? sk_try : sk_block);
1117
5882f0f3
RH
1118 /* When processing a template, we need to remember where the braces were,
1119 so that we can set up identical scopes when instantiating the template
1120 later. BIND_EXPR is a handy candidate for this.
1121 Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1122 result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1123 processing templates. */
1124 if (processing_template_decl)
325c3691 1125 {
f293ce4b 1126 r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
5882f0f3
RH
1127 BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1128 BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
325c3691
RH
1129 TREE_SIDE_EFFECTS (r) = 1;
1130 }
ad321293
MM
1131
1132 return r;
1133}
1134
5882f0f3 1135/* Finish a compound-statement, which is given by STMT. */
ad321293 1136
325c3691
RH
1137void
1138finish_compound_stmt (tree stmt)
ad321293 1139{
5882f0f3
RH
1140 if (TREE_CODE (stmt) == BIND_EXPR)
1141 BIND_EXPR_BODY (stmt) = do_poplevel (BIND_EXPR_BODY (stmt));
325c3691
RH
1142 else if (STATEMENT_LIST_NO_SCOPE (stmt))
1143 stmt = pop_stmt_list (stmt);
7a3397c7 1144 else
5f070bc7
ZL
1145 {
1146 /* Destroy any ObjC "super" receivers that may have been
1147 created. */
1148 objc_clear_super_receiver ();
1149
1150 stmt = do_poplevel (stmt);
1151 }
ad321293 1152
325c3691
RH
1153 /* ??? See c_end_compound_stmt wrt statement expressions. */
1154 add_stmt (stmt);
ad321293 1155 finish_stmt ();
ad321293
MM
1156}
1157
6de9cd9a
DN
1158/* Finish an asm-statement, whose components are a STRING, some
1159 OUTPUT_OPERANDS, some INPUT_OPERANDS, and some CLOBBERS. Also note
1160 whether the asm-statement should be considered volatile. */
7dc5bd62 1161
3e4d04a1 1162tree
6de9cd9a
DN
1163finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1164 tree input_operands, tree clobbers)
35b1567d
BC
1165{
1166 tree r;
abfc8a36
MM
1167 tree t;
1168
abfc8a36 1169 if (!processing_template_decl)
40b18c0a 1170 {
74f0c611
RH
1171 int ninputs, noutputs;
1172 const char *constraint;
1173 const char **oconstraints;
1174 bool allows_mem, allows_reg, is_inout;
1175 tree operand;
40b18c0a 1176 int i;
40b18c0a 1177
74f0c611
RH
1178 ninputs = list_length (input_operands);
1179 noutputs = list_length (output_operands);
1180 oconstraints = (const char **) alloca (noutputs * sizeof (char *));
1181
1182 string = resolve_asm_operand_names (string, output_operands,
1183 input_operands);
1184
1185 for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
40b18c0a 1186 {
74f0c611
RH
1187 operand = TREE_VALUE (t);
1188
1189 /* ??? Really, this should not be here. Users should be using a
1190 proper lvalue, dammit. But there's a long history of using
1191 casts in the output operands. In cases like longlong.h, this
1192 becomes a primitive form of typechecking -- if the cast can be
1193 removed, then the output operand had a type of the proper width;
1194 otherwise we'll get an error. Gross, but ... */
1195 STRIP_NOPS (operand);
1196
1197 if (!lvalue_or_else (operand, lv_asm))
1198 operand = error_mark_node;
1199
1200 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1201 oconstraints[i] = constraint;
1202
1203 if (parse_output_constraint (&constraint, i, ninputs, noutputs,
1204 &allows_mem, &allows_reg, &is_inout))
1205 {
1206 /* If the operand is going to end up in memory,
1207 mark it addressable. */
1208 if (!allows_reg && !cxx_mark_addressable (operand))
1209 operand = error_mark_node;
1210 }
1211 else
1212 operand = error_mark_node;
1213
1214 TREE_VALUE (t) = operand;
1215 }
1216
1217 for (i = 0, t = input_operands; t; ++i, t = TREE_CHAIN (t))
1218 {
1219 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
c8094d83 1220 operand = decay_conversion (TREE_VALUE (t));
74f0c611 1221
40b18c0a
MM
1222 /* If the type of the operand hasn't been determined (e.g.,
1223 because it involves an overloaded function), then issue
1224 an error message. There's no context available to
1225 resolve the overloading. */
74f0c611 1226 if (TREE_TYPE (operand) == unknown_type_node)
40b18c0a 1227 {
c8094d83 1228 error ("type of asm operand %qE could not be determined",
0cbd7506 1229 TREE_VALUE (t));
74f0c611 1230 operand = error_mark_node;
40b18c0a 1231 }
40b18c0a 1232
74f0c611
RH
1233 if (parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
1234 oconstraints, &allows_mem, &allows_reg))
40b18c0a 1235 {
74f0c611
RH
1236 /* If the operand is going to end up in memory,
1237 mark it addressable. */
b4c33883
AP
1238 if (!allows_reg && allows_mem)
1239 {
1240 /* Strip the nops as we allow this case. FIXME, this really
1241 should be rejected or made deprecated. */
1242 STRIP_NOPS (operand);
1243 if (!cxx_mark_addressable (operand))
1244 operand = error_mark_node;
1245 }
40b18c0a 1246 }
74f0c611
RH
1247 else
1248 operand = error_mark_node;
40b18c0a 1249
74f0c611 1250 TREE_VALUE (t) = operand;
40b18c0a
MM
1251 }
1252 }
abfc8a36 1253
e130a54b 1254 r = build_stmt (ASM_EXPR, string,
0dfdeca6
BC
1255 output_operands, input_operands,
1256 clobbers);
6de9cd9a 1257 ASM_VOLATILE_P (r) = volatile_p;
0ad28dde 1258 r = maybe_cleanup_point_expr_void (r);
3e4d04a1 1259 return add_stmt (r);
ad321293 1260}
b4c4a9ec 1261
f01b0acb
MM
1262/* Finish a label with the indicated NAME. */
1263
a723baf1 1264tree
3a978d72 1265finish_label_stmt (tree name)
f01b0acb 1266{
5b030314 1267 tree decl = define_label (input_location, name);
9e14e18f 1268 return add_stmt (build_stmt (LABEL_EXPR, decl));
f01b0acb
MM
1269}
1270
acef433b
MM
1271/* Finish a series of declarations for local labels. G++ allows users
1272 to declare "local" labels, i.e., labels with scope. This extension
1273 is useful when writing code involving statement-expressions. */
1274
1275void
3a978d72 1276finish_label_decl (tree name)
acef433b
MM
1277{
1278 tree decl = declare_local_label (name);
350fae66 1279 add_decl_expr (decl);
acef433b
MM
1280}
1281
659e5a7a 1282/* When DECL goes out of scope, make sure that CLEANUP is executed. */
f1dedc31 1283
c8094d83 1284void
3a978d72 1285finish_decl_cleanup (tree decl, tree cleanup)
f1dedc31 1286{
325c3691 1287 push_cleanup (decl, cleanup, false);
35b1567d
BC
1288}
1289
659e5a7a 1290/* If the current scope exits with an exception, run CLEANUP. */
24bef158 1291
659e5a7a 1292void
3a978d72 1293finish_eh_cleanup (tree cleanup)
24bef158 1294{
325c3691 1295 push_cleanup (NULL, cleanup, true);
35b1567d
BC
1296}
1297
2282d28d
MM
1298/* The MEM_INITS is a list of mem-initializers, in reverse of the
1299 order they were written by the user. Each node is as for
1300 emit_mem_initializers. */
bf3428d0
MM
1301
1302void
2282d28d 1303finish_mem_initializers (tree mem_inits)
bf3428d0 1304{
2282d28d
MM
1305 /* Reorder the MEM_INITS so that they are in the order they appeared
1306 in the source program. */
1307 mem_inits = nreverse (mem_inits);
bf3428d0 1308
a0de9d20 1309 if (processing_template_decl)
2282d28d 1310 add_stmt (build_min_nt (CTOR_INITIALIZER, mem_inits));
cdd2559c 1311 else
2282d28d 1312 emit_mem_initializers (mem_inits);
558475f0
MM
1313}
1314
b4c4a9ec
MM
1315/* Finish a parenthesized expression EXPR. */
1316
1317tree
3a978d72 1318finish_parenthesized_expr (tree expr)
b4c4a9ec 1319{
6615c446 1320 if (EXPR_P (expr))
78ef5b89 1321 /* This inhibits warnings in c_common_truthvalue_conversion. */
31ec7d2f 1322 TREE_NO_WARNING (expr) = 1;
b4c4a9ec 1323
19420d00
NS
1324 if (TREE_CODE (expr) == OFFSET_REF)
1325 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1326 enclosed in parentheses. */
1327 PTRMEM_OK_P (expr) = 0;
c8094d83 1328
7a8380ae
NS
1329 if (TREE_CODE (expr) == STRING_CST)
1330 PAREN_STRING_LITERAL_P (expr) = 1;
c8094d83 1331
b4c4a9ec
MM
1332 return expr;
1333}
1334
a723baf1
MM
1335/* Finish a reference to a non-static data member (DECL) that is not
1336 preceded by `.' or `->'. */
1337
1338tree
a3f10e50 1339finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
a723baf1 1340{
50bc768d 1341 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
a723baf1 1342
a3f10e50 1343 if (!object)
a723baf1 1344 {
c8094d83 1345 if (current_function_decl
a723baf1 1346 && DECL_STATIC_FUNCTION_P (current_function_decl))
dee15844 1347 error ("invalid use of member %q+D in static member function", decl);
a723baf1 1348 else
dee15844 1349 error ("invalid use of non-static data member %q+D", decl);
a723baf1
MM
1350 error ("from this location");
1351
1352 return error_mark_node;
1353 }
1354 TREE_USED (current_class_ptr) = 1;
58e1d54c 1355 if (processing_template_decl && !qualifying_scope)
a723baf1 1356 {
a3f10e50 1357 tree type = TREE_TYPE (decl);
a723baf1 1358
a3f10e50
NS
1359 if (TREE_CODE (type) == REFERENCE_TYPE)
1360 type = TREE_TYPE (type);
1361 else
1362 {
f4f206f4 1363 /* Set the cv qualifiers. */
a3f10e50 1364 int quals = cp_type_quals (TREE_TYPE (current_class_ref));
c8094d83 1365
a3f10e50
NS
1366 if (DECL_MUTABLE_P (decl))
1367 quals &= ~TYPE_QUAL_CONST;
9e95d15f 1368
a3f10e50
NS
1369 quals |= cp_type_quals (TREE_TYPE (decl));
1370 type = cp_build_qualified_type (type, quals);
1371 }
c8094d83 1372
44de5aeb 1373 return build_min (COMPONENT_REF, type, object, decl, NULL_TREE);
a3f10e50
NS
1374 }
1375 else
1376 {
1377 tree access_type = TREE_TYPE (object);
1378 tree lookup_context = context_for_name_lookup (decl);
c8094d83 1379
a3f10e50 1380 while (!DERIVED_FROM_P (lookup_context, access_type))
a723baf1
MM
1381 {
1382 access_type = TYPE_CONTEXT (access_type);
9f01ded6 1383 while (access_type && DECL_P (access_type))
a723baf1 1384 access_type = DECL_CONTEXT (access_type);
a723baf1 1385
a3f10e50
NS
1386 if (!access_type)
1387 {
dee15844 1388 error ("object missing in reference to %q+D", decl);
a3f10e50
NS
1389 error ("from this location");
1390 return error_mark_node;
1391 }
9f01ded6
KL
1392 }
1393
5c425df5 1394 /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
58e1d54c
KL
1395 QUALIFYING_SCOPE is also non-null. Wrap this in a SCOPE_REF
1396 for now. */
1397 if (processing_template_decl)
1398 return build_min (SCOPE_REF, TREE_TYPE (decl),
1399 qualifying_scope, DECL_NAME (decl));
1400
6df5158a 1401 perform_or_defer_access_check (TYPE_BINFO (access_type), decl);
a723baf1
MM
1402
1403 /* If the data member was named `C::M', convert `*this' to `C'
1404 first. */
1405 if (qualifying_scope)
1406 {
1407 tree binfo = NULL_TREE;
1408 object = build_scoped_ref (object, qualifying_scope,
1409 &binfo);
1410 }
1411
1412 return build_class_member_access_expr (object, decl,
1413 /*access_path=*/NULL_TREE,
1414 /*preserve_reference=*/false);
1415 }
1416}
1417
ee76b931
MM
1418/* DECL was the declaration to which a qualified-id resolved. Issue
1419 an error message if it is not accessible. If OBJECT_TYPE is
1420 non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1421 type of `*x', or `x', respectively. If the DECL was named as
1422 `A::B' then NESTED_NAME_SPECIFIER is `A'. */
1423
1424void
c8094d83
MS
1425check_accessibility_of_qualified_id (tree decl,
1426 tree object_type,
ee76b931
MM
1427 tree nested_name_specifier)
1428{
1429 tree scope;
1430 tree qualifying_type = NULL_TREE;
95b4aca6 1431
77880ae4 1432 /* If we're not checking, return immediately. */
95b4aca6
NS
1433 if (deferred_access_no_check)
1434 return;
c8094d83 1435
ee76b931
MM
1436 /* Determine the SCOPE of DECL. */
1437 scope = context_for_name_lookup (decl);
1438 /* If the SCOPE is not a type, then DECL is not a member. */
1439 if (!TYPE_P (scope))
1440 return;
1441 /* Compute the scope through which DECL is being accessed. */
c8094d83 1442 if (object_type
ee76b931
MM
1443 /* OBJECT_TYPE might not be a class type; consider:
1444
1445 class A { typedef int I; };
1446 I *p;
1447 p->A::I::~I();
1448
0cbd7506 1449 In this case, we will have "A::I" as the DECL, but "I" as the
ee76b931
MM
1450 OBJECT_TYPE. */
1451 && CLASS_TYPE_P (object_type)
1452 && DERIVED_FROM_P (scope, object_type))
1453 /* If we are processing a `->' or `.' expression, use the type of the
1454 left-hand side. */
1455 qualifying_type = object_type;
1456 else if (nested_name_specifier)
1457 {
1458 /* If the reference is to a non-static member of the
1459 current class, treat it as if it were referenced through
1460 `this'. */
1461 if (DECL_NONSTATIC_MEMBER_P (decl)
1462 && current_class_ptr
1463 && DERIVED_FROM_P (scope, current_class_type))
1464 qualifying_type = current_class_type;
1465 /* Otherwise, use the type indicated by the
1466 nested-name-specifier. */
1467 else
1468 qualifying_type = nested_name_specifier;
1469 }
1470 else
1471 /* Otherwise, the name must be from the current class or one of
1472 its bases. */
1473 qualifying_type = currently_open_derived_class (scope);
1474
c645999e
NS
1475 if (qualifying_type && IS_AGGR_TYPE_CODE (TREE_CODE (qualifying_type)))
1476 /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1477 or similar in a default argument value. */
ee76b931
MM
1478 perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl);
1479}
1480
1481/* EXPR is the result of a qualified-id. The QUALIFYING_CLASS was the
1482 class named to the left of the "::" operator. DONE is true if this
1483 expression is a complete postfix-expression; it is false if this
1484 expression is followed by '->', '[', '(', etc. ADDRESS_P is true
1485 iff this expression is the operand of '&'. */
1486
1487tree
1488finish_qualified_id_expr (tree qualifying_class, tree expr, bool done,
1489 bool address_p)
1490{
5e08432e
MM
1491 if (error_operand_p (expr))
1492 return error_mark_node;
1493
ee76b931
MM
1494 /* If EXPR occurs as the operand of '&', use special handling that
1495 permits a pointer-to-member. */
1496 if (address_p && done)
1497 {
1498 if (TREE_CODE (expr) == SCOPE_REF)
1499 expr = TREE_OPERAND (expr, 1);
c8094d83 1500 expr = build_offset_ref (qualifying_class, expr,
a5ac359a 1501 /*address_p=*/true);
ee76b931
MM
1502 return expr;
1503 }
1504
1505 if (TREE_CODE (expr) == FIELD_DECL)
a3f10e50
NS
1506 expr = finish_non_static_data_member (expr, current_class_ref,
1507 qualifying_class);
ee76b931
MM
1508 else if (BASELINK_P (expr) && !processing_template_decl)
1509 {
ee76b931
MM
1510 tree fns;
1511
1512 /* See if any of the functions are non-static members. */
1513 fns = BASELINK_FUNCTIONS (expr);
1514 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
1515 fns = TREE_OPERAND (fns, 0);
ee76b931
MM
1516 /* If so, the expression may be relative to the current
1517 class. */
821eaf2a 1518 if (!shared_member_p (fns)
c8094d83 1519 && current_class_type
ee76b931 1520 && DERIVED_FROM_P (qualifying_class, current_class_type))
c8094d83 1521 expr = (build_class_member_access_expr
ee76b931
MM
1522 (maybe_dummy_object (qualifying_class, NULL),
1523 expr,
1524 BASELINK_ACCESS_BINFO (expr),
1525 /*preserve_reference=*/false));
1526 else if (done)
a5ac359a
MM
1527 /* The expression is a qualified name whose address is not
1528 being taken. */
1529 expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false);
ee76b931
MM
1530 }
1531
1532 return expr;
1533}
1534
b69b1501
MM
1535/* Begin a statement-expression. The value returned must be passed to
1536 finish_stmt_expr. */
b4c4a9ec 1537
c8094d83 1538tree
3a978d72 1539begin_stmt_expr (void)
b4c4a9ec 1540{
325c3691 1541 return push_stmt_list ();
35b1567d
BC
1542}
1543
a5bcc582 1544/* Process the final expression of a statement expression. EXPR can be
85a56c9d
MM
1545 NULL, if the final expression is empty. Return a STATEMENT_LIST
1546 containing all the statements in the statement-expression, or
1547 ERROR_MARK_NODE if there was an error. */
a5bcc582
NS
1548
1549tree
325c3691 1550finish_stmt_expr_expr (tree expr, tree stmt_expr)
a5bcc582 1551{
72e4661a
PC
1552 if (error_operand_p (expr))
1553 return error_mark_node;
c8094d83 1554
85a56c9d
MM
1555 /* If the last statement does not have "void" type, then the value
1556 of the last statement is the value of the entire expression. */
a5bcc582
NS
1557 if (expr)
1558 {
85a56c9d
MM
1559 tree type;
1560 type = TREE_TYPE (expr);
1561 if (!dependent_type_p (type) && !VOID_TYPE_P (type))
a5bcc582 1562 {
85a56c9d
MM
1563 expr = decay_conversion (expr);
1564 if (error_operand_p (expr))
1565 return error_mark_node;
2692eb7d 1566 type = TREE_TYPE (expr);
85a56c9d
MM
1567 }
1568 /* The type of the statement-expression is the type of the last
1569 expression. */
1570 TREE_TYPE (stmt_expr) = type;
1571 /* We must take particular care if TYPE is a class type. In
1634705d 1572 particular if EXPR creates a temporary of class type, then it
85a56c9d
MM
1573 must be destroyed at the semicolon terminating the last
1574 statement -- but we must make a copy before that happens.
1575
1576 This problem is solved by using a TARGET_EXPR to initialize a
1577 new temporary variable. The TARGET_EXPR itself is placed
1578 outside the statement-expression. However, the last
1579 statement in the statement-expression is transformed from
1580 EXPR to (approximately) T = EXPR, where T is the new
1581 temporary variable. Thus, the lifetime of the new temporary
1582 extends to the full-expression surrounding the
1583 statement-expression. */
1584 if (!processing_template_decl && !VOID_TYPE_P (type))
1585 {
1586 tree target_expr;
1587 if (CLASS_TYPE_P (type)
1588 && !TYPE_HAS_TRIVIAL_INIT_REF (type))
1589 {
1590 target_expr = build_target_expr_with_type (expr, type);
1591 expr = TARGET_EXPR_INITIAL (target_expr);
1592 }
a5bcc582
NS
1593 else
1594 {
85a56c9d
MM
1595 /* Normally, build_target_expr will not create a
1596 TARGET_EXPR for scalars. However, we need the
1597 temporary here, in order to solve the scoping
1598 problem described above. */
1599 target_expr = force_target_expr (type, expr);
1600 expr = TARGET_EXPR_INITIAL (target_expr);
1601 expr = build2 (INIT_EXPR,
1602 type,
1603 TARGET_EXPR_SLOT (target_expr),
1604 expr);
a5bcc582 1605 }
85a56c9d
MM
1606 TARGET_EXPR_INITIAL (target_expr) = NULL_TREE;
1607 /* Save away the TARGET_EXPR in the TREE_TYPE field of the
1608 STATEMENT_EXPR. We will retrieve it in
1609 finish_stmt_expr. */
1610 TREE_TYPE (stmt_expr) = target_expr;
a5bcc582
NS
1611 }
1612 }
c8094d83 1613
85a56c9d
MM
1614 /* Having modified EXPR to reflect the extra initialization, we now
1615 treat it just like an ordinary statement. */
1616 expr = finish_expr_stmt (expr);
a5bcc582 1617
85a56c9d
MM
1618 /* Mark the last statement so that we can recognize it as such at
1619 template-instantiation time. */
1620 if (expr && processing_template_decl)
1621 EXPR_STMT_STMT_EXPR_RESULT (expr) = 1;
c8094d83 1622
85a56c9d 1623 return stmt_expr;
a5bcc582
NS
1624}
1625
303b7406
NS
1626/* Finish a statement-expression. EXPR should be the value returned
1627 by the previous begin_stmt_expr. Returns an expression
1628 representing the statement-expression. */
b4c4a9ec 1629
c8094d83 1630tree
325c3691 1631finish_stmt_expr (tree stmt_expr, bool has_no_scope)
b4c4a9ec 1632{
85a56c9d
MM
1633 tree type;
1634 tree result;
325c3691 1635
85a56c9d
MM
1636 if (error_operand_p (stmt_expr))
1637 return error_mark_node;
325c3691 1638
85a56c9d 1639 gcc_assert (TREE_CODE (stmt_expr) == STATEMENT_LIST);
325c3691 1640
85a56c9d
MM
1641 type = TREE_TYPE (stmt_expr);
1642 result = pop_stmt_list (stmt_expr);
6f80451c 1643
a5bcc582 1644 if (processing_template_decl)
325c3691
RH
1645 {
1646 result = build_min (STMT_EXPR, type, result);
1647 TREE_SIDE_EFFECTS (result) = 1;
1648 STMT_EXPR_NO_SCOPE (result) = has_no_scope;
1649 }
85a56c9d 1650 else if (!TYPE_P (type))
a5bcc582 1651 {
85a56c9d
MM
1652 gcc_assert (TREE_CODE (type) == TARGET_EXPR);
1653 TARGET_EXPR_INITIAL (type) = result;
1654 TREE_TYPE (result) = void_type_node;
1655 result = type;
a5bcc582 1656 }
325c3691 1657
b4c4a9ec
MM
1658 return result;
1659}
1660
b3445994 1661/* Perform Koenig lookup. FN is the postfix-expression representing
fa531100
MM
1662 the function (or functions) to call; ARGS are the arguments to the
1663 call. Returns the functions to be considered by overload
1664 resolution. */
b3445994
MM
1665
1666tree
1667perform_koenig_lookup (tree fn, tree args)
1668{
1669 tree identifier = NULL_TREE;
1670 tree functions = NULL_TREE;
1671
1672 /* Find the name of the overloaded function. */
1673 if (TREE_CODE (fn) == IDENTIFIER_NODE)
1674 identifier = fn;
1675 else if (is_overloaded_fn (fn))
1676 {
1677 functions = fn;
1678 identifier = DECL_NAME (get_first_fn (functions));
1679 }
1680 else if (DECL_P (fn))
1681 {
1682 functions = fn;
1683 identifier = DECL_NAME (fn);
1684 }
1685
1686 /* A call to a namespace-scope function using an unqualified name.
1687
1688 Do Koenig lookup -- unless any of the arguments are
1689 type-dependent. */
1690 if (!any_type_dependent_arguments_p (args))
1691 {
1692 fn = lookup_arg_dependent (identifier, functions, args);
1693 if (!fn)
1694 /* The unqualified name could not be resolved. */
1695 fn = unqualified_fn_lookup_error (identifier);
1696 }
b3445994
MM
1697
1698 return fn;
1699}
1700
4ba126e4
MM
1701/* Generate an expression for `FN (ARGS)'.
1702
1703 If DISALLOW_VIRTUAL is true, the call to FN will be not generated
1704 as a virtual call, even if FN is virtual. (This flag is set when
1705 encountering an expression where the function name is explicitly
1706 qualified. For example a call to `X::f' never generates a virtual
1707 call.)
1708
1709 Returns code for the call. */
b4c4a9ec 1710
c8094d83 1711tree
6d80c4b9 1712finish_call_expr (tree fn, tree args, bool disallow_virtual, bool koenig_p)
b4c4a9ec 1713{
d17811fd
MM
1714 tree result;
1715 tree orig_fn;
1716 tree orig_args;
1717
4ba126e4
MM
1718 if (fn == error_mark_node || args == error_mark_node)
1719 return error_mark_node;
1720
4ba126e4 1721 /* ARGS should be a list of arguments. */
50bc768d 1722 gcc_assert (!args || TREE_CODE (args) == TREE_LIST);
a759e627 1723
d17811fd
MM
1724 orig_fn = fn;
1725 orig_args = args;
1726
1727 if (processing_template_decl)
1728 {
1729 if (type_dependent_expression_p (fn)
1730 || any_type_dependent_arguments_p (args))
6d80c4b9 1731 {
6de9cd9a 1732 result = build_nt (CALL_EXPR, fn, args, NULL_TREE);
6d80c4b9
MM
1733 KOENIG_LOOKUP_P (result) = koenig_p;
1734 return result;
1735 }
d17811fd
MM
1736 if (!BASELINK_P (fn)
1737 && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
1738 && TREE_TYPE (fn) != unknown_type_node)
1739 fn = build_non_dependent_expr (fn);
1740 args = build_non_dependent_args (orig_args);
1741 }
1742
a723baf1
MM
1743 /* A reference to a member function will appear as an overloaded
1744 function (rather than a BASELINK) if an unqualified name was used
1745 to refer to it. */
1746 if (!BASELINK_P (fn) && is_overloaded_fn (fn))
1747 {
12483c9f 1748 tree f = fn;
a723baf1 1749
12483c9f
NS
1750 if (TREE_CODE (f) == TEMPLATE_ID_EXPR)
1751 f = TREE_OPERAND (f, 0);
1752 f = get_first_fn (f);
a723baf1
MM
1753 if (DECL_FUNCTION_MEMBER_P (f))
1754 {
1755 tree type = currently_open_derived_class (DECL_CONTEXT (f));
c44e68a5
KL
1756 if (!type)
1757 type = DECL_CONTEXT (f);
a723baf1
MM
1758 fn = build_baselink (TYPE_BINFO (type),
1759 TYPE_BINFO (type),
1760 fn, /*optype=*/NULL_TREE);
1761 }
1762 }
1763
d17811fd 1764 result = NULL_TREE;
4ba126e4 1765 if (BASELINK_P (fn))
03d82991 1766 {
4ba126e4
MM
1767 tree object;
1768
1769 /* A call to a member function. From [over.call.func]:
1770
1771 If the keyword this is in scope and refers to the class of
1772 that member function, or a derived class thereof, then the
1773 function call is transformed into a qualified function call
1774 using (*this) as the postfix-expression to the left of the
1775 . operator.... [Otherwise] a contrived object of type T
c8094d83 1776 becomes the implied object argument.
4ba126e4 1777
0cbd7506 1778 This paragraph is unclear about this situation:
4ba126e4
MM
1779
1780 struct A { void f(); };
1781 struct B : public A {};
1782 struct C : public A { void g() { B::f(); }};
1783
1784 In particular, for `B::f', this paragraph does not make clear
c8094d83 1785 whether "the class of that member function" refers to `A' or
4ba126e4 1786 to `B'. We believe it refers to `B'. */
c8094d83 1787 if (current_class_type
4ba126e4
MM
1788 && DERIVED_FROM_P (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
1789 current_class_type)
1790 && current_class_ref)
127b8136
MM
1791 object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
1792 NULL);
4ba126e4
MM
1793 else
1794 {
1795 tree representative_fn;
b4c4a9ec 1796
4ba126e4
MM
1797 representative_fn = BASELINK_FUNCTIONS (fn);
1798 if (TREE_CODE (representative_fn) == TEMPLATE_ID_EXPR)
1799 representative_fn = TREE_OPERAND (representative_fn, 0);
1800 representative_fn = get_first_fn (representative_fn);
1801 object = build_dummy_object (DECL_CONTEXT (representative_fn));
1802 }
b4c4a9ec 1803
d17811fd
MM
1804 if (processing_template_decl)
1805 {
1806 if (type_dependent_expression_p (object))
6de9cd9a 1807 return build_nt (CALL_EXPR, orig_fn, orig_args, NULL_TREE);
d17811fd
MM
1808 object = build_non_dependent_expr (object);
1809 }
1810
1811 result = build_new_method_call (object, fn, args, NULL_TREE,
c8094d83 1812 (disallow_virtual
d17811fd 1813 ? LOOKUP_NONVIRTUAL : 0));
4ba126e4
MM
1814 }
1815 else if (is_overloaded_fn (fn))
16c35a1f
RH
1816 {
1817 /* If the function is an overloaded builtin, resolve it. */
1818 if (TREE_CODE (fn) == FUNCTION_DECL
58646b77
PB
1819 && (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
1820 || DECL_BUILT_IN_CLASS (fn) == BUILT_IN_MD))
0cbd7506 1821 result = resolve_overloaded_builtin (fn, args);
16c35a1f
RH
1822
1823 if (!result)
1824 /* A call to a namespace-scope function. */
1825 result = build_new_function_call (fn, args);
1826 }
a723baf1
MM
1827 else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
1828 {
a723baf1
MM
1829 if (args)
1830 error ("arguments to destructor are not allowed");
1831 /* Mark the pseudo-destructor call as having side-effects so
1832 that we do not issue warnings about its use. */
1833 result = build1 (NOP_EXPR,
1834 void_type_node,
1835 TREE_OPERAND (fn, 0));
1836 TREE_SIDE_EFFECTS (result) = 1;
a723baf1 1837 }
4ba126e4 1838 else if (CLASS_TYPE_P (TREE_TYPE (fn)))
d17811fd
MM
1839 /* If the "function" is really an object of class type, it might
1840 have an overloaded `operator ()'. */
ec835fb2
MM
1841 result = build_new_op (CALL_EXPR, LOOKUP_NORMAL, fn, args, NULL_TREE,
1842 /*overloaded_p=*/NULL);
16c35a1f 1843
d17811fd
MM
1844 if (!result)
1845 /* A call where the function is unknown. */
1846 result = build_function_call (fn, args);
4ba126e4 1847
d17811fd 1848 if (processing_template_decl)
6d80c4b9 1849 {
f293ce4b
RS
1850 result = build3 (CALL_EXPR, TREE_TYPE (result), orig_fn,
1851 orig_args, NULL_TREE);
6d80c4b9
MM
1852 KOENIG_LOOKUP_P (result) = koenig_p;
1853 }
d17811fd 1854 return result;
b4c4a9ec
MM
1855}
1856
1857/* Finish a call to a postfix increment or decrement or EXPR. (Which
1858 is indicated by CODE, which should be POSTINCREMENT_EXPR or
1859 POSTDECREMENT_EXPR.) */
1860
c8094d83 1861tree
3a978d72 1862finish_increment_expr (tree expr, enum tree_code code)
b4c4a9ec 1863{
c8094d83 1864 return build_x_unary_op (code, expr);
b4c4a9ec
MM
1865}
1866
1867/* Finish a use of `this'. Returns an expression for `this'. */
1868
c8094d83 1869tree
3a978d72 1870finish_this_expr (void)
b4c4a9ec
MM
1871{
1872 tree result;
1873
1874 if (current_class_ptr)
1875 {
b4c4a9ec
MM
1876 result = current_class_ptr;
1877 }
1878 else if (current_function_decl
1879 && DECL_STATIC_FUNCTION_P (current_function_decl))
1880 {
9e637a26 1881 error ("%<this%> is unavailable for static member functions");
b4c4a9ec
MM
1882 result = error_mark_node;
1883 }
1884 else
1885 {
1886 if (current_function_decl)
9e637a26 1887 error ("invalid use of %<this%> in non-member function");
b4c4a9ec 1888 else
9e637a26 1889 error ("invalid use of %<this%> at top level");
b4c4a9ec
MM
1890 result = error_mark_node;
1891 }
1892
1893 return result;
1894}
1895
a723baf1
MM
1896/* Finish a pseudo-destructor expression. If SCOPE is NULL, the
1897 expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
1898 the TYPE for the type given. If SCOPE is non-NULL, the expression
1899 was of the form `OBJECT.SCOPE::~DESTRUCTOR'. */
b4c4a9ec 1900
c8094d83 1901tree
3a978d72 1902finish_pseudo_destructor_expr (tree object, tree scope, tree destructor)
b4c4a9ec 1903{
a723baf1
MM
1904 if (destructor == error_mark_node)
1905 return error_mark_node;
40242ccf 1906
50bc768d 1907 gcc_assert (TYPE_P (destructor));
b4c4a9ec 1908
a723baf1
MM
1909 if (!processing_template_decl)
1910 {
1911 if (scope == error_mark_node)
1912 {
1913 error ("invalid qualifying scope in pseudo-destructor name");
1914 return error_mark_node;
1915 }
c8094d83 1916
26bcf8fc
MM
1917 /* [expr.pseudo] says both:
1918
0cbd7506 1919 The type designated by the pseudo-destructor-name shall be
26bcf8fc
MM
1920 the same as the object type.
1921
0cbd7506 1922 and:
26bcf8fc 1923
0cbd7506 1924 The cv-unqualified versions of the object type and of the
26bcf8fc
MM
1925 type designated by the pseudo-destructor-name shall be the
1926 same type.
1927
0cbd7506
MS
1928 We implement the more generous second sentence, since that is
1929 what most other compilers do. */
c8094d83 1930 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
26bcf8fc 1931 destructor))
a723baf1 1932 {
a82e1a7d 1933 error ("%qE is not of type %qT", object, destructor);
a723baf1
MM
1934 return error_mark_node;
1935 }
1936 }
b4c4a9ec 1937
f293ce4b 1938 return build3 (PSEUDO_DTOR_EXPR, void_type_node, object, scope, destructor);
b4c4a9ec
MM
1939}
1940
ce4a0391
MM
1941/* Finish an expression of the form CODE EXPR. */
1942
1943tree
3a978d72 1944finish_unary_op_expr (enum tree_code code, tree expr)
ce4a0391
MM
1945{
1946 tree result = build_x_unary_op (code, expr);
7c355bca
ML
1947 /* Inside a template, build_x_unary_op does not fold the
1948 expression. So check whether the result is folded before
1949 setting TREE_NEGATED_INT. */
1950 if (code == NEGATE_EXPR && TREE_CODE (expr) == INTEGER_CST
88b4335f 1951 && TREE_CODE (result) == INTEGER_CST
8df83eae 1952 && !TYPE_UNSIGNED (TREE_TYPE (result))
88b4335f 1953 && INT_CST_LT (result, integer_zero_node))
6fc98adf
MM
1954 {
1955 /* RESULT may be a cached INTEGER_CST, so we must copy it before
1956 setting TREE_NEGATED_INT. */
1957 result = copy_node (result);
1958 TREE_NEGATED_INT (result) = 1;
1959 }
ce4a0391
MM
1960 overflow_warning (result);
1961 return result;
1962}
1963
a723baf1
MM
1964/* Finish a compound-literal expression. TYPE is the type to which
1965 the INITIALIZER_LIST is being cast. */
1966
1967tree
4038c495 1968finish_compound_literal (tree type, VEC(constructor_elt,gc) *initializer_list)
a723baf1
MM
1969{
1970 tree compound_literal;
1971
1972 /* Build a CONSTRUCTOR for the INITIALIZER_LIST. */
dcf92453 1973 compound_literal = build_constructor (NULL_TREE, initializer_list);
a723baf1 1974 /* Mark it as a compound-literal. */
a723baf1
MM
1975 if (processing_template_decl)
1976 TREE_TYPE (compound_literal) = type;
1977 else
1978 {
1979 /* Check the initialization. */
4038c495 1980 compound_literal = digest_init (type, compound_literal);
a723baf1
MM
1981 /* If the TYPE was an array type with an unknown bound, then we can
1982 figure out the dimension now. For example, something like:
1983
1984 `(int []) { 2, 3 }'
1985
1986 implies that the array has two elements. */
1987 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
aab038d5
RH
1988 cp_complete_array_type (&TREE_TYPE (compound_literal),
1989 compound_literal, 1);
a723baf1
MM
1990 }
1991
4038c495 1992 TREE_HAS_CONSTRUCTOR (compound_literal) = 1;
a723baf1
MM
1993 return compound_literal;
1994}
1995
5f261ba9
MM
1996/* Return the declaration for the function-name variable indicated by
1997 ID. */
1998
1999tree
2000finish_fname (tree id)
2001{
2002 tree decl;
c8094d83 2003
5f261ba9
MM
2004 decl = fname_decl (C_RID_CODE (id), id);
2005 if (processing_template_decl)
10b1d5e7 2006 decl = DECL_NAME (decl);
5f261ba9
MM
2007 return decl;
2008}
2009
8014a339 2010/* Finish a translation unit. */
ce4a0391 2011
c8094d83 2012void
3a978d72 2013finish_translation_unit (void)
ce4a0391
MM
2014{
2015 /* In case there were missing closebraces,
2016 get us back to the global binding level. */
273a708f 2017 pop_everything ();
ce4a0391
MM
2018 while (current_namespace != global_namespace)
2019 pop_namespace ();
0ba8a114 2020
c6002625 2021 /* Do file scope __FUNCTION__ et al. */
0ba8a114 2022 finish_fname_decls ();
ce4a0391
MM
2023}
2024
b4c4a9ec
MM
2025/* Finish a template type parameter, specified as AGGR IDENTIFIER.
2026 Returns the parameter. */
2027
c8094d83 2028tree
3a978d72 2029finish_template_type_parm (tree aggr, tree identifier)
b4c4a9ec 2030{
6eabb241 2031 if (aggr != class_type_node)
b4c4a9ec 2032 {
9e637a26 2033 pedwarn ("template type parameters must use the keyword %<class%> or %<typename%>");
b4c4a9ec
MM
2034 aggr = class_type_node;
2035 }
2036
2037 return build_tree_list (aggr, identifier);
2038}
2039
2040/* Finish a template template parameter, specified as AGGR IDENTIFIER.
2041 Returns the parameter. */
2042
c8094d83 2043tree
3a978d72 2044finish_template_template_parm (tree aggr, tree identifier)
b4c4a9ec
MM
2045{
2046 tree decl = build_decl (TYPE_DECL, identifier, NULL_TREE);
2047 tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2048 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2049 DECL_TEMPLATE_RESULT (tmpl) = decl;
c727aa5e 2050 DECL_ARTIFICIAL (decl) = 1;
b4c4a9ec
MM
2051 end_template_decl ();
2052
50bc768d 2053 gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
b37bf5bd 2054
b4c4a9ec
MM
2055 return finish_template_type_parm (aggr, tmpl);
2056}
ce4a0391 2057
8ba658ee
MM
2058/* ARGUMENT is the default-argument value for a template template
2059 parameter. If ARGUMENT is invalid, issue error messages and return
2060 the ERROR_MARK_NODE. Otherwise, ARGUMENT itself is returned. */
2061
2062tree
2063check_template_template_default_arg (tree argument)
2064{
2065 if (TREE_CODE (argument) != TEMPLATE_DECL
2066 && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
8ba658ee
MM
2067 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
2068 {
a3a503a5
GB
2069 if (TREE_CODE (argument) == TYPE_DECL)
2070 {
2071 tree t = TREE_TYPE (argument);
2072
2073 /* Try to emit a slightly smarter error message if we detect
2074 that the user is using a template instantiation. */
c8094d83 2075 if (CLASSTYPE_TEMPLATE_INFO (t)
a3a503a5 2076 && CLASSTYPE_TEMPLATE_INSTANTIATION (t))
a82e1a7d 2077 error ("invalid use of type %qT as a default value for a "
0cbd7506 2078 "template template-parameter", t);
a3a503a5 2079 else
a82e1a7d 2080 error ("invalid use of %qD as a default value for a template "
0cbd7506 2081 "template-parameter", argument);
a3a503a5
GB
2082 }
2083 else
2084 error ("invalid default argument for a template template parameter");
8ba658ee
MM
2085 return error_mark_node;
2086 }
2087
2088 return argument;
2089}
2090
ce4a0391
MM
2091/* Begin a class definition, as indicated by T. */
2092
2093tree
3a978d72 2094begin_class_definition (tree t)
ce4a0391 2095{
7437519c
ZW
2096 if (t == error_mark_node)
2097 return error_mark_node;
2098
522d6614
NS
2099 if (processing_template_parmlist)
2100 {
a82e1a7d 2101 error ("definition of %q#T inside template parameter list", t);
522d6614
NS
2102 return error_mark_node;
2103 }
47ee8904
MM
2104 /* A non-implicit typename comes from code like:
2105
2106 template <typename T> struct A {
0cbd7506 2107 template <typename U> struct A<T>::B ...
47ee8904
MM
2108
2109 This is erroneous. */
2110 else if (TREE_CODE (t) == TYPENAME_TYPE)
2111 {
a82e1a7d 2112 error ("invalid definition of qualified type %qT", t);
47ee8904
MM
2113 t = error_mark_node;
2114 }
2115
2116 if (t == error_mark_node || ! IS_AGGR_TYPE (t))
ce4a0391 2117 {
33848bb0 2118 t = make_aggr_type (RECORD_TYPE);
bd3d082e 2119 pushtag (make_anon_name (), t, /*tag_scope=*/ts_current);
ce4a0391 2120 }
830fcda8 2121
b4f70b3d 2122 /* Update the location of the decl. */
f31686a3 2123 DECL_SOURCE_LOCATION (TYPE_NAME (t)) = input_location;
c8094d83 2124
4c571114 2125 if (TYPE_BEING_DEFINED (t))
ce4a0391 2126 {
33848bb0 2127 t = make_aggr_type (TREE_CODE (t));
bd3d082e 2128 pushtag (TYPE_IDENTIFIER (t), t, /*tag_scope=*/ts_current);
ce4a0391 2129 }
ff350acd 2130 maybe_process_partial_specialization (t);
29370796 2131 pushclass (t);
ce4a0391 2132 TYPE_BEING_DEFINED (t) = 1;
c0694c4b
MM
2133 if (flag_pack_struct)
2134 {
2135 tree v;
2136 TYPE_PACKED (t) = 1;
2137 /* Even though the type is being defined for the first time
2138 here, there might have been a forward declaration, so there
2139 might be cv-qualified variants of T. */
2140 for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
2141 TYPE_PACKED (v) = 1;
2142 }
ce4a0391
MM
2143 /* Reset the interface data, at the earliest possible
2144 moment, as it might have been set via a class foo;
2145 before. */
1951a1b6
JM
2146 if (! TYPE_ANONYMOUS_P (t))
2147 {
c162c75e 2148 struct c_fileinfo *finfo = get_fileinfo (lbasename (input_filename));
5d709b00 2149 CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
1951a1b6 2150 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
5d709b00 2151 (t, finfo->interface_unknown);
1951a1b6 2152 }
ce4a0391 2153 reset_specialization();
c8094d83 2154
b7975aed
MM
2155 /* Make a declaration for this class in its own scope. */
2156 build_self_reference ();
2157
830fcda8 2158 return t;
ce4a0391
MM
2159}
2160
61a127b3
MM
2161/* Finish the member declaration given by DECL. */
2162
2163void
3a978d72 2164finish_member_declaration (tree decl)
61a127b3
MM
2165{
2166 if (decl == error_mark_node || decl == NULL_TREE)
2167 return;
2168
2169 if (decl == void_type_node)
2170 /* The COMPONENT was a friend, not a member, and so there's
2171 nothing for us to do. */
2172 return;
2173
2174 /* We should see only one DECL at a time. */
50bc768d 2175 gcc_assert (TREE_CHAIN (decl) == NULL_TREE);
61a127b3
MM
2176
2177 /* Set up access control for DECL. */
c8094d83 2178 TREE_PRIVATE (decl)
61a127b3 2179 = (current_access_specifier == access_private_node);
c8094d83 2180 TREE_PROTECTED (decl)
61a127b3
MM
2181 = (current_access_specifier == access_protected_node);
2182 if (TREE_CODE (decl) == TEMPLATE_DECL)
2183 {
17aec3eb
RK
2184 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
2185 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
61a127b3
MM
2186 }
2187
2188 /* Mark the DECL as a member of the current class. */
4f1c5b7d 2189 DECL_CONTEXT (decl) = current_class_type;
61a127b3 2190
421844e7
MM
2191 /* [dcl.link]
2192
2193 A C language linkage is ignored for the names of class members
2194 and the member function type of class member functions. */
2195 if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
5d2ed28c 2196 SET_DECL_LANGUAGE (decl, lang_cplusplus);
421844e7 2197
61a127b3
MM
2198 /* Put functions on the TYPE_METHODS list and everything else on the
2199 TYPE_FIELDS list. Note that these are built up in reverse order.
2200 We reverse them (to obtain declaration order) in finish_struct. */
c8094d83 2201 if (TREE_CODE (decl) == FUNCTION_DECL
61a127b3
MM
2202 || DECL_FUNCTION_TEMPLATE_P (decl))
2203 {
2204 /* We also need to add this function to the
2205 CLASSTYPE_METHOD_VEC. */
b2a9b208 2206 add_method (current_class_type, decl, NULL_TREE);
61a127b3
MM
2207
2208 TREE_CHAIN (decl) = TYPE_METHODS (current_class_type);
2209 TYPE_METHODS (current_class_type) = decl;
f139561c 2210
c8094d83 2211 maybe_add_class_template_decl_list (current_class_type, decl,
f139561c 2212 /*friend_p=*/0);
61a127b3 2213 }
f139561c 2214 /* Enter the DECL into the scope of the class. */
98ed9dae 2215 else if ((TREE_CODE (decl) == USING_DECL && !DECL_DEPENDENT_P (decl))
399dedb9 2216 || pushdecl_class_level (decl))
61a127b3
MM
2217 {
2218 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
2219 go at the beginning. The reason is that lookup_field_1
2220 searches the list in order, and we want a field name to
2221 override a type name so that the "struct stat hack" will
2222 work. In particular:
2223
2224 struct S { enum E { }; int E } s;
2225 s.E = 3;
2226
0e339752 2227 is valid. In addition, the FIELD_DECLs must be maintained in
61a127b3
MM
2228 declaration order so that class layout works as expected.
2229 However, we don't need that order until class layout, so we
2230 save a little time by putting FIELD_DECLs on in reverse order
2231 here, and then reversing them in finish_struct_1. (We could
2232 also keep a pointer to the correct insertion points in the
2233 list.) */
2234
2235 if (TREE_CODE (decl) == TYPE_DECL)
c8094d83 2236 TYPE_FIELDS (current_class_type)
61a127b3
MM
2237 = chainon (TYPE_FIELDS (current_class_type), decl);
2238 else
2239 {
2240 TREE_CHAIN (decl) = TYPE_FIELDS (current_class_type);
2241 TYPE_FIELDS (current_class_type) = decl;
2242 }
8f032717 2243
c8094d83 2244 maybe_add_class_template_decl_list (current_class_type, decl,
f139561c 2245 /*friend_p=*/0);
61a127b3 2246 }
5e2f4cd2
MM
2247
2248 if (pch_file)
2249 note_decl_for_pch (decl);
2250}
2251
2252/* DECL has been declared while we are building a PCH file. Perform
2253 actions that we might normally undertake lazily, but which can be
2254 performed now so that they do not have to be performed in
2255 translation units which include the PCH file. */
2256
2257void
2258note_decl_for_pch (tree decl)
2259{
2260 gcc_assert (pch_file);
2261
5e2f4cd2
MM
2262 /* There's a good chance that we'll have to mangle names at some
2263 point, even if only for emission in debugging information. */
2264 if (TREE_CODE (decl) == VAR_DECL
2265 || TREE_CODE (decl) == FUNCTION_DECL)
2266 mangle_decl (decl);
61a127b3
MM
2267}
2268
306ef644 2269/* Finish processing a complete template declaration. The PARMS are
36a117a5
MM
2270 the template parameters. */
2271
2272void
3a978d72 2273finish_template_decl (tree parms)
36a117a5
MM
2274{
2275 if (parms)
2276 end_template_decl ();
2277 else
2278 end_specialization ();
2279}
2280
509fc277 2281/* Finish processing a template-id (which names a type) of the form
36a117a5 2282 NAME < ARGS >. Return the TYPE_DECL for the type named by the
838dfd8a 2283 template-id. If ENTERING_SCOPE is nonzero we are about to enter
36a117a5
MM
2284 the scope of template-id indicated. */
2285
2286tree
3a978d72 2287finish_template_type (tree name, tree args, int entering_scope)
36a117a5
MM
2288{
2289 tree decl;
2290
2291 decl = lookup_template_class (name, args,
42eaed49
NS
2292 NULL_TREE, NULL_TREE, entering_scope,
2293 tf_error | tf_warning | tf_user);
36a117a5
MM
2294 if (decl != error_mark_node)
2295 decl = TYPE_STUB_DECL (decl);
2296
2297 return decl;
2298}
648f19f6 2299
ea6021e8
MM
2300/* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
2301 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
2302 BASE_CLASS, or NULL_TREE if an error occurred. The
aba649ba 2303 ACCESS_SPECIFIER is one of
809e3e7f
NS
2304 access_{default,public,protected_private}_node. For a virtual base
2305 we set TREE_TYPE. */
ea6021e8 2306
c8094d83 2307tree
dbbf88d1 2308finish_base_specifier (tree base, tree access, bool virtual_p)
ea6021e8 2309{
ea6021e8
MM
2310 tree result;
2311
dbbf88d1 2312 if (base == error_mark_node)
acb044ee
GDR
2313 {
2314 error ("invalid base-class specification");
2315 result = NULL_TREE;
2316 }
dbbf88d1 2317 else if (! is_aggr_type (base, 1))
ea6021e8 2318 result = NULL_TREE;
ea6021e8 2319 else
bb92901d 2320 {
dbbf88d1 2321 if (cp_type_quals (base) != 0)
0cbd7506
MS
2322 {
2323 error ("base class %qT has cv qualifiers", base);
2324 base = TYPE_MAIN_VARIANT (base);
2325 }
dbbf88d1 2326 result = build_tree_list (access, base);
809e3e7f
NS
2327 if (virtual_p)
2328 TREE_TYPE (result) = integer_type_node;
bb92901d 2329 }
ea6021e8
MM
2330
2331 return result;
2332}
61a127b3 2333
8f78f01f
MM
2334/* Issue a diagnostic that NAME cannot be found in SCOPE. DECL is
2335 what we found when we tried to do the lookup. */
22038b2c
NS
2336
2337void
8f78f01f 2338qualified_name_lookup_error (tree scope, tree name, tree decl)
22038b2c 2339{
1e1b4b37
VR
2340 if (scope == error_mark_node)
2341 ; /* We already complained. */
2342 else if (TYPE_P (scope))
22038b2c
NS
2343 {
2344 if (!COMPLETE_TYPE_P (scope))
a82e1a7d 2345 error ("incomplete type %qT used in nested name specifier", scope);
8f78f01f
MM
2346 else if (TREE_CODE (decl) == TREE_LIST)
2347 {
a82e1a7d 2348 error ("reference to %<%T::%D%> is ambiguous", scope, name);
8f78f01f
MM
2349 print_candidates (decl);
2350 }
22038b2c 2351 else
a82e1a7d 2352 error ("%qD is not a member of %qT", name, scope);
22038b2c
NS
2353 }
2354 else if (scope != global_namespace)
a82e1a7d 2355 error ("%qD is not a member of %qD", name, scope);
22038b2c 2356 else
a82e1a7d 2357 error ("%<::%D%> has not been declared", name);
22038b2c 2358}
c8094d83 2359
b3445994
MM
2360/* ID_EXPRESSION is a representation of parsed, but unprocessed,
2361 id-expression. (See cp_parser_id_expression for details.) SCOPE,
2362 if non-NULL, is the type or namespace used to explicitly qualify
2363 ID_EXPRESSION. DECL is the entity to which that name has been
c8094d83 2364 resolved.
b3445994
MM
2365
2366 *CONSTANT_EXPRESSION_P is true if we are presently parsing a
2367 constant-expression. In that case, *NON_CONSTANT_EXPRESSION_P will
2368 be set to true if this expression isn't permitted in a
2369 constant-expression, but it is otherwise not set by this function.
2370 *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
2371 constant-expression, but a non-constant expression is also
2372 permissible.
2373
2374 If an error occurs, and it is the kind of error that might cause
2375 the parser to abort a tentative parse, *ERROR_MSG is filled in. It
2376 is the caller's responsibility to issue the message. *ERROR_MSG
2377 will be a string with static storage duration, so the caller need
2378 not "free" it.
2379
2380 Return an expression for the entity, after issuing appropriate
2381 diagnostics. This function is also responsible for transforming a
2382 reference to a non-static member into a COMPONENT_REF that makes
c8094d83 2383 the use of "this" explicit.
b3445994
MM
2384
2385 Upon return, *IDK will be filled in appropriately. */
2386
2387tree
c8094d83 2388finish_id_expression (tree id_expression,
b3445994
MM
2389 tree decl,
2390 tree scope,
2391 cp_id_kind *idk,
2392 tree *qualifying_class,
67c03833
JM
2393 bool integral_constant_expression_p,
2394 bool allow_non_integral_constant_expression_p,
2395 bool *non_integral_constant_expression_p,
b3445994
MM
2396 const char **error_msg)
2397{
2398 /* Initialize the output parameters. */
2399 *idk = CP_ID_KIND_NONE;
2400 *error_msg = NULL;
2401
2402 if (id_expression == error_mark_node)
2403 return error_mark_node;
2404 /* If we have a template-id, then no further lookup is
2405 required. If the template-id was for a template-class, we
2406 will sometimes have a TYPE_DECL at this point. */
2407 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
ee935db4 2408 || TREE_CODE (decl) == TYPE_DECL)
b3445994
MM
2409 ;
2410 /* Look up the name. */
c8094d83 2411 else
b3445994
MM
2412 {
2413 if (decl == error_mark_node)
2414 {
2415 /* Name lookup failed. */
c8094d83
MS
2416 if (scope
2417 && (!TYPE_P (scope)
4546865e
MM
2418 || (!dependent_type_p (scope)
2419 && !(TREE_CODE (id_expression) == IDENTIFIER_NODE
2420 && IDENTIFIER_TYPENAME_P (id_expression)
2421 && dependent_type_p (TREE_TYPE (id_expression))))))
b3445994 2422 {
4546865e
MM
2423 /* If the qualifying type is non-dependent (and the name
2424 does not name a conversion operator to a dependent
2425 type), issue an error. */
8f78f01f 2426 qualified_name_lookup_error (scope, id_expression, decl);
b3445994
MM
2427 return error_mark_node;
2428 }
2429 else if (!scope)
2430 {
2431 /* It may be resolved via Koenig lookup. */
2432 *idk = CP_ID_KIND_UNQUALIFIED;
2433 return id_expression;
2434 }
4546865e
MM
2435 else
2436 decl = id_expression;
b3445994
MM
2437 }
2438 /* If DECL is a variable that would be out of scope under
2439 ANSI/ISO rules, but in scope in the ARM, name lookup
2440 will succeed. Issue a diagnostic here. */
2441 else
2442 decl = check_for_out_of_scope_variable (decl);
2443
2444 /* Remember that the name was used in the definition of
2445 the current class so that we can check later to see if
2446 the meaning would have been different after the class
2447 was entirely defined. */
2448 if (!scope && decl != error_mark_node)
2449 maybe_note_name_used_in_class (id_expression, decl);
2450 }
2451
2452 /* If we didn't find anything, or what we found was a type,
2453 then this wasn't really an id-expression. */
2454 if (TREE_CODE (decl) == TEMPLATE_DECL
2455 && !DECL_FUNCTION_TEMPLATE_P (decl))
2456 {
2457 *error_msg = "missing template arguments";
2458 return error_mark_node;
2459 }
2460 else if (TREE_CODE (decl) == TYPE_DECL
2461 || TREE_CODE (decl) == NAMESPACE_DECL)
2462 {
2463 *error_msg = "expected primary-expression";
2464 return error_mark_node;
2465 }
2466
2467 /* If the name resolved to a template parameter, there is no
931a9c05
GB
2468 need to look it up again later. */
2469 if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
2470 || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
b3445994 2471 {
db24eb1f 2472 tree r;
c8094d83 2473
b3445994 2474 *idk = CP_ID_KIND_NONE;
931a9c05
GB
2475 if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
2476 decl = TEMPLATE_PARM_DECL (decl);
db24eb1f 2477 r = convert_from_reference (DECL_INITIAL (decl));
c8094d83
MS
2478
2479 if (integral_constant_expression_p
68deab91 2480 && !dependent_type_p (TREE_TYPE (decl))
db24eb1f 2481 && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r))))
931a9c05 2482 {
67c03833 2483 if (!allow_non_integral_constant_expression_p)
a82e1a7d 2484 error ("template parameter %qD of type %qT is not allowed in "
931a9c05
GB
2485 "an integral constant expression because it is not of "
2486 "integral or enumeration type", decl, TREE_TYPE (decl));
67c03833 2487 *non_integral_constant_expression_p = true;
931a9c05 2488 }
db24eb1f 2489 return r;
931a9c05 2490 }
c8094d83 2491 /* Similarly, we resolve enumeration constants to their
931a9c05
GB
2492 underlying values. */
2493 else if (TREE_CODE (decl) == CONST_DECL)
2494 {
2495 *idk = CP_ID_KIND_NONE;
2496 if (!processing_template_decl)
b3445994
MM
2497 return DECL_INITIAL (decl);
2498 return decl;
2499 }
2500 else
2501 {
2502 bool dependent_p;
2503
2504 /* If the declaration was explicitly qualified indicate
2505 that. The semantics of `A::f(3)' are different than
2506 `f(3)' if `f' is virtual. */
c8094d83 2507 *idk = (scope
b3445994
MM
2508 ? CP_ID_KIND_QUALIFIED
2509 : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2510 ? CP_ID_KIND_TEMPLATE_ID
2511 : CP_ID_KIND_UNQUALIFIED));
2512
2513
2514 /* [temp.dep.expr]
2515
2516 An id-expression is type-dependent if it contains an
2517 identifier that was declared with a dependent type.
2518
b3445994
MM
2519 The standard is not very specific about an id-expression that
2520 names a set of overloaded functions. What if some of them
2521 have dependent types and some of them do not? Presumably,
2522 such a name should be treated as a dependent name. */
2523 /* Assume the name is not dependent. */
2524 dependent_p = false;
2525 if (!processing_template_decl)
2526 /* No names are dependent outside a template. */
2527 ;
2528 /* A template-id where the name of the template was not resolved
2529 is definitely dependent. */
2530 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
c8094d83 2531 && (TREE_CODE (TREE_OPERAND (decl, 0))
b3445994
MM
2532 == IDENTIFIER_NODE))
2533 dependent_p = true;
2534 /* For anything except an overloaded function, just check its
2535 type. */
2536 else if (!is_overloaded_fn (decl))
c8094d83 2537 dependent_p
b3445994
MM
2538 = dependent_type_p (TREE_TYPE (decl));
2539 /* For a set of overloaded functions, check each of the
2540 functions. */
2541 else
2542 {
2543 tree fns = decl;
2544
2545 if (BASELINK_P (fns))
2546 fns = BASELINK_FUNCTIONS (fns);
2547
2548 /* For a template-id, check to see if the template
2549 arguments are dependent. */
2550 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
2551 {
2552 tree args = TREE_OPERAND (fns, 1);
2553 dependent_p = any_dependent_template_arguments_p (args);
2554 /* The functions are those referred to by the
2555 template-id. */
2556 fns = TREE_OPERAND (fns, 0);
2557 }
2558
2559 /* If there are no dependent template arguments, go through
cd0be382 2560 the overloaded functions. */
b3445994
MM
2561 while (fns && !dependent_p)
2562 {
2563 tree fn = OVL_CURRENT (fns);
2564
2565 /* Member functions of dependent classes are
2566 dependent. */
2567 if (TREE_CODE (fn) == FUNCTION_DECL
2568 && type_dependent_expression_p (fn))
2569 dependent_p = true;
2570 else if (TREE_CODE (fn) == TEMPLATE_DECL
2571 && dependent_template_p (fn))
2572 dependent_p = true;
2573
2574 fns = OVL_NEXT (fns);
2575 }
2576 }
2577
2578 /* If the name was dependent on a template parameter, we will
2579 resolve the name at instantiation time. */
2580 if (dependent_p)
2581 {
2582 /* Create a SCOPE_REF for qualified names, if the scope is
2583 dependent. */
2584 if (scope)
2585 {
2586 if (TYPE_P (scope))
2587 *qualifying_class = scope;
2588 /* Since this name was dependent, the expression isn't
2589 constant -- yet. No error is issued because it might
2590 be constant when things are instantiated. */
67c03833
JM
2591 if (integral_constant_expression_p)
2592 *non_integral_constant_expression_p = true;
b3445994
MM
2593 if (TYPE_P (scope) && dependent_type_p (scope))
2594 return build_nt (SCOPE_REF, scope, id_expression);
2595 else if (TYPE_P (scope) && DECL_P (decl))
db24eb1f
NS
2596 return convert_from_reference
2597 (build2 (SCOPE_REF, TREE_TYPE (decl), scope, id_expression));
b3445994 2598 else
db24eb1f 2599 return convert_from_reference (decl);
b3445994
MM
2600 }
2601 /* A TEMPLATE_ID already contains all the information we
2602 need. */
2603 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR)
2604 return id_expression;
10b1d5e7 2605 *idk = CP_ID_KIND_UNQUALIFIED_DEPENDENT;
5a98fa7b
MM
2606 /* If we found a variable, then name lookup during the
2607 instantiation will always resolve to the same VAR_DECL
2608 (or an instantiation thereof). */
3c398f34
MM
2609 if (TREE_CODE (decl) == VAR_DECL
2610 || TREE_CODE (decl) == PARM_DECL)
db24eb1f 2611 return convert_from_reference (decl);
bad1f462
KL
2612 /* The same is true for FIELD_DECL, but we also need to
2613 make sure that the syntax is correct. */
2614 else if (TREE_CODE (decl) == FIELD_DECL)
a26ddf11
KL
2615 {
2616 /* Since SCOPE is NULL here, this is an unqualified name.
2617 Access checking has been performed during name lookup
2618 already. Turn off checking to avoid duplicate errors. */
2619 push_deferring_access_checks (dk_no_check);
2620 decl = finish_non_static_data_member
2621 (decl, current_class_ref,
2622 /*qualifying_scope=*/NULL_TREE);
2623 pop_deferring_access_checks ();
2624 return decl;
2625 }
10b1d5e7 2626 return id_expression;
b3445994
MM
2627 }
2628
2629 /* Only certain kinds of names are allowed in constant
0cbd7506
MS
2630 expression. Enumerators and template parameters have already
2631 been handled above. */
c30b4add 2632 if (integral_constant_expression_p
100d337a
MA
2633 && ! DECL_INTEGRAL_CONSTANT_VAR_P (decl)
2634 && ! builtin_valid_in_constant_expr_p (decl))
b3445994 2635 {
c30b4add 2636 if (!allow_non_integral_constant_expression_p)
b3445994 2637 {
a82e1a7d 2638 error ("%qD cannot appear in a constant-expression", decl);
c30b4add 2639 return error_mark_node;
b3445994 2640 }
c30b4add 2641 *non_integral_constant_expression_p = true;
b3445994 2642 }
c8094d83 2643
415d4636 2644 if (TREE_CODE (decl) == NAMESPACE_DECL)
9e95d15f 2645 {
a82e1a7d 2646 error ("use of namespace %qD as expression", decl);
9e95d15f
NS
2647 return error_mark_node;
2648 }
2649 else if (DECL_CLASS_TEMPLATE_P (decl))
2650 {
a82e1a7d 2651 error ("use of class template %qT as expression", decl);
9e95d15f
NS
2652 return error_mark_node;
2653 }
2654 else if (TREE_CODE (decl) == TREE_LIST)
2655 {
2656 /* Ambiguous reference to base members. */
a82e1a7d 2657 error ("request for member %qD is ambiguous in "
9e95d15f
NS
2658 "multiple inheritance lattice", id_expression);
2659 print_candidates (decl);
2660 return error_mark_node;
2661 }
415d4636
MM
2662
2663 /* Mark variable-like entities as used. Functions are similarly
2664 marked either below or after overload resolution. */
2665 if (TREE_CODE (decl) == VAR_DECL
2666 || TREE_CODE (decl) == PARM_DECL
2667 || TREE_CODE (decl) == RESULT_DECL)
2668 mark_used (decl);
2669
2670 if (scope)
2671 {
c8094d83 2672 decl = (adjust_result_of_qualified_name_lookup
415d4636 2673 (decl, scope, current_class_type));
e20bcc5e
JH
2674
2675 if (TREE_CODE (decl) == FUNCTION_DECL)
2676 mark_used (decl);
2677
415d4636
MM
2678 if (TREE_CODE (decl) == FIELD_DECL || BASELINK_P (decl))
2679 *qualifying_class = scope;
db24eb1f
NS
2680 else
2681 {
2682 tree r = convert_from_reference (decl);
c8094d83 2683
db24eb1f
NS
2684 if (processing_template_decl
2685 && TYPE_P (scope))
2686 r = build2 (SCOPE_REF, TREE_TYPE (r), scope, decl);
2687 decl = r;
2688 }
415d4636 2689 }
9e95d15f 2690 else if (TREE_CODE (decl) == FIELD_DECL)
a26ddf11
KL
2691 {
2692 /* Since SCOPE is NULL here, this is an unqualified name.
2693 Access checking has been performed during name lookup
2694 already. Turn off checking to avoid duplicate errors. */
2695 push_deferring_access_checks (dk_no_check);
2696 decl = finish_non_static_data_member (decl, current_class_ref,
2697 /*qualifying_scope=*/NULL_TREE);
2698 pop_deferring_access_checks ();
2699 }
9e95d15f
NS
2700 else if (is_overloaded_fn (decl))
2701 {
2702 tree first_fn = OVL_CURRENT (decl);
b3445994 2703
9e95d15f
NS
2704 if (TREE_CODE (first_fn) == TEMPLATE_DECL)
2705 first_fn = DECL_TEMPLATE_RESULT (first_fn);
415d4636
MM
2706
2707 if (!really_overloaded_fn (decl))
2708 mark_used (first_fn);
2709
9e95d15f 2710 if (TREE_CODE (first_fn) == FUNCTION_DECL
821eaf2a
MM
2711 && DECL_FUNCTION_MEMBER_P (first_fn)
2712 && !shared_member_p (decl))
9e95d15f
NS
2713 {
2714 /* A set of member functions. */
2715 decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
2716 return finish_class_member_access_expr (decl, id_expression);
2717 }
9e95d15f
NS
2718 }
2719 else
2720 {
2721 if (TREE_CODE (decl) == VAR_DECL
2722 || TREE_CODE (decl) == PARM_DECL
2723 || TREE_CODE (decl) == RESULT_DECL)
2724 {
2725 tree context = decl_function_context (decl);
c8094d83 2726
9e95d15f
NS
2727 if (context != NULL_TREE && context != current_function_decl
2728 && ! TREE_STATIC (decl))
2729 {
910dc5cc
VR
2730 error (TREE_CODE (decl) == VAR_DECL
2731 ? "use of %<auto%> variable from containing function"
2732 : "use of parameter from containing function");
dee15844 2733 error (" %q+#D declared here", decl);
9e95d15f
NS
2734 return error_mark_node;
2735 }
2736 }
c8094d83 2737
9e95d15f
NS
2738 if (DECL_P (decl) && DECL_NONLOCAL (decl)
2739 && DECL_CLASS_SCOPE_P (decl)
2740 && DECL_CONTEXT (decl) != current_class_type)
2741 {
2742 tree path;
c8094d83 2743
9e95d15f
NS
2744 path = currently_open_derived_class (DECL_CONTEXT (decl));
2745 perform_or_defer_access_check (TYPE_BINFO (path), decl);
2746 }
c8094d83 2747
db24eb1f 2748 decl = convert_from_reference (decl);
9e95d15f 2749 }
b3445994
MM
2750 }
2751
2752 if (TREE_DEPRECATED (decl))
2753 warn_deprecated_use (decl);
2754
2755 return decl;
2756}
2757
0213a355
JM
2758/* Implement the __typeof keyword: Return the type of EXPR, suitable for
2759 use as a type-specifier. */
2760
b894fc05 2761tree
3a978d72 2762finish_typeof (tree expr)
b894fc05 2763{
65a5559b
MM
2764 tree type;
2765
dffbbe80 2766 if (type_dependent_expression_p (expr))
b894fc05 2767 {
65a5559b 2768 type = make_aggr_type (TYPEOF_TYPE);
eb34af89 2769 TYPEOF_TYPE_EXPR (type) = expr;
b894fc05 2770
65a5559b 2771 return type;
b894fc05
JM
2772 }
2773
65a5559b
MM
2774 type = TREE_TYPE (expr);
2775
2776 if (!type || type == unknown_type_node)
2777 {
a82e1a7d 2778 error ("type of %qE is unknown", expr);
65a5559b
MM
2779 return error_mark_node;
2780 }
2781
2782 return type;
b894fc05 2783}
558475f0 2784
3eb24f73 2785/* Called from expand_body via walk_tree. Replace all AGGR_INIT_EXPRs
6de9cd9a 2786 with equivalent CALL_EXPRs. */
3eb24f73
MM
2787
2788static tree
c8094d83 2789simplify_aggr_init_exprs_r (tree* tp,
0cbd7506
MS
2790 int* walk_subtrees,
2791 void* data ATTRIBUTE_UNUSED)
3eb24f73 2792{
22e92ac3
MM
2793 /* We don't need to walk into types; there's nothing in a type that
2794 needs simplification. (And, furthermore, there are places we
2795 actively don't want to go. For example, we don't want to wander
2796 into the default arguments for a FUNCTION_DECL that appears in a
2797 CALL_EXPR.) */
9eeb200f 2798 if (TYPE_P (*tp))
22e92ac3
MM
2799 {
2800 *walk_subtrees = 0;
2801 return NULL_TREE;
2802 }
2803 /* Only AGGR_INIT_EXPRs are interesting. */
9eeb200f 2804 else if (TREE_CODE (*tp) != AGGR_INIT_EXPR)
3eb24f73
MM
2805 return NULL_TREE;
2806
9eeb200f
JM
2807 simplify_aggr_init_expr (tp);
2808
2809 /* Keep iterating. */
2810 return NULL_TREE;
2811}
2812
2813/* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR. This
2814 function is broken out from the above for the benefit of the tree-ssa
2815 project. */
2816
2817void
2818simplify_aggr_init_expr (tree *tp)
2819{
2820 tree aggr_init_expr = *tp;
2821
3eb24f73 2822 /* Form an appropriate CALL_EXPR. */
9eeb200f
JM
2823 tree fn = TREE_OPERAND (aggr_init_expr, 0);
2824 tree args = TREE_OPERAND (aggr_init_expr, 1);
2825 tree slot = TREE_OPERAND (aggr_init_expr, 2);
2692eb7d 2826 tree type = TREE_TYPE (slot);
9eeb200f
JM
2827
2828 tree call_expr;
2829 enum style_t { ctor, arg, pcc } style;
4977bab6 2830
3eb24f73 2831 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
4977bab6
ZW
2832 style = ctor;
2833#ifdef PCC_STATIC_STRUCT_RETURN
2834 else if (1)
2835 style = pcc;
2836#endif
4977bab6 2837 else
315fb5db
NS
2838 {
2839 gcc_assert (TREE_ADDRESSABLE (type));
2840 style = arg;
2841 }
4977bab6 2842
fa47911c 2843 if (style == ctor)
3eb24f73 2844 {
fa47911c
JM
2845 /* Replace the first argument to the ctor with the address of the
2846 slot. */
9eeb200f
JM
2847 tree addr;
2848
fa47911c 2849 args = TREE_CHAIN (args);
dffd7eb6 2850 cxx_mark_addressable (slot);
2692eb7d 2851 addr = build1 (ADDR_EXPR, build_pointer_type (type), slot);
9eeb200f 2852 args = tree_cons (NULL_TREE, addr, args);
3eb24f73 2853 }
4977bab6 2854
c8094d83 2855 call_expr = build3 (CALL_EXPR,
f293ce4b
RS
2856 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
2857 fn, args, NULL_TREE);
3eb24f73 2858
4977bab6 2859 if (style == arg)
fa47911c
JM
2860 {
2861 /* Just mark it addressable here, and leave the rest to
2862 expand_call{,_inline}. */
2863 cxx_mark_addressable (slot);
2864 CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true;
2865 call_expr = build2 (MODIFY_EXPR, TREE_TYPE (call_expr), slot, call_expr);
2866 }
4977bab6 2867 else if (style == pcc)
3eb24f73 2868 {
4977bab6
ZW
2869 /* If we're using the non-reentrant PCC calling convention, then we
2870 need to copy the returned value out of the static buffer into the
2871 SLOT. */
78757caa 2872 push_deferring_access_checks (dk_no_check);
46af705a
JDA
2873 call_expr = build_aggr_init (slot, call_expr,
2874 DIRECT_BIND | LOOKUP_ONLYCONVERTING);
78757caa 2875 pop_deferring_access_checks ();
fa47911c 2876 call_expr = build (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot);
3eb24f73 2877 }
3eb24f73 2878
3eb24f73 2879 *tp = call_expr;
3eb24f73
MM
2880}
2881
31f8e4f3
MM
2882/* Emit all thunks to FN that should be emitted when FN is emitted. */
2883
2884static void
3a978d72 2885emit_associated_thunks (tree fn)
31f8e4f3
MM
2886{
2887 /* When we use vcall offsets, we emit thunks with the virtual
2888 functions to which they thunk. The whole point of vcall offsets
2889 is so that you can know statically the entire set of thunks that
2890 will ever be needed for a given virtual function, thereby
2891 enabling you to output all the thunks with the function itself. */
3461fba7 2892 if (DECL_VIRTUAL_P (fn))
31f8e4f3 2893 {
bb5e8a7f 2894 tree thunk;
c8094d83 2895
bb5e8a7f 2896 for (thunk = DECL_THUNKS (fn); thunk; thunk = TREE_CHAIN (thunk))
4977bab6 2897 {
e00853fd 2898 if (!THUNK_ALIAS (thunk))
4977bab6 2899 {
bb885938
NS
2900 use_thunk (thunk, /*emit_p=*/1);
2901 if (DECL_RESULT_THUNK_P (thunk))
2902 {
2903 tree probe;
c8094d83 2904
bb885938
NS
2905 for (probe = DECL_THUNKS (thunk);
2906 probe; probe = TREE_CHAIN (probe))
2907 use_thunk (probe, /*emit_p=*/1);
2908 }
4977bab6 2909 }
bb885938 2910 else
50bc768d 2911 gcc_assert (!DECL_THUNKS (thunk));
4977bab6 2912 }
31f8e4f3
MM
2913 }
2914}
2915
558475f0
MM
2916/* Generate RTL for FN. */
2917
2918void
3a978d72 2919expand_body (tree fn)
558475f0 2920{
367aa585 2921 tree saved_function;
6de9cd9a 2922
92788413
MM
2923 /* Compute the appropriate object-file linkage for inline
2924 functions. */
79065db2 2925 if (DECL_DECLARED_INLINE_P (fn))
92788413
MM
2926 import_export_decl (fn);
2927
4f8e1232
MM
2928 /* If FN is external, then there's no point in generating RTL for
2929 it. This situation can arise with an inline function under
83662e2b 2930 `-fexternal-templates'; we instantiate the function, even though
4f8e1232
MM
2931 we're not planning on emitting it, in case we get a chance to
2932 inline it. */
2933 if (DECL_EXTERNAL (fn))
2934 return;
2935
4985cde3 2936 /* ??? When is this needed? */
367aa585 2937 saved_function = current_function_decl;
367aa585 2938
de81ffd4
JH
2939 /* Emit any thunks that should be emitted at the same time as FN. */
2940 emit_associated_thunks (fn);
2941
fa3ee801
DJ
2942 /* This function is only called from cgraph, or recursively from
2943 emit_associated_thunks. In neither case should we be currently
2944 generating trees for a function. */
2945 gcc_assert (function_depth == 0);
2946
0f0377f6 2947 tree_rest_of_compilation (fn);
d658cd4c 2948
367aa585 2949 current_function_decl = saved_function;
ea11ca7e 2950
85b22f78
NS
2951 if (DECL_CLONED_FUNCTION_P (fn))
2952 {
2953 /* If this is a clone, go through the other clones now and mark
0cbd7506
MS
2954 their parameters used. We have to do that here, as we don't
2955 know whether any particular clone will be expanded, and
2956 therefore cannot pick one arbitrarily. */
85b22f78
NS
2957 tree probe;
2958
2959 for (probe = TREE_CHAIN (DECL_CLONED_FUNCTION (fn));
2960 probe && DECL_CLONED_FUNCTION_P (probe);
2961 probe = TREE_CHAIN (probe))
2962 {
2963 tree parms;
2964
2965 for (parms = DECL_ARGUMENTS (probe);
2966 parms; parms = TREE_CHAIN (parms))
2967 TREE_USED (parms) = 1;
2968 }
2969 }
558475f0 2970}
54f7877c 2971
8cd2462c
JH
2972/* Generate RTL for FN. */
2973
2974void
5671bf27 2975expand_or_defer_fn (tree fn)
8cd2462c
JH
2976{
2977 /* When the parser calls us after finishing the body of a template
c353b8e3
MM
2978 function, we don't really want to expand the body. */
2979 if (processing_template_decl)
8cd2462c
JH
2980 {
2981 /* Normally, collection only occurs in rest_of_compilation. So,
2982 if we don't collect here, we never collect junk generated
2983 during the processing of templates until we hit a
27250734
MM
2984 non-template function. It's not safe to do this inside a
2985 nested class, though, as the parser may have local state that
2986 is not a GC root. */
2987 if (!function_depth)
2988 ggc_collect ();
8cd2462c
JH
2989 return;
2990 }
2991
2992 /* Replace AGGR_INIT_EXPRs with appropriate CALL_EXPRs. */
2993 walk_tree_without_duplicates (&DECL_SAVED_TREE (fn),
2994 simplify_aggr_init_exprs_r,
2995 NULL);
2996
2997 /* If this is a constructor or destructor body, we have to clone
2998 it. */
2999 if (maybe_clone_body (fn))
3000 {
3001 /* We don't want to process FN again, so pretend we've written
3002 it out, even though we haven't. */
3003 TREE_ASM_WRITTEN (fn) = 1;
3004 return;
3005 }
3006
4684cd27
MM
3007 /* If this function is marked with the constructor attribute, add it
3008 to the list of functions to be called along with constructors
3009 from static duration objects. */
3010 if (DECL_STATIC_CONSTRUCTOR (fn))
3011 static_ctors = tree_cons (NULL_TREE, fn, static_ctors);
3012
3013 /* If this function is marked with the destructor attribute, add it
3014 to the list of functions to be called along with destructors from
3015 static duration objects. */
3016 if (DECL_STATIC_DESTRUCTOR (fn))
3017 static_dtors = tree_cons (NULL_TREE, fn, static_dtors);
3018
3019 /* We make a decision about linkage for these functions at the end
3020 of the compilation. Until that point, we do not want the back
3021 end to output them -- but we do want it to see the bodies of
1a10290c 3022 these functions so that it can inline them as appropriate. */
4684cd27
MM
3023 if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
3024 {
1ef0df47
MM
3025 if (DECL_INTERFACE_KNOWN (fn))
3026 /* We've already made a decision as to how this function will
3027 be handled. */;
3028 else if (!at_eof)
4684cd27
MM
3029 {
3030 DECL_EXTERNAL (fn) = 1;
3031 DECL_NOT_REALLY_EXTERN (fn) = 1;
3032 note_vague_linkage_fn (fn);
1ef0df47
MM
3033 /* A non-template inline function with external linkage will
3034 always be COMDAT. As we must eventually determine the
3035 linkage of all functions, and as that causes writes to
3036 the data mapped in from the PCH file, it's advantageous
3037 to mark the functions at this point. */
3038 if (!DECL_IMPLICIT_INSTANTIATION (fn))
3039 {
3040 /* This function must have external linkage, as
3041 otherwise DECL_INTERFACE_KNOWN would have been
3042 set. */
3043 gcc_assert (TREE_PUBLIC (fn));
3044 comdat_linkage (fn);
3045 DECL_INTERFACE_KNOWN (fn) = 1;
3046 }
4684cd27
MM
3047 }
3048 else
3049 import_export_decl (fn);
1a10290c
MM
3050
3051 /* If the user wants us to keep all inline functions, then mark
3052 this function as needed so that finish_file will make sure to
3053 output it later. */
3054 if (flag_keep_inline_functions && DECL_DECLARED_INLINE_P (fn))
3055 mark_needed (fn);
4684cd27
MM
3056 }
3057
8cd2462c
JH
3058 /* There's no reason to do any of the work here if we're only doing
3059 semantic analysis; this code just generates RTL. */
3060 if (flag_syntax_only)
3061 return;
3062
99edd65d
RH
3063 function_depth++;
3064
e4d91027 3065 /* Expand or defer, at the whim of the compilation unit manager. */
6b00c969 3066 cgraph_finalize_function (fn, function_depth > 1);
99edd65d
RH
3067
3068 function_depth--;
8cd2462c
JH
3069}
3070
6de9cd9a
DN
3071struct nrv_data
3072{
3073 tree var;
3074 tree result;
3075 htab_t visited;
3076};
0d97bf4c 3077
6de9cd9a
DN
3078/* Helper function for walk_tree, used by finalize_nrv below. */
3079
3080static tree
3081finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
0d97bf4c 3082{
6de9cd9a
DN
3083 struct nrv_data *dp = (struct nrv_data *)data;
3084 void **slot;
07b2f2fd
JM
3085
3086 /* No need to walk into types. There wouldn't be any need to walk into
3087 non-statements, except that we have to consider STMT_EXPRs. */
0d97bf4c
JM
3088 if (TYPE_P (*tp))
3089 *walk_subtrees = 0;
6de9cd9a
DN
3090 /* Change all returns to just refer to the RESULT_DECL; this is a nop,
3091 but differs from using NULL_TREE in that it indicates that we care
3092 about the value of the RESULT_DECL. */
5088b058
RH
3093 else if (TREE_CODE (*tp) == RETURN_EXPR)
3094 TREE_OPERAND (*tp, 0) = dp->result;
6de9cd9a
DN
3095 /* Change all cleanups for the NRV to only run when an exception is
3096 thrown. */
07b2f2fd 3097 else if (TREE_CODE (*tp) == CLEANUP_STMT
6de9cd9a 3098 && CLEANUP_DECL (*tp) == dp->var)
659e5a7a 3099 CLEANUP_EH_ONLY (*tp) = 1;
350fae66 3100 /* Replace the DECL_EXPR for the NRV with an initialization of the
6de9cd9a 3101 RESULT_DECL, if needed. */
350fae66
RK
3102 else if (TREE_CODE (*tp) == DECL_EXPR
3103 && DECL_EXPR_DECL (*tp) == dp->var)
6de9cd9a
DN
3104 {
3105 tree init;
3106 if (DECL_INITIAL (dp->var)
3107 && DECL_INITIAL (dp->var) != error_mark_node)
3108 {
f293ce4b
RS
3109 init = build2 (INIT_EXPR, void_type_node, dp->result,
3110 DECL_INITIAL (dp->var));
6de9cd9a
DN
3111 DECL_INITIAL (dp->var) = error_mark_node;
3112 }
3113 else
543a0daa 3114 init = build_empty_stmt ();
6de9cd9a 3115 SET_EXPR_LOCUS (init, EXPR_LOCUS (*tp));
6de9cd9a
DN
3116 *tp = init;
3117 }
3118 /* And replace all uses of the NRV with the RESULT_DECL. */
3119 else if (*tp == dp->var)
3120 *tp = dp->result;
3121
3122 /* Avoid walking into the same tree more than once. Unfortunately, we
3123 can't just use walk_tree_without duplicates because it would only call
3124 us for the first occurrence of dp->var in the function body. */
3125 slot = htab_find_slot (dp->visited, *tp, INSERT);
3126 if (*slot)
3127 *walk_subtrees = 0;
3128 else
3129 *slot = *tp;
0d97bf4c
JM
3130
3131 /* Keep iterating. */
3132 return NULL_TREE;
3133}
3134
6de9cd9a 3135/* Called from finish_function to implement the named return value
5088b058 3136 optimization by overriding all the RETURN_EXPRs and pertinent
6de9cd9a
DN
3137 CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
3138 RESULT_DECL for the function. */
f444e36b 3139
4985cde3 3140void
6de9cd9a 3141finalize_nrv (tree *tp, tree var, tree result)
f444e36b 3142{
6de9cd9a
DN
3143 struct nrv_data data;
3144
3145 /* Copy debugging information from VAR to RESULT. */
3146 DECL_NAME (result) = DECL_NAME (var);
b785f485
RH
3147 DECL_ARTIFICIAL (result) = DECL_ARTIFICIAL (var);
3148 DECL_IGNORED_P (result) = DECL_IGNORED_P (var);
6de9cd9a
DN
3149 DECL_SOURCE_LOCATION (result) = DECL_SOURCE_LOCATION (var);
3150 DECL_ABSTRACT_ORIGIN (result) = DECL_ABSTRACT_ORIGIN (var);
3151 /* Don't forget that we take its address. */
3152 TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
3153
3154 data.var = var;
3155 data.result = result;
3156 data.visited = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3157 walk_tree (tp, finalize_nrv_r, &data, 0);
3158 htab_delete (data.visited);
b850de4f
MM
3159}
3160
54f7877c
MM
3161/* Perform initialization related to this module. */
3162
3163void
3a978d72 3164init_cp_semantics (void)
54f7877c 3165{
54f7877c 3166}
cf22909c
KL
3167
3168#include "gt-cp-semantics.h"
This page took 2.223988 seconds and 5 git commands to generate.