]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/gimplify.c
[multiple changes]
[thirdparty/gcc.git] / gcc / gimplify.c
CommitLineData
6de9cd9a
DN
1/* Tree lowering pass. This pass converts the GENERIC functions-as-trees
2 tree representation into the GIMPLE form.
a441d616
AP
3 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007
4 Free Software Foundation, Inc.
6de9cd9a
DN
5 Major work done by Sebastian Pop <s.pop@laposte.net>,
6 Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
7
8This file is part of GCC.
9
10GCC is free software; you can redistribute it and/or modify it under
11the terms of the GNU General Public License as published by the Free
12Software Foundation; either version 2, or (at your option) any later
13version.
14
15GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16WARRANTY; without even the implied warranty of MERCHANTABILITY or
17FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18for more details.
19
20You should have received a copy of the GNU General Public License
21along with GCC; see the file COPYING. If not, write to the Free
366ccddb
KC
22Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
2302110-1301, USA. */
6de9cd9a
DN
24
25#include "config.h"
26#include "system.h"
27#include "coretypes.h"
28#include "tm.h"
29#include "tree.h"
30#include "rtl.h"
6de9cd9a 31#include "varray.h"
eadf906f 32#include "tree-gimple.h"
6de9cd9a
DN
33#include "tree-inline.h"
34#include "diagnostic.h"
35#include "langhooks.h"
36#include "langhooks-def.h"
37#include "tree-flow.h"
44de5aeb 38#include "cgraph.h"
6de9cd9a
DN
39#include "timevar.h"
40#include "except.h"
41#include "hashtab.h"
42#include "flags.h"
43#include "real.h"
44#include "function.h"
45#include "output.h"
46#include "expr.h"
47#include "ggc.h"
4c714dd4 48#include "toplev.h"
cd3ce9b4 49#include "target.h"
953ff289
DN
50#include "optabs.h"
51#include "pointer-set.h"
6be42dd4 52#include "splay-tree.h"
6de9cd9a 53
953ff289
DN
54
55enum gimplify_omp_var_data
56{
57 GOVD_SEEN = 1,
58 GOVD_EXPLICIT = 2,
59 GOVD_SHARED = 4,
60 GOVD_PRIVATE = 8,
61 GOVD_FIRSTPRIVATE = 16,
62 GOVD_LASTPRIVATE = 32,
63 GOVD_REDUCTION = 64,
64 GOVD_LOCAL = 128,
65 GOVD_DEBUG_PRIVATE = 256,
66 GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
67 | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
68};
69
70struct gimplify_omp_ctx
6de9cd9a 71{
953ff289
DN
72 struct gimplify_omp_ctx *outer_context;
73 splay_tree variables;
74 struct pointer_set_t *privatized_types;
75 location_t location;
76 enum omp_clause_default_kind default_kind;
77 bool is_parallel;
761041be 78 bool is_combined_parallel;
953ff289
DN
79};
80
81struct gimplify_ctx
82{
83 struct gimplify_ctx *prev_context;
84
6de9cd9a 85 tree current_bind_expr;
6de9cd9a
DN
86 tree temps;
87 tree conditional_cleanups;
6de9cd9a 88 tree exit_label;
71877985 89 tree return_temp;
953ff289 90
84c76d40 91 VEC(tree,heap) *case_labels;
6de9cd9a
DN
92 /* The formal temporary table. Should this be persistent? */
93 htab_t temp_htab;
953ff289 94
8b11a64c
ZD
95 int conditions;
96 bool save_stack;
97 bool into_ssa;
953ff289
DN
98};
99
100static struct gimplify_ctx *gimplify_ctxp;
101static struct gimplify_omp_ctx *gimplify_omp_ctxp;
102
6de9cd9a
DN
103
104
105/* Formal (expression) temporary table handling: Multiple occurrences of
106 the same scalar expression are evaluated into the same temporary. */
107
108typedef struct gimple_temp_hash_elt
109{
110 tree val; /* Key */
111 tree temp; /* Value */
112} elt_t;
113
44de5aeb 114/* Forward declarations. */
44de5aeb 115static enum gimplify_status gimplify_compound_expr (tree *, tree *, bool);
67f23620
RH
116#ifdef ENABLE_CHECKING
117static bool cpt_same_type (tree a, tree b);
118#endif
eb6127a4
RK
119
120
6de9cd9a
DN
121/* Return a hash value for a formal temporary table entry. */
122
123static hashval_t
124gimple_tree_hash (const void *p)
125{
aa4a53af 126 tree t = ((const elt_t *) p)->val;
6de9cd9a
DN
127 return iterative_hash_expr (t, 0);
128}
129
130/* Compare two formal temporary table entries. */
131
132static int
133gimple_tree_eq (const void *p1, const void *p2)
134{
aa4a53af
RK
135 tree t1 = ((const elt_t *) p1)->val;
136 tree t2 = ((const elt_t *) p2)->val;
6de9cd9a
DN
137 enum tree_code code = TREE_CODE (t1);
138
139 if (TREE_CODE (t2) != code
140 || TREE_TYPE (t1) != TREE_TYPE (t2))
141 return 0;
142
143 if (!operand_equal_p (t1, t2, 0))
144 return 0;
145
146 /* Only allow them to compare equal if they also hash equal; otherwise
147 results are nondeterminate, and we fail bootstrap comparison. */
282899df 148 gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
6de9cd9a
DN
149
150 return 1;
151}
152
153/* Set up a context for the gimplifier. */
154
155void
156push_gimplify_context (void)
157{
953ff289
DN
158 struct gimplify_ctx *c;
159
160 c = (struct gimplify_ctx *) xcalloc (1, sizeof (struct gimplify_ctx));
161 c->prev_context = gimplify_ctxp;
bbbb79d4 162 if (optimize)
953ff289
DN
163 c->temp_htab = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
164
165 gimplify_ctxp = c;
6de9cd9a
DN
166}
167
168/* Tear down a context for the gimplifier. If BODY is non-null, then
169 put the temporaries into the outer BIND_EXPR. Otherwise, put them
170 in the unexpanded_var_list. */
171
172void
173pop_gimplify_context (tree body)
174{
953ff289 175 struct gimplify_ctx *c = gimplify_ctxp;
17ad5b5e
RH
176 tree t;
177
953ff289
DN
178 gcc_assert (c && !c->current_bind_expr);
179 gimplify_ctxp = c->prev_context;
6de9cd9a 180
953ff289 181 for (t = c->temps; t ; t = TREE_CHAIN (t))
17ad5b5e
RH
182 DECL_GIMPLE_FORMAL_TEMP_P (t) = 0;
183
6de9cd9a 184 if (body)
5123ad09 185 declare_vars (c->temps, body, false);
6de9cd9a 186 else
953ff289 187 record_vars (c->temps);
6de9cd9a 188
bbbb79d4 189 if (optimize)
953ff289
DN
190 htab_delete (c->temp_htab);
191 free (c);
6de9cd9a
DN
192}
193
c24b7de9 194static void
6de9cd9a
DN
195gimple_push_bind_expr (tree bind)
196{
197 TREE_CHAIN (bind) = gimplify_ctxp->current_bind_expr;
198 gimplify_ctxp->current_bind_expr = bind;
199}
200
c24b7de9 201static void
6de9cd9a
DN
202gimple_pop_bind_expr (void)
203{
204 gimplify_ctxp->current_bind_expr
205 = TREE_CHAIN (gimplify_ctxp->current_bind_expr);
206}
207
208tree
209gimple_current_bind_expr (void)
210{
211 return gimplify_ctxp->current_bind_expr;
212}
213
214/* Returns true iff there is a COND_EXPR between us and the innermost
215 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
216
217static bool
218gimple_conditional_context (void)
219{
220 return gimplify_ctxp->conditions > 0;
221}
222
223/* Note that we've entered a COND_EXPR. */
224
225static void
226gimple_push_condition (void)
227{
d775bc45
AP
228#ifdef ENABLE_CHECKING
229 if (gimplify_ctxp->conditions == 0)
230 gcc_assert (!gimplify_ctxp->conditional_cleanups);
231#endif
6de9cd9a
DN
232 ++(gimplify_ctxp->conditions);
233}
234
235/* Note that we've left a COND_EXPR. If we're back at unconditional scope
236 now, add any conditional cleanups we've seen to the prequeue. */
237
238static void
239gimple_pop_condition (tree *pre_p)
240{
241 int conds = --(gimplify_ctxp->conditions);
aa4a53af 242
282899df 243 gcc_assert (conds >= 0);
6de9cd9a
DN
244 if (conds == 0)
245 {
246 append_to_statement_list (gimplify_ctxp->conditional_cleanups, pre_p);
247 gimplify_ctxp->conditional_cleanups = NULL_TREE;
248 }
6de9cd9a
DN
249}
250
953ff289
DN
251/* A stable comparison routine for use with splay trees and DECLs. */
252
253static int
254splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
255{
256 tree a = (tree) xa;
257 tree b = (tree) xb;
258
259 return DECL_UID (a) - DECL_UID (b);
260}
261
262/* Create a new omp construct that deals with variable remapping. */
263
264static struct gimplify_omp_ctx *
761041be 265new_omp_context (bool is_parallel, bool is_combined_parallel)
953ff289
DN
266{
267 struct gimplify_omp_ctx *c;
268
269 c = XCNEW (struct gimplify_omp_ctx);
270 c->outer_context = gimplify_omp_ctxp;
271 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
272 c->privatized_types = pointer_set_create ();
273 c->location = input_location;
274 c->is_parallel = is_parallel;
761041be 275 c->is_combined_parallel = is_combined_parallel;
953ff289
DN
276 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
277
278 return c;
279}
280
281/* Destroy an omp construct that deals with variable remapping. */
282
283static void
284delete_omp_context (struct gimplify_omp_ctx *c)
285{
286 splay_tree_delete (c->variables);
287 pointer_set_destroy (c->privatized_types);
288 XDELETE (c);
289}
290
291static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
292static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
293
b086a2ea 294/* A subroutine of append_to_statement_list{,_force}. T is not NULL. */
6de9cd9a
DN
295
296static void
b086a2ea 297append_to_statement_list_1 (tree t, tree *list_p)
6de9cd9a
DN
298{
299 tree list = *list_p;
300 tree_stmt_iterator i;
301
302 if (!list)
303 {
304 if (t && TREE_CODE (t) == STATEMENT_LIST)
305 {
306 *list_p = t;
307 return;
308 }
309 *list_p = list = alloc_stmt_list ();
310 }
311
6de9cd9a
DN
312 i = tsi_last (list);
313 tsi_link_after (&i, t, TSI_CONTINUE_LINKING);
314}
315
206048bd 316/* Add T to the end of the list container pointed to by LIST_P.
6de9cd9a
DN
317 If T is an expression with no effects, it is ignored. */
318
319void
320append_to_statement_list (tree t, tree *list_p)
321{
b086a2ea
RS
322 if (t && TREE_SIDE_EFFECTS (t))
323 append_to_statement_list_1 (t, list_p);
6de9cd9a
DN
324}
325
326/* Similar, but the statement is always added, regardless of side effects. */
327
328void
329append_to_statement_list_force (tree t, tree *list_p)
330{
b086a2ea
RS
331 if (t != NULL_TREE)
332 append_to_statement_list_1 (t, list_p);
6de9cd9a
DN
333}
334
cd3ce9b4
JM
335/* Both gimplify the statement T and append it to LIST_P. */
336
337void
338gimplify_and_add (tree t, tree *list_p)
339{
340 gimplify_stmt (&t);
341 append_to_statement_list (t, list_p);
342}
343
6de9cd9a
DN
344/* Strip off a legitimate source ending from the input string NAME of
345 length LEN. Rather than having to know the names used by all of
346 our front ends, we strip off an ending of a period followed by
347 up to five characters. (Java uses ".class".) */
348
349static inline void
350remove_suffix (char *name, int len)
351{
352 int i;
353
354 for (i = 2; i < 8 && len > i; i++)
355 {
356 if (name[len - i] == '.')
357 {
358 name[len - i] = '\0';
359 break;
360 }
361 }
362}
363
364/* Create a nameless artificial label and put it in the current function
365 context. Returns the newly created label. */
366
367tree
368create_artificial_label (void)
369{
370 tree lab = build_decl (LABEL_DECL, NULL_TREE, void_type_node);
aa4a53af 371
6de9cd9a 372 DECL_ARTIFICIAL (lab) = 1;
78e0d62b 373 DECL_IGNORED_P (lab) = 1;
6de9cd9a
DN
374 DECL_CONTEXT (lab) = current_function_decl;
375 return lab;
376}
377
0b494699
ILT
378/* Subroutine for find_single_pointer_decl. */
379
380static tree
381find_single_pointer_decl_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
382 void *data)
383{
384 tree *pdecl = (tree *) data;
385
386 if (DECL_P (*tp) && POINTER_TYPE_P (TREE_TYPE (*tp)))
387 {
388 if (*pdecl)
389 {
390 /* We already found a pointer decl; return anything other
391 than NULL_TREE to unwind from walk_tree signalling that
392 we have a duplicate. */
393 return *tp;
394 }
395 *pdecl = *tp;
396 }
397
398 return NULL_TREE;
399}
400
401/* Find the single DECL of pointer type in the tree T and return it.
402 If there are zero or more than one such DECLs, return NULL. */
403
404static tree
405find_single_pointer_decl (tree t)
406{
407 tree decl = NULL_TREE;
408
409 if (walk_tree (&t, find_single_pointer_decl_1, &decl, NULL))
410 {
c0220ea4
KH
411 /* find_single_pointer_decl_1 returns a nonzero value, causing
412 walk_tree to return a nonzero value, to indicate that it
0b494699
ILT
413 found more than one pointer DECL. */
414 return NULL_TREE;
415 }
416
417 return decl;
418}
419
1ea7e6ad 420/* Create a new temporary name with PREFIX. Returns an identifier. */
6de9cd9a
DN
421
422static GTY(()) unsigned int tmp_var_id_num;
423
7e140280 424tree
6de9cd9a
DN
425create_tmp_var_name (const char *prefix)
426{
427 char *tmp_name;
428
429 if (prefix)
430 {
431 char *preftmp = ASTRDUP (prefix);
aa4a53af 432
6de9cd9a
DN
433 remove_suffix (preftmp, strlen (preftmp));
434 prefix = preftmp;
435 }
436
437 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
438 return get_identifier (tmp_name);
439}
440
441
442/* Create a new temporary variable declaration of type TYPE.
443 Does NOT push it into the current binding. */
444
445tree
446create_tmp_var_raw (tree type, const char *prefix)
447{
448 tree tmp_var;
449 tree new_type;
450
451 /* Make the type of the variable writable. */
452 new_type = build_type_variant (type, 0, 0);
453 TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
454
769da818
GK
455 tmp_var = build_decl (VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
456 type);
6de9cd9a
DN
457
458 /* The variable was declared by the compiler. */
459 DECL_ARTIFICIAL (tmp_var) = 1;
460 /* And we don't want debug info for it. */
461 DECL_IGNORED_P (tmp_var) = 1;
462
463 /* Make the variable writable. */
464 TREE_READONLY (tmp_var) = 0;
465
466 DECL_EXTERNAL (tmp_var) = 0;
467 TREE_STATIC (tmp_var) = 0;
468 TREE_USED (tmp_var) = 1;
469
470 return tmp_var;
471}
472
473/* Create a new temporary variable declaration of type TYPE. DOES push the
474 variable into the current binding. Further, assume that this is called
475 only from gimplification or optimization, at which point the creation of
476 certain types are bugs. */
477
478tree
479create_tmp_var (tree type, const char *prefix)
480{
481 tree tmp_var;
482
44de5aeb 483 /* We don't allow types that are addressable (meaning we can't make copies),
a441447f
OH
484 or incomplete. We also used to reject every variable size objects here,
485 but now support those for which a constant upper bound can be obtained.
486 The processing for variable sizes is performed in gimple_add_tmp_var,
487 point at which it really matters and possibly reached via paths not going
488 through this function, e.g. after direct calls to create_tmp_var_raw. */
489 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
6de9cd9a
DN
490
491 tmp_var = create_tmp_var_raw (type, prefix);
492 gimple_add_tmp_var (tmp_var);
493 return tmp_var;
494}
495
496/* Given a tree, try to return a useful variable name that we can use
497 to prefix a temporary that is being assigned the value of the tree.
498 I.E. given <temp> = &A, return A. */
499
500const char *
501get_name (tree t)
502{
503 tree stripped_decl;
504
505 stripped_decl = t;
506 STRIP_NOPS (stripped_decl);
507 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
508 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
509 else
510 {
511 switch (TREE_CODE (stripped_decl))
512 {
513 case ADDR_EXPR:
514 return get_name (TREE_OPERAND (stripped_decl, 0));
6de9cd9a
DN
515 default:
516 return NULL;
517 }
518 }
519}
520
521/* Create a temporary with a name derived from VAL. Subroutine of
522 lookup_tmp_var; nobody else should call this function. */
523
524static inline tree
525create_tmp_from_val (tree val)
526{
99db1ef0 527 return create_tmp_var (TYPE_MAIN_VARIANT (TREE_TYPE (val)), get_name (val));
6de9cd9a
DN
528}
529
530/* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
531 an existing expression temporary. */
532
533static tree
534lookup_tmp_var (tree val, bool is_formal)
535{
17ad5b5e
RH
536 tree ret;
537
bbbb79d4
GK
538 /* If not optimizing, never really reuse a temporary. local-alloc
539 won't allocate any variable that is used in more than one basic
540 block, which means it will go into memory, causing much extra
541 work in reload and final and poorer code generation, outweighing
542 the extra memory allocation here. */
543 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
17ad5b5e 544 ret = create_tmp_from_val (val);
6de9cd9a
DN
545 else
546 {
547 elt_t elt, *elt_p;
548 void **slot;
549
550 elt.val = val;
551 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
552 if (*slot == NULL)
553 {
858904db 554 elt_p = XNEW (elt_t);
6de9cd9a 555 elt_p->val = val;
17ad5b5e 556 elt_p->temp = ret = create_tmp_from_val (val);
af72267c 557 *slot = (void *) elt_p;
6de9cd9a
DN
558 }
559 else
17ad5b5e
RH
560 {
561 elt_p = (elt_t *) *slot;
562 ret = elt_p->temp;
563 }
6de9cd9a 564 }
17ad5b5e
RH
565
566 if (is_formal)
567 DECL_GIMPLE_FORMAL_TEMP_P (ret) = 1;
568
569 return ret;
6de9cd9a
DN
570}
571
572/* Returns a formal temporary variable initialized with VAL. PRE_P is as
573 in gimplify_expr. Only use this function if:
574
575 1) The value of the unfactored expression represented by VAL will not
576 change between the initialization and use of the temporary, and
577 2) The temporary will not be otherwise modified.
578
579 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
580 and #2 means it is inappropriate for && temps.
581
582 For other cases, use get_initialized_tmp_var instead. */
583
584static tree
585internal_get_tmp_var (tree val, tree *pre_p, tree *post_p, bool is_formal)
586{
587 tree t, mod;
6de9cd9a 588
17ad5b5e 589 gimplify_expr (&val, pre_p, post_p, is_gimple_formal_tmp_rhs, fb_rvalue);
6de9cd9a
DN
590
591 t = lookup_tmp_var (val, is_formal);
592
0b494699
ILT
593 if (is_formal)
594 {
595 tree u = find_single_pointer_decl (val);
596
597 if (u && TREE_CODE (u) == VAR_DECL && DECL_BASED_ON_RESTRICT_P (u))
598 u = DECL_GET_RESTRICT_BASE (u);
599 if (u && TYPE_RESTRICT (TREE_TYPE (u)))
600 {
601 if (DECL_BASED_ON_RESTRICT_P (t))
602 gcc_assert (u == DECL_GET_RESTRICT_BASE (t));
603 else
604 {
605 DECL_BASED_ON_RESTRICT_P (t) = 1;
606 SET_DECL_RESTRICT_BASE (t, u);
607 }
608 }
609 }
610
0890b981
AP
611 if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
612 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
613 DECL_GIMPLE_REG_P (t) = 1;
e41d82f5 614
2e929cf3 615 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
6de9cd9a 616
a281759f 617 if (EXPR_HAS_LOCATION (val))
6de9cd9a
DN
618 SET_EXPR_LOCUS (mod, EXPR_LOCUS (val));
619 else
a281759f 620 SET_EXPR_LOCATION (mod, input_location);
6de9cd9a 621
fff34d35
RK
622 /* gimplify_modify_expr might want to reduce this further. */
623 gimplify_and_add (mod, pre_p);
8b11a64c
ZD
624
625 /* If we're gimplifying into ssa, gimplify_modify_expr will have
626 given our temporary an ssa name. Find and return it. */
627 if (gimplify_ctxp->into_ssa)
628 t = TREE_OPERAND (mod, 0);
629
6de9cd9a
DN
630 return t;
631}
632
50674e96
DN
633/* Returns a formal temporary variable initialized with VAL. PRE_P
634 points to a statement list where side-effects needed to compute VAL
635 should be stored. */
636
6de9cd9a
DN
637tree
638get_formal_tmp_var (tree val, tree *pre_p)
639{
640 return internal_get_tmp_var (val, pre_p, NULL, true);
641}
642
643/* Returns a temporary variable initialized with VAL. PRE_P and POST_P
644 are as in gimplify_expr. */
645
646tree
647get_initialized_tmp_var (tree val, tree *pre_p, tree *post_p)
648{
649 return internal_get_tmp_var (val, pre_p, post_p, false);
650}
651
5123ad09
EB
652/* Declares all the variables in VARS in SCOPE. If DEBUG_INFO is
653 true, generate debug info for them; otherwise don't. */
6de9cd9a
DN
654
655void
5123ad09 656declare_vars (tree vars, tree scope, bool debug_info)
6de9cd9a
DN
657{
658 tree last = vars;
659 if (last)
660 {
5123ad09 661 tree temps, block;
6de9cd9a 662
aa4a53af 663 /* C99 mode puts the default 'return 0;' for main outside the outer
6de9cd9a
DN
664 braces. So drill down until we find an actual scope. */
665 while (TREE_CODE (scope) == COMPOUND_EXPR)
666 scope = TREE_OPERAND (scope, 0);
667
282899df 668 gcc_assert (TREE_CODE (scope) == BIND_EXPR);
6de9cd9a
DN
669
670 temps = nreverse (last);
5123ad09
EB
671
672 block = BIND_EXPR_BLOCK (scope);
673 if (!block || !debug_info)
674 {
675 TREE_CHAIN (last) = BIND_EXPR_VARS (scope);
676 BIND_EXPR_VARS (scope) = temps;
677 }
678 else
679 {
680 /* We need to attach the nodes both to the BIND_EXPR and to its
681 associated BLOCK for debugging purposes. The key point here
682 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
683 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
684 if (BLOCK_VARS (block))
685 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
686 else
687 {
688 BIND_EXPR_VARS (scope) = chainon (BIND_EXPR_VARS (scope), temps);
689 BLOCK_VARS (block) = temps;
690 }
691 }
6de9cd9a
DN
692 }
693}
694
a441447f
OH
695/* For VAR a VAR_DECL of variable size, try to find a constant upper bound
696 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
697 no such upper bound can be obtained. */
698
699static void
700force_constant_size (tree var)
701{
702 /* The only attempt we make is by querying the maximum size of objects
703 of the variable's type. */
704
705 HOST_WIDE_INT max_size;
706
707 gcc_assert (TREE_CODE (var) == VAR_DECL);
708
709 max_size = max_int_size_in_bytes (TREE_TYPE (var));
710
711 gcc_assert (max_size >= 0);
712
713 DECL_SIZE_UNIT (var)
714 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
715 DECL_SIZE (var)
716 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
717}
718
6de9cd9a
DN
719void
720gimple_add_tmp_var (tree tmp)
721{
282899df 722 gcc_assert (!TREE_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
6de9cd9a 723
a441447f
OH
724 /* Later processing assumes that the object size is constant, which might
725 not be true at this point. Force the use of a constant upper bound in
726 this case. */
727 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
728 force_constant_size (tmp);
729
6de9cd9a 730 DECL_CONTEXT (tmp) = current_function_decl;
48eb4e53 731 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
6de9cd9a
DN
732
733 if (gimplify_ctxp)
734 {
735 TREE_CHAIN (tmp) = gimplify_ctxp->temps;
736 gimplify_ctxp->temps = tmp;
953ff289
DN
737
738 /* Mark temporaries local within the nearest enclosing parallel. */
739 if (gimplify_omp_ctxp)
740 {
741 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
742 while (ctx && !ctx->is_parallel)
743 ctx = ctx->outer_context;
744 if (ctx)
745 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
746 }
6de9cd9a
DN
747 }
748 else if (cfun)
749 record_vars (tmp);
750 else
5123ad09 751 declare_vars (tmp, DECL_SAVED_TREE (current_function_decl), false);
6de9cd9a
DN
752}
753
754/* Determines whether to assign a locus to the statement STMT. */
755
756static bool
757should_carry_locus_p (tree stmt)
758{
759 /* Don't emit a line note for a label. We particularly don't want to
760 emit one for the break label, since it doesn't actually correspond
761 to the beginning of the loop/switch. */
762 if (TREE_CODE (stmt) == LABEL_EXPR)
763 return false;
764
765 /* Do not annotate empty statements, since it confuses gcov. */
766 if (!TREE_SIDE_EFFECTS (stmt))
767 return false;
768
769 return true;
770}
771
7c34ced1
RH
772static void
773annotate_one_with_locus (tree t, location_t locus)
774{
07beea0d
AH
775 if (CAN_HAVE_LOCATION_P (t)
776 && ! EXPR_HAS_LOCATION (t) && should_carry_locus_p (t))
a281759f 777 SET_EXPR_LOCATION (t, locus);
7c34ced1
RH
778}
779
6de9cd9a
DN
780void
781annotate_all_with_locus (tree *stmt_p, location_t locus)
782{
783 tree_stmt_iterator i;
784
785 if (!*stmt_p)
786 return;
787
788 for (i = tsi_start (*stmt_p); !tsi_end_p (i); tsi_next (&i))
789 {
790 tree t = tsi_stmt (i);
791
282899df
NS
792 /* Assuming we've already been gimplified, we shouldn't
793 see nested chaining constructs anymore. */
794 gcc_assert (TREE_CODE (t) != STATEMENT_LIST
795 && TREE_CODE (t) != COMPOUND_EXPR);
6de9cd9a 796
7c34ced1 797 annotate_one_with_locus (t, locus);
6de9cd9a
DN
798 }
799}
800
801/* Similar to copy_tree_r() but do not copy SAVE_EXPR or TARGET_EXPR nodes.
802 These nodes model computations that should only be done once. If we
803 were to unshare something like SAVE_EXPR(i++), the gimplification
804 process would create wrong code. */
805
806static tree
807mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
808{
809 enum tree_code code = TREE_CODE (*tp);
f0638e1d 810 /* Don't unshare types, decls, constants and SAVE_EXPR nodes. */
6615c446
JO
811 if (TREE_CODE_CLASS (code) == tcc_type
812 || TREE_CODE_CLASS (code) == tcc_declaration
813 || TREE_CODE_CLASS (code) == tcc_constant
6de9cd9a
DN
814 || code == SAVE_EXPR || code == TARGET_EXPR
815 /* We can't do anything sensible with a BLOCK used as an expression,
535a42b1 816 but we also can't just die when we see it because of non-expression
6de9cd9a
DN
817 uses. So just avert our eyes and cross our fingers. Silly Java. */
818 || code == BLOCK)
819 *walk_subtrees = 0;
6de9cd9a 820 else
282899df
NS
821 {
822 gcc_assert (code != BIND_EXPR);
823 copy_tree_r (tp, walk_subtrees, data);
824 }
6de9cd9a
DN
825
826 return NULL_TREE;
827}
828
6de9cd9a
DN
829/* Callback for walk_tree to unshare most of the shared trees rooted at
830 *TP. If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
831 then *TP is deep copied by calling copy_tree_r.
832
833 This unshares the same trees as copy_tree_r with the exception of
834 SAVE_EXPR nodes. These nodes model computations that should only be
835 done once. If we were to unshare something like SAVE_EXPR(i++), the
836 gimplification process would create wrong code. */
837
838static tree
839copy_if_shared_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
840 void *data ATTRIBUTE_UNUSED)
841{
f0638e1d
RH
842 tree t = *tp;
843 enum tree_code code = TREE_CODE (t);
844
44de5aeb
RK
845 /* Skip types, decls, and constants. But we do want to look at their
846 types and the bounds of types. Mark them as visited so we properly
847 unmark their subtrees on the unmark pass. If we've already seen them,
848 don't look down further. */
6615c446
JO
849 if (TREE_CODE_CLASS (code) == tcc_type
850 || TREE_CODE_CLASS (code) == tcc_declaration
851 || TREE_CODE_CLASS (code) == tcc_constant)
44de5aeb
RK
852 {
853 if (TREE_VISITED (t))
854 *walk_subtrees = 0;
855 else
856 TREE_VISITED (t) = 1;
857 }
f0638e1d 858
6de9cd9a
DN
859 /* If this node has been visited already, unshare it and don't look
860 any deeper. */
f0638e1d 861 else if (TREE_VISITED (t))
6de9cd9a
DN
862 {
863 walk_tree (tp, mostly_copy_tree_r, NULL, NULL);
864 *walk_subtrees = 0;
865 }
f0638e1d
RH
866
867 /* Otherwise, mark the tree as visited and keep looking. */
6de9cd9a 868 else
77c9db77 869 TREE_VISITED (t) = 1;
f0638e1d 870
6de9cd9a
DN
871 return NULL_TREE;
872}
873
874static tree
875unmark_visited_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
876 void *data ATTRIBUTE_UNUSED)
877{
878 if (TREE_VISITED (*tp))
879 TREE_VISITED (*tp) = 0;
880 else
881 *walk_subtrees = 0;
882
883 return NULL_TREE;
884}
885
48eb4e53
RK
886/* Unshare all the trees in BODY_P, a pointer into the body of FNDECL, and the
887 bodies of any nested functions if we are unsharing the entire body of
888 FNDECL. */
44de5aeb
RK
889
890static void
891unshare_body (tree *body_p, tree fndecl)
892{
893 struct cgraph_node *cgn = cgraph_node (fndecl);
894
895 walk_tree (body_p, copy_if_shared_r, NULL, NULL);
48eb4e53
RK
896 if (body_p == &DECL_SAVED_TREE (fndecl))
897 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
898 unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
44de5aeb
RK
899}
900
901/* Likewise, but mark all trees as not visited. */
902
903static void
904unvisit_body (tree *body_p, tree fndecl)
905{
906 struct cgraph_node *cgn = cgraph_node (fndecl);
907
908 walk_tree (body_p, unmark_visited_r, NULL, NULL);
48eb4e53
RK
909 if (body_p == &DECL_SAVED_TREE (fndecl))
910 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
911 unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
44de5aeb
RK
912}
913
6de9cd9a
DN
914/* Unshare T and all the trees reached from T via TREE_CHAIN. */
915
c24b7de9 916static void
6de9cd9a
DN
917unshare_all_trees (tree t)
918{
919 walk_tree (&t, copy_if_shared_r, NULL, NULL);
920 walk_tree (&t, unmark_visited_r, NULL, NULL);
921}
922
923/* Unconditionally make an unshared copy of EXPR. This is used when using
924 stored expressions which span multiple functions, such as BINFO_VTABLE,
925 as the normal unsharing process can't tell that they're shared. */
926
927tree
928unshare_expr (tree expr)
929{
930 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
931 return expr;
932}
933
1f838355 934/* A terser interface for building a representation of an exception
6de9cd9a
DN
935 specification. */
936
937tree
938gimple_build_eh_filter (tree body, tree allowed, tree failure)
939{
940 tree t;
941
942 /* FIXME should the allowed types go in TREE_TYPE? */
b4257cfc 943 t = build2 (EH_FILTER_EXPR, void_type_node, allowed, NULL_TREE);
6de9cd9a
DN
944 append_to_statement_list (failure, &EH_FILTER_FAILURE (t));
945
b4257cfc 946 t = build2 (TRY_CATCH_EXPR, void_type_node, NULL_TREE, t);
6de9cd9a
DN
947 append_to_statement_list (body, &TREE_OPERAND (t, 0));
948
949 return t;
950}
951
952\f
953/* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
954 contain statements and have a value. Assign its value to a temporary
955 and give it void_type_node. Returns the temporary, or NULL_TREE if
956 WRAPPER was already void. */
957
958tree
325c3691 959voidify_wrapper_expr (tree wrapper, tree temp)
6de9cd9a 960{
4832214a
JM
961 tree type = TREE_TYPE (wrapper);
962 if (type && !VOID_TYPE_P (type))
6de9cd9a 963 {
c6c7698d 964 tree *p;
6de9cd9a 965
c6c7698d
JM
966 /* Set p to point to the body of the wrapper. Loop until we find
967 something that isn't a wrapper. */
968 for (p = &wrapper; p && *p; )
d3147f64 969 {
c6c7698d 970 switch (TREE_CODE (*p))
6de9cd9a 971 {
c6c7698d
JM
972 case BIND_EXPR:
973 TREE_SIDE_EFFECTS (*p) = 1;
974 TREE_TYPE (*p) = void_type_node;
975 /* For a BIND_EXPR, the body is operand 1. */
976 p = &BIND_EXPR_BODY (*p);
977 break;
978
979 case CLEANUP_POINT_EXPR:
980 case TRY_FINALLY_EXPR:
981 case TRY_CATCH_EXPR:
6de9cd9a
DN
982 TREE_SIDE_EFFECTS (*p) = 1;
983 TREE_TYPE (*p) = void_type_node;
c6c7698d
JM
984 p = &TREE_OPERAND (*p, 0);
985 break;
986
987 case STATEMENT_LIST:
988 {
989 tree_stmt_iterator i = tsi_last (*p);
990 TREE_SIDE_EFFECTS (*p) = 1;
991 TREE_TYPE (*p) = void_type_node;
992 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
993 }
994 break;
995
996 case COMPOUND_EXPR:
997 /* Advance to the last statement. Set all container types to void. */
998 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
999 {
1000 TREE_SIDE_EFFECTS (*p) = 1;
1001 TREE_TYPE (*p) = void_type_node;
1002 }
1003 break;
1004
1005 default:
1006 goto out;
6de9cd9a
DN
1007 }
1008 }
1009
c6c7698d 1010 out:
325c3691 1011 if (p == NULL || IS_EMPTY_STMT (*p))
c6c7698d
JM
1012 temp = NULL_TREE;
1013 else if (temp)
6de9cd9a 1014 {
c6c7698d
JM
1015 /* The wrapper is on the RHS of an assignment that we're pushing
1016 down. */
1017 gcc_assert (TREE_CODE (temp) == INIT_EXPR
e7073e64 1018 || TREE_CODE (temp) == GIMPLE_MODIFY_STMT
c6c7698d 1019 || TREE_CODE (temp) == MODIFY_EXPR);
c0893ec0 1020 GENERIC_TREE_OPERAND (temp, 1) = *p;
c6c7698d 1021 *p = temp;
6de9cd9a
DN
1022 }
1023 else
1024 {
c6c7698d
JM
1025 temp = create_tmp_var (type, "retval");
1026 *p = build2 (INIT_EXPR, type, temp, *p);
6de9cd9a
DN
1027 }
1028
6de9cd9a
DN
1029 return temp;
1030 }
1031
1032 return NULL_TREE;
1033}
1034
1035/* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1ea7e6ad 1036 a temporary through which they communicate. */
6de9cd9a
DN
1037
1038static void
1039build_stack_save_restore (tree *save, tree *restore)
1040{
1041 tree save_call, tmp_var;
1042
1043 save_call =
5039610b 1044 build_call_expr (implicit_built_in_decls[BUILT_IN_STACK_SAVE], 0);
6de9cd9a
DN
1045 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1046
b56b9fe3 1047 *save = build_gimple_modify_stmt (tmp_var, save_call);
6de9cd9a 1048 *restore =
5039610b
SL
1049 build_call_expr (implicit_built_in_decls[BUILT_IN_STACK_RESTORE],
1050 1, tmp_var);
6de9cd9a
DN
1051}
1052
1053/* Gimplify a BIND_EXPR. Just voidify and recurse. */
1054
1055static enum gimplify_status
c6c7698d 1056gimplify_bind_expr (tree *expr_p, tree *pre_p)
6de9cd9a
DN
1057{
1058 tree bind_expr = *expr_p;
6de9cd9a
DN
1059 bool old_save_stack = gimplify_ctxp->save_stack;
1060 tree t;
1061
c6c7698d 1062 tree temp = voidify_wrapper_expr (bind_expr, NULL);
325c3691 1063
6de9cd9a
DN
1064 /* Mark variables seen in this bind expr. */
1065 for (t = BIND_EXPR_VARS (bind_expr); t ; t = TREE_CHAIN (t))
e41d82f5 1066 {
820cc88f 1067 if (TREE_CODE (t) == VAR_DECL)
8cb86b65
JJ
1068 {
1069 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1070
1071 /* Mark variable as local. */
1072 if (ctx && !is_global_var (t)
1073 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1074 || splay_tree_lookup (ctx->variables,
1075 (splay_tree_key) t) == NULL))
1076 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1077
1078 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1079 }
e41d82f5
RH
1080
1081 /* Preliminarily mark non-addressed complex variables as eligible
1082 for promotion to gimple registers. We'll transform their uses
1083 as we find them. */
0890b981
AP
1084 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1085 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
e41d82f5
RH
1086 && !TREE_THIS_VOLATILE (t)
1087 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1088 && !needs_to_live_in_memory (t))
0890b981 1089 DECL_GIMPLE_REG_P (t) = 1;
e41d82f5 1090 }
6de9cd9a
DN
1091
1092 gimple_push_bind_expr (bind_expr);
1093 gimplify_ctxp->save_stack = false;
1094
1095 gimplify_to_stmt_list (&BIND_EXPR_BODY (bind_expr));
1096
1097 if (gimplify_ctxp->save_stack)
1098 {
1099 tree stack_save, stack_restore;
1100
1101 /* Save stack on entry and restore it on exit. Add a try_finally
1102 block to achieve this. Note that mudflap depends on the
1103 format of the emitted code: see mx_register_decls(). */
1104 build_stack_save_restore (&stack_save, &stack_restore);
1105
b4257cfc
RG
1106 t = build2 (TRY_FINALLY_EXPR, void_type_node,
1107 BIND_EXPR_BODY (bind_expr), NULL_TREE);
6de9cd9a
DN
1108 append_to_statement_list (stack_restore, &TREE_OPERAND (t, 1));
1109
1110 BIND_EXPR_BODY (bind_expr) = NULL_TREE;
1111 append_to_statement_list (stack_save, &BIND_EXPR_BODY (bind_expr));
1112 append_to_statement_list (t, &BIND_EXPR_BODY (bind_expr));
1113 }
1114
1115 gimplify_ctxp->save_stack = old_save_stack;
1116 gimple_pop_bind_expr ();
1117
1118 if (temp)
1119 {
1120 *expr_p = temp;
1121 append_to_statement_list (bind_expr, pre_p);
1122 return GS_OK;
1123 }
1124 else
1125 return GS_ALL_DONE;
1126}
1127
1128/* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1129 GIMPLE value, it is assigned to a new temporary and the statement is
1130 re-written to return the temporary.
1131
1132 PRE_P points to the list where side effects that must happen before
1133 STMT should be stored. */
1134
1135static enum gimplify_status
1136gimplify_return_expr (tree stmt, tree *pre_p)
1137{
1138 tree ret_expr = TREE_OPERAND (stmt, 0);
71877985 1139 tree result_decl, result;
6de9cd9a 1140
55e99d52
PB
1141 if (!ret_expr || TREE_CODE (ret_expr) == RESULT_DECL
1142 || ret_expr == error_mark_node)
6de9cd9a
DN
1143 return GS_ALL_DONE;
1144
6de9cd9a 1145 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
71877985 1146 result_decl = NULL_TREE;
6de9cd9a
DN
1147 else
1148 {
07beea0d 1149 result_decl = GENERIC_TREE_OPERAND (ret_expr, 0);
cc77ae10
JM
1150 if (TREE_CODE (result_decl) == INDIRECT_REF)
1151 /* See through a return by reference. */
1152 result_decl = TREE_OPERAND (result_decl, 0);
282899df
NS
1153
1154 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
07beea0d 1155 || TREE_CODE (ret_expr) == GIMPLE_MODIFY_STMT
282899df
NS
1156 || TREE_CODE (ret_expr) == INIT_EXPR)
1157 && TREE_CODE (result_decl) == RESULT_DECL);
6de9cd9a
DN
1158 }
1159
71877985
RH
1160 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1161 Recall that aggregate_value_p is FALSE for any aggregate type that is
1162 returned in registers. If we're returning values in registers, then
1163 we don't want to extend the lifetime of the RESULT_DECL, particularly
d3147f64 1164 across another call. In addition, for those aggregates for which
535a42b1 1165 hard_function_value generates a PARALLEL, we'll die during normal
71877985
RH
1166 expansion of structure assignments; there's special code in expand_return
1167 to handle this case that does not exist in expand_expr. */
1168 if (!result_decl
1169 || aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1170 result = result_decl;
1171 else if (gimplify_ctxp->return_temp)
1172 result = gimplify_ctxp->return_temp;
1173 else
1174 {
1175 result = create_tmp_var (TREE_TYPE (result_decl), NULL);
a441d616
AP
1176 if (TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
1177 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
1178 DECL_GIMPLE_REG_P (result) = 1;
ff98621c
RH
1179
1180 /* ??? With complex control flow (usually involving abnormal edges),
1181 we can wind up warning about an uninitialized value for this. Due
1182 to how this variable is constructed and initialized, this is never
1183 true. Give up and never warn. */
1184 TREE_NO_WARNING (result) = 1;
1185
71877985
RH
1186 gimplify_ctxp->return_temp = result;
1187 }
1188
07beea0d 1189 /* Smash the lhs of the GIMPLE_MODIFY_STMT to the temporary we plan to use.
71877985
RH
1190 Then gimplify the whole thing. */
1191 if (result != result_decl)
07beea0d 1192 GENERIC_TREE_OPERAND (ret_expr, 0) = result;
fff34d35
RK
1193
1194 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
6de9cd9a 1195
71877985
RH
1196 /* If we didn't use a temporary, then the result is just the result_decl.
1197 Otherwise we need a simple copy. This should already be gimple. */
1198 if (result == result_decl)
1199 ret_expr = result;
1200 else
b56b9fe3 1201 ret_expr = build_gimple_modify_stmt (result_decl, result);
71877985 1202 TREE_OPERAND (stmt, 0) = ret_expr;
6de9cd9a 1203
6de9cd9a
DN
1204 return GS_ALL_DONE;
1205}
1206
350fae66
RK
1207/* Gimplifies a DECL_EXPR node *STMT_P by making any necessary allocation
1208 and initialization explicit. */
1209
1210static enum gimplify_status
1211gimplify_decl_expr (tree *stmt_p)
1212{
1213 tree stmt = *stmt_p;
1214 tree decl = DECL_EXPR_DECL (stmt);
1215
1216 *stmt_p = NULL_TREE;
1217
1218 if (TREE_TYPE (decl) == error_mark_node)
1219 return GS_ERROR;
1220
8e0a600b
JJ
1221 if ((TREE_CODE (decl) == TYPE_DECL
1222 || TREE_CODE (decl) == VAR_DECL)
1223 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
350fae66
RK
1224 gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
1225
8e0a600b 1226 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
350fae66
RK
1227 {
1228 tree init = DECL_INITIAL (decl);
1229
4c923c28 1230 if (TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
350fae66
RK
1231 {
1232 /* This is a variable-sized decl. Simplify its size and mark it
1233 for deferred expansion. Note that mudflap depends on the format
1234 of the emitted code: see mx_register_decls(). */
5039610b 1235 tree t, addr, ptr_type;
350fae66 1236
350fae66
RK
1237 gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p);
1238 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), stmt_p);
1239
2a7e31df 1240 /* All occurrences of this decl in final gimplified code will be
1a186ec5
RH
1241 replaced by indirection. Setting DECL_VALUE_EXPR does two
1242 things: First, it lets the rest of the gimplifier know what
d3147f64 1243 replacement to use. Second, it lets the debug info know
1a186ec5
RH
1244 where to find the value. */
1245 ptr_type = build_pointer_type (TREE_TYPE (decl));
1246 addr = create_tmp_var (ptr_type, get_name (decl));
1247 DECL_IGNORED_P (addr) = 0;
1248 t = build_fold_indirect_ref (addr);
833b3afe
DB
1249 SET_DECL_VALUE_EXPR (decl, t);
1250 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1a186ec5 1251
1a186ec5 1252 t = built_in_decls[BUILT_IN_ALLOCA];
5039610b 1253 t = build_call_expr (t, 1, DECL_SIZE_UNIT (decl));
1a186ec5 1254 t = fold_convert (ptr_type, t);
b56b9fe3 1255 t = build_gimple_modify_stmt (addr, t);
350fae66
RK
1256
1257 gimplify_and_add (t, stmt_p);
1a186ec5
RH
1258
1259 /* Indicate that we need to restore the stack level when the
1260 enclosing BIND_EXPR is exited. */
1261 gimplify_ctxp->save_stack = true;
350fae66
RK
1262 }
1263
1264 if (init && init != error_mark_node)
1265 {
1266 if (!TREE_STATIC (decl))
1267 {
1268 DECL_INITIAL (decl) = NULL_TREE;
dae7ec87 1269 init = build2 (INIT_EXPR, void_type_node, decl, init);
350fae66
RK
1270 gimplify_and_add (init, stmt_p);
1271 }
1272 else
1273 /* We must still examine initializers for static variables
1274 as they may contain a label address. */
1275 walk_tree (&init, force_labels_r, NULL, NULL);
1276 }
1277
e92fb501
MM
1278 /* Some front ends do not explicitly declare all anonymous
1279 artificial variables. We compensate here by declaring the
1280 variables, though it would be better if the front ends would
1281 explicitly declare them. */
1282 if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1283 && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
350fae66
RK
1284 gimple_add_tmp_var (decl);
1285 }
1286
1287 return GS_ALL_DONE;
1288}
1289
6de9cd9a
DN
1290/* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1291 and replacing the LOOP_EXPR with goto, but if the loop contains an
1292 EXIT_EXPR, we need to append a label for it to jump to. */
1293
1294static enum gimplify_status
1295gimplify_loop_expr (tree *expr_p, tree *pre_p)
1296{
1297 tree saved_label = gimplify_ctxp->exit_label;
1298 tree start_label = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
1299 tree jump_stmt = build_and_jump (&LABEL_EXPR_LABEL (start_label));
1300
1301 append_to_statement_list (start_label, pre_p);
1302
1303 gimplify_ctxp->exit_label = NULL_TREE;
1304
fff34d35 1305 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
6de9cd9a
DN
1306
1307 if (gimplify_ctxp->exit_label)
1308 {
1309 append_to_statement_list (jump_stmt, pre_p);
1310 *expr_p = build1 (LABEL_EXPR, void_type_node, gimplify_ctxp->exit_label);
1311 }
1312 else
1313 *expr_p = jump_stmt;
1314
1315 gimplify_ctxp->exit_label = saved_label;
1316
1317 return GS_ALL_DONE;
1318}
1319
f667741c
SB
1320/* Compare two case labels. Because the front end should already have
1321 made sure that case ranges do not overlap, it is enough to only compare
1322 the CASE_LOW values of each case label. */
1323
1324static int
1325compare_case_labels (const void *p1, const void *p2)
1326{
1327 tree case1 = *(tree *)p1;
1328 tree case2 = *(tree *)p2;
1329
1330 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1331}
1332
165b54c3 1333/* Sort the case labels in LABEL_VEC in place in ascending order. */
0f1f6967
SB
1334
1335void
1336sort_case_labels (tree label_vec)
1337{
1338 size_t len = TREE_VEC_LENGTH (label_vec);
1339 tree default_case = TREE_VEC_ELT (label_vec, len - 1);
1340
1341 if (CASE_LOW (default_case))
1342 {
1343 size_t i;
1344
1345 /* The last label in the vector should be the default case
1346 but it is not. */
1347 for (i = 0; i < len; ++i)
1348 {
1349 tree t = TREE_VEC_ELT (label_vec, i);
1350 if (!CASE_LOW (t))
1351 {
1352 default_case = t;
1353 TREE_VEC_ELT (label_vec, i) = TREE_VEC_ELT (label_vec, len - 1);
1354 TREE_VEC_ELT (label_vec, len - 1) = default_case;
1355 break;
1356 }
1357 }
1358 }
1359
1360 qsort (&TREE_VEC_ELT (label_vec, 0), len - 1, sizeof (tree),
1361 compare_case_labels);
1362}
1363
6de9cd9a
DN
1364/* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1365 branch to. */
1366
1367static enum gimplify_status
1368gimplify_switch_expr (tree *expr_p, tree *pre_p)
1369{
1370 tree switch_expr = *expr_p;
1371 enum gimplify_status ret;
1372
1373 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL,
1374 is_gimple_val, fb_rvalue);
1375
1376 if (SWITCH_BODY (switch_expr))
1377 {
84c76d40 1378 VEC(tree,heap) *labels, *saved_labels;
f667741c 1379 tree label_vec, default_case = NULL_TREE;
6de9cd9a
DN
1380 size_t i, len;
1381
1382 /* If someone can be bothered to fill in the labels, they can
1383 be bothered to null out the body too. */
282899df 1384 gcc_assert (!SWITCH_LABELS (switch_expr));
6de9cd9a
DN
1385
1386 saved_labels = gimplify_ctxp->case_labels;
84c76d40 1387 gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
6de9cd9a
DN
1388
1389 gimplify_to_stmt_list (&SWITCH_BODY (switch_expr));
1390
1391 labels = gimplify_ctxp->case_labels;
1392 gimplify_ctxp->case_labels = saved_labels;
1393
3feaea00
EB
1394 i = 0;
1395 while (i < VEC_length (tree, labels))
6de9cd9a 1396 {
3feaea00
EB
1397 tree elt = VEC_index (tree, labels, i);
1398 tree low = CASE_LOW (elt);
1399 bool remove_element = FALSE;
1400
1401 if (low)
1402 {
1403 /* Discard empty ranges. */
1404 tree high = CASE_HIGH (elt);
1405 if (high && INT_CST_LT (high, low))
1406 remove_element = TRUE;
1407 }
1408 else
6de9cd9a 1409 {
f667741c 1410 /* The default case must be the last label in the list. */
3feaea00
EB
1411 gcc_assert (!default_case);
1412 default_case = elt;
1413 remove_element = TRUE;
6de9cd9a 1414 }
3feaea00
EB
1415
1416 if (remove_element)
1417 VEC_ordered_remove (tree, labels, i);
1418 else
1419 i++;
6de9cd9a 1420 }
3feaea00 1421 len = i;
6de9cd9a 1422
f667741c 1423 label_vec = make_tree_vec (len + 1);
6de9cd9a 1424 SWITCH_LABELS (*expr_p) = label_vec;
6de9cd9a
DN
1425 append_to_statement_list (switch_expr, pre_p);
1426
f667741c 1427 if (! default_case)
6de9cd9a 1428 {
f667741c
SB
1429 /* If the switch has no default label, add one, so that we jump
1430 around the switch body. */
b4257cfc
RG
1431 default_case = build3 (CASE_LABEL_EXPR, void_type_node, NULL_TREE,
1432 NULL_TREE, create_artificial_label ());
6de9cd9a 1433 append_to_statement_list (SWITCH_BODY (switch_expr), pre_p);
b4257cfc
RG
1434 *expr_p = build1 (LABEL_EXPR, void_type_node,
1435 CASE_LABEL (default_case));
6de9cd9a
DN
1436 }
1437 else
1438 *expr_p = SWITCH_BODY (switch_expr);
1439
f667741c 1440 for (i = 0; i < len; ++i)
84c76d40 1441 TREE_VEC_ELT (label_vec, i) = VEC_index (tree, labels, i);
f667741c
SB
1442 TREE_VEC_ELT (label_vec, len) = default_case;
1443
84c76d40
KH
1444 VEC_free (tree, heap, labels);
1445
0f1f6967
SB
1446 sort_case_labels (label_vec);
1447
6de9cd9a
DN
1448 SWITCH_BODY (switch_expr) = NULL;
1449 }
282899df
NS
1450 else
1451 gcc_assert (SWITCH_LABELS (switch_expr));
6de9cd9a
DN
1452
1453 return ret;
1454}
1455
1456static enum gimplify_status
1457gimplify_case_label_expr (tree *expr_p)
1458{
1459 tree expr = *expr_p;
953ff289
DN
1460 struct gimplify_ctx *ctxp;
1461
1462 /* Invalid OpenMP programs can play Duff's Device type games with
1463 #pragma omp parallel. At least in the C front end, we don't
1464 detect such invalid branches until after gimplification. */
1465 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1466 if (ctxp->case_labels)
1467 break;
282899df 1468
953ff289 1469 VEC_safe_push (tree, heap, ctxp->case_labels, expr);
b4257cfc 1470 *expr_p = build1 (LABEL_EXPR, void_type_node, CASE_LABEL (expr));
6de9cd9a
DN
1471 return GS_ALL_DONE;
1472}
1473
6de9cd9a
DN
1474/* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1475 if necessary. */
1476
1477tree
1478build_and_jump (tree *label_p)
1479{
1480 if (label_p == NULL)
1481 /* If there's nowhere to jump, just fall through. */
65355d53 1482 return NULL_TREE;
6de9cd9a
DN
1483
1484 if (*label_p == NULL_TREE)
1485 {
1486 tree label = create_artificial_label ();
1487 *label_p = label;
1488 }
1489
1490 return build1 (GOTO_EXPR, void_type_node, *label_p);
1491}
1492
1493/* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1494 This also involves building a label to jump to and communicating it to
1495 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1496
1497static enum gimplify_status
1498gimplify_exit_expr (tree *expr_p)
1499{
1500 tree cond = TREE_OPERAND (*expr_p, 0);
1501 tree expr;
1502
1503 expr = build_and_jump (&gimplify_ctxp->exit_label);
b4257cfc 1504 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
6de9cd9a
DN
1505 *expr_p = expr;
1506
1507 return GS_OK;
1508}
1509
1510/* A helper function to be called via walk_tree. Mark all labels under *TP
1511 as being forced. To be called for DECL_INITIAL of static variables. */
1512
1513tree
1514force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1515{
1516 if (TYPE_P (*tp))
1517 *walk_subtrees = 0;
1518 if (TREE_CODE (*tp) == LABEL_DECL)
1519 FORCED_LABEL (*tp) = 1;
1520
1521 return NULL_TREE;
1522}
1523
26d44ae2
RH
1524/* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1525 different from its canonical type, wrap the whole thing inside a
1526 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1527 type.
6de9cd9a 1528
26d44ae2
RH
1529 The canonical type of a COMPONENT_REF is the type of the field being
1530 referenced--unless the field is a bit-field which can be read directly
1531 in a smaller mode, in which case the canonical type is the
1532 sign-appropriate type corresponding to that mode. */
6de9cd9a 1533
26d44ae2
RH
1534static void
1535canonicalize_component_ref (tree *expr_p)
6de9cd9a 1536{
26d44ae2
RH
1537 tree expr = *expr_p;
1538 tree type;
6de9cd9a 1539
282899df 1540 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
6de9cd9a 1541
26d44ae2
RH
1542 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1543 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1544 else
1545 type = TREE_TYPE (TREE_OPERAND (expr, 1));
6de9cd9a 1546
26d44ae2 1547 if (TREE_TYPE (expr) != type)
6de9cd9a 1548 {
26d44ae2 1549 tree old_type = TREE_TYPE (expr);
6de9cd9a 1550
26d44ae2
RH
1551 /* Set the type of the COMPONENT_REF to the underlying type. */
1552 TREE_TYPE (expr) = type;
6de9cd9a 1553
26d44ae2
RH
1554 /* And wrap the whole thing inside a NOP_EXPR. */
1555 expr = build1 (NOP_EXPR, old_type, expr);
6de9cd9a 1556
26d44ae2
RH
1557 *expr_p = expr;
1558 }
1559}
6de9cd9a 1560
26d44ae2 1561/* If a NOP conversion is changing a pointer to array of foo to a pointer
d3147f64 1562 to foo, embed that change in the ADDR_EXPR by converting
26d44ae2
RH
1563 T array[U];
1564 (T *)&array
1565 ==>
1566 &array[L]
1567 where L is the lower bound. For simplicity, only do this for constant
1568 lower bound. */
6de9cd9a 1569
26d44ae2
RH
1570static void
1571canonicalize_addr_expr (tree *expr_p)
1572{
1573 tree expr = *expr_p;
1574 tree ctype = TREE_TYPE (expr);
1575 tree addr_expr = TREE_OPERAND (expr, 0);
1576 tree atype = TREE_TYPE (addr_expr);
1577 tree dctype, datype, ddatype, otype, obj_expr;
6de9cd9a 1578
26d44ae2
RH
1579 /* Both cast and addr_expr types should be pointers. */
1580 if (!POINTER_TYPE_P (ctype) || !POINTER_TYPE_P (atype))
1581 return;
6de9cd9a 1582
26d44ae2
RH
1583 /* The addr_expr type should be a pointer to an array. */
1584 datype = TREE_TYPE (atype);
1585 if (TREE_CODE (datype) != ARRAY_TYPE)
1586 return;
6de9cd9a 1587
26d44ae2
RH
1588 /* Both cast and addr_expr types should address the same object type. */
1589 dctype = TREE_TYPE (ctype);
1590 ddatype = TREE_TYPE (datype);
1591 if (!lang_hooks.types_compatible_p (ddatype, dctype))
1592 return;
6de9cd9a 1593
26d44ae2
RH
1594 /* The addr_expr and the object type should match. */
1595 obj_expr = TREE_OPERAND (addr_expr, 0);
1596 otype = TREE_TYPE (obj_expr);
1597 if (!lang_hooks.types_compatible_p (otype, datype))
1598 return;
6de9cd9a 1599
26d44ae2 1600 /* The lower bound and element sizes must be constant. */
0710ccff
NS
1601 if (!TYPE_SIZE_UNIT (dctype)
1602 || TREE_CODE (TYPE_SIZE_UNIT (dctype)) != INTEGER_CST
26d44ae2
RH
1603 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1604 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1605 return;
6de9cd9a 1606
26d44ae2
RH
1607 /* All checks succeeded. Build a new node to merge the cast. */
1608 *expr_p = build4 (ARRAY_REF, dctype, obj_expr,
1609 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
5852948c 1610 NULL_TREE, NULL_TREE);
26d44ae2
RH
1611 *expr_p = build1 (ADDR_EXPR, ctype, *expr_p);
1612}
6de9cd9a 1613
26d44ae2
RH
1614/* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1615 underneath as appropriate. */
6de9cd9a 1616
26d44ae2
RH
1617static enum gimplify_status
1618gimplify_conversion (tree *expr_p)
d3147f64 1619{
fe9821b8 1620 tree tem;
0710ccff
NS
1621 gcc_assert (TREE_CODE (*expr_p) == NOP_EXPR
1622 || TREE_CODE (*expr_p) == CONVERT_EXPR);
1623
1624 /* Then strip away all but the outermost conversion. */
1625 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1626
1627 /* And remove the outermost conversion if it's useless. */
1628 if (tree_ssa_useless_type_conversion (*expr_p))
1629 *expr_p = TREE_OPERAND (*expr_p, 0);
6de9cd9a 1630
fe9821b8
JH
1631 /* Attempt to avoid NOP_EXPR by producing reference to a subtype.
1632 For example this fold (subclass *)&A into &A->subclass avoiding
1633 a need for statement. */
1634 if (TREE_CODE (*expr_p) == NOP_EXPR
1635 && POINTER_TYPE_P (TREE_TYPE (*expr_p))
1636 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (*expr_p, 0)))
1637 && (tem = maybe_fold_offset_to_reference
1638 (TREE_OPERAND (*expr_p, 0),
1639 integer_zero_node, TREE_TYPE (TREE_TYPE (*expr_p)))))
1640 *expr_p = build_fold_addr_expr_with_type (tem, TREE_TYPE (*expr_p));
1641
26d44ae2
RH
1642 /* If we still have a conversion at the toplevel,
1643 then canonicalize some constructs. */
1644 if (TREE_CODE (*expr_p) == NOP_EXPR || TREE_CODE (*expr_p) == CONVERT_EXPR)
1645 {
1646 tree sub = TREE_OPERAND (*expr_p, 0);
6de9cd9a 1647
26d44ae2
RH
1648 /* If a NOP conversion is changing the type of a COMPONENT_REF
1649 expression, then canonicalize its type now in order to expose more
1650 redundant conversions. */
1651 if (TREE_CODE (sub) == COMPONENT_REF)
1652 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
6de9cd9a 1653
26d44ae2
RH
1654 /* If a NOP conversion is changing a pointer to array of foo
1655 to a pointer to foo, embed that change in the ADDR_EXPR. */
1656 else if (TREE_CODE (sub) == ADDR_EXPR)
1657 canonicalize_addr_expr (expr_p);
1658 }
6de9cd9a
DN
1659
1660 return GS_OK;
1661}
1662
a9f7c570
RH
1663/* Gimplify a VAR_DECL or PARM_DECL. Returns GS_OK if we expanded a
1664 DECL_VALUE_EXPR, and it's worth re-examining things. */
1665
1666static enum gimplify_status
1667gimplify_var_or_parm_decl (tree *expr_p)
1668{
1669 tree decl = *expr_p;
1670
1671 /* ??? If this is a local variable, and it has not been seen in any
1672 outer BIND_EXPR, then it's probably the result of a duplicate
1673 declaration, for which we've already issued an error. It would
1674 be really nice if the front end wouldn't leak these at all.
1675 Currently the only known culprit is C++ destructors, as seen
1676 in g++.old-deja/g++.jason/binding.C. */
1677 if (TREE_CODE (decl) == VAR_DECL
1678 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
1679 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
1680 && decl_function_context (decl) == current_function_decl)
1681 {
1682 gcc_assert (errorcount || sorrycount);
1683 return GS_ERROR;
1684 }
1685
953ff289
DN
1686 /* When within an OpenMP context, notice uses of variables. */
1687 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
1688 return GS_ALL_DONE;
1689
a9f7c570
RH
1690 /* If the decl is an alias for another expression, substitute it now. */
1691 if (DECL_HAS_VALUE_EXPR_P (decl))
1692 {
1693 *expr_p = unshare_expr (DECL_VALUE_EXPR (decl));
1694 return GS_OK;
1695 }
1696
1697 return GS_ALL_DONE;
1698}
1699
1700
6de9cd9a 1701/* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
206048bd 1702 node pointed to by EXPR_P.
6de9cd9a
DN
1703
1704 compound_lval
1705 : min_lval '[' val ']'
1706 | min_lval '.' ID
1707 | compound_lval '[' val ']'
1708 | compound_lval '.' ID
1709
1710 This is not part of the original SIMPLE definition, which separates
1711 array and member references, but it seems reasonable to handle them
1712 together. Also, this way we don't run into problems with union
1713 aliasing; gcc requires that for accesses through a union to alias, the
1714 union reference must be explicit, which was not always the case when we
1715 were splitting up array and member refs.
1716
1717 PRE_P points to the list where side effects that must happen before
1718 *EXPR_P should be stored.
1719
1720 POST_P points to the list where side effects that must happen after
1721 *EXPR_P should be stored. */
1722
1723static enum gimplify_status
1724gimplify_compound_lval (tree *expr_p, tree *pre_p,
90051e16 1725 tree *post_p, fallback_t fallback)
6de9cd9a
DN
1726{
1727 tree *p;
ec234842 1728 VEC(tree,heap) *stack;
44de5aeb 1729 enum gimplify_status ret = GS_OK, tret;
af72267c 1730 int i;
6de9cd9a 1731
6de9cd9a 1732 /* Create a stack of the subexpressions so later we can walk them in
ec234842
KH
1733 order from inner to outer. */
1734 stack = VEC_alloc (tree, heap, 10);
6de9cd9a 1735
afe84921 1736 /* We can handle anything that get_inner_reference can deal with. */
6a720599
JM
1737 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
1738 {
a9f7c570 1739 restart:
6a720599
JM
1740 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
1741 if (TREE_CODE (*p) == INDIRECT_REF)
1742 *p = fold_indirect_ref (*p);
a9f7c570
RH
1743
1744 if (handled_component_p (*p))
1745 ;
1746 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
1747 additional COMPONENT_REFs. */
1748 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
1749 && gimplify_var_or_parm_decl (p) == GS_OK)
1750 goto restart;
1751 else
6a720599 1752 break;
a9f7c570 1753
ec234842 1754 VEC_safe_push (tree, heap, stack, *p);
6a720599 1755 }
6de9cd9a 1756
ec234842 1757 gcc_assert (VEC_length (tree, stack));
9e51aaf5 1758
44de5aeb
RK
1759 /* Now STACK is a stack of pointers to all the refs we've walked through
1760 and P points to the innermost expression.
6de9cd9a 1761
af72267c
RK
1762 Java requires that we elaborated nodes in source order. That
1763 means we must gimplify the inner expression followed by each of
1764 the indices, in order. But we can't gimplify the inner
1765 expression until we deal with any variable bounds, sizes, or
1766 positions in order to deal with PLACEHOLDER_EXPRs.
1767
1768 So we do this in three steps. First we deal with the annotations
1769 for any variables in the components, then we gimplify the base,
1770 then we gimplify any indices, from left to right. */
ec234842 1771 for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
6de9cd9a 1772 {
ec234842 1773 tree t = VEC_index (tree, stack, i);
44de5aeb
RK
1774
1775 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
6de9cd9a 1776 {
44de5aeb
RK
1777 /* Gimplify the low bound and element type size and put them into
1778 the ARRAY_REF. If these values are set, they have already been
1779 gimplified. */
1780 if (!TREE_OPERAND (t, 2))
1781 {
a7cc468a
RH
1782 tree low = unshare_expr (array_ref_low_bound (t));
1783 if (!is_gimple_min_invariant (low))
44de5aeb 1784 {
a7cc468a 1785 TREE_OPERAND (t, 2) = low;
44de5aeb 1786 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
17ad5b5e 1787 is_gimple_formal_tmp_reg, fb_rvalue);
44de5aeb
RK
1788 ret = MIN (ret, tret);
1789 }
1790 }
1791
1792 if (!TREE_OPERAND (t, 3))
1793 {
1794 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
1795 tree elmt_size = unshare_expr (array_ref_element_size (t));
a4e9ffe5 1796 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
44de5aeb
RK
1797
1798 /* Divide the element size by the alignment of the element
1799 type (above). */
1800 elmt_size = size_binop (EXACT_DIV_EXPR, elmt_size, factor);
1801
a7cc468a 1802 if (!is_gimple_min_invariant (elmt_size))
44de5aeb 1803 {
a7cc468a 1804 TREE_OPERAND (t, 3) = elmt_size;
44de5aeb 1805 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
17ad5b5e 1806 is_gimple_formal_tmp_reg, fb_rvalue);
44de5aeb
RK
1807 ret = MIN (ret, tret);
1808 }
6de9cd9a
DN
1809 }
1810 }
44de5aeb
RK
1811 else if (TREE_CODE (t) == COMPONENT_REF)
1812 {
1813 /* Set the field offset into T and gimplify it. */
1814 if (!TREE_OPERAND (t, 2))
1815 {
1816 tree offset = unshare_expr (component_ref_field_offset (t));
1817 tree field = TREE_OPERAND (t, 1);
1818 tree factor
1819 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
1820
1821 /* Divide the offset by its alignment. */
1822 offset = size_binop (EXACT_DIV_EXPR, offset, factor);
1823
a7cc468a 1824 if (!is_gimple_min_invariant (offset))
44de5aeb 1825 {
a7cc468a 1826 TREE_OPERAND (t, 2) = offset;
44de5aeb 1827 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
17ad5b5e 1828 is_gimple_formal_tmp_reg, fb_rvalue);
44de5aeb
RK
1829 ret = MIN (ret, tret);
1830 }
1831 }
1832 }
af72267c
RK
1833 }
1834
a9f7c570
RH
1835 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
1836 so as to match the min_lval predicate. Failure to do so may result
1837 in the creation of large aggregate temporaries. */
1838 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
1839 fallback | fb_lvalue);
af72267c
RK
1840 ret = MIN (ret, tret);
1841
48eb4e53
RK
1842 /* And finally, the indices and operands to BIT_FIELD_REF. During this
1843 loop we also remove any useless conversions. */
ec234842 1844 for (; VEC_length (tree, stack) > 0; )
af72267c 1845 {
ec234842 1846 tree t = VEC_pop (tree, stack);
af72267c
RK
1847
1848 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1849 {
1850 /* Gimplify the dimension.
1851 Temporary fix for gcc.c-torture/execute/20040313-1.c.
1852 Gimplify non-constant array indices into a temporary
1853 variable.
1854 FIXME - The real fix is to gimplify post-modify
1855 expressions into a minimal gimple lvalue. However, that
1856 exposes bugs in alias analysis. The alias analyzer does
1857 not handle &PTR->FIELD very well. Will fix after the
1858 branch is merged into mainline (dnovillo 2004-05-03). */
1859 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
1860 {
1861 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
17ad5b5e 1862 is_gimple_formal_tmp_reg, fb_rvalue);
af72267c
RK
1863 ret = MIN (ret, tret);
1864 }
1865 }
44de5aeb
RK
1866 else if (TREE_CODE (t) == BIT_FIELD_REF)
1867 {
1868 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1869 is_gimple_val, fb_rvalue);
1870 ret = MIN (ret, tret);
1871 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1872 is_gimple_val, fb_rvalue);
1873 ret = MIN (ret, tret);
1874 }
48eb4e53
RK
1875
1876 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
1877
af72267c
RK
1878 /* The innermost expression P may have originally had TREE_SIDE_EFFECTS
1879 set which would have caused all the outer expressions in EXPR_P
1880 leading to P to also have had TREE_SIDE_EFFECTS set. */
6de9cd9a 1881 recalculate_side_effects (t);
6de9cd9a
DN
1882 }
1883
90051e16 1884 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
44de5aeb
RK
1885 ret = MIN (ret, tret);
1886
6de9cd9a 1887 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
90051e16 1888 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
6de9cd9a
DN
1889 {
1890 canonicalize_component_ref (expr_p);
1891 ret = MIN (ret, GS_OK);
1892 }
1893
ec234842 1894 VEC_free (tree, heap, stack);
07724022 1895
6de9cd9a
DN
1896 return ret;
1897}
1898
206048bd
VR
1899/* Gimplify the self modifying expression pointed to by EXPR_P
1900 (++, --, +=, -=).
6de9cd9a
DN
1901
1902 PRE_P points to the list where side effects that must happen before
1903 *EXPR_P should be stored.
1904
1905 POST_P points to the list where side effects that must happen after
1906 *EXPR_P should be stored.
1907
1908 WANT_VALUE is nonzero iff we want to use the value of this expression
1909 in another expression. */
1910
1911static enum gimplify_status
1912gimplify_self_mod_expr (tree *expr_p, tree *pre_p, tree *post_p,
44de5aeb 1913 bool want_value)
6de9cd9a
DN
1914{
1915 enum tree_code code;
82181741 1916 tree lhs, lvalue, rhs, t1, post = NULL, *orig_post_p = post_p;
6de9cd9a
DN
1917 bool postfix;
1918 enum tree_code arith_code;
1919 enum gimplify_status ret;
1920
1921 code = TREE_CODE (*expr_p);
1922
282899df
NS
1923 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
1924 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
6de9cd9a
DN
1925
1926 /* Prefix or postfix? */
1927 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
1928 /* Faster to treat as prefix if result is not used. */
1929 postfix = want_value;
1930 else
1931 postfix = false;
1932
82181741
JJ
1933 /* For postfix, make sure the inner expression's post side effects
1934 are executed after side effects from this expression. */
1935 if (postfix)
1936 post_p = &post;
1937
6de9cd9a
DN
1938 /* Add or subtract? */
1939 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
1940 arith_code = PLUS_EXPR;
1941 else
1942 arith_code = MINUS_EXPR;
1943
1944 /* Gimplify the LHS into a GIMPLE lvalue. */
1945 lvalue = TREE_OPERAND (*expr_p, 0);
1946 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
1947 if (ret == GS_ERROR)
1948 return ret;
1949
1950 /* Extract the operands to the arithmetic operation. */
1951 lhs = lvalue;
1952 rhs = TREE_OPERAND (*expr_p, 1);
1953
1954 /* For postfix operator, we evaluate the LHS to an rvalue and then use
1955 that as the result value and in the postqueue operation. */
1956 if (postfix)
1957 {
1958 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
1959 if (ret == GS_ERROR)
1960 return ret;
1961 }
1962
5be014d5
AP
1963 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
1964 if (POINTER_TYPE_P (TREE_TYPE (lhs)))
1965 {
1966 rhs = fold_convert (sizetype, rhs);
1967 if (arith_code == MINUS_EXPR)
1968 rhs = fold_build1 (NEGATE_EXPR, TREE_TYPE (rhs), rhs);
1969 arith_code = POINTER_PLUS_EXPR;
1970 }
1971
b4257cfc 1972 t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
b56b9fe3 1973 t1 = build_gimple_modify_stmt (lvalue, t1);
6de9cd9a
DN
1974
1975 if (postfix)
1976 {
82181741
JJ
1977 gimplify_and_add (t1, orig_post_p);
1978 append_to_statement_list (post, orig_post_p);
6de9cd9a
DN
1979 *expr_p = lhs;
1980 return GS_ALL_DONE;
1981 }
1982 else
1983 {
1984 *expr_p = t1;
1985 return GS_OK;
1986 }
1987}
1988
d25cee4d
RH
1989/* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
1990
1991static void
1992maybe_with_size_expr (tree *expr_p)
1993{
61025d1b
RK
1994 tree expr = *expr_p;
1995 tree type = TREE_TYPE (expr);
1996 tree size;
d25cee4d 1997
61025d1b
RK
1998 /* If we've already wrapped this or the type is error_mark_node, we can't do
1999 anything. */
2000 if (TREE_CODE (expr) == WITH_SIZE_EXPR
2001 || type == error_mark_node)
d25cee4d
RH
2002 return;
2003
61025d1b 2004 /* If the size isn't known or is a constant, we have nothing to do. */
d25cee4d 2005 size = TYPE_SIZE_UNIT (type);
61025d1b
RK
2006 if (!size || TREE_CODE (size) == INTEGER_CST)
2007 return;
2008
2009 /* Otherwise, make a WITH_SIZE_EXPR. */
2010 size = unshare_expr (size);
2011 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
2012 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
d25cee4d
RH
2013}
2014
e4f78bd4
JM
2015/* Subroutine of gimplify_call_expr: Gimplify a single argument. */
2016
2017static enum gimplify_status
2018gimplify_arg (tree *expr_p, tree *pre_p)
2019{
2020 bool (*test) (tree);
2021 fallback_t fb;
2022
2023 /* In general, we allow lvalues for function arguments to avoid
2024 extra overhead of copying large aggregates out of even larger
2025 aggregates into temporaries only to copy the temporaries to
2026 the argument list. Make optimizers happy by pulling out to
2027 temporaries those types that fit in registers. */
2028 if (is_gimple_reg_type (TREE_TYPE (*expr_p)))
2029 test = is_gimple_val, fb = fb_rvalue;
2030 else
2031 test = is_gimple_lvalue, fb = fb_either;
2032
d25cee4d
RH
2033 /* If this is a variable sized type, we must remember the size. */
2034 maybe_with_size_expr (expr_p);
2035
e4f78bd4
JM
2036 /* There is a sequence point before a function call. Side effects in
2037 the argument list must occur before the actual call. So, when
2038 gimplifying arguments, force gimplify_expr to use an internal
2039 post queue which is then appended to the end of PRE_P. */
2040 return gimplify_expr (expr_p, pre_p, NULL, test, fb);
2041}
2042
206048bd 2043/* Gimplify the CALL_EXPR node pointed to by EXPR_P. PRE_P points to the
90051e16
RH
2044 list where side effects that must happen before *EXPR_P should be stored.
2045 WANT_VALUE is true if the result of the call is desired. */
6de9cd9a
DN
2046
2047static enum gimplify_status
90051e16 2048gimplify_call_expr (tree *expr_p, tree *pre_p, bool want_value)
6de9cd9a
DN
2049{
2050 tree decl;
6de9cd9a 2051 enum gimplify_status ret;
5039610b 2052 int i, nargs;
6de9cd9a 2053
282899df 2054 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
6de9cd9a 2055
d3147f64 2056 /* For reliable diagnostics during inlining, it is necessary that
6de9cd9a 2057 every call_expr be annotated with file and line. */
a281759f
PB
2058 if (! EXPR_HAS_LOCATION (*expr_p))
2059 SET_EXPR_LOCATION (*expr_p, input_location);
6de9cd9a
DN
2060
2061 /* This may be a call to a builtin function.
2062
2063 Builtin function calls may be transformed into different
2064 (and more efficient) builtin function calls under certain
2065 circumstances. Unfortunately, gimplification can muck things
2066 up enough that the builtin expanders are not aware that certain
2067 transformations are still valid.
2068
2069 So we attempt transformation/gimplification of the call before
2070 we gimplify the CALL_EXPR. At this time we do not manage to
2071 transform all calls in the same manner as the expanders do, but
2072 we do transform most of them. */
2073 decl = get_callee_fndecl (*expr_p);
2074 if (decl && DECL_BUILT_IN (decl))
2075 {
5039610b 2076 tree new = fold_call_expr (*expr_p, !want_value);
6de9cd9a
DN
2077
2078 if (new && new != *expr_p)
2079 {
2080 /* There was a transformation of this call which computes the
2081 same value, but in a more efficient way. Return and try
2082 again. */
2083 *expr_p = new;
2084 return GS_OK;
2085 }
e4f78bd4 2086
8c96cd51
EB
2087 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2088 && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_START)
2efcfa4e 2089 {
5039610b 2090 if (call_expr_nargs (*expr_p) < 2)
2efcfa4e
AP
2091 {
2092 error ("too few arguments to function %<va_start%>");
2093 *expr_p = build_empty_stmt ();
2094 return GS_OK;
2095 }
2096
5039610b 2097 if (fold_builtin_next_arg (*expr_p, true))
2efcfa4e
AP
2098 {
2099 *expr_p = build_empty_stmt ();
2100 return GS_OK;
2101 }
2102 /* Avoid gimplifying the second argument to va_start, which needs
2103 to be the plain PARM_DECL. */
5039610b 2104 return gimplify_arg (&CALL_EXPR_ARG (*expr_p, 0), pre_p);
2efcfa4e 2105 }
6de9cd9a
DN
2106 }
2107
2108 /* There is a sequence point before the call, so any side effects in
2109 the calling expression must occur before the actual call. Force
2110 gimplify_expr to use an internal post queue. */
5039610b 2111 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
0f59171d 2112 is_gimple_call_addr, fb_rvalue);
6de9cd9a 2113
5039610b
SL
2114 nargs = call_expr_nargs (*expr_p);
2115
2116 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2117 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2118 PUSH_ARGS_REVERSED ? i-- : i++)
6de9cd9a
DN
2119 {
2120 enum gimplify_status t;
2121
5039610b 2122 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p);
6de9cd9a
DN
2123
2124 if (t == GS_ERROR)
2125 ret = GS_ERROR;
2126 }
6de9cd9a
DN
2127
2128 /* Try this again in case gimplification exposed something. */
6f538523 2129 if (ret != GS_ERROR)
6de9cd9a 2130 {
5039610b 2131 tree new = fold_call_expr (*expr_p, !want_value);
6f538523 2132
5039610b
SL
2133 if (new && new != *expr_p)
2134 {
2135 /* There was a transformation of this call which computes the
2136 same value, but in a more efficient way. Return and try
2137 again. */
2138 *expr_p = new;
2139 return GS_OK;
6de9cd9a
DN
2140 }
2141 }
2142
2143 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2144 decl. This allows us to eliminate redundant or useless
2145 calls to "const" functions. */
2146 if (TREE_CODE (*expr_p) == CALL_EXPR
2147 && (call_expr_flags (*expr_p) & (ECF_CONST | ECF_PURE)))
2148 TREE_SIDE_EFFECTS (*expr_p) = 0;
2149
2150 return ret;
2151}
2152
2153/* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2154 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2155
2156 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2157 condition is true or false, respectively. If null, we should generate
2158 our own to skip over the evaluation of this specific expression.
2159
2160 This function is the tree equivalent of do_jump.
2161
2162 shortcut_cond_r should only be called by shortcut_cond_expr. */
2163
2164static tree
2165shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p)
2166{
2167 tree local_label = NULL_TREE;
2168 tree t, expr = NULL;
2169
2170 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2171 retain the shortcut semantics. Just insert the gotos here;
2172 shortcut_cond_expr will append the real blocks later. */
2173 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2174 {
2175 /* Turn if (a && b) into
2176
2177 if (a); else goto no;
2178 if (b) goto yes; else goto no;
2179 (no:) */
2180
2181 if (false_label_p == NULL)
2182 false_label_p = &local_label;
2183
2184 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p);
2185 append_to_statement_list (t, &expr);
2186
2187 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2188 false_label_p);
2189 append_to_statement_list (t, &expr);
2190 }
2191 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2192 {
2193 /* Turn if (a || b) into
2194
2195 if (a) goto yes;
2196 if (b) goto yes; else goto no;
2197 (yes:) */
2198
2199 if (true_label_p == NULL)
2200 true_label_p = &local_label;
2201
2202 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL);
2203 append_to_statement_list (t, &expr);
2204
2205 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2206 false_label_p);
2207 append_to_statement_list (t, &expr);
2208 }
2209 else if (TREE_CODE (pred) == COND_EXPR)
2210 {
2211 /* As long as we're messing with gotos, turn if (a ? b : c) into
2212 if (a)
2213 if (b) goto yes; else goto no;
2214 else
2215 if (c) goto yes; else goto no; */
b4257cfc
RG
2216 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2217 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2218 false_label_p),
2219 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2220 false_label_p));
6de9cd9a
DN
2221 }
2222 else
2223 {
b4257cfc
RG
2224 expr = build3 (COND_EXPR, void_type_node, pred,
2225 build_and_jump (true_label_p),
2226 build_and_jump (false_label_p));
6de9cd9a
DN
2227 }
2228
2229 if (local_label)
2230 {
2231 t = build1 (LABEL_EXPR, void_type_node, local_label);
2232 append_to_statement_list (t, &expr);
2233 }
2234
2235 return expr;
2236}
2237
2238static tree
2239shortcut_cond_expr (tree expr)
2240{
2241 tree pred = TREE_OPERAND (expr, 0);
2242 tree then_ = TREE_OPERAND (expr, 1);
2243 tree else_ = TREE_OPERAND (expr, 2);
2244 tree true_label, false_label, end_label, t;
2245 tree *true_label_p;
2246 tree *false_label_p;
089efaa4 2247 bool emit_end, emit_false, jump_over_else;
65355d53
RH
2248 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2249 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
6de9cd9a
DN
2250
2251 /* First do simple transformations. */
65355d53 2252 if (!else_se)
6de9cd9a
DN
2253 {
2254 /* If there is no 'else', turn (a && b) into if (a) if (b). */
2255 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2256 {
2257 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2258 then_ = shortcut_cond_expr (expr);
4356a1bf 2259 then_se = then_ && TREE_SIDE_EFFECTS (then_);
6de9cd9a 2260 pred = TREE_OPERAND (pred, 0);
b4257cfc 2261 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
6de9cd9a
DN
2262 }
2263 }
65355d53 2264 if (!then_se)
6de9cd9a
DN
2265 {
2266 /* If there is no 'then', turn
2267 if (a || b); else d
2268 into
2269 if (a); else if (b); else d. */
2270 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2271 {
2272 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2273 else_ = shortcut_cond_expr (expr);
4356a1bf 2274 else_se = else_ && TREE_SIDE_EFFECTS (else_);
6de9cd9a 2275 pred = TREE_OPERAND (pred, 0);
b4257cfc 2276 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
6de9cd9a
DN
2277 }
2278 }
2279
2280 /* If we're done, great. */
2281 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2282 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2283 return expr;
2284
2285 /* Otherwise we need to mess with gotos. Change
2286 if (a) c; else d;
2287 to
2288 if (a); else goto no;
2289 c; goto end;
2290 no: d; end:
2291 and recursively gimplify the condition. */
2292
2293 true_label = false_label = end_label = NULL_TREE;
2294
2295 /* If our arms just jump somewhere, hijack those labels so we don't
2296 generate jumps to jumps. */
2297
65355d53
RH
2298 if (then_
2299 && TREE_CODE (then_) == GOTO_EXPR
6de9cd9a
DN
2300 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2301 {
2302 true_label = GOTO_DESTINATION (then_);
65355d53
RH
2303 then_ = NULL;
2304 then_se = false;
6de9cd9a
DN
2305 }
2306
65355d53
RH
2307 if (else_
2308 && TREE_CODE (else_) == GOTO_EXPR
6de9cd9a
DN
2309 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2310 {
2311 false_label = GOTO_DESTINATION (else_);
65355d53
RH
2312 else_ = NULL;
2313 else_se = false;
6de9cd9a
DN
2314 }
2315
9cf737f8 2316 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
6de9cd9a
DN
2317 if (true_label)
2318 true_label_p = &true_label;
2319 else
2320 true_label_p = NULL;
2321
2322 /* The 'else' branch also needs a label if it contains interesting code. */
65355d53 2323 if (false_label || else_se)
6de9cd9a
DN
2324 false_label_p = &false_label;
2325 else
2326 false_label_p = NULL;
2327
2328 /* If there was nothing else in our arms, just forward the label(s). */
65355d53 2329 if (!then_se && !else_se)
6de9cd9a
DN
2330 return shortcut_cond_r (pred, true_label_p, false_label_p);
2331
2332 /* If our last subexpression already has a terminal label, reuse it. */
65355d53 2333 if (else_se)
6de9cd9a 2334 expr = expr_last (else_);
65355d53 2335 else if (then_se)
6de9cd9a 2336 expr = expr_last (then_);
65355d53
RH
2337 else
2338 expr = NULL;
2339 if (expr && TREE_CODE (expr) == LABEL_EXPR)
6de9cd9a
DN
2340 end_label = LABEL_EXPR_LABEL (expr);
2341
2342 /* If we don't care about jumping to the 'else' branch, jump to the end
2343 if the condition is false. */
2344 if (!false_label_p)
2345 false_label_p = &end_label;
2346
2347 /* We only want to emit these labels if we aren't hijacking them. */
2348 emit_end = (end_label == NULL_TREE);
2349 emit_false = (false_label == NULL_TREE);
2350
089efaa4
ILT
2351 /* We only emit the jump over the else clause if we have to--if the
2352 then clause may fall through. Otherwise we can wind up with a
2353 useless jump and a useless label at the end of gimplified code,
2354 which will cause us to think that this conditional as a whole
2355 falls through even if it doesn't. If we then inline a function
2356 which ends with such a condition, that can cause us to issue an
2357 inappropriate warning about control reaching the end of a
2358 non-void function. */
2359 jump_over_else = block_may_fallthru (then_);
2360
6de9cd9a
DN
2361 pred = shortcut_cond_r (pred, true_label_p, false_label_p);
2362
2363 expr = NULL;
2364 append_to_statement_list (pred, &expr);
2365
2366 append_to_statement_list (then_, &expr);
65355d53 2367 if (else_se)
6de9cd9a 2368 {
089efaa4
ILT
2369 if (jump_over_else)
2370 {
2371 t = build_and_jump (&end_label);
2372 append_to_statement_list (t, &expr);
2373 }
6de9cd9a
DN
2374 if (emit_false)
2375 {
2376 t = build1 (LABEL_EXPR, void_type_node, false_label);
2377 append_to_statement_list (t, &expr);
2378 }
2379 append_to_statement_list (else_, &expr);
2380 }
2381 if (emit_end && end_label)
2382 {
2383 t = build1 (LABEL_EXPR, void_type_node, end_label);
2384 append_to_statement_list (t, &expr);
2385 }
2386
2387 return expr;
2388}
2389
2390/* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2391
50674e96 2392tree
6de9cd9a
DN
2393gimple_boolify (tree expr)
2394{
2395 tree type = TREE_TYPE (expr);
2396
2397 if (TREE_CODE (type) == BOOLEAN_TYPE)
2398 return expr;
2399
6de9cd9a
DN
2400 switch (TREE_CODE (expr))
2401 {
2402 case TRUTH_AND_EXPR:
2403 case TRUTH_OR_EXPR:
2404 case TRUTH_XOR_EXPR:
2405 case TRUTH_ANDIF_EXPR:
2406 case TRUTH_ORIF_EXPR:
2407 /* Also boolify the arguments of truth exprs. */
2408 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2409 /* FALLTHRU */
2410
2411 case TRUTH_NOT_EXPR:
2412 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2413 /* FALLTHRU */
2414
2415 case EQ_EXPR: case NE_EXPR:
2416 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2417 /* These expressions always produce boolean results. */
2418 TREE_TYPE (expr) = boolean_type_node;
2419 return expr;
d3147f64 2420
6de9cd9a
DN
2421 default:
2422 /* Other expressions that get here must have boolean values, but
2423 might need to be converted to the appropriate mode. */
b6f65e3c 2424 return fold_convert (boolean_type_node, expr);
6de9cd9a
DN
2425 }
2426}
2427
206048bd 2428/* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
6de9cd9a
DN
2429 into
2430
2431 if (p) if (p)
2432 t1 = a; a;
2433 else or else
2434 t1 = b; b;
2435 t1;
2436
2437 The second form is used when *EXPR_P is of type void.
2438
44de5aeb
RK
2439 TARGET is the tree for T1 above.
2440
6de9cd9a 2441 PRE_P points to the list where side effects that must happen before
dae7ec87 2442 *EXPR_P should be stored. */
6de9cd9a
DN
2443
2444static enum gimplify_status
dae7ec87 2445gimplify_cond_expr (tree *expr_p, tree *pre_p, fallback_t fallback)
6de9cd9a
DN
2446{
2447 tree expr = *expr_p;
d91ba7b0 2448 tree tmp, tmp2, type;
6de9cd9a
DN
2449 enum gimplify_status ret;
2450
26d44ae2 2451 type = TREE_TYPE (expr);
26d44ae2
RH
2452
2453 /* If this COND_EXPR has a value, copy the values into a temporary within
2454 the arms. */
2214de30 2455 if (! VOID_TYPE_P (type))
26d44ae2 2456 {
aff98faf
AO
2457 tree result;
2458
dae7ec87 2459 if ((fallback & fb_lvalue) == 0)
aff98faf
AO
2460 {
2461 result = tmp2 = tmp = create_tmp_var (TREE_TYPE (expr), "iftmp");
2462 ret = GS_ALL_DONE;
2463 }
26d44ae2
RH
2464 else
2465 {
aff98faf
AO
2466 tree type = build_pointer_type (TREE_TYPE (expr));
2467
2468 if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2469 TREE_OPERAND (expr, 1) =
2470 build_fold_addr_expr (TREE_OPERAND (expr, 1));
2471
2472 if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2473 TREE_OPERAND (expr, 2) =
2474 build_fold_addr_expr (TREE_OPERAND (expr, 2));
2475
2476 tmp2 = tmp = create_tmp_var (type, "iftmp");
2477
b4257cfc
RG
2478 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (expr, 0),
2479 TREE_OPERAND (expr, 1), TREE_OPERAND (expr, 2));
aff98faf
AO
2480
2481 result = build_fold_indirect_ref (tmp);
26d44ae2
RH
2482 ret = GS_ALL_DONE;
2483 }
2484
2485 /* Build the then clause, 't1 = a;'. But don't build an assignment
2486 if this branch is void; in C++ it can be, if it's a throw. */
2487 if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2488 TREE_OPERAND (expr, 1)
b56b9fe3 2489 = build_gimple_modify_stmt (tmp, TREE_OPERAND (expr, 1));
26d44ae2
RH
2490
2491 /* Build the else clause, 't1 = b;'. */
2492 if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2493 TREE_OPERAND (expr, 2)
b56b9fe3 2494 = build_gimple_modify_stmt (tmp2, TREE_OPERAND (expr, 2));
26d44ae2
RH
2495
2496 TREE_TYPE (expr) = void_type_node;
2497 recalculate_side_effects (expr);
2498
d91ba7b0 2499 /* Move the COND_EXPR to the prequeue. */
26d44ae2 2500 gimplify_and_add (expr, pre_p);
26d44ae2 2501
aff98faf 2502 *expr_p = result;
26d44ae2
RH
2503 return ret;
2504 }
2505
2506 /* Make sure the condition has BOOLEAN_TYPE. */
2507 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2508
2509 /* Break apart && and || conditions. */
2510 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
2511 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
2512 {
2513 expr = shortcut_cond_expr (expr);
2514
2515 if (expr != *expr_p)
2516 {
2517 *expr_p = expr;
2518
2519 /* We can't rely on gimplify_expr to re-gimplify the expanded
2520 form properly, as cleanups might cause the target labels to be
2521 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
2522 set up a conditional context. */
2523 gimple_push_condition ();
2524 gimplify_stmt (expr_p);
2525 gimple_pop_condition (pre_p);
2526
2527 return GS_ALL_DONE;
2528 }
2529 }
2530
2531 /* Now do the normal gimplification. */
2532 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2533 is_gimple_condexpr, fb_rvalue);
2534
2535 gimple_push_condition ();
2536
2537 gimplify_to_stmt_list (&TREE_OPERAND (expr, 1));
2538 gimplify_to_stmt_list (&TREE_OPERAND (expr, 2));
2539 recalculate_side_effects (expr);
2540
2541 gimple_pop_condition (pre_p);
2542
2543 if (ret == GS_ERROR)
2544 ;
2545 else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2546 ret = GS_ALL_DONE;
2547 else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 2)))
2548 /* Rewrite "if (a); else b" to "if (!a) b" */
2549 {
2550 TREE_OPERAND (expr, 0) = invert_truthvalue (TREE_OPERAND (expr, 0));
2551 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2552 is_gimple_condexpr, fb_rvalue);
2553
2554 tmp = TREE_OPERAND (expr, 1);
2555 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 2);
2556 TREE_OPERAND (expr, 2) = tmp;
2557 }
2558 else
2559 /* Both arms are empty; replace the COND_EXPR with its predicate. */
2560 expr = TREE_OPERAND (expr, 0);
2561
2562 *expr_p = expr;
2563 return ret;
2564}
2565
2566/* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
2567 a call to __builtin_memcpy. */
2568
2569static enum gimplify_status
d25cee4d 2570gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value)
26d44ae2 2571{
5039610b 2572 tree t, to, to_ptr, from, from_ptr;
26d44ae2 2573
07beea0d
AH
2574 to = GENERIC_TREE_OPERAND (*expr_p, 0);
2575 from = GENERIC_TREE_OPERAND (*expr_p, 1);
26d44ae2 2576
5039610b 2577 from_ptr = build_fold_addr_expr (from);
26d44ae2
RH
2578
2579 to_ptr = build_fold_addr_expr (to);
26d44ae2 2580 t = implicit_built_in_decls[BUILT_IN_MEMCPY];
5039610b 2581 t = build_call_expr (t, 3, to_ptr, from_ptr, size);
26d44ae2
RH
2582
2583 if (want_value)
2584 {
2585 t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2586 t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2587 }
2588
2589 *expr_p = t;
2590 return GS_OK;
2591}
2592
2593/* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
2594 a call to __builtin_memset. In this case we know that the RHS is
2595 a CONSTRUCTOR with an empty element list. */
2596
2597static enum gimplify_status
d25cee4d 2598gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value)
26d44ae2 2599{
5039610b 2600 tree t, to, to_ptr;
26d44ae2 2601
07beea0d 2602 to = GENERIC_TREE_OPERAND (*expr_p, 0);
26d44ae2 2603
26d44ae2 2604 to_ptr = build_fold_addr_expr (to);
26d44ae2 2605 t = implicit_built_in_decls[BUILT_IN_MEMSET];
5039610b 2606 t = build_call_expr (t, 3, to_ptr, integer_zero_node, size);
26d44ae2
RH
2607
2608 if (want_value)
2609 {
2610 t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2611 t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2612 }
2613
2614 *expr_p = t;
2615 return GS_OK;
2616}
2617
57d1dd87
RH
2618/* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
2619 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
2620 assignment. Returns non-null if we detect a potential overlap. */
2621
2622struct gimplify_init_ctor_preeval_data
2623{
2624 /* The base decl of the lhs object. May be NULL, in which case we
2625 have to assume the lhs is indirect. */
2626 tree lhs_base_decl;
2627
2628 /* The alias set of the lhs object. */
2629 int lhs_alias_set;
2630};
2631
2632static tree
2633gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
2634{
2635 struct gimplify_init_ctor_preeval_data *data
2636 = (struct gimplify_init_ctor_preeval_data *) xdata;
2637 tree t = *tp;
2638
2639 /* If we find the base object, obviously we have overlap. */
2640 if (data->lhs_base_decl == t)
2641 return t;
2642
2643 /* If the constructor component is indirect, determine if we have a
2644 potential overlap with the lhs. The only bits of information we
2645 have to go on at this point are addressability and alias sets. */
2646 if (TREE_CODE (t) == INDIRECT_REF
2647 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2648 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
2649 return t;
2650
df10ee2a
EB
2651 /* If the constructor component is a call, determine if it can hide a
2652 potential overlap with the lhs through an INDIRECT_REF like above. */
2653 if (TREE_CODE (t) == CALL_EXPR)
2654 {
2655 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
2656
2657 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
2658 if (POINTER_TYPE_P (TREE_VALUE (type))
2659 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2660 && alias_sets_conflict_p (data->lhs_alias_set,
2661 get_alias_set
2662 (TREE_TYPE (TREE_VALUE (type)))))
2663 return t;
2664 }
2665
6615c446 2666 if (IS_TYPE_OR_DECL_P (t))
57d1dd87
RH
2667 *walk_subtrees = 0;
2668 return NULL;
2669}
2670
2671/* A subroutine of gimplify_init_constructor. Pre-evaluate *EXPR_P,
2672 force values that overlap with the lhs (as described by *DATA)
2673 into temporaries. */
2674
2675static void
2676gimplify_init_ctor_preeval (tree *expr_p, tree *pre_p, tree *post_p,
2677 struct gimplify_init_ctor_preeval_data *data)
2678{
2679 enum gimplify_status one;
2680
2681 /* If the value is invariant, then there's nothing to pre-evaluate.
2682 But ensure it doesn't have any side-effects since a SAVE_EXPR is
2683 invariant but has side effects and might contain a reference to
2684 the object we're initializing. */
2685 if (TREE_INVARIANT (*expr_p) && !TREE_SIDE_EFFECTS (*expr_p))
2686 return;
2687
2688 /* If the type has non-trivial constructors, we can't pre-evaluate. */
2689 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
2690 return;
2691
2692 /* Recurse for nested constructors. */
2693 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
2694 {
4038c495
GB
2695 unsigned HOST_WIDE_INT ix;
2696 constructor_elt *ce;
2697 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
2698
2699 for (ix = 0; VEC_iterate (constructor_elt, v, ix, ce); ix++)
2700 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
57d1dd87
RH
2701 return;
2702 }
2703
0461b801
EB
2704 /* If this is a variable sized type, we must remember the size. */
2705 maybe_with_size_expr (expr_p);
57d1dd87
RH
2706
2707 /* Gimplify the constructor element to something appropriate for the rhs
2708 of a MODIFY_EXPR. Given that we know the lhs is an aggregate, we know
d3147f64 2709 the gimplifier will consider this a store to memory. Doing this
57d1dd87
RH
2710 gimplification now means that we won't have to deal with complicated
2711 language-specific trees, nor trees like SAVE_EXPR that can induce
b01d837f 2712 exponential search behavior. */
57d1dd87
RH
2713 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
2714 if (one == GS_ERROR)
2715 {
2716 *expr_p = NULL;
2717 return;
2718 }
2719
2720 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
2721 with the lhs, since "a = { .x=a }" doesn't make sense. This will
2722 always be true for all scalars, since is_gimple_mem_rhs insists on a
2723 temporary variable for them. */
2724 if (DECL_P (*expr_p))
2725 return;
2726
2727 /* If this is of variable size, we have no choice but to assume it doesn't
2728 overlap since we can't make a temporary for it. */
4c923c28 2729 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
57d1dd87
RH
2730 return;
2731
2732 /* Otherwise, we must search for overlap ... */
2733 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
2734 return;
2735
2736 /* ... and if found, force the value into a temporary. */
2737 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
2738}
2739
6fa91b48
SB
2740/* A subroutine of gimplify_init_ctor_eval. Create a loop for
2741 a RANGE_EXPR in a CONSTRUCTOR for an array.
2742
2743 var = lower;
2744 loop_entry:
2745 object[var] = value;
2746 if (var == upper)
2747 goto loop_exit;
2748 var = var + 1;
2749 goto loop_entry;
2750 loop_exit:
2751
2752 We increment var _after_ the loop exit check because we might otherwise
2753 fail if upper == TYPE_MAX_VALUE (type for upper).
2754
2755 Note that we never have to deal with SAVE_EXPRs here, because this has
2756 already been taken care of for us, in gimplify_init_ctor_preeval(). */
2757
4038c495
GB
2758static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
2759 tree *, bool);
6fa91b48
SB
2760
2761static void
2762gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
2763 tree value, tree array_elt_type,
2764 tree *pre_p, bool cleared)
2765{
2766 tree loop_entry_label, loop_exit_label;
b56b9fe3 2767 tree var, var_type, cref, tmp;
6fa91b48
SB
2768
2769 loop_entry_label = create_artificial_label ();
2770 loop_exit_label = create_artificial_label ();
2771
2772 /* Create and initialize the index variable. */
2773 var_type = TREE_TYPE (upper);
2774 var = create_tmp_var (var_type, NULL);
b56b9fe3 2775 append_to_statement_list (build_gimple_modify_stmt (var, lower), pre_p);
6fa91b48
SB
2776
2777 /* Add the loop entry label. */
2778 append_to_statement_list (build1 (LABEL_EXPR,
2779 void_type_node,
2780 loop_entry_label),
2781 pre_p);
2782
2783 /* Build the reference. */
2784 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2785 var, NULL_TREE, NULL_TREE);
2786
2787 /* If we are a constructor, just call gimplify_init_ctor_eval to do
2788 the store. Otherwise just assign value to the reference. */
2789
2790 if (TREE_CODE (value) == CONSTRUCTOR)
2791 /* NB we might have to call ourself recursively through
2792 gimplify_init_ctor_eval if the value is a constructor. */
2793 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2794 pre_p, cleared);
2795 else
b56b9fe3 2796 append_to_statement_list (build_gimple_modify_stmt (cref, value), pre_p);
6fa91b48
SB
2797
2798 /* We exit the loop when the index var is equal to the upper bound. */
2799 gimplify_and_add (build3 (COND_EXPR, void_type_node,
2800 build2 (EQ_EXPR, boolean_type_node,
2801 var, upper),
2802 build1 (GOTO_EXPR,
2803 void_type_node,
2804 loop_exit_label),
2805 NULL_TREE),
2806 pre_p);
2807
2808 /* Otherwise, increment the index var... */
b56b9fe3
RS
2809 tmp = build2 (PLUS_EXPR, var_type, var,
2810 fold_convert (var_type, integer_one_node));
2811 append_to_statement_list (build_gimple_modify_stmt (var, tmp), pre_p);
6fa91b48
SB
2812
2813 /* ...and jump back to the loop entry. */
2814 append_to_statement_list (build1 (GOTO_EXPR,
2815 void_type_node,
2816 loop_entry_label),
2817 pre_p);
2818
2819 /* Add the loop exit label. */
2820 append_to_statement_list (build1 (LABEL_EXPR,
2821 void_type_node,
2822 loop_exit_label),
2823 pre_p);
2824}
2825
292a398f
DB
2826/* Return true if FDECL is accessing a field that is zero sized. */
2827
2828static bool
2829zero_sized_field_decl (tree fdecl)
2830{
2831 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
2832 && integer_zerop (DECL_SIZE (fdecl)))
2833 return true;
2834 return false;
2835}
2836
d06526b7
AP
2837/* Return true if TYPE is zero sized. */
2838
2839static bool
2840zero_sized_type (tree type)
2841{
2842 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
2843 && integer_zerop (TYPE_SIZE (type)))
2844 return true;
2845 return false;
2846}
2847
57d1dd87
RH
2848/* A subroutine of gimplify_init_constructor. Generate individual
2849 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
4038c495 2850 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
57d1dd87
RH
2851 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
2852 zeroed first. */
2853
2854static void
4038c495
GB
2855gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
2856 tree *pre_p, bool cleared)
57d1dd87
RH
2857{
2858 tree array_elt_type = NULL;
4038c495
GB
2859 unsigned HOST_WIDE_INT ix;
2860 tree purpose, value;
57d1dd87
RH
2861
2862 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
2863 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
2864
4038c495 2865 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
57d1dd87 2866 {
4038c495 2867 tree cref, init;
57d1dd87
RH
2868
2869 /* NULL values are created above for gimplification errors. */
2870 if (value == NULL)
2871 continue;
2872
2873 if (cleared && initializer_zerop (value))
2874 continue;
2875
6fa91b48
SB
2876 /* ??? Here's to hoping the front end fills in all of the indices,
2877 so we don't have to figure out what's missing ourselves. */
2878 gcc_assert (purpose);
2879
816fa80a
OH
2880 /* Skip zero-sized fields, unless value has side-effects. This can
2881 happen with calls to functions returning a zero-sized type, which
2882 we shouldn't discard. As a number of downstream passes don't
2883 expect sets of zero-sized fields, we rely on the gimplification of
2884 the MODIFY_EXPR we make below to drop the assignment statement. */
2885 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
292a398f
DB
2886 continue;
2887
6fa91b48
SB
2888 /* If we have a RANGE_EXPR, we have to build a loop to assign the
2889 whole range. */
2890 if (TREE_CODE (purpose) == RANGE_EXPR)
57d1dd87 2891 {
6fa91b48
SB
2892 tree lower = TREE_OPERAND (purpose, 0);
2893 tree upper = TREE_OPERAND (purpose, 1);
2894
2895 /* If the lower bound is equal to upper, just treat it as if
2896 upper was the index. */
2897 if (simple_cst_equal (lower, upper))
2898 purpose = upper;
2899 else
2900 {
2901 gimplify_init_ctor_eval_range (object, lower, upper, value,
2902 array_elt_type, pre_p, cleared);
2903 continue;
2904 }
2905 }
57d1dd87 2906
6fa91b48
SB
2907 if (array_elt_type)
2908 {
b4257cfc
RG
2909 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2910 purpose, NULL_TREE, NULL_TREE);
57d1dd87
RH
2911 }
2912 else
cf0efa6a
ILT
2913 {
2914 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
b4257cfc
RG
2915 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
2916 unshare_expr (object), purpose, NULL_TREE);
cf0efa6a 2917 }
57d1dd87 2918
cf0efa6a
ILT
2919 if (TREE_CODE (value) == CONSTRUCTOR
2920 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
57d1dd87
RH
2921 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2922 pre_p, cleared);
2923 else
2924 {
dae7ec87 2925 init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
57d1dd87
RH
2926 gimplify_and_add (init, pre_p);
2927 }
2928 }
2929}
2930
26d44ae2
RH
2931/* A subroutine of gimplify_modify_expr. Break out elements of a
2932 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
2933
2934 Note that we still need to clear any elements that don't have explicit
2935 initializers, so if not all elements are initialized we keep the
2936 original MODIFY_EXPR, we just remove all of the constructor elements. */
2937
2938static enum gimplify_status
2939gimplify_init_constructor (tree *expr_p, tree *pre_p,
2940 tree *post_p, bool want_value)
2941{
57d1dd87 2942 tree object;
07beea0d 2943 tree ctor = GENERIC_TREE_OPERAND (*expr_p, 1);
26d44ae2
RH
2944 tree type = TREE_TYPE (ctor);
2945 enum gimplify_status ret;
4038c495 2946 VEC(constructor_elt,gc) *elts;
26d44ae2
RH
2947
2948 if (TREE_CODE (ctor) != CONSTRUCTOR)
2949 return GS_UNHANDLED;
2950
07beea0d 2951 ret = gimplify_expr (&GENERIC_TREE_OPERAND (*expr_p, 0), pre_p, post_p,
57d1dd87
RH
2952 is_gimple_lvalue, fb_lvalue);
2953 if (ret == GS_ERROR)
2954 return ret;
07beea0d 2955 object = GENERIC_TREE_OPERAND (*expr_p, 0);
57d1dd87 2956
4038c495 2957 elts = CONSTRUCTOR_ELTS (ctor);
26d44ae2
RH
2958
2959 ret = GS_ALL_DONE;
2960 switch (TREE_CODE (type))
2961 {
2962 case RECORD_TYPE:
2963 case UNION_TYPE:
2964 case QUAL_UNION_TYPE:
2965 case ARRAY_TYPE:
2966 {
57d1dd87 2967 struct gimplify_init_ctor_preeval_data preeval_data;
6fa91b48 2968 HOST_WIDE_INT num_type_elements, num_ctor_elements;
fe24d485
OH
2969 HOST_WIDE_INT num_nonzero_elements;
2970 bool cleared, valid_const_initializer;
26d44ae2
RH
2971
2972 /* Aggregate types must lower constructors to initialization of
2973 individual elements. The exception is that a CONSTRUCTOR node
2974 with no elements indicates zero-initialization of the whole. */
4038c495 2975 if (VEC_empty (constructor_elt, elts))
57d1dd87 2976 break;
26d44ae2 2977
fe24d485
OH
2978 /* Fetch information about the constructor to direct later processing.
2979 We might want to make static versions of it in various cases, and
2980 can only do so if it known to be a valid constant initializer. */
2981 valid_const_initializer
2982 = categorize_ctor_elements (ctor, &num_nonzero_elements,
2983 &num_ctor_elements, &cleared);
26d44ae2
RH
2984
2985 /* If a const aggregate variable is being initialized, then it
2986 should never be a lose to promote the variable to be static. */
fe24d485 2987 if (valid_const_initializer
6f642f98 2988 && num_nonzero_elements > 1
26d44ae2
RH
2989 && TREE_READONLY (object)
2990 && TREE_CODE (object) == VAR_DECL)
2991 {
2992 DECL_INITIAL (object) = ctor;
2993 TREE_STATIC (object) = 1;
2994 if (!DECL_NAME (object))
2995 DECL_NAME (object) = create_tmp_var_name ("C");
2996 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
2997
2998 /* ??? C++ doesn't automatically append a .<number> to the
2999 assembler name, and even when it does, it looks a FE private
3000 data structures to figure out what that number should be,
3001 which are not set for this variable. I suppose this is
3002 important for local statics for inline functions, which aren't
3003 "local" in the object file sense. So in order to get a unique
3004 TU-local symbol, we must invoke the lhd version now. */
3005 lhd_set_decl_assembler_name (object);
3006
3007 *expr_p = NULL_TREE;
3008 break;
3009 }
3010
cce70747
JC
3011 /* If there are "lots" of initialized elements, even discounting
3012 those that are not address constants (and thus *must* be
3013 computed at runtime), then partition the constructor into
3014 constant and non-constant parts. Block copy the constant
3015 parts in, then generate code for the non-constant parts. */
3016 /* TODO. There's code in cp/typeck.c to do this. */
3017
73ed17ff 3018 num_type_elements = count_type_elements (type, true);
cce70747 3019
73ed17ff
JJ
3020 /* If count_type_elements could not determine number of type elements
3021 for a constant-sized object, assume clearing is needed.
3022 Don't do this for variable-sized objects, as store_constructor
3023 will ignore the clearing of variable-sized objects. */
3024 if (num_type_elements < 0 && int_size_in_bytes (type) >= 0)
3025 cleared = true;
cce70747 3026 /* If there are "lots" of zeros, then block clear the object first. */
73ed17ff
JJ
3027 else if (num_type_elements - num_nonzero_elements > CLEAR_RATIO
3028 && num_nonzero_elements < num_type_elements/4)
cce70747 3029 cleared = true;
cce70747
JC
3030 /* ??? This bit ought not be needed. For any element not present
3031 in the initializer, we should simply set them to zero. Except
3032 we'd need to *find* the elements that are not present, and that
3033 requires trickery to avoid quadratic compile-time behavior in
3034 large cases or excessive memory use in small cases. */
3035 else if (num_ctor_elements < num_type_elements)
3036 cleared = true;
3037
26d44ae2
RH
3038 /* If there are "lots" of initialized elements, and all of them
3039 are valid address constants, then the entire initializer can
cce70747
JC
3040 be dropped to memory, and then memcpy'd out. Don't do this
3041 for sparse arrays, though, as it's more efficient to follow
3042 the standard CONSTRUCTOR behavior of memset followed by
3043 individual element initialization. */
fe24d485 3044 if (valid_const_initializer && !cleared)
26d44ae2
RH
3045 {
3046 HOST_WIDE_INT size = int_size_in_bytes (type);
3047 unsigned int align;
3048
3049 /* ??? We can still get unbounded array types, at least
3050 from the C++ front end. This seems wrong, but attempt
3051 to work around it for now. */
3052 if (size < 0)
3053 {
3054 size = int_size_in_bytes (TREE_TYPE (object));
3055 if (size >= 0)
3056 TREE_TYPE (ctor) = type = TREE_TYPE (object);
3057 }
3058
3059 /* Find the maximum alignment we can assume for the object. */
3060 /* ??? Make use of DECL_OFFSET_ALIGN. */
3061 if (DECL_P (object))
3062 align = DECL_ALIGN (object);
3063 else
3064 align = TYPE_ALIGN (type);
3065
3066 if (size > 0 && !can_move_by_pieces (size, align))
3067 {
3068 tree new = create_tmp_var_raw (type, "C");
57d1dd87 3069
26d44ae2
RH
3070 gimple_add_tmp_var (new);
3071 TREE_STATIC (new) = 1;
3072 TREE_READONLY (new) = 1;
3073 DECL_INITIAL (new) = ctor;
3074 if (align > DECL_ALIGN (new))
3075 {
3076 DECL_ALIGN (new) = align;
3077 DECL_USER_ALIGN (new) = 1;
3078 }
3079 walk_tree (&DECL_INITIAL (new), force_labels_r, NULL, NULL);
3080
07beea0d 3081 GENERIC_TREE_OPERAND (*expr_p, 1) = new;
57d1dd87
RH
3082
3083 /* This is no longer an assignment of a CONSTRUCTOR, but
3084 we still may have processing to do on the LHS. So
3085 pretend we didn't do anything here to let that happen. */
3086 return GS_UNHANDLED;
26d44ae2
RH
3087 }
3088 }
3089
85d89e76
OH
3090 /* If there are nonzero elements, pre-evaluate to capture elements
3091 overlapping with the lhs into temporaries. We must do this before
3092 clearing to fetch the values before they are zeroed-out. */
3093 if (num_nonzero_elements > 0)
3094 {
3095 preeval_data.lhs_base_decl = get_base_address (object);
3096 if (!DECL_P (preeval_data.lhs_base_decl))
3097 preeval_data.lhs_base_decl = NULL;
3098 preeval_data.lhs_alias_set = get_alias_set (object);
3099
07beea0d 3100 gimplify_init_ctor_preeval (&GENERIC_TREE_OPERAND (*expr_p, 1),
85d89e76
OH
3101 pre_p, post_p, &preeval_data);
3102 }
3103
26d44ae2
RH
3104 if (cleared)
3105 {
3106 /* Zap the CONSTRUCTOR element list, which simplifies this case.
3107 Note that we still have to gimplify, in order to handle the
57d1dd87 3108 case of variable sized types. Avoid shared tree structures. */
4038c495 3109 CONSTRUCTOR_ELTS (ctor) = NULL;
57d1dd87 3110 object = unshare_expr (object);
26d44ae2
RH
3111 gimplify_stmt (expr_p);
3112 append_to_statement_list (*expr_p, pre_p);
3113 }
3114
6fa91b48
SB
3115 /* If we have not block cleared the object, or if there are nonzero
3116 elements in the constructor, add assignments to the individual
3117 scalar fields of the object. */
3118 if (!cleared || num_nonzero_elements > 0)
85d89e76 3119 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
26d44ae2
RH
3120
3121 *expr_p = NULL_TREE;
3122 }
3123 break;
3124
3125 case COMPLEX_TYPE:
3126 {
3127 tree r, i;
3128
3129 /* Extract the real and imaginary parts out of the ctor. */
4038c495
GB
3130 gcc_assert (VEC_length (constructor_elt, elts) == 2);
3131 r = VEC_index (constructor_elt, elts, 0)->value;
3132 i = VEC_index (constructor_elt, elts, 1)->value;
26d44ae2
RH
3133 if (r == NULL || i == NULL)
3134 {
b6f65e3c 3135 tree zero = fold_convert (TREE_TYPE (type), integer_zero_node);
26d44ae2
RH
3136 if (r == NULL)
3137 r = zero;
3138 if (i == NULL)
3139 i = zero;
3140 }
3141
3142 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
3143 represent creation of a complex value. */
3144 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
3145 {
3146 ctor = build_complex (type, r, i);
3147 TREE_OPERAND (*expr_p, 1) = ctor;
3148 }
3149 else
3150 {
b4257cfc 3151 ctor = build2 (COMPLEX_EXPR, type, r, i);
26d44ae2
RH
3152 TREE_OPERAND (*expr_p, 1) = ctor;
3153 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
17ad5b5e
RH
3154 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
3155 fb_rvalue);
26d44ae2
RH
3156 }
3157 }
3158 break;
506e2710 3159
26d44ae2 3160 case VECTOR_TYPE:
4038c495
GB
3161 {
3162 unsigned HOST_WIDE_INT ix;
3163 constructor_elt *ce;
e89be13b 3164
4038c495
GB
3165 /* Go ahead and simplify constant constructors to VECTOR_CST. */
3166 if (TREE_CONSTANT (ctor))
3167 {
3168 bool constant_p = true;
3169 tree value;
3170
3171 /* Even when ctor is constant, it might contain non-*_CST
3172 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
3173 belong into VECTOR_CST nodes. */
3174 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
3175 if (!CONSTANT_CLASS_P (value))
3176 {
3177 constant_p = false;
3178 break;
3179 }
e89be13b 3180
4038c495
GB
3181 if (constant_p)
3182 {
3183 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
3184 break;
3185 }
84816907
JM
3186
3187 /* Don't reduce a TREE_CONSTANT vector ctor even if we can't
3188 make a VECTOR_CST. It won't do anything for us, and it'll
3189 prevent us from representing it as a single constant. */
3190 break;
4038c495 3191 }
e89be13b 3192
4038c495
GB
3193 /* Vector types use CONSTRUCTOR all the way through gimple
3194 compilation as a general initializer. */
3195 for (ix = 0; VEC_iterate (constructor_elt, elts, ix, ce); ix++)
3196 {
3197 enum gimplify_status tret;
3198 tret = gimplify_expr (&ce->value, pre_p, post_p,
3199 is_gimple_val, fb_rvalue);
3200 if (tret == GS_ERROR)
3201 ret = GS_ERROR;
3202 }
9bed0a34
AP
3203 if (!is_gimple_reg (GENERIC_TREE_OPERAND (*expr_p, 0)))
3204 GENERIC_TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
4038c495 3205 }
26d44ae2 3206 break;
6de9cd9a 3207
26d44ae2
RH
3208 default:
3209 /* So how did we get a CONSTRUCTOR for a scalar type? */
282899df 3210 gcc_unreachable ();
26d44ae2 3211 }
6de9cd9a 3212
26d44ae2
RH
3213 if (ret == GS_ERROR)
3214 return GS_ERROR;
3215 else if (want_value)
3216 {
3217 append_to_statement_list (*expr_p, pre_p);
3218 *expr_p = object;
3219 return GS_OK;
6de9cd9a 3220 }
26d44ae2
RH
3221 else
3222 return GS_ALL_DONE;
3223}
6de9cd9a 3224
30d2e943
RG
3225/* Given a pointer value OP0, return a simplified version of an
3226 indirection through OP0, or NULL_TREE if no simplification is
3227 possible. This may only be applied to a rhs of an expression.
3228 Note that the resulting type may be different from the type pointed
3229 to in the sense that it is still compatible from the langhooks
3230 point of view. */
3231
3232static tree
3233fold_indirect_ref_rhs (tree t)
3234{
3235 tree type = TREE_TYPE (TREE_TYPE (t));
3236 tree sub = t;
3237 tree subtype;
3238
d6cfd931 3239 STRIP_USELESS_TYPE_CONVERSION (sub);
30d2e943
RG
3240 subtype = TREE_TYPE (sub);
3241 if (!POINTER_TYPE_P (subtype))
3242 return NULL_TREE;
3243
3244 if (TREE_CODE (sub) == ADDR_EXPR)
3245 {
3246 tree op = TREE_OPERAND (sub, 0);
3247 tree optype = TREE_TYPE (op);
3248 /* *&p => p */
3249 if (lang_hooks.types_compatible_p (type, optype))
3250 return op;
3251 /* *(foo *)&fooarray => fooarray[0] */
3252 else if (TREE_CODE (optype) == ARRAY_TYPE
3253 && lang_hooks.types_compatible_p (type, TREE_TYPE (optype)))
3254 {
3255 tree type_domain = TYPE_DOMAIN (optype);
3256 tree min_val = size_zero_node;
3257 if (type_domain && TYPE_MIN_VALUE (type_domain))
3258 min_val = TYPE_MIN_VALUE (type_domain);
3259 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
3260 }
3261 }
3262
3263 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
3264 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
3265 && lang_hooks.types_compatible_p (type, TREE_TYPE (TREE_TYPE (subtype))))
3266 {
3267 tree type_domain;
3268 tree min_val = size_zero_node;
c2953725 3269 tree osub = sub;
30d2e943
RG
3270 sub = fold_indirect_ref_rhs (sub);
3271 if (! sub)
c2953725 3272 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
30d2e943
RG
3273 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
3274 if (type_domain && TYPE_MIN_VALUE (type_domain))
3275 min_val = TYPE_MIN_VALUE (type_domain);
3276 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
3277 }
3278
3279 return NULL_TREE;
3280}
3281
26d44ae2
RH
3282/* Subroutine of gimplify_modify_expr to do simplifications of MODIFY_EXPRs
3283 based on the code of the RHS. We loop for as long as something changes. */
6de9cd9a 3284
26d44ae2
RH
3285static enum gimplify_status
3286gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p,
3287 tree *post_p, bool want_value)
3288{
3289 enum gimplify_status ret = GS_OK;
6de9cd9a 3290
26d44ae2
RH
3291 while (ret != GS_UNHANDLED)
3292 switch (TREE_CODE (*from_p))
3293 {
f98625f6
MM
3294 case INDIRECT_REF:
3295 {
3296 /* If we have code like
3297
3298 *(const A*)(A*)&x
3299
3300 where the type of "x" is a (possibly cv-qualified variant
3301 of "A"), treat the entire expression as identical to "x".
3302 This kind of code arises in C++ when an object is bound
3303 to a const reference, and if "x" is a TARGET_EXPR we want
3304 to take advantage of the optimization below. */
30d2e943
RG
3305 tree t = fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
3306 if (t)
f98625f6 3307 {
6a720599 3308 *from_p = t;
f98625f6
MM
3309 ret = GS_OK;
3310 }
3311 else
3312 ret = GS_UNHANDLED;
3313 break;
3314 }
3315
26d44ae2 3316 case TARGET_EXPR:
6de9cd9a 3317 {
26d44ae2
RH
3318 /* If we are initializing something from a TARGET_EXPR, strip the
3319 TARGET_EXPR and initialize it directly, if possible. This can't
3320 be done if the initializer is void, since that implies that the
3321 temporary is set in some non-trivial way.
6de9cd9a 3322
26d44ae2
RH
3323 ??? What about code that pulls out the temp and uses it
3324 elsewhere? I think that such code never uses the TARGET_EXPR as
535a42b1 3325 an initializer. If I'm wrong, we'll die because the temp won't
26d44ae2
RH
3326 have any RTL. In that case, I guess we'll need to replace
3327 references somehow. */
3328 tree init = TARGET_EXPR_INITIAL (*from_p);
6de9cd9a 3329
26d44ae2
RH
3330 if (!VOID_TYPE_P (TREE_TYPE (init)))
3331 {
3332 *from_p = init;
3333 ret = GS_OK;
3334 }
3335 else
3336 ret = GS_UNHANDLED;
6de9cd9a 3337 }
26d44ae2 3338 break;
6de9cd9a 3339
26d44ae2
RH
3340 case COMPOUND_EXPR:
3341 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
3342 caught. */
3343 gimplify_compound_expr (from_p, pre_p, true);
3344 ret = GS_OK;
3345 break;
6de9cd9a 3346
26d44ae2
RH
3347 case CONSTRUCTOR:
3348 /* If we're initializing from a CONSTRUCTOR, break this into
3349 individual MODIFY_EXPRs. */
3350 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value);
6de9cd9a 3351
26d44ae2 3352 case COND_EXPR:
d91ba7b0
RH
3353 /* If we're assigning to a non-register type, push the assignment
3354 down into the branches. This is mandatory for ADDRESSABLE types,
d3147f64 3355 since we cannot generate temporaries for such, but it saves a
d91ba7b0
RH
3356 copy in other cases as well. */
3357 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
26d44ae2 3358 {
dae7ec87
JM
3359 /* This code should mirror the code in gimplify_cond_expr. */
3360 enum tree_code code = TREE_CODE (*expr_p);
3361 tree cond = *from_p;
3362 tree result = *to_p;
3363
3364 ret = gimplify_expr (&result, pre_p, post_p,
3365 is_gimple_min_lval, fb_lvalue);
3366 if (ret != GS_ERROR)
3367 ret = GS_OK;
3368
3369 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
3370 TREE_OPERAND (cond, 1)
3371 = build2 (code, void_type_node, result,
3372 TREE_OPERAND (cond, 1));
3373 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
3374 TREE_OPERAND (cond, 2)
3375 = build2 (code, void_type_node, unshare_expr (result),
3376 TREE_OPERAND (cond, 2));
3377
3378 TREE_TYPE (cond) = void_type_node;
3379 recalculate_side_effects (cond);
3380
3381 if (want_value)
3382 {
3383 gimplify_and_add (cond, pre_p);
3384 *expr_p = unshare_expr (result);
3385 }
3386 else
3387 *expr_p = cond;
3388 return ret;
26d44ae2
RH
3389 }
3390 else
3391 ret = GS_UNHANDLED;
3392 break;
6de9cd9a 3393
fa47911c
JM
3394 case CALL_EXPR:
3395 /* For calls that return in memory, give *to_p as the CALL_EXPR's
3396 return slot so that we don't generate a temporary. */
3397 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
3398 && aggregate_value_p (*from_p, *from_p))
3399 {
3400 bool use_target;
3401
dae7ec87
JM
3402 if (!(rhs_predicate_for (*to_p))(*from_p))
3403 /* If we need a temporary, *to_p isn't accurate. */
3404 use_target = false;
3405 else if (TREE_CODE (*to_p) == RESULT_DECL
3406 && DECL_NAME (*to_p) == NULL_TREE
3407 && needs_to_live_in_memory (*to_p))
9b43c474 3408 /* It's OK to use the return slot directly unless it's an NRV. */
fa47911c 3409 use_target = true;
21f9ec0c
JM
3410 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
3411 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
dae7ec87
JM
3412 /* Don't force regs into memory. */
3413 use_target = false;
3414 else if (TREE_CODE (*to_p) == VAR_DECL
3415 && DECL_GIMPLE_FORMAL_TEMP_P (*to_p))
3416 /* Don't use the original target if it's a formal temp; we
3417 don't want to take their addresses. */
3418 use_target = false;
3419 else if (TREE_CODE (*expr_p) == INIT_EXPR)
3420 /* It's OK to use the target directly if it's being
3421 initialized. */
3422 use_target = true;
fa47911c
JM
3423 else if (!is_gimple_non_addressable (*to_p))
3424 /* Don't use the original target if it's already addressable;
3425 if its address escapes, and the called function uses the
3426 NRV optimization, a conforming program could see *to_p
3427 change before the called function returns; see c++/19317.
3428 When optimizing, the return_slot pass marks more functions
3429 as safe after we have escape info. */
3430 use_target = false;
fa47911c
JM
3431 else
3432 use_target = true;
3433
3434 if (use_target)
3435 {
3436 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
3437 lang_hooks.mark_addressable (*to_p);
3438 }
3439 }
3440
3441 ret = GS_UNHANDLED;
3442 break;
3443
c6c7698d
JM
3444 /* If we're initializing from a container, push the initialization
3445 inside it. */
3446 case CLEANUP_POINT_EXPR:
3447 case BIND_EXPR:
3448 case STATEMENT_LIST:
3449 {
3450 tree wrap = *from_p;
4832214a
JM
3451 tree t;
3452
3453 ret = gimplify_expr (to_p, pre_p, post_p,
3454 is_gimple_min_lval, fb_lvalue);
3455 if (ret != GS_ERROR)
3456 ret = GS_OK;
3457
3458 t = voidify_wrapper_expr (wrap, *expr_p);
c6c7698d
JM
3459 gcc_assert (t == *expr_p);
3460
4832214a
JM
3461 if (want_value)
3462 {
3463 gimplify_and_add (wrap, pre_p);
3464 *expr_p = unshare_expr (*to_p);
3465 }
3466 else
3467 *expr_p = wrap;
c6c7698d
JM
3468 return GS_OK;
3469 }
3470
26d44ae2
RH
3471 default:
3472 ret = GS_UNHANDLED;
3473 break;
3474 }
6de9cd9a 3475
6de9cd9a
DN
3476 return ret;
3477}
3478
07beea0d
AH
3479/* Destructively convert the TREE pointer in TP into a gimple tuple if
3480 appropriate. */
3481
3482static void
3483tree_to_gimple_tuple (tree *tp)
3484{
3485
3486 switch (TREE_CODE (*tp))
3487 {
3488 case GIMPLE_MODIFY_STMT:
3489 return;
3490 case MODIFY_EXPR:
3491 {
3492 struct gimple_stmt *gs;
3493 tree lhs = TREE_OPERAND (*tp, 0);
3494 bool def_stmt_self_p = false;
3495
3496 if (TREE_CODE (lhs) == SSA_NAME)
3497 {
3498 if (SSA_NAME_DEF_STMT (lhs) == *tp)
3499 def_stmt_self_p = true;
3500 }
3501
3502 gs = &make_node (GIMPLE_MODIFY_STMT)->gstmt;
3503 gs->base = (*tp)->base;
3504 /* The set to base above overwrites the CODE. */
3505 TREE_SET_CODE ((tree) gs, GIMPLE_MODIFY_STMT);
3506
3507 gs->locus = EXPR_LOCUS (*tp);
3508 gs->operands[0] = TREE_OPERAND (*tp, 0);
3509 gs->operands[1] = TREE_OPERAND (*tp, 1);
3510 gs->block = TREE_BLOCK (*tp);
3511 *tp = (tree)gs;
3512
3513 /* If we re-gimplify a set to an SSA_NAME, we must change the
3514 SSA name's DEF_STMT link. */
3515 if (def_stmt_self_p)
3516 SSA_NAME_DEF_STMT (GIMPLE_STMT_OPERAND (*tp, 0)) = *tp;
3517
3518 return;
3519 }
3520 default:
3521 break;
3522 }
3523}
3524
d9c2d296
AP
3525/* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
3526 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
3527 DECL_GIMPLE_REG_P set. */
3528
3529static enum gimplify_status
3530gimplify_modify_expr_complex_part (tree *expr_p, tree *pre_p, bool want_value)
3531{
3532 enum tree_code code, ocode;
3533 tree lhs, rhs, new_rhs, other, realpart, imagpart;
3534
3535 lhs = GENERIC_TREE_OPERAND (*expr_p, 0);
3536 rhs = GENERIC_TREE_OPERAND (*expr_p, 1);
3537 code = TREE_CODE (lhs);
3538 lhs = TREE_OPERAND (lhs, 0);
3539
3540 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
3541 other = build1 (ocode, TREE_TYPE (rhs), lhs);
3542 other = get_formal_tmp_var (other, pre_p);
3543
3544 realpart = code == REALPART_EXPR ? rhs : other;
3545 imagpart = code == REALPART_EXPR ? other : rhs;
3546
3547 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
3548 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
3549 else
3550 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
3551
3552 GENERIC_TREE_OPERAND (*expr_p, 0) = lhs;
3553 GENERIC_TREE_OPERAND (*expr_p, 1) = new_rhs;
3554
3555 if (want_value)
3556 {
3557 tree_to_gimple_tuple (expr_p);
3558
3559 append_to_statement_list (*expr_p, pre_p);
3560 *expr_p = rhs;
3561 }
3562
3563 return GS_ALL_DONE;
3564}
3565
206048bd 3566/* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
6de9cd9a
DN
3567
3568 modify_expr
3569 : varname '=' rhs
3570 | '*' ID '=' rhs
3571
3572 PRE_P points to the list where side effects that must happen before
3573 *EXPR_P should be stored.
3574
3575 POST_P points to the list where side effects that must happen after
3576 *EXPR_P should be stored.
3577
3578 WANT_VALUE is nonzero iff we want to use the value of this expression
3579 in another expression. */
3580
3581static enum gimplify_status
3582gimplify_modify_expr (tree *expr_p, tree *pre_p, tree *post_p, bool want_value)
3583{
07beea0d
AH
3584 tree *from_p = &GENERIC_TREE_OPERAND (*expr_p, 1);
3585 tree *to_p = &GENERIC_TREE_OPERAND (*expr_p, 0);
44de5aeb 3586 enum gimplify_status ret = GS_UNHANDLED;
6de9cd9a 3587
282899df 3588 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
07beea0d 3589 || TREE_CODE (*expr_p) == GIMPLE_MODIFY_STMT
282899df 3590 || TREE_CODE (*expr_p) == INIT_EXPR);
6de9cd9a 3591
412f8986
AP
3592 /* For zero sized types only gimplify the left hand side and right hand side
3593 as statements and throw away the assignment. */
3594 if (zero_sized_type (TREE_TYPE (*from_p)))
3595 {
3596 gimplify_stmt (from_p);
3597 gimplify_stmt (to_p);
3598 append_to_statement_list (*from_p, pre_p);
3599 append_to_statement_list (*to_p, pre_p);
3600 *expr_p = NULL_TREE;
3601 return GS_ALL_DONE;
3602 }
6de9cd9a 3603
44de5aeb
RK
3604 /* See if any simplifications can be done based on what the RHS is. */
3605 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3606 want_value);
3607 if (ret != GS_UNHANDLED)
6de9cd9a
DN
3608 return ret;
3609
d25cee4d
RH
3610 /* If the value being copied is of variable width, compute the length
3611 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
3612 before gimplifying any of the operands so that we can resolve any
3613 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
3614 the size of the expression to be copied, not of the destination, so
3615 that is what we must here. */
3616 maybe_with_size_expr (from_p);
6de9cd9a 3617
44de5aeb
RK
3618 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
3619 if (ret == GS_ERROR)
3620 return ret;
6de9cd9a 3621
0c322af3
JM
3622 ret = gimplify_expr (from_p, pre_p, post_p,
3623 rhs_predicate_for (*to_p), fb_rvalue);
6de9cd9a
DN
3624 if (ret == GS_ERROR)
3625 return ret;
3626
44de5aeb
RK
3627 /* Now see if the above changed *from_p to something we handle specially. */
3628 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3629 want_value);
6de9cd9a
DN
3630 if (ret != GS_UNHANDLED)
3631 return ret;
3632
d25cee4d
RH
3633 /* If we've got a variable sized assignment between two lvalues (i.e. does
3634 not involve a call), then we can make things a bit more straightforward
3635 by converting the assignment to memcpy or memset. */
3636 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
3637 {
3638 tree from = TREE_OPERAND (*from_p, 0);
3639 tree size = TREE_OPERAND (*from_p, 1);
3640
3641 if (TREE_CODE (from) == CONSTRUCTOR)
3642 return gimplify_modify_expr_to_memset (expr_p, size, want_value);
e847cc68 3643 if (is_gimple_addressable (from))
d25cee4d
RH
3644 {
3645 *from_p = from;
3646 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value);
3647 }
3648 }
3649
e41d82f5
RH
3650 /* Transform partial stores to non-addressable complex variables into
3651 total stores. This allows us to use real instead of virtual operands
3652 for these variables, which improves optimization. */
3653 if ((TREE_CODE (*to_p) == REALPART_EXPR
3654 || TREE_CODE (*to_p) == IMAGPART_EXPR)
3655 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
3656 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
3657
8b11a64c
ZD
3658 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
3659 {
3660 /* If we've somehow already got an SSA_NAME on the LHS, then
0fa2e4df 3661 we're probably modified it twice. Not good. */
282899df 3662 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
8b11a64c
ZD
3663 *to_p = make_ssa_name (*to_p, *expr_p);
3664 }
3665
f173837a
EB
3666 /* Try to alleviate the effects of the gimplification creating artificial
3667 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
3668 if (!gimplify_ctxp->into_ssa
3669 && DECL_P (*from_p) && DECL_IGNORED_P (*from_p)
3670 && DECL_P (*to_p) && !DECL_IGNORED_P (*to_p))
3671 {
3672 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
3673 DECL_NAME (*from_p)
3674 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
3675 DECL_DEBUG_EXPR_IS_FROM (*from_p) = 1;
3676 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
3677 }
3678
6de9cd9a
DN
3679 if (want_value)
3680 {
07beea0d
AH
3681 tree_to_gimple_tuple (expr_p);
3682
6de9cd9a
DN
3683 append_to_statement_list (*expr_p, pre_p);
3684 *expr_p = *to_p;
17ad5b5e 3685 return GS_OK;
6de9cd9a
DN
3686 }
3687
17ad5b5e 3688 return GS_ALL_DONE;
6de9cd9a
DN
3689}
3690
44de5aeb
RK
3691/* Gimplify a comparison between two variable-sized objects. Do this
3692 with a call to BUILT_IN_MEMCMP. */
3693
3694static enum gimplify_status
3695gimplify_variable_sized_compare (tree *expr_p)
3696{
3697 tree op0 = TREE_OPERAND (*expr_p, 0);
3698 tree op1 = TREE_OPERAND (*expr_p, 1);
5039610b
SL
3699 tree t, arg, dest, src;
3700
3701 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
3702 arg = unshare_expr (arg);
3703 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
3704 src = build_fold_addr_expr (op1);
af72267c 3705 dest = build_fold_addr_expr (op0);
44de5aeb 3706 t = implicit_built_in_decls[BUILT_IN_MEMCMP];
5039610b 3707 t = build_call_expr (t, 3, dest, src, arg);
44de5aeb 3708 *expr_p
b4257cfc 3709 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
44de5aeb
RK
3710
3711 return GS_OK;
3712}
3713
61c25908
OH
3714/* Gimplify a comparison between two aggregate objects of integral scalar
3715 mode as a comparison between the bitwise equivalent scalar values. */
3716
3717static enum gimplify_status
3718gimplify_scalar_mode_aggregate_compare (tree *expr_p)
3719{
3720 tree op0 = TREE_OPERAND (*expr_p, 0);
3721 tree op1 = TREE_OPERAND (*expr_p, 1);
3722
3723 tree type = TREE_TYPE (op0);
3724 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
3725
3726 op0 = fold_build1 (VIEW_CONVERT_EXPR, scalar_type, op0);
3727 op1 = fold_build1 (VIEW_CONVERT_EXPR, scalar_type, op1);
3728
3729 *expr_p
3730 = fold_build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
3731
3732 return GS_OK;
3733}
3734
6de9cd9a
DN
3735/* Gimplify TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR expressions. EXPR_P
3736 points to the expression to gimplify.
3737
3738 Expressions of the form 'a && b' are gimplified to:
3739
3740 a && b ? true : false
3741
3742 gimplify_cond_expr will do the rest.
3743
3744 PRE_P points to the list where side effects that must happen before
3745 *EXPR_P should be stored. */
3746
3747static enum gimplify_status
3748gimplify_boolean_expr (tree *expr_p)
3749{
3750 /* Preserve the original type of the expression. */
3751 tree type = TREE_TYPE (*expr_p);
3752
b4257cfc 3753 *expr_p = build3 (COND_EXPR, type, *expr_p,
b6f65e3c
RS
3754 fold_convert (type, boolean_true_node),
3755 fold_convert (type, boolean_false_node));
6de9cd9a
DN
3756
3757 return GS_OK;
3758}
3759
3760/* Gimplifies an expression sequence. This function gimplifies each
3761 expression and re-writes the original expression with the last
3762 expression of the sequence in GIMPLE form.
3763
3764 PRE_P points to the list where the side effects for all the
3765 expressions in the sequence will be emitted.
d3147f64 3766
6de9cd9a
DN
3767 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
3768/* ??? Should rearrange to share the pre-queue with all the indirect
d3147f64 3769 invocations of gimplify_expr. Would probably save on creations
6de9cd9a
DN
3770 of statement_list nodes. */
3771
3772static enum gimplify_status
3773gimplify_compound_expr (tree *expr_p, tree *pre_p, bool want_value)
3774{
3775 tree t = *expr_p;
3776
3777 do
3778 {
3779 tree *sub_p = &TREE_OPERAND (t, 0);
3780
3781 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
3782 gimplify_compound_expr (sub_p, pre_p, false);
3783 else
3784 gimplify_stmt (sub_p);
3785 append_to_statement_list (*sub_p, pre_p);
3786
3787 t = TREE_OPERAND (t, 1);
3788 }
3789 while (TREE_CODE (t) == COMPOUND_EXPR);
3790
3791 *expr_p = t;
3792 if (want_value)
3793 return GS_OK;
3794 else
3795 {
3796 gimplify_stmt (expr_p);
3797 return GS_ALL_DONE;
3798 }
3799}
3800
3801/* Gimplifies a statement list. These may be created either by an
1ea7e6ad 3802 enlightened front-end, or by shortcut_cond_expr. */
6de9cd9a
DN
3803
3804static enum gimplify_status
c6c7698d 3805gimplify_statement_list (tree *expr_p, tree *pre_p)
6de9cd9a 3806{
c6c7698d
JM
3807 tree temp = voidify_wrapper_expr (*expr_p, NULL);
3808
6de9cd9a
DN
3809 tree_stmt_iterator i = tsi_start (*expr_p);
3810
3811 while (!tsi_end_p (i))
3812 {
3813 tree t;
3814
3815 gimplify_stmt (tsi_stmt_ptr (i));
3816
3817 t = tsi_stmt (i);
65355d53
RH
3818 if (t == NULL)
3819 tsi_delink (&i);
3820 else if (TREE_CODE (t) == STATEMENT_LIST)
6de9cd9a
DN
3821 {
3822 tsi_link_before (&i, t, TSI_SAME_STMT);
3823 tsi_delink (&i);
3824 }
3825 else
3826 tsi_next (&i);
3827 }
3828
c6c7698d
JM
3829 if (temp)
3830 {
3831 append_to_statement_list (*expr_p, pre_p);
3832 *expr_p = temp;
3833 return GS_OK;
3834 }
3835
6de9cd9a
DN
3836 return GS_ALL_DONE;
3837}
3838
3839/* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
3840 gimplify. After gimplification, EXPR_P will point to a new temporary
3841 that holds the original value of the SAVE_EXPR node.
3842
3843 PRE_P points to the list where side effects that must happen before
3844 *EXPR_P should be stored. */
3845
3846static enum gimplify_status
3847gimplify_save_expr (tree *expr_p, tree *pre_p, tree *post_p)
3848{
3849 enum gimplify_status ret = GS_ALL_DONE;
3850 tree val;
3851
282899df 3852 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
6de9cd9a
DN
3853 val = TREE_OPERAND (*expr_p, 0);
3854
7f5e6307
RH
3855 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
3856 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
17ad5b5e 3857 {
7f5e6307
RH
3858 /* The operand may be a void-valued expression such as SAVE_EXPRs
3859 generated by the Java frontend for class initialization. It is
3860 being executed only for its side-effects. */
3861 if (TREE_TYPE (val) == void_type_node)
3862 {
3863 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3864 is_gimple_stmt, fb_none);
3865 append_to_statement_list (TREE_OPERAND (*expr_p, 0), pre_p);
3866 val = NULL;
3867 }
3868 else
3869 val = get_initialized_tmp_var (val, pre_p, post_p);
3870
3871 TREE_OPERAND (*expr_p, 0) = val;
3872 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
17ad5b5e 3873 }
6de9cd9a 3874
7f5e6307
RH
3875 *expr_p = val;
3876
6de9cd9a
DN
3877 return ret;
3878}
3879
206048bd 3880/* Re-write the ADDR_EXPR node pointed to by EXPR_P
6de9cd9a
DN
3881
3882 unary_expr
3883 : ...
3884 | '&' varname
3885 ...
3886
3887 PRE_P points to the list where side effects that must happen before
3888 *EXPR_P should be stored.
3889
3890 POST_P points to the list where side effects that must happen after
3891 *EXPR_P should be stored. */
3892
3893static enum gimplify_status
3894gimplify_addr_expr (tree *expr_p, tree *pre_p, tree *post_p)
3895{
3896 tree expr = *expr_p;
3897 tree op0 = TREE_OPERAND (expr, 0);
3898 enum gimplify_status ret;
3899
3900 switch (TREE_CODE (op0))
3901 {
3902 case INDIRECT_REF:
7ccf35ed 3903 case MISALIGNED_INDIRECT_REF:
67f23620 3904 do_indirect_ref:
6de9cd9a
DN
3905 /* Check if we are dealing with an expression of the form '&*ptr'.
3906 While the front end folds away '&*ptr' into 'ptr', these
3907 expressions may be generated internally by the compiler (e.g.,
3908 builtins like __builtin_va_end). */
67f23620
RH
3909 /* Caution: the silent array decomposition semantics we allow for
3910 ADDR_EXPR means we can't always discard the pair. */
c87ac7e8
AO
3911 /* Gimplification of the ADDR_EXPR operand may drop
3912 cv-qualification conversions, so make sure we add them if
3913 needed. */
67f23620
RH
3914 {
3915 tree op00 = TREE_OPERAND (op0, 0);
3916 tree t_expr = TREE_TYPE (expr);
3917 tree t_op00 = TREE_TYPE (op00);
3918
3919 if (!lang_hooks.types_compatible_p (t_expr, t_op00))
3920 {
3921#ifdef ENABLE_CHECKING
3922 tree t_op0 = TREE_TYPE (op0);
c87ac7e8
AO
3923 gcc_assert (POINTER_TYPE_P (t_expr)
3924 && cpt_same_type (TREE_CODE (t_op0) == ARRAY_TYPE
3925 ? TREE_TYPE (t_op0) : t_op0,
67f23620
RH
3926 TREE_TYPE (t_expr))
3927 && POINTER_TYPE_P (t_op00)
3928 && cpt_same_type (t_op0, TREE_TYPE (t_op00)));
3929#endif
3930 op00 = fold_convert (TREE_TYPE (expr), op00);
3931 }
3932 *expr_p = op00;
3933 ret = GS_OK;
3934 }
6de9cd9a
DN
3935 break;
3936
44de5aeb
RK
3937 case VIEW_CONVERT_EXPR:
3938 /* Take the address of our operand and then convert it to the type of
af72267c
RK
3939 this ADDR_EXPR.
3940
3941 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
3942 all clear. The impact of this transformation is even less clear. */
91804752
EB
3943
3944 /* If the operand is a useless conversion, look through it. Doing so
3945 guarantees that the ADDR_EXPR and its operand will remain of the
3946 same type. */
3947 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
317c0092 3948 op0 = TREE_OPERAND (op0, 0);
91804752 3949
44de5aeb 3950 *expr_p = fold_convert (TREE_TYPE (expr),
af72267c 3951 build_fold_addr_expr (TREE_OPERAND (op0, 0)));
44de5aeb 3952 ret = GS_OK;
6de9cd9a
DN
3953 break;
3954
3955 default:
3956 /* We use fb_either here because the C frontend sometimes takes
5201931e
JM
3957 the address of a call that returns a struct; see
3958 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
3959 the implied temporary explicit. */
6de9cd9a 3960 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
e847cc68 3961 is_gimple_addressable, fb_either);
6de9cd9a
DN
3962 if (ret != GS_ERROR)
3963 {
67f23620
RH
3964 op0 = TREE_OPERAND (expr, 0);
3965
3966 /* For various reasons, the gimplification of the expression
3967 may have made a new INDIRECT_REF. */
3968 if (TREE_CODE (op0) == INDIRECT_REF)
3969 goto do_indirect_ref;
9e51aaf5 3970
5377d5ba
RK
3971 /* Make sure TREE_INVARIANT, TREE_CONSTANT, and TREE_SIDE_EFFECTS
3972 is set properly. */
127203ac 3973 recompute_tree_invariant_for_addr_expr (expr);
6de9cd9a
DN
3974
3975 /* Mark the RHS addressable. */
673fda6b 3976 lang_hooks.mark_addressable (TREE_OPERAND (expr, 0));
6de9cd9a
DN
3977 }
3978 break;
3979 }
3980
6de9cd9a
DN
3981 return ret;
3982}
3983
3984/* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
3985 value; output operands should be a gimple lvalue. */
3986
3987static enum gimplify_status
3988gimplify_asm_expr (tree *expr_p, tree *pre_p, tree *post_p)
3989{
3990 tree expr = *expr_p;
3991 int noutputs = list_length (ASM_OUTPUTS (expr));
3992 const char **oconstraints
3993 = (const char **) alloca ((noutputs) * sizeof (const char *));
3994 int i;
3995 tree link;
3996 const char *constraint;
3997 bool allows_mem, allows_reg, is_inout;
3998 enum gimplify_status ret, tret;
3999
6de9cd9a
DN
4000 ret = GS_ALL_DONE;
4001 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = TREE_CHAIN (link))
4002 {
6db081f1 4003 size_t constraint_len;
6de9cd9a
DN
4004 oconstraints[i] = constraint
4005 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
6db081f1
AP
4006 constraint_len = strlen (constraint);
4007 if (constraint_len == 0)
4008 continue;
6de9cd9a
DN
4009
4010 parse_output_constraint (&constraint, i, 0, 0,
4011 &allows_mem, &allows_reg, &is_inout);
4012
4013 if (!allows_reg && allows_mem)
673fda6b 4014 lang_hooks.mark_addressable (TREE_VALUE (link));
6de9cd9a
DN
4015
4016 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4017 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
4018 fb_lvalue | fb_mayfail);
4019 if (tret == GS_ERROR)
4020 {
4021 error ("invalid lvalue in asm output %d", i);
4022 ret = tret;
4023 }
4024
4025 if (is_inout)
4026 {
4027 /* An input/output operand. To give the optimizers more
4028 flexibility, split it into separate input and output
4029 operands. */
4030 tree input;
4031 char buf[10];
6de9cd9a
DN
4032
4033 /* Turn the in/out constraint into an output constraint. */
4034 char *p = xstrdup (constraint);
4035 p[0] = '=';
4036 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
6de9cd9a
DN
4037
4038 /* And add a matching input constraint. */
4039 if (allows_reg)
4040 {
4041 sprintf (buf, "%d", i);
372d72d9
JJ
4042
4043 /* If there are multiple alternatives in the constraint,
4044 handle each of them individually. Those that allow register
4045 will be replaced with operand number, the others will stay
4046 unchanged. */
4047 if (strchr (p, ',') != NULL)
4048 {
4049 size_t len = 0, buflen = strlen (buf);
4050 char *beg, *end, *str, *dst;
4051
4052 for (beg = p + 1;;)
4053 {
4054 end = strchr (beg, ',');
4055 if (end == NULL)
4056 end = strchr (beg, '\0');
4057 if ((size_t) (end - beg) < buflen)
4058 len += buflen + 1;
4059 else
4060 len += end - beg + 1;
4061 if (*end)
4062 beg = end + 1;
4063 else
4064 break;
4065 }
4066
858904db 4067 str = (char *) alloca (len);
372d72d9
JJ
4068 for (beg = p + 1, dst = str;;)
4069 {
4070 const char *tem;
4071 bool mem_p, reg_p, inout_p;
4072
4073 end = strchr (beg, ',');
4074 if (end)
4075 *end = '\0';
4076 beg[-1] = '=';
4077 tem = beg - 1;
4078 parse_output_constraint (&tem, i, 0, 0,
4079 &mem_p, &reg_p, &inout_p);
4080 if (dst != str)
4081 *dst++ = ',';
4082 if (reg_p)
4083 {
4084 memcpy (dst, buf, buflen);
4085 dst += buflen;
4086 }
4087 else
4088 {
4089 if (end)
4090 len = end - beg;
4091 else
4092 len = strlen (beg);
4093 memcpy (dst, beg, len);
4094 dst += len;
4095 }
4096 if (end)
4097 beg = end + 1;
4098 else
4099 break;
4100 }
4101 *dst = '\0';
4102 input = build_string (dst - str, str);
4103 }
4104 else
4105 input = build_string (strlen (buf), buf);
6de9cd9a
DN
4106 }
4107 else
4108 input = build_string (constraint_len - 1, constraint + 1);
372d72d9
JJ
4109
4110 free (p);
4111
6de9cd9a
DN
4112 input = build_tree_list (build_tree_list (NULL_TREE, input),
4113 unshare_expr (TREE_VALUE (link)));
4114 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
4115 }
4116 }
4117
4118 for (link = ASM_INPUTS (expr); link; ++i, link = TREE_CHAIN (link))
4119 {
4120 constraint
4121 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4122 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
4123 oconstraints, &allows_mem, &allows_reg);
4124
4125 /* If the operand is a memory input, it should be an lvalue. */
4126 if (!allows_reg && allows_mem)
4127 {
6de9cd9a
DN
4128 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4129 is_gimple_lvalue, fb_lvalue | fb_mayfail);
ba38541a 4130 lang_hooks.mark_addressable (TREE_VALUE (link));
6de9cd9a
DN
4131 if (tret == GS_ERROR)
4132 {
4133 error ("memory input %d is not directly addressable", i);
4134 ret = tret;
4135 }
4136 }
4137 else
4138 {
4139 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
e670d9e4 4140 is_gimple_asm_val, fb_rvalue);
6de9cd9a
DN
4141 if (tret == GS_ERROR)
4142 ret = tret;
4143 }
4144 }
4145
4146 return ret;
4147}
4148
4149/* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
4150 WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
4151 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
4152 return to this function.
4153
4154 FIXME should we complexify the prequeue handling instead? Or use flags
4155 for all the cleanups and let the optimizer tighten them up? The current
4156 code seems pretty fragile; it will break on a cleanup within any
4157 non-conditional nesting. But any such nesting would be broken, anyway;
4158 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
4159 and continues out of it. We can do that at the RTL level, though, so
4160 having an optimizer to tighten up try/finally regions would be a Good
4161 Thing. */
4162
4163static enum gimplify_status
4164gimplify_cleanup_point_expr (tree *expr_p, tree *pre_p)
4165{
4166 tree_stmt_iterator iter;
4167 tree body;
4168
325c3691 4169 tree temp = voidify_wrapper_expr (*expr_p, NULL);
6de9cd9a
DN
4170
4171 /* We only care about the number of conditions between the innermost
df77f454
JM
4172 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
4173 any cleanups collected outside the CLEANUP_POINT_EXPR. */
6de9cd9a 4174 int old_conds = gimplify_ctxp->conditions;
df77f454 4175 tree old_cleanups = gimplify_ctxp->conditional_cleanups;
6de9cd9a 4176 gimplify_ctxp->conditions = 0;
df77f454 4177 gimplify_ctxp->conditional_cleanups = NULL_TREE;
6de9cd9a
DN
4178
4179 body = TREE_OPERAND (*expr_p, 0);
4180 gimplify_to_stmt_list (&body);
4181
4182 gimplify_ctxp->conditions = old_conds;
df77f454 4183 gimplify_ctxp->conditional_cleanups = old_cleanups;
6de9cd9a
DN
4184
4185 for (iter = tsi_start (body); !tsi_end_p (iter); )
4186 {
4187 tree *wce_p = tsi_stmt_ptr (iter);
4188 tree wce = *wce_p;
4189
4190 if (TREE_CODE (wce) == WITH_CLEANUP_EXPR)
4191 {
4192 if (tsi_one_before_end_p (iter))
4193 {
ac45df5d 4194 tsi_link_before (&iter, TREE_OPERAND (wce, 0), TSI_SAME_STMT);
6de9cd9a
DN
4195 tsi_delink (&iter);
4196 break;
4197 }
4198 else
4199 {
4200 tree sl, tfe;
40aac948
JM
4201 enum tree_code code;
4202
4203 if (CLEANUP_EH_ONLY (wce))
4204 code = TRY_CATCH_EXPR;
4205 else
4206 code = TRY_FINALLY_EXPR;
6de9cd9a
DN
4207
4208 sl = tsi_split_statement_list_after (&iter);
b4257cfc 4209 tfe = build2 (code, void_type_node, sl, NULL_TREE);
ac45df5d
RH
4210 append_to_statement_list (TREE_OPERAND (wce, 0),
4211 &TREE_OPERAND (tfe, 1));
6de9cd9a
DN
4212 *wce_p = tfe;
4213 iter = tsi_start (sl);
4214 }
4215 }
4216 else
4217 tsi_next (&iter);
4218 }
4219
4220 if (temp)
4221 {
4222 *expr_p = temp;
4223 append_to_statement_list (body, pre_p);
4224 return GS_OK;
4225 }
4226 else
4227 {
4228 *expr_p = body;
4229 return GS_ALL_DONE;
4230 }
4231}
4232
4233/* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
4234 is the cleanup action required. */
4235
4236static void
40aac948 4237gimple_push_cleanup (tree var, tree cleanup, bool eh_only, tree *pre_p)
6de9cd9a
DN
4238{
4239 tree wce;
4240
4241 /* Errors can result in improperly nested cleanups. Which results in
4242 confusion when trying to resolve the WITH_CLEANUP_EXPR. */
4243 if (errorcount || sorrycount)
4244 return;
4245
4246 if (gimple_conditional_context ())
4247 {
4248 /* If we're in a conditional context, this is more complex. We only
4249 want to run the cleanup if we actually ran the initialization that
4250 necessitates it, but we want to run it after the end of the
4251 conditional context. So we wrap the try/finally around the
4252 condition and use a flag to determine whether or not to actually
4253 run the destructor. Thus
4254
4255 test ? f(A()) : 0
4256
4257 becomes (approximately)
4258
4259 flag = 0;
4260 try {
4261 if (test) { A::A(temp); flag = 1; val = f(temp); }
4262 else { val = 0; }
4263 } finally {
4264 if (flag) A::~A(temp);
4265 }
4266 val
4267 */
4268
4269 tree flag = create_tmp_var (boolean_type_node, "cleanup");
b56b9fe3
RS
4270 tree ffalse = build_gimple_modify_stmt (flag, boolean_false_node);
4271 tree ftrue = build_gimple_modify_stmt (flag, boolean_true_node);
b4257cfc
RG
4272 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
4273 wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
6de9cd9a
DN
4274 append_to_statement_list (ffalse, &gimplify_ctxp->conditional_cleanups);
4275 append_to_statement_list (wce, &gimplify_ctxp->conditional_cleanups);
4276 append_to_statement_list (ftrue, pre_p);
4277
4278 /* Because of this manipulation, and the EH edges that jump
4279 threading cannot redirect, the temporary (VAR) will appear
4280 to be used uninitialized. Don't warn. */
4281 TREE_NO_WARNING (var) = 1;
4282 }
4283 else
4284 {
b4257cfc 4285 wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
40aac948 4286 CLEANUP_EH_ONLY (wce) = eh_only;
6de9cd9a
DN
4287 append_to_statement_list (wce, pre_p);
4288 }
4289
ac45df5d 4290 gimplify_stmt (&TREE_OPERAND (wce, 0));
6de9cd9a
DN
4291}
4292
4293/* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
4294
4295static enum gimplify_status
4296gimplify_target_expr (tree *expr_p, tree *pre_p, tree *post_p)
4297{
4298 tree targ = *expr_p;
4299 tree temp = TARGET_EXPR_SLOT (targ);
4300 tree init = TARGET_EXPR_INITIAL (targ);
4301 enum gimplify_status ret;
4302
4303 if (init)
4304 {
3a5b9284
RH
4305 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
4306 to the temps list. */
6de9cd9a
DN
4307 gimple_add_tmp_var (temp);
4308
3a5b9284
RH
4309 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
4310 expression is supposed to initialize the slot. */
4311 if (VOID_TYPE_P (TREE_TYPE (init)))
4312 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
4313 else
325c3691 4314 {
c6c7698d
JM
4315 init = build2 (INIT_EXPR, void_type_node, temp, init);
4316 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt,
4317 fb_none);
325c3691 4318 }
3a5b9284 4319 if (ret == GS_ERROR)
abc67de1
SM
4320 {
4321 /* PR c++/28266 Make sure this is expanded only once. */
4322 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
4323 return GS_ERROR;
4324 }
6de9cd9a
DN
4325 append_to_statement_list (init, pre_p);
4326
4327 /* If needed, push the cleanup for the temp. */
4328 if (TARGET_EXPR_CLEANUP (targ))
4329 {
4330 gimplify_stmt (&TARGET_EXPR_CLEANUP (targ));
40aac948
JM
4331 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
4332 CLEANUP_EH_ONLY (targ), pre_p);
6de9cd9a
DN
4333 }
4334
4335 /* Only expand this once. */
4336 TREE_OPERAND (targ, 3) = init;
4337 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
4338 }
282899df 4339 else
6de9cd9a 4340 /* We should have expanded this before. */
282899df 4341 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
6de9cd9a
DN
4342
4343 *expr_p = temp;
4344 return GS_OK;
4345}
4346
4347/* Gimplification of expression trees. */
4348
4349/* Gimplify an expression which appears at statement context; usually, this
be00f578 4350 means replacing it with a suitably gimple STATEMENT_LIST. */
6de9cd9a
DN
4351
4352void
4353gimplify_stmt (tree *stmt_p)
4354{
4355 gimplify_expr (stmt_p, NULL, NULL, is_gimple_stmt, fb_none);
6de9cd9a
DN
4356}
4357
4358/* Similarly, but force the result to be a STATEMENT_LIST. */
4359
4360void
4361gimplify_to_stmt_list (tree *stmt_p)
4362{
4363 gimplify_stmt (stmt_p);
65355d53
RH
4364 if (!*stmt_p)
4365 *stmt_p = alloc_stmt_list ();
4366 else if (TREE_CODE (*stmt_p) != STATEMENT_LIST)
6de9cd9a
DN
4367 {
4368 tree t = *stmt_p;
be00f578 4369 *stmt_p = alloc_stmt_list ();
6de9cd9a
DN
4370 append_to_statement_list (t, stmt_p);
4371 }
4372}
4373
953ff289
DN
4374
4375/* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
4376 to CTX. If entries already exist, force them to be some flavor of private.
4377 If there is no enclosing parallel, do nothing. */
4378
4379void
4380omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
4381{
4382 splay_tree_node n;
4383
4384 if (decl == NULL || !DECL_P (decl))
4385 return;
4386
4387 do
4388 {
4389 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4390 if (n != NULL)
4391 {
4392 if (n->value & GOVD_SHARED)
4393 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
4394 else
4395 return;
4396 }
4397 else if (ctx->is_parallel)
4398 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
4399
4400 ctx = ctx->outer_context;
4401 }
4402 while (ctx);
4403}
4404
4405/* Similarly for each of the type sizes of TYPE. */
4406
4407static void
4408omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
4409{
4410 if (type == NULL || type == error_mark_node)
4411 return;
4412 type = TYPE_MAIN_VARIANT (type);
4413
4414 if (pointer_set_insert (ctx->privatized_types, type))
4415 return;
4416
4417 switch (TREE_CODE (type))
4418 {
4419 case INTEGER_TYPE:
4420 case ENUMERAL_TYPE:
4421 case BOOLEAN_TYPE:
953ff289
DN
4422 case REAL_TYPE:
4423 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
4424 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
4425 break;
4426
4427 case ARRAY_TYPE:
4428 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4429 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
4430 break;
4431
4432 case RECORD_TYPE:
4433 case UNION_TYPE:
4434 case QUAL_UNION_TYPE:
4435 {
4436 tree field;
4437 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4438 if (TREE_CODE (field) == FIELD_DECL)
4439 {
4440 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
4441 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
4442 }
4443 }
4444 break;
4445
4446 case POINTER_TYPE:
4447 case REFERENCE_TYPE:
4448 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4449 break;
4450
4451 default:
4452 break;
4453 }
4454
4455 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
4456 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
4457 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
4458}
4459
4460/* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
4461
4462static void
4463omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
4464{
4465 splay_tree_node n;
4466 unsigned int nflags;
4467 tree t;
4468
4469 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4470 return;
4471
4472 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
4473 there are constructors involved somewhere. */
4474 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
4475 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
4476 flags |= GOVD_SEEN;
4477
4478 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4479 if (n != NULL)
4480 {
4481 /* We shouldn't be re-adding the decl with the same data
4482 sharing class. */
4483 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
4484 /* The only combination of data sharing classes we should see is
4485 FIRSTPRIVATE and LASTPRIVATE. */
4486 nflags = n->value | flags;
4487 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
4488 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
4489 n->value = nflags;
4490 return;
4491 }
4492
4493 /* When adding a variable-sized variable, we have to handle all sorts
4494 of additional bits of data: the pointer replacement variable, and
4495 the parameters of the type. */
4c923c28 4496 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
953ff289
DN
4497 {
4498 /* Add the pointer replacement variable as PRIVATE if the variable
4499 replacement is private, else FIRSTPRIVATE since we'll need the
4500 address of the original variable either for SHARED, or for the
4501 copy into or out of the context. */
4502 if (!(flags & GOVD_LOCAL))
4503 {
4504 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
4505 nflags |= flags & GOVD_SEEN;
4506 t = DECL_VALUE_EXPR (decl);
4507 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
4508 t = TREE_OPERAND (t, 0);
4509 gcc_assert (DECL_P (t));
4510 omp_add_variable (ctx, t, nflags);
4511 }
4512
4513 /* Add all of the variable and type parameters (which should have
4514 been gimplified to a formal temporary) as FIRSTPRIVATE. */
4515 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
4516 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
4517 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4518
4519 /* The variable-sized variable itself is never SHARED, only some form
4520 of PRIVATE. The sharing would take place via the pointer variable
4521 which we remapped above. */
4522 if (flags & GOVD_SHARED)
4523 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
4524 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
4525
4526 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
4527 alloca statement we generate for the variable, so make sure it
4528 is available. This isn't automatically needed for the SHARED
4288fea2
JJ
4529 case, since we won't be allocating local storage then.
4530 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
4531 in this case omp_notice_variable will be called later
4532 on when it is gimplified. */
4533 else if (! (flags & GOVD_LOCAL))
953ff289
DN
4534 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
4535 }
4536 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
4537 {
4538 gcc_assert ((flags & GOVD_LOCAL) == 0);
4539 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4540
4541 /* Similar to the direct variable sized case above, we'll need the
4542 size of references being privatized. */
4543 if ((flags & GOVD_SHARED) == 0)
4544 {
4545 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
4c923c28 4546 if (TREE_CODE (t) != INTEGER_CST)
953ff289
DN
4547 omp_notice_variable (ctx, t, true);
4548 }
4549 }
4550
4551 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
4552}
4553
4554/* Record the fact that DECL was used within the OpenMP context CTX.
4555 IN_CODE is true when real code uses DECL, and false when we should
4556 merely emit default(none) errors. Return true if DECL is going to
4557 be remapped and thus DECL shouldn't be gimplified into its
4558 DECL_VALUE_EXPR (if any). */
4559
4560static bool
4561omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
4562{
4563 splay_tree_node n;
4564 unsigned flags = in_code ? GOVD_SEEN : 0;
4565 bool ret = false, shared;
4566
4567 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4568 return false;
4569
4570 /* Threadprivate variables are predetermined. */
4571 if (is_global_var (decl))
4572 {
4573 if (DECL_THREAD_LOCAL_P (decl))
4574 return false;
4575
4576 if (DECL_HAS_VALUE_EXPR_P (decl))
4577 {
4578 tree value = get_base_address (DECL_VALUE_EXPR (decl));
4579
4580 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
4581 return false;
4582 }
4583 }
4584
4585 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4586 if (n == NULL)
4587 {
4588 enum omp_clause_default_kind default_kind, kind;
4589
4590 if (!ctx->is_parallel)
4591 goto do_outer;
4592
4593 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
4594 remapped firstprivate instead of shared. To some extent this is
4595 addressed in omp_firstprivatize_type_sizes, but not effectively. */
4596 default_kind = ctx->default_kind;
4597 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
4598 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
4599 default_kind = kind;
4600
4601 switch (default_kind)
4602 {
4603 case OMP_CLAUSE_DEFAULT_NONE:
4604 error ("%qs not specified in enclosing parallel",
4605 IDENTIFIER_POINTER (DECL_NAME (decl)));
4606 error ("%Henclosing parallel", &ctx->location);
4607 /* FALLTHRU */
4608 case OMP_CLAUSE_DEFAULT_SHARED:
4609 flags |= GOVD_SHARED;
4610 break;
4611 case OMP_CLAUSE_DEFAULT_PRIVATE:
4612 flags |= GOVD_PRIVATE;
4613 break;
4614 default:
4615 gcc_unreachable ();
4616 }
4617
4618 omp_add_variable (ctx, decl, flags);
4619
4620 shared = (flags & GOVD_SHARED) != 0;
4621 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4622 goto do_outer;
4623 }
4624
4625 shared = ((flags | n->value) & GOVD_SHARED) != 0;
4626 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4627
4628 /* If nothing changed, there's nothing left to do. */
4629 if ((n->value & flags) == flags)
4630 return ret;
4631 flags |= n->value;
4632 n->value = flags;
4633
4634 do_outer:
4635 /* If the variable is private in the current context, then we don't
4636 need to propagate anything to an outer context. */
4637 if (flags & GOVD_PRIVATE)
4638 return ret;
4639 if (ctx->outer_context
4640 && omp_notice_variable (ctx->outer_context, decl, in_code))
4641 return true;
4642 return ret;
4643}
4644
4645/* Verify that DECL is private within CTX. If there's specific information
4646 to the contrary in the innermost scope, generate an error. */
4647
4648static bool
4649omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
4650{
4651 splay_tree_node n;
4652
4653 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4654 if (n != NULL)
4655 {
4656 if (n->value & GOVD_SHARED)
4657 {
4658 if (ctx == gimplify_omp_ctxp)
f6a5ffbf
JJ
4659 {
4660 error ("iteration variable %qs should be private",
4661 IDENTIFIER_POINTER (DECL_NAME (decl)));
4662 n->value = GOVD_PRIVATE;
4663 return true;
4664 }
4665 else
4666 return false;
953ff289 4667 }
761041be
JJ
4668 else if ((n->value & GOVD_EXPLICIT) != 0
4669 && (ctx == gimplify_omp_ctxp
4670 || (ctx->is_combined_parallel
4671 && gimplify_omp_ctxp->outer_context == ctx)))
4672 {
4673 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
4674 error ("iteration variable %qs should not be firstprivate",
4675 IDENTIFIER_POINTER (DECL_NAME (decl)));
4676 else if ((n->value & GOVD_REDUCTION) != 0)
4677 error ("iteration variable %qs should not be reduction",
4678 IDENTIFIER_POINTER (DECL_NAME (decl)));
4679 }
953ff289
DN
4680 return true;
4681 }
4682
f6a5ffbf 4683 if (ctx->is_parallel)
953ff289 4684 return false;
f6a5ffbf
JJ
4685 else if (ctx->outer_context)
4686 return omp_is_private (ctx->outer_context, decl);
953ff289
DN
4687 else
4688 return !is_global_var (decl);
4689}
4690
07b7aade
JJ
4691/* Return true if DECL is private within a parallel region
4692 that binds to the current construct's context or in parallel
4693 region's REDUCTION clause. */
4694
4695static bool
4696omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
4697{
4698 splay_tree_node n;
4699
4700 do
4701 {
4702 ctx = ctx->outer_context;
4703 if (ctx == NULL)
4704 return !(is_global_var (decl)
4705 /* References might be private, but might be shared too. */
4706 || lang_hooks.decls.omp_privatize_by_reference (decl));
4707
4708 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4709 if (n != NULL)
4710 return (n->value & GOVD_SHARED) == 0;
4711 }
4712 while (!ctx->is_parallel);
4713 return false;
4714}
4715
953ff289
DN
4716/* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
4717 and previous omp contexts. */
4718
4719static void
761041be
JJ
4720gimplify_scan_omp_clauses (tree *list_p, tree *pre_p, bool in_parallel,
4721 bool in_combined_parallel)
953ff289
DN
4722{
4723 struct gimplify_omp_ctx *ctx, *outer_ctx;
4724 tree c;
4725
761041be 4726 ctx = new_omp_context (in_parallel, in_combined_parallel);
953ff289
DN
4727 outer_ctx = ctx->outer_context;
4728
4729 while ((c = *list_p) != NULL)
4730 {
4731 enum gimplify_status gs;
4732 bool remove = false;
4733 bool notice_outer = true;
07b7aade 4734 const char *check_non_private = NULL;
953ff289
DN
4735 unsigned int flags;
4736 tree decl;
4737
aaf46ef9 4738 switch (OMP_CLAUSE_CODE (c))
953ff289
DN
4739 {
4740 case OMP_CLAUSE_PRIVATE:
4741 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
4742 notice_outer = false;
4743 goto do_add;
4744 case OMP_CLAUSE_SHARED:
4745 flags = GOVD_SHARED | GOVD_EXPLICIT;
4746 goto do_add;
4747 case OMP_CLAUSE_FIRSTPRIVATE:
4748 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
07b7aade 4749 check_non_private = "firstprivate";
953ff289
DN
4750 goto do_add;
4751 case OMP_CLAUSE_LASTPRIVATE:
4752 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
07b7aade 4753 check_non_private = "lastprivate";
953ff289
DN
4754 goto do_add;
4755 case OMP_CLAUSE_REDUCTION:
4756 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
07b7aade 4757 check_non_private = "reduction";
953ff289
DN
4758 goto do_add;
4759
4760 do_add:
4761 decl = OMP_CLAUSE_DECL (c);
4762 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4763 {
4764 remove = true;
4765 break;
4766 }
4767 omp_add_variable (ctx, decl, flags);
693d710f 4768 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
953ff289
DN
4769 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
4770 {
4771 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
693d710f 4772 GOVD_LOCAL | GOVD_SEEN);
953ff289
DN
4773 gimplify_omp_ctxp = ctx;
4774 push_gimplify_context ();
4775 gimplify_stmt (&OMP_CLAUSE_REDUCTION_INIT (c));
4776 pop_gimplify_context (OMP_CLAUSE_REDUCTION_INIT (c));
4777 push_gimplify_context ();
4778 gimplify_stmt (&OMP_CLAUSE_REDUCTION_MERGE (c));
4779 pop_gimplify_context (OMP_CLAUSE_REDUCTION_MERGE (c));
4780 gimplify_omp_ctxp = outer_ctx;
4781 }
4782 if (notice_outer)
4783 goto do_notice;
4784 break;
4785
4786 case OMP_CLAUSE_COPYIN:
4787 case OMP_CLAUSE_COPYPRIVATE:
4788 decl = OMP_CLAUSE_DECL (c);
4789 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4790 {
4791 remove = true;
4792 break;
4793 }
4794 do_notice:
4795 if (outer_ctx)
4796 omp_notice_variable (outer_ctx, decl, true);
07b7aade
JJ
4797 if (check_non_private
4798 && !in_parallel
4799 && omp_check_private (ctx, decl))
4800 {
4801 error ("%s variable %qs is private in outer context",
4802 check_non_private, IDENTIFIER_POINTER (DECL_NAME (decl)));
4803 remove = true;
4804 }
953ff289
DN
4805 break;
4806
953ff289 4807 case OMP_CLAUSE_IF:
d568d1a8
RS
4808 OMP_CLAUSE_OPERAND (c, 0)
4809 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
4810 /* Fall through. */
4811
4812 case OMP_CLAUSE_SCHEDULE:
953ff289 4813 case OMP_CLAUSE_NUM_THREADS:
aaf46ef9 4814 gs = gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
953ff289
DN
4815 is_gimple_val, fb_rvalue);
4816 if (gs == GS_ERROR)
4817 remove = true;
4818 break;
4819
4820 case OMP_CLAUSE_NOWAIT:
4821 case OMP_CLAUSE_ORDERED:
4822 break;
4823
4824 case OMP_CLAUSE_DEFAULT:
4825 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
4826 break;
4827
4828 default:
4829 gcc_unreachable ();
4830 }
4831
4832 if (remove)
4833 *list_p = OMP_CLAUSE_CHAIN (c);
4834 else
4835 list_p = &OMP_CLAUSE_CHAIN (c);
4836 }
4837
4838 gimplify_omp_ctxp = ctx;
4839}
4840
4841/* For all variables that were not actually used within the context,
4842 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
4843
4844static int
4845gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
4846{
4847 tree *list_p = (tree *) data;
4848 tree decl = (tree) n->key;
4849 unsigned flags = n->value;
aaf46ef9 4850 enum omp_clause_code code;
953ff289
DN
4851 tree clause;
4852 bool private_debug;
4853
4854 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
4855 return 0;
4856 if ((flags & GOVD_SEEN) == 0)
4857 return 0;
4858 if (flags & GOVD_DEBUG_PRIVATE)
4859 {
4860 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
4861 private_debug = true;
4862 }
4863 else
4864 private_debug
4865 = lang_hooks.decls.omp_private_debug_clause (decl,
4866 !!(flags & GOVD_SHARED));
4867 if (private_debug)
4868 code = OMP_CLAUSE_PRIVATE;
4869 else if (flags & GOVD_SHARED)
4870 {
4871 if (is_global_var (decl))
4872 return 0;
4873 code = OMP_CLAUSE_SHARED;
4874 }
4875 else if (flags & GOVD_PRIVATE)
4876 code = OMP_CLAUSE_PRIVATE;
4877 else if (flags & GOVD_FIRSTPRIVATE)
4878 code = OMP_CLAUSE_FIRSTPRIVATE;
4879 else
4880 gcc_unreachable ();
4881
aaf46ef9
DN
4882 clause = build_omp_clause (code);
4883 OMP_CLAUSE_DECL (clause) = decl;
953ff289
DN
4884 OMP_CLAUSE_CHAIN (clause) = *list_p;
4885 if (private_debug)
4886 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
4887 *list_p = clause;
4888
4889 return 0;
4890}
4891
4892static void
4893gimplify_adjust_omp_clauses (tree *list_p)
4894{
4895 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
4896 tree c, decl;
4897
4898 while ((c = *list_p) != NULL)
4899 {
4900 splay_tree_node n;
4901 bool remove = false;
4902
aaf46ef9 4903 switch (OMP_CLAUSE_CODE (c))
953ff289
DN
4904 {
4905 case OMP_CLAUSE_PRIVATE:
4906 case OMP_CLAUSE_SHARED:
4907 case OMP_CLAUSE_FIRSTPRIVATE:
4908 decl = OMP_CLAUSE_DECL (c);
4909 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4910 remove = !(n->value & GOVD_SEEN);
4911 if (! remove)
4912 {
aaf46ef9 4913 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
953ff289
DN
4914 if ((n->value & GOVD_DEBUG_PRIVATE)
4915 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
4916 {
4917 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
4918 || ((n->value & GOVD_DATA_SHARE_CLASS)
4919 == GOVD_PRIVATE));
aaf46ef9 4920 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
953ff289
DN
4921 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
4922 }
4923 }
4924 break;
4925
4926 case OMP_CLAUSE_LASTPRIVATE:
4927 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
4928 accurately reflect the presence of a FIRSTPRIVATE clause. */
4929 decl = OMP_CLAUSE_DECL (c);
4930 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4931 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
4932 = (n->value & GOVD_FIRSTPRIVATE) != 0;
4933 break;
4934
4935 case OMP_CLAUSE_REDUCTION:
4936 case OMP_CLAUSE_COPYIN:
4937 case OMP_CLAUSE_COPYPRIVATE:
4938 case OMP_CLAUSE_IF:
4939 case OMP_CLAUSE_NUM_THREADS:
4940 case OMP_CLAUSE_SCHEDULE:
4941 case OMP_CLAUSE_NOWAIT:
4942 case OMP_CLAUSE_ORDERED:
4943 case OMP_CLAUSE_DEFAULT:
4944 break;
4945
4946 default:
4947 gcc_unreachable ();
4948 }
4949
4950 if (remove)
4951 *list_p = OMP_CLAUSE_CHAIN (c);
4952 else
4953 list_p = &OMP_CLAUSE_CHAIN (c);
4954 }
4955
4956 /* Add in any implicit data sharing. */
4957 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
4958
4959 gimplify_omp_ctxp = ctx->outer_context;
4960 delete_omp_context (ctx);
4961}
4962
4963/* Gimplify the contents of an OMP_PARALLEL statement. This involves
4964 gimplification of the body, as well as scanning the body for used
4965 variables. We need to do this scan now, because variable-sized
4966 decls will be decomposed during gimplification. */
4967
4968static enum gimplify_status
4969gimplify_omp_parallel (tree *expr_p, tree *pre_p)
4970{
4971 tree expr = *expr_p;
4972
761041be
JJ
4973 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p, true,
4974 OMP_PARALLEL_COMBINED (expr));
953ff289
DN
4975
4976 push_gimplify_context ();
4977
953ff289 4978 gimplify_stmt (&OMP_PARALLEL_BODY (expr));
953ff289 4979
50674e96
DN
4980 if (TREE_CODE (OMP_PARALLEL_BODY (expr)) == BIND_EXPR)
4981 pop_gimplify_context (OMP_PARALLEL_BODY (expr));
4982 else
4983 pop_gimplify_context (NULL_TREE);
953ff289
DN
4984
4985 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
4986
4987 return GS_ALL_DONE;
4988}
4989
4990/* Gimplify the gross structure of an OMP_FOR statement. */
4991
4992static enum gimplify_status
4993gimplify_omp_for (tree *expr_p, tree *pre_p)
4994{
4995 tree for_stmt, decl, t;
0da67a32 4996 enum gimplify_status ret = GS_OK;
953ff289
DN
4997
4998 for_stmt = *expr_p;
4999
761041be 5000 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p, false, false);
953ff289
DN
5001
5002 t = OMP_FOR_INIT (for_stmt);
07beea0d
AH
5003 gcc_assert (TREE_CODE (t) == MODIFY_EXPR
5004 || TREE_CODE (t) == GIMPLE_MODIFY_STMT);
5005 decl = GENERIC_TREE_OPERAND (t, 0);
953ff289
DN
5006 gcc_assert (DECL_P (decl));
5007 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl)));
953ff289
DN
5008
5009 /* Make sure the iteration variable is private. */
5010 if (omp_is_private (gimplify_omp_ctxp, decl))
5011 omp_notice_variable (gimplify_omp_ctxp, decl, true);
5012 else
5013 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
5014
07beea0d
AH
5015 ret |= gimplify_expr (&GENERIC_TREE_OPERAND (t, 1),
5016 &OMP_FOR_PRE_BODY (for_stmt),
50674e96 5017 NULL, is_gimple_val, fb_rvalue);
953ff289 5018
07beea0d
AH
5019 tree_to_gimple_tuple (&OMP_FOR_INIT (for_stmt));
5020
953ff289
DN
5021 t = OMP_FOR_COND (for_stmt);
5022 gcc_assert (COMPARISON_CLASS_P (t));
07beea0d 5023 gcc_assert (GENERIC_TREE_OPERAND (t, 0) == decl);
953ff289 5024
07beea0d
AH
5025 ret |= gimplify_expr (&GENERIC_TREE_OPERAND (t, 1),
5026 &OMP_FOR_PRE_BODY (for_stmt),
50674e96 5027 NULL, is_gimple_val, fb_rvalue);
953ff289 5028
07beea0d 5029 tree_to_gimple_tuple (&OMP_FOR_INCR (for_stmt));
953ff289
DN
5030 t = OMP_FOR_INCR (for_stmt);
5031 switch (TREE_CODE (t))
5032 {
5033 case PREINCREMENT_EXPR:
5034 case POSTINCREMENT_EXPR:
5035 t = build_int_cst (TREE_TYPE (decl), 1);
b56b9fe3
RS
5036 t = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, t);
5037 t = build_gimple_modify_stmt (decl, t);
5038 OMP_FOR_INCR (for_stmt) = t;
5039 break;
5040
953ff289
DN
5041 case PREDECREMENT_EXPR:
5042 case POSTDECREMENT_EXPR:
5043 t = build_int_cst (TREE_TYPE (decl), -1);
953ff289 5044 t = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, t);
b56b9fe3 5045 t = build_gimple_modify_stmt (decl, t);
953ff289
DN
5046 OMP_FOR_INCR (for_stmt) = t;
5047 break;
5048
07beea0d
AH
5049 case GIMPLE_MODIFY_STMT:
5050 gcc_assert (GIMPLE_STMT_OPERAND (t, 0) == decl);
5051 t = GIMPLE_STMT_OPERAND (t, 1);
953ff289
DN
5052 switch (TREE_CODE (t))
5053 {
5054 case PLUS_EXPR:
5055 if (TREE_OPERAND (t, 1) == decl)
5056 {
5057 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
5058 TREE_OPERAND (t, 0) = decl;
5059 break;
5060 }
5061 case MINUS_EXPR:
5062 gcc_assert (TREE_OPERAND (t, 0) == decl);
5063 break;
5064 default:
5065 gcc_unreachable ();
5066 }
5067
50674e96
DN
5068 ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
5069 NULL, is_gimple_val, fb_rvalue);
953ff289
DN
5070 break;
5071
5072 default:
5073 gcc_unreachable ();
5074 }
5075
5076 gimplify_to_stmt_list (&OMP_FOR_BODY (for_stmt));
5077 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
5078
5079 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
5080}
5081
5082/* Gimplify the gross structure of other OpenMP worksharing constructs.
5083 In particular, OMP_SECTIONS and OMP_SINGLE. */
5084
5085static enum gimplify_status
5086gimplify_omp_workshare (tree *expr_p, tree *pre_p)
5087{
5088 tree stmt = *expr_p;
5089
761041be 5090 gimplify_scan_omp_clauses (&OMP_CLAUSES (stmt), pre_p, false, false);
953ff289
DN
5091 gimplify_to_stmt_list (&OMP_BODY (stmt));
5092 gimplify_adjust_omp_clauses (&OMP_CLAUSES (stmt));
5093
5094 return GS_ALL_DONE;
5095}
5096
5097/* A subroutine of gimplify_omp_atomic. The front end is supposed to have
5098 stabilized the lhs of the atomic operation as *ADDR. Return true if
5099 EXPR is this stabilized form. */
5100
5101static bool
5102goa_lhs_expr_p (tree expr, tree addr)
5103{
5104 /* Also include casts to other type variants. The C front end is fond
5105 of adding these for e.g. volatile variables. This is like
5106 STRIP_TYPE_NOPS but includes the main variant lookup. */
5107 while ((TREE_CODE (expr) == NOP_EXPR
5108 || TREE_CODE (expr) == CONVERT_EXPR
5109 || TREE_CODE (expr) == NON_LVALUE_EXPR)
5110 && TREE_OPERAND (expr, 0) != error_mark_node
5111 && (TYPE_MAIN_VARIANT (TREE_TYPE (expr))
5112 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (expr, 0)))))
5113 expr = TREE_OPERAND (expr, 0);
5114
5115 if (TREE_CODE (expr) == INDIRECT_REF && TREE_OPERAND (expr, 0) == addr)
5116 return true;
5117 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
5118 return true;
5119 return false;
5120}
5121
5122/* A subroutine of gimplify_omp_atomic. Attempt to implement the atomic
5123 operation as a __sync_fetch_and_op builtin. INDEX is log2 of the
5124 size of the data type, and thus usable to find the index of the builtin
5125 decl. Returns GS_UNHANDLED if the expression is not of the proper form. */
5126
5127static enum gimplify_status
5128gimplify_omp_atomic_fetch_op (tree *expr_p, tree addr, tree rhs, int index)
5129{
5130 enum built_in_function base;
5039610b 5131 tree decl, itype;
953ff289
DN
5132 enum insn_code *optab;
5133
5134 /* Check for one of the supported fetch-op operations. */
5135 switch (TREE_CODE (rhs))
5136 {
5be014d5 5137 case POINTER_PLUS_EXPR:
953ff289
DN
5138 case PLUS_EXPR:
5139 base = BUILT_IN_FETCH_AND_ADD_N;
5140 optab = sync_add_optab;
5141 break;
5142 case MINUS_EXPR:
5143 base = BUILT_IN_FETCH_AND_SUB_N;
5144 optab = sync_add_optab;
5145 break;
5146 case BIT_AND_EXPR:
5147 base = BUILT_IN_FETCH_AND_AND_N;
5148 optab = sync_and_optab;
5149 break;
5150 case BIT_IOR_EXPR:
5151 base = BUILT_IN_FETCH_AND_OR_N;
5152 optab = sync_ior_optab;
5153 break;
5154 case BIT_XOR_EXPR:
5155 base = BUILT_IN_FETCH_AND_XOR_N;
5156 optab = sync_xor_optab;
5157 break;
5158 default:
5159 return GS_UNHANDLED;
5160 }
5161
5162 /* Make sure the expression is of the proper form. */
5163 if (goa_lhs_expr_p (TREE_OPERAND (rhs, 0), addr))
5164 rhs = TREE_OPERAND (rhs, 1);
5165 else if (commutative_tree_code (TREE_CODE (rhs))
5166 && goa_lhs_expr_p (TREE_OPERAND (rhs, 1), addr))
5167 rhs = TREE_OPERAND (rhs, 0);
5168 else
5169 return GS_UNHANDLED;
5170
5171 decl = built_in_decls[base + index + 1];
5172 itype = TREE_TYPE (TREE_TYPE (decl));
5173
5174 if (optab[TYPE_MODE (itype)] == CODE_FOR_nothing)
5175 return GS_UNHANDLED;
5176
5039610b 5177 *expr_p = build_call_expr (decl, 2, addr, fold_convert (itype, rhs));
953ff289
DN
5178 return GS_OK;
5179}
5180
5181/* A subroutine of gimplify_omp_atomic_pipeline. Walk *EXPR_P and replace
c0220ea4 5182 appearances of *LHS_ADDR with LHS_VAR. If an expression does not involve
953ff289
DN
5183 the lhs, evaluate it into a temporary. Return 1 if the lhs appeared as
5184 a subexpression, 0 if it did not, or -1 if an error was encountered. */
5185
5186static int
5187goa_stabilize_expr (tree *expr_p, tree *pre_p, tree lhs_addr, tree lhs_var)
5188{
5189 tree expr = *expr_p;
5190 int saw_lhs;
5191
5192 if (goa_lhs_expr_p (expr, lhs_addr))
5193 {
5194 *expr_p = lhs_var;
5195 return 1;
5196 }
5197 if (is_gimple_val (expr))
5198 return 0;
5199
5200 saw_lhs = 0;
5201 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
5202 {
5203 case tcc_binary:
5204 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
5205 lhs_addr, lhs_var);
5206 case tcc_unary:
5207 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
5208 lhs_addr, lhs_var);
5209 break;
5210 default:
5211 break;
5212 }
5213
5214 if (saw_lhs == 0)
5215 {
5216 enum gimplify_status gs;
5217 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
5218 if (gs != GS_ALL_DONE)
5219 saw_lhs = -1;
5220 }
5221
5222 return saw_lhs;
5223}
5224
5225/* A subroutine of gimplify_omp_atomic. Implement the atomic operation as:
5226
5227 oldval = *addr;
5228 repeat:
5229 newval = rhs; // with oldval replacing *addr in rhs
5230 oldval = __sync_val_compare_and_swap (addr, oldval, newval);
5231 if (oldval != newval)
5232 goto repeat;
5233
5234 INDEX is log2 of the size of the data type, and thus usable to find the
5235 index of the builtin decl. */
5236
5237static enum gimplify_status
5238gimplify_omp_atomic_pipeline (tree *expr_p, tree *pre_p, tree addr,
5239 tree rhs, int index)
5240{
5241 tree oldval, oldival, oldival2, newval, newival, label;
5039610b 5242 tree type, itype, cmpxchg, x, iaddr;
953ff289
DN
5243
5244 cmpxchg = built_in_decls[BUILT_IN_VAL_COMPARE_AND_SWAP_N + index + 1];
5245 type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
5246 itype = TREE_TYPE (TREE_TYPE (cmpxchg));
5247
5248 if (sync_compare_and_swap[TYPE_MODE (itype)] == CODE_FOR_nothing)
5249 return GS_UNHANDLED;
5250
5251 oldval = create_tmp_var (type, NULL);
5252 newval = create_tmp_var (type, NULL);
5253
5254 /* Precompute as much of RHS as possible. In the same walk, replace
5255 occurrences of the lhs value with our temporary. */
5256 if (goa_stabilize_expr (&rhs, pre_p, addr, oldval) < 0)
5257 return GS_ERROR;
5258
5259 x = build_fold_indirect_ref (addr);
b56b9fe3 5260 x = build_gimple_modify_stmt (oldval, x);
953ff289
DN
5261 gimplify_and_add (x, pre_p);
5262
5263 /* For floating-point values, we'll need to view-convert them to integers
5264 so that we can perform the atomic compare and swap. Simplify the
5265 following code by always setting up the "i"ntegral variables. */
5266 if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
5267 {
5268 oldival = oldval;
5269 newival = newval;
5270 iaddr = addr;
5271 }
5272 else
5273 {
5274 oldival = create_tmp_var (itype, NULL);
5275 newival = create_tmp_var (itype, NULL);
5276
5277 x = build1 (VIEW_CONVERT_EXPR, itype, oldval);
b56b9fe3 5278 x = build_gimple_modify_stmt (oldival, x);
953ff289
DN
5279 gimplify_and_add (x, pre_p);
5280 iaddr = fold_convert (build_pointer_type (itype), addr);
5281 }
5282
5283 oldival2 = create_tmp_var (itype, NULL);
5284
5285 label = create_artificial_label ();
5286 x = build1 (LABEL_EXPR, void_type_node, label);
5287 gimplify_and_add (x, pre_p);
5288
b56b9fe3 5289 x = build_gimple_modify_stmt (newval, rhs);
953ff289
DN
5290 gimplify_and_add (x, pre_p);
5291
5292 if (newval != newival)
5293 {
5294 x = build1 (VIEW_CONVERT_EXPR, itype, newval);
b56b9fe3 5295 x = build_gimple_modify_stmt (newival, x);
953ff289
DN
5296 gimplify_and_add (x, pre_p);
5297 }
5298
b56b9fe3 5299 x = build_gimple_modify_stmt (oldival2, fold_convert (itype, oldival));
953ff289
DN
5300 gimplify_and_add (x, pre_p);
5301
5039610b
SL
5302 x = build_call_expr (cmpxchg, 3, iaddr, fold_convert (itype, oldival),
5303 fold_convert (itype, newival));
953ff289
DN
5304 if (oldval == oldival)
5305 x = fold_convert (type, x);
b56b9fe3 5306 x = build_gimple_modify_stmt (oldival, x);
953ff289
DN
5307 gimplify_and_add (x, pre_p);
5308
5309 /* For floating point, be prepared for the loop backedge. */
5310 if (oldval != oldival)
5311 {
5312 x = build1 (VIEW_CONVERT_EXPR, type, oldival);
b56b9fe3 5313 x = build_gimple_modify_stmt (oldval, x);
953ff289
DN
5314 gimplify_and_add (x, pre_p);
5315 }
5316
5317 /* Note that we always perform the comparison as an integer, even for
5318 floating point. This allows the atomic operation to properly
5319 succeed even with NaNs and -0.0. */
5320 x = build3 (COND_EXPR, void_type_node,
fa139765
RG
5321 build2 (NE_EXPR, boolean_type_node,
5322 fold_convert (itype, oldival), oldival2),
953ff289
DN
5323 build1 (GOTO_EXPR, void_type_node, label), NULL);
5324 gimplify_and_add (x, pre_p);
5325
5326 *expr_p = NULL;
5327 return GS_ALL_DONE;
5328}
5329
5330/* A subroutine of gimplify_omp_atomic. Implement the atomic operation as:
5331
5332 GOMP_atomic_start ();
5333 *addr = rhs;
5334 GOMP_atomic_end ();
5335
5336 The result is not globally atomic, but works so long as all parallel
5337 references are within #pragma omp atomic directives. According to
5338 responses received from omp@openmp.org, appears to be within spec.
5339 Which makes sense, since that's how several other compilers handle
5340 this situation as well. */
5341
5342static enum gimplify_status
5343gimplify_omp_atomic_mutex (tree *expr_p, tree *pre_p, tree addr, tree rhs)
5344{
5345 tree t;
5346
5347 t = built_in_decls[BUILT_IN_GOMP_ATOMIC_START];
5039610b 5348 t = build_call_expr (t, 0);
953ff289
DN
5349 gimplify_and_add (t, pre_p);
5350
5351 t = build_fold_indirect_ref (addr);
b56b9fe3 5352 t = build_gimple_modify_stmt (t, rhs);
953ff289
DN
5353 gimplify_and_add (t, pre_p);
5354
5355 t = built_in_decls[BUILT_IN_GOMP_ATOMIC_END];
5039610b 5356 t = build_call_expr (t, 0);
953ff289
DN
5357 gimplify_and_add (t, pre_p);
5358
5359 *expr_p = NULL;
5360 return GS_ALL_DONE;
5361}
5362
5363/* Gimplify an OMP_ATOMIC statement. */
5364
5365static enum gimplify_status
5366gimplify_omp_atomic (tree *expr_p, tree *pre_p)
5367{
5368 tree addr = TREE_OPERAND (*expr_p, 0);
5369 tree rhs = TREE_OPERAND (*expr_p, 1);
5370 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
5371 HOST_WIDE_INT index;
5372
5373 /* Make sure the type is one of the supported sizes. */
5374 index = tree_low_cst (TYPE_SIZE_UNIT (type), 1);
5375 index = exact_log2 (index);
5376 if (index >= 0 && index <= 4)
5377 {
5378 enum gimplify_status gs;
5379 unsigned int align;
5380
5381 if (DECL_P (TREE_OPERAND (addr, 0)))
5382 align = DECL_ALIGN_UNIT (TREE_OPERAND (addr, 0));
5383 else if (TREE_CODE (TREE_OPERAND (addr, 0)) == COMPONENT_REF
5384 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (addr, 0), 1))
5385 == FIELD_DECL)
5386 align = DECL_ALIGN_UNIT (TREE_OPERAND (TREE_OPERAND (addr, 0), 1));
5387 else
5388 align = TYPE_ALIGN_UNIT (type);
5389
5390 /* __sync builtins require strict data alignment. */
5391 if (exact_log2 (align) >= index)
5392 {
5393 /* When possible, use specialized atomic update functions. */
5394 if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
5395 {
5396 gs = gimplify_omp_atomic_fetch_op (expr_p, addr, rhs, index);
5397 if (gs != GS_UNHANDLED)
5398 return gs;
5399 }
5400
5401 /* If we don't have specialized __sync builtins, try and implement
5402 as a compare and swap loop. */
5403 gs = gimplify_omp_atomic_pipeline (expr_p, pre_p, addr, rhs, index);
5404 if (gs != GS_UNHANDLED)
5405 return gs;
5406 }
5407 }
5408
5409 /* The ultimate fallback is wrapping the operation in a mutex. */
5410 return gimplify_omp_atomic_mutex (expr_p, pre_p, addr, rhs);
5411}
6de9cd9a 5412
206048bd 5413/* Gimplifies the expression tree pointed to by EXPR_P. Return 0 if
6de9cd9a
DN
5414 gimplification failed.
5415
5416 PRE_P points to the list where side effects that must happen before
5417 EXPR should be stored.
5418
5419 POST_P points to the list where side effects that must happen after
5420 EXPR should be stored, or NULL if there is no suitable list. In
5421 that case, we copy the result to a temporary, emit the
5422 post-effects, and then return the temporary.
5423
5424 GIMPLE_TEST_F points to a function that takes a tree T and
5425 returns nonzero if T is in the GIMPLE form requested by the
eadf906f 5426 caller. The GIMPLE predicates are in tree-gimple.c.
6de9cd9a
DN
5427
5428 This test is used twice. Before gimplification, the test is
5429 invoked to determine whether *EXPR_P is already gimple enough. If
5430 that fails, *EXPR_P is gimplified according to its code and
5431 GIMPLE_TEST_F is called again. If the test still fails, then a new
5432 temporary variable is created and assigned the value of the
5433 gimplified expression.
5434
5435 FALLBACK tells the function what sort of a temporary we want. If the 1
5436 bit is set, an rvalue is OK. If the 2 bit is set, an lvalue is OK.
5437 If both are set, either is OK, but an lvalue is preferable.
5438
5439 The return value is either GS_ERROR or GS_ALL_DONE, since this function
5440 iterates until solution. */
5441
5442enum gimplify_status
5443gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
5444 bool (* gimple_test_f) (tree), fallback_t fallback)
5445{
5446 tree tmp;
5447 tree internal_pre = NULL_TREE;
5448 tree internal_post = NULL_TREE;
5449 tree save_expr;
5450 int is_statement = (pre_p == NULL);
6de9cd9a
DN
5451 location_t saved_location;
5452 enum gimplify_status ret;
5453
5454 save_expr = *expr_p;
5455 if (save_expr == NULL_TREE)
5456 return GS_ALL_DONE;
5457
5458 /* We used to check the predicate here and return immediately if it
5459 succeeds. This is wrong; the design is for gimplification to be
5460 idempotent, and for the predicates to only test for valid forms, not
5461 whether they are fully simplified. */
5462
5463 /* Set up our internal queues if needed. */
5464 if (pre_p == NULL)
5465 pre_p = &internal_pre;
5466 if (post_p == NULL)
5467 post_p = &internal_post;
5468
5469 saved_location = input_location;
a281759f
PB
5470 if (save_expr != error_mark_node
5471 && EXPR_HAS_LOCATION (*expr_p))
5472 input_location = EXPR_LOCATION (*expr_p);
6de9cd9a
DN
5473
5474 /* Loop over the specific gimplifiers until the toplevel node
5475 remains the same. */
5476 do
5477 {
73d6ddef
RK
5478 /* Strip away as many useless type conversions as possible
5479 at the toplevel. */
5480 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
6de9cd9a
DN
5481
5482 /* Remember the expr. */
5483 save_expr = *expr_p;
5484
5485 /* Die, die, die, my darling. */
5486 if (save_expr == error_mark_node
07beea0d
AH
5487 || (!GIMPLE_STMT_P (save_expr)
5488 && TREE_TYPE (save_expr)
65355d53 5489 && TREE_TYPE (save_expr) == error_mark_node))
6de9cd9a
DN
5490 {
5491 ret = GS_ERROR;
5492 break;
5493 }
5494
5495 /* Do any language-specific gimplification. */
673fda6b 5496 ret = lang_hooks.gimplify_expr (expr_p, pre_p, post_p);
6de9cd9a
DN
5497 if (ret == GS_OK)
5498 {
5499 if (*expr_p == NULL_TREE)
5500 break;
5501 if (*expr_p != save_expr)
5502 continue;
5503 }
5504 else if (ret != GS_UNHANDLED)
5505 break;
5506
5507 ret = GS_OK;
5508 switch (TREE_CODE (*expr_p))
5509 {
5510 /* First deal with the special cases. */
5511
5512 case POSTINCREMENT_EXPR:
5513 case POSTDECREMENT_EXPR:
5514 case PREINCREMENT_EXPR:
5515 case PREDECREMENT_EXPR:
5516 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
5517 fallback != fb_none);
5518 break;
5519
5520 case ARRAY_REF:
44de5aeb
RK
5521 case ARRAY_RANGE_REF:
5522 case REALPART_EXPR:
5523 case IMAGPART_EXPR:
6de9cd9a 5524 case COMPONENT_REF:
9e51aaf5 5525 case VIEW_CONVERT_EXPR:
6de9cd9a 5526 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
90051e16 5527 fallback ? fallback : fb_rvalue);
6de9cd9a
DN
5528 break;
5529
5530 case COND_EXPR:
dae7ec87 5531 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
0223e4f5
JM
5532 /* C99 code may assign to an array in a structure value of a
5533 conditional expression, and this has undefined behavior
5534 only on execution, so create a temporary if an lvalue is
5535 required. */
5536 if (fallback == fb_lvalue)
5537 {
5538 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5539 lang_hooks.mark_addressable (*expr_p);
5540 }
6de9cd9a
DN
5541 break;
5542
5543 case CALL_EXPR:
90051e16 5544 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
0223e4f5
JM
5545 /* C99 code may assign to an array in a structure returned
5546 from a function, and this has undefined behavior only on
5547 execution, so create a temporary if an lvalue is
5548 required. */
5549 if (fallback == fb_lvalue)
5550 {
5551 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5552 lang_hooks.mark_addressable (*expr_p);
5553 }
6de9cd9a
DN
5554 break;
5555
5556 case TREE_LIST:
282899df 5557 gcc_unreachable ();
6de9cd9a
DN
5558
5559 case COMPOUND_EXPR:
5560 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
5561 break;
5562
6de9cd9a 5563 case MODIFY_EXPR:
07beea0d 5564 case GIMPLE_MODIFY_STMT:
6de9cd9a
DN
5565 case INIT_EXPR:
5566 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
5567 fallback != fb_none);
dae7ec87 5568
07beea0d
AH
5569 if (*expr_p)
5570 {
5571 /* The distinction between MODIFY_EXPR and INIT_EXPR is no longer
5572 useful. */
5573 if (TREE_CODE (*expr_p) == INIT_EXPR)
5574 TREE_SET_CODE (*expr_p, MODIFY_EXPR);
5575
5576 /* Convert MODIFY_EXPR to GIMPLE_MODIFY_STMT. */
5577 if (TREE_CODE (*expr_p) == MODIFY_EXPR)
5578 tree_to_gimple_tuple (expr_p);
5579 }
5580
6de9cd9a
DN
5581 break;
5582
5583 case TRUTH_ANDIF_EXPR:
5584 case TRUTH_ORIF_EXPR:
5585 ret = gimplify_boolean_expr (expr_p);
5586 break;
5587
5588 case TRUTH_NOT_EXPR:
5589 TREE_OPERAND (*expr_p, 0)
5590 = gimple_boolify (TREE_OPERAND (*expr_p, 0));
5591 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5592 is_gimple_val, fb_rvalue);
5593 recalculate_side_effects (*expr_p);
5594 break;
5595
5596 case ADDR_EXPR:
5597 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
5598 break;
5599
5600 case VA_ARG_EXPR:
cd3ce9b4 5601 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
6de9cd9a
DN
5602 break;
5603
5604 case CONVERT_EXPR:
5605 case NOP_EXPR:
5606 if (IS_EMPTY_STMT (*expr_p))
5607 {
5608 ret = GS_ALL_DONE;
5609 break;
5610 }
5611
5612 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
5613 || fallback == fb_none)
5614 {
5615 /* Just strip a conversion to void (or in void context) and
5616 try again. */
5617 *expr_p = TREE_OPERAND (*expr_p, 0);
5618 break;
5619 }
5620
5621 ret = gimplify_conversion (expr_p);
5622 if (ret == GS_ERROR)
5623 break;
5624 if (*expr_p != save_expr)
5625 break;
5626 /* FALLTHRU */
5627
5628 case FIX_TRUNC_EXPR:
6de9cd9a
DN
5629 /* unary_expr: ... | '(' cast ')' val | ... */
5630 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5631 is_gimple_val, fb_rvalue);
5632 recalculate_side_effects (*expr_p);
5633 break;
5634
6a720599
JM
5635 case INDIRECT_REF:
5636 *expr_p = fold_indirect_ref (*expr_p);
5637 if (*expr_p != save_expr)
5638 break;
5639 /* else fall through. */
7ccf35ed
DN
5640 case ALIGN_INDIRECT_REF:
5641 case MISALIGNED_INDIRECT_REF:
6de9cd9a
DN
5642 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5643 is_gimple_reg, fb_rvalue);
5644 recalculate_side_effects (*expr_p);
5645 break;
5646
5647 /* Constants need not be gimplified. */
5648 case INTEGER_CST:
5649 case REAL_CST:
5650 case STRING_CST:
5651 case COMPLEX_CST:
5652 case VECTOR_CST:
5653 ret = GS_ALL_DONE;
5654 break;
5655
5656 case CONST_DECL:
0534fa56 5657 /* If we require an lvalue, such as for ADDR_EXPR, retain the
2a7e31df 5658 CONST_DECL node. Otherwise the decl is replaceable by its
0534fa56
RH
5659 value. */
5660 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
5661 if (fallback & fb_lvalue)
5662 ret = GS_ALL_DONE;
5663 else
5664 *expr_p = DECL_INITIAL (*expr_p);
6de9cd9a
DN
5665 break;
5666
350fae66
RK
5667 case DECL_EXPR:
5668 ret = gimplify_decl_expr (expr_p);
5669 break;
5670
6de9cd9a
DN
5671 case EXC_PTR_EXPR:
5672 /* FIXME make this a decl. */
5673 ret = GS_ALL_DONE;
5674 break;
5675
5676 case BIND_EXPR:
c6c7698d 5677 ret = gimplify_bind_expr (expr_p, pre_p);
6de9cd9a
DN
5678 break;
5679
5680 case LOOP_EXPR:
5681 ret = gimplify_loop_expr (expr_p, pre_p);
5682 break;
5683
5684 case SWITCH_EXPR:
5685 ret = gimplify_switch_expr (expr_p, pre_p);
5686 break;
5687
6de9cd9a
DN
5688 case EXIT_EXPR:
5689 ret = gimplify_exit_expr (expr_p);
5690 break;
5691
5692 case GOTO_EXPR:
5693 /* If the target is not LABEL, then it is a computed jump
5694 and the target needs to be gimplified. */
5695 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
5696 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
5697 NULL, is_gimple_val, fb_rvalue);
5698 break;
5699
5700 case LABEL_EXPR:
5701 ret = GS_ALL_DONE;
282899df
NS
5702 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
5703 == current_function_decl);
6de9cd9a
DN
5704 break;
5705
5706 case CASE_LABEL_EXPR:
5707 ret = gimplify_case_label_expr (expr_p);
5708 break;
5709
5710 case RETURN_EXPR:
5711 ret = gimplify_return_expr (*expr_p, pre_p);
5712 break;
5713
5714 case CONSTRUCTOR:
48eb4e53
RK
5715 /* Don't reduce this in place; let gimplify_init_constructor work its
5716 magic. Buf if we're just elaborating this for side effects, just
5717 gimplify any element that has side-effects. */
5718 if (fallback == fb_none)
5719 {
4038c495
GB
5720 unsigned HOST_WIDE_INT ix;
5721 constructor_elt *ce;
08330ec2 5722 tree temp = NULL_TREE;
4038c495
GB
5723 for (ix = 0;
5724 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (*expr_p),
5725 ix, ce);
5726 ix++)
5727 if (TREE_SIDE_EFFECTS (ce->value))
08330ec2 5728 append_to_statement_list (ce->value, &temp);
48eb4e53 5729
08330ec2
AP
5730 *expr_p = temp;
5731 ret = GS_OK;
48eb4e53 5732 }
ca0b7d18
AP
5733 /* C99 code may assign to an array in a constructed
5734 structure or union, and this has undefined behavior only
5735 on execution, so create a temporary if an lvalue is
5736 required. */
5737 else if (fallback == fb_lvalue)
5738 {
5739 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5740 lang_hooks.mark_addressable (*expr_p);
5741 }
08330ec2
AP
5742 else
5743 ret = GS_ALL_DONE;
6de9cd9a
DN
5744 break;
5745
5746 /* The following are special cases that are not handled by the
5747 original GIMPLE grammar. */
5748
5749 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
5750 eliminated. */
5751 case SAVE_EXPR:
5752 ret = gimplify_save_expr (expr_p, pre_p, post_p);
5753 break;
5754
5755 case BIT_FIELD_REF:
5756 {
5757 enum gimplify_status r0, r1, r2;
5758
5759 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
90051e16 5760 is_gimple_lvalue, fb_either);
6de9cd9a
DN
5761 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5762 is_gimple_val, fb_rvalue);
5763 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p, post_p,
5764 is_gimple_val, fb_rvalue);
5765 recalculate_side_effects (*expr_p);
5766
5767 ret = MIN (r0, MIN (r1, r2));
5768 }
5769 break;
5770
5771 case NON_LVALUE_EXPR:
5772 /* This should have been stripped above. */
282899df 5773 gcc_unreachable ();
6de9cd9a
DN
5774
5775 case ASM_EXPR:
5776 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
5777 break;
5778
5779 case TRY_FINALLY_EXPR:
5780 case TRY_CATCH_EXPR:
5781 gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 0));
5782 gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 1));
5783 ret = GS_ALL_DONE;
5784 break;
5785
5786 case CLEANUP_POINT_EXPR:
5787 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
5788 break;
5789
5790 case TARGET_EXPR:
5791 ret = gimplify_target_expr (expr_p, pre_p, post_p);
5792 break;
5793
5794 case CATCH_EXPR:
5795 gimplify_to_stmt_list (&CATCH_BODY (*expr_p));
5796 ret = GS_ALL_DONE;
5797 break;
5798
5799 case EH_FILTER_EXPR:
5800 gimplify_to_stmt_list (&EH_FILTER_FAILURE (*expr_p));
5801 ret = GS_ALL_DONE;
5802 break;
5803
058dcc25
ILT
5804 case CHANGE_DYNAMIC_TYPE_EXPR:
5805 ret = gimplify_expr (&CHANGE_DYNAMIC_TYPE_LOCATION (*expr_p),
5806 pre_p, post_p, is_gimple_reg, fb_lvalue);
5807 break;
5808
0f59171d
RH
5809 case OBJ_TYPE_REF:
5810 {
5811 enum gimplify_status r0, r1;
5812 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p, post_p,
5813 is_gimple_val, fb_rvalue);
5814 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p, post_p,
5815 is_gimple_val, fb_rvalue);
5816 ret = MIN (r0, r1);
5817 }
6de9cd9a
DN
5818 break;
5819
6de9cd9a
DN
5820 case LABEL_DECL:
5821 /* We get here when taking the address of a label. We mark
5822 the label as "forced"; meaning it can never be removed and
5823 it is a potential target for any computed goto. */
5824 FORCED_LABEL (*expr_p) = 1;
5825 ret = GS_ALL_DONE;
5826 break;
5827
5828 case STATEMENT_LIST:
c6c7698d 5829 ret = gimplify_statement_list (expr_p, pre_p);
6de9cd9a
DN
5830 break;
5831
d25cee4d
RH
5832 case WITH_SIZE_EXPR:
5833 {
70e2829d
KH
5834 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5835 post_p == &internal_post ? NULL : post_p,
5836 gimple_test_f, fallback);
5837 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5838 is_gimple_val, fb_rvalue);
d25cee4d
RH
5839 }
5840 break;
5841
6de9cd9a 5842 case VAR_DECL:
4744afba 5843 case PARM_DECL:
a9f7c570 5844 ret = gimplify_var_or_parm_decl (expr_p);
6de9cd9a
DN
5845 break;
5846
077b0dfb
JJ
5847 case RESULT_DECL:
5848 /* When within an OpenMP context, notice uses of variables. */
5849 if (gimplify_omp_ctxp)
5850 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
5851 ret = GS_ALL_DONE;
5852 break;
5853
71956db3
RH
5854 case SSA_NAME:
5855 /* Allow callbacks into the gimplifier during optimization. */
5856 ret = GS_ALL_DONE;
5857 break;
5858
953ff289
DN
5859 case OMP_PARALLEL:
5860 ret = gimplify_omp_parallel (expr_p, pre_p);
5861 break;
5862
5863 case OMP_FOR:
5864 ret = gimplify_omp_for (expr_p, pre_p);
5865 break;
5866
5867 case OMP_SECTIONS:
5868 case OMP_SINGLE:
5869 ret = gimplify_omp_workshare (expr_p, pre_p);
5870 break;
5871
5872 case OMP_SECTION:
5873 case OMP_MASTER:
5874 case OMP_ORDERED:
5875 case OMP_CRITICAL:
5876 gimplify_to_stmt_list (&OMP_BODY (*expr_p));
5877 break;
5878
5879 case OMP_ATOMIC:
5880 ret = gimplify_omp_atomic (expr_p, pre_p);
5881 break;
5882
777f7f9a
RH
5883 case OMP_RETURN:
5884 case OMP_CONTINUE:
50674e96
DN
5885 ret = GS_ALL_DONE;
5886 break;
5887
5be014d5 5888 case POINTER_PLUS_EXPR:
fe9821b8
JH
5889 /* Convert ((type *)A)+offset into &A->field_of_type_and_offset.
5890 The second is gimple immediate saving a need for extra statement.
5891 */
5be014d5 5892 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
fe9821b8
JH
5893 && (tmp = maybe_fold_offset_to_reference
5894 (TREE_OPERAND (*expr_p, 0), TREE_OPERAND (*expr_p, 1),
5895 TREE_TYPE (TREE_TYPE (*expr_p)))))
5896 {
5897 *expr_p = build_fold_addr_expr_with_type (tmp,
5898 TREE_TYPE (*expr_p));
ac5a28a6
JH
5899 break;
5900 }
5901 /* Convert (void *)&a + 4 into (void *)&a[1]. */
5be014d5 5902 if (TREE_CODE (TREE_OPERAND (*expr_p, 0)) == NOP_EXPR
ac5a28a6 5903 && TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
2cb7995f
JH
5904 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (*expr_p,
5905 0),0)))
ac5a28a6
JH
5906 && (tmp = maybe_fold_offset_to_reference
5907 (TREE_OPERAND (TREE_OPERAND (*expr_p, 0), 0),
5908 TREE_OPERAND (*expr_p, 1),
5909 TREE_TYPE (TREE_TYPE
5910 (TREE_OPERAND (TREE_OPERAND (*expr_p, 0),
5911 0))))))
5912 {
5913 tmp = build_fold_addr_expr (tmp);
5914 *expr_p = fold_convert (TREE_TYPE (*expr_p), tmp);
5915 break;
fe9821b8
JH
5916 }
5917 /* FALLTHRU */
6de9cd9a 5918 default:
282899df 5919 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
6de9cd9a 5920 {
6615c446 5921 case tcc_comparison:
61c25908
OH
5922 /* Handle comparison of objects of non scalar mode aggregates
5923 with a call to memcmp. It would be nice to only have to do
5924 this for variable-sized objects, but then we'd have to allow
5925 the same nest of reference nodes we allow for MODIFY_EXPR and
5926 that's too complex.
5927
5928 Compare scalar mode aggregates as scalar mode values. Using
5929 memcmp for them would be very inefficient at best, and is
5930 plain wrong if bitfields are involved. */
5931
5932 {
5933 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
5934
5935 if (!AGGREGATE_TYPE_P (type))
5936 goto expr_2;
5937 else if (TYPE_MODE (type) != BLKmode)
5938 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
5939 else
5940 ret = gimplify_variable_sized_compare (expr_p);
5941
5942 break;
5943 }
d3147f64 5944
282899df
NS
5945 /* If *EXPR_P does not need to be special-cased, handle it
5946 according to its class. */
6615c446 5947 case tcc_unary:
282899df
NS
5948 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5949 post_p, is_gimple_val, fb_rvalue);
5950 break;
6de9cd9a 5951
6615c446 5952 case tcc_binary:
282899df
NS
5953 expr_2:
5954 {
5955 enum gimplify_status r0, r1;
d3147f64 5956
282899df
NS
5957 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5958 post_p, is_gimple_val, fb_rvalue);
5959 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
5960 post_p, is_gimple_val, fb_rvalue);
d3147f64 5961
282899df
NS
5962 ret = MIN (r0, r1);
5963 break;
5964 }
d3147f64 5965
6615c446
JO
5966 case tcc_declaration:
5967 case tcc_constant:
6de9cd9a 5968 ret = GS_ALL_DONE;
282899df 5969 goto dont_recalculate;
d3147f64 5970
282899df
NS
5971 default:
5972 gcc_assert (TREE_CODE (*expr_p) == TRUTH_AND_EXPR
5973 || TREE_CODE (*expr_p) == TRUTH_OR_EXPR
5974 || TREE_CODE (*expr_p) == TRUTH_XOR_EXPR);
5975 goto expr_2;
6de9cd9a 5976 }
6de9cd9a
DN
5977
5978 recalculate_side_effects (*expr_p);
282899df 5979 dont_recalculate:
6de9cd9a
DN
5980 break;
5981 }
d3147f64 5982
6de9cd9a
DN
5983 /* If we replaced *expr_p, gimplify again. */
5984 if (ret == GS_OK && (*expr_p == NULL || *expr_p == save_expr))
5985 ret = GS_ALL_DONE;
5986 }
5987 while (ret == GS_OK);
5988
5989 /* If we encountered an error_mark somewhere nested inside, either
5990 stub out the statement or propagate the error back out. */
5991 if (ret == GS_ERROR)
5992 {
5993 if (is_statement)
65355d53 5994 *expr_p = NULL;
6de9cd9a
DN
5995 goto out;
5996 }
5997
6de9cd9a
DN
5998 /* This was only valid as a return value from the langhook, which
5999 we handled. Make sure it doesn't escape from any other context. */
282899df 6000 gcc_assert (ret != GS_UNHANDLED);
6de9cd9a 6001
65355d53 6002 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
6de9cd9a
DN
6003 {
6004 /* We aren't looking for a value, and we don't have a valid
6005 statement. If it doesn't have side-effects, throw it away. */
6006 if (!TREE_SIDE_EFFECTS (*expr_p))
65355d53 6007 *expr_p = NULL;
6de9cd9a 6008 else if (!TREE_THIS_VOLATILE (*expr_p))
44de5aeb
RK
6009 {
6010 /* This is probably a _REF that contains something nested that
6011 has side effects. Recurse through the operands to find it. */
6012 enum tree_code code = TREE_CODE (*expr_p);
6013
282899df 6014 switch (code)
44de5aeb 6015 {
282899df 6016 case COMPONENT_REF:
02a5eac4
EB
6017 case REALPART_EXPR:
6018 case IMAGPART_EXPR:
6019 case VIEW_CONVERT_EXPR:
282899df
NS
6020 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6021 gimple_test_f, fallback);
6022 break;
6023
a9e64c63
EB
6024 case ARRAY_REF:
6025 case ARRAY_RANGE_REF:
44de5aeb
RK
6026 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6027 gimple_test_f, fallback);
6028 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
282899df
NS
6029 gimple_test_f, fallback);
6030 break;
6031
6032 default:
6033 /* Anything else with side-effects must be converted to
a9e64c63 6034 a valid statement before we get here. */
282899df 6035 gcc_unreachable ();
44de5aeb 6036 }
44de5aeb 6037
65355d53 6038 *expr_p = NULL;
44de5aeb 6039 }
a9e64c63
EB
6040 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
6041 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
6de9cd9a 6042 {
a9e64c63
EB
6043 /* Historically, the compiler has treated a bare reference
6044 to a non-BLKmode volatile lvalue as forcing a load. */
af62f6f9 6045 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
c22b1771 6046 /* Normally, we do not want to create a temporary for a
a38578e1
MM
6047 TREE_ADDRESSABLE type because such a type should not be
6048 copied by bitwise-assignment. However, we make an
6049 exception here, as all we are doing here is ensuring that
6050 we read the bytes that make up the type. We use
6051 create_tmp_var_raw because create_tmp_var will abort when
57b51d4d 6052 given a TREE_ADDRESSABLE type. */
a38578e1
MM
6053 tree tmp = create_tmp_var_raw (type, "vol");
6054 gimple_add_tmp_var (tmp);
b56b9fe3 6055 *expr_p = build_gimple_modify_stmt (tmp, *expr_p);
6de9cd9a
DN
6056 }
6057 else
6058 /* We can't do anything useful with a volatile reference to
a9e64c63
EB
6059 an incomplete type, so just throw it away. Likewise for
6060 a BLKmode type, since any implicit inner load should
6061 already have been turned into an explicit one by the
6062 gimplification process. */
65355d53 6063 *expr_p = NULL;
6de9cd9a
DN
6064 }
6065
6066 /* If we are gimplifying at the statement level, we're done. Tack
6067 everything together and replace the original statement with the
6068 gimplified form. */
325c3691 6069 if (fallback == fb_none || is_statement)
6de9cd9a 6070 {
be00f578
JM
6071 if (internal_pre || internal_post)
6072 {
6073 append_to_statement_list (*expr_p, &internal_pre);
6074 append_to_statement_list (internal_post, &internal_pre);
6075 annotate_all_with_locus (&internal_pre, input_location);
6076 *expr_p = internal_pre;
6077 }
65355d53
RH
6078 else if (!*expr_p)
6079 ;
7c34ced1
RH
6080 else if (TREE_CODE (*expr_p) == STATEMENT_LIST)
6081 annotate_all_with_locus (expr_p, input_location);
6082 else
6083 annotate_one_with_locus (*expr_p, input_location);
6de9cd9a
DN
6084 goto out;
6085 }
6086
6087 /* Otherwise we're gimplifying a subexpression, so the resulting value is
6088 interesting. */
6089
6090 /* If it's sufficiently simple already, we're done. Unless we are
6091 handling some post-effects internally; if that's the case, we need to
6092 copy into a temp before adding the post-effects to the tree. */
6093 if (!internal_post && (*gimple_test_f) (*expr_p))
6094 goto out;
6095
6096 /* Otherwise, we need to create a new temporary for the gimplified
6097 expression. */
6098
6099 /* We can't return an lvalue if we have an internal postqueue. The
6100 object the lvalue refers to would (probably) be modified by the
6101 postqueue; we need to copy the value out first, which means an
6102 rvalue. */
6103 if ((fallback & fb_lvalue) && !internal_post
e847cc68 6104 && is_gimple_addressable (*expr_p))
6de9cd9a
DN
6105 {
6106 /* An lvalue will do. Take the address of the expression, store it
6107 in a temporary, and replace the expression with an INDIRECT_REF of
6108 that temporary. */
cd3ce9b4 6109 tmp = build_fold_addr_expr (*expr_p);
6de9cd9a
DN
6110 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
6111 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (tmp)), tmp);
6112 }
17ad5b5e 6113 else if ((fallback & fb_rvalue) && is_gimple_formal_tmp_rhs (*expr_p))
6de9cd9a 6114 {
282899df 6115 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
6de9cd9a
DN
6116
6117 /* An rvalue will do. Assign the gimplified expression into a new
6118 temporary TMP and replace the original expression with TMP. */
6119
6120 if (internal_post || (fallback & fb_lvalue))
6121 /* The postqueue might change the value of the expression between
6122 the initialization and use of the temporary, so we can't use a
6123 formal temp. FIXME do we care? */
6124 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6125 else
6126 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
8b11a64c
ZD
6127
6128 if (TREE_CODE (*expr_p) != SSA_NAME)
6129 DECL_GIMPLE_FORMAL_TEMP_P (*expr_p) = 1;
6de9cd9a 6130 }
282899df 6131 else
6de9cd9a 6132 {
282899df
NS
6133#ifdef ENABLE_CHECKING
6134 if (!(fallback & fb_mayfail))
6135 {
6136 fprintf (stderr, "gimplification failed:\n");
6137 print_generic_expr (stderr, *expr_p, 0);
6138 debug_tree (*expr_p);
6139 internal_error ("gimplification failed");
6140 }
6141#endif
6142 gcc_assert (fallback & fb_mayfail);
6143 /* If this is an asm statement, and the user asked for the
535a42b1 6144 impossible, don't die. Fail and let gimplify_asm_expr
282899df 6145 issue an error. */
6de9cd9a
DN
6146 ret = GS_ERROR;
6147 goto out;
6148 }
6de9cd9a 6149
6de9cd9a 6150 /* Make sure the temporary matches our predicate. */
282899df 6151 gcc_assert ((*gimple_test_f) (*expr_p));
6de9cd9a
DN
6152
6153 if (internal_post)
6154 {
6155 annotate_all_with_locus (&internal_post, input_location);
6156 append_to_statement_list (internal_post, pre_p);
6157 }
6158
6159 out:
6160 input_location = saved_location;
6161 return ret;
6162}
6163
44de5aeb 6164/* Look through TYPE for variable-sized objects and gimplify each such
65355d53 6165 size that we find. Add to LIST_P any statements generated. */
44de5aeb 6166
65355d53
RH
6167void
6168gimplify_type_sizes (tree type, tree *list_p)
44de5aeb 6169{
ad50bc8d
RH
6170 tree field, t;
6171
19dbbf36 6172 if (type == NULL || type == error_mark_node)
8e0a600b 6173 return;
ad50bc8d 6174
6c6cfbfd 6175 /* We first do the main variant, then copy into any other variants. */
ad50bc8d 6176 type = TYPE_MAIN_VARIANT (type);
44de5aeb 6177
8e0a600b 6178 /* Avoid infinite recursion. */
19dbbf36 6179 if (TYPE_SIZES_GIMPLIFIED (type))
8e0a600b
JJ
6180 return;
6181
6182 TYPE_SIZES_GIMPLIFIED (type) = 1;
6183
44de5aeb
RK
6184 switch (TREE_CODE (type))
6185 {
44de5aeb
RK
6186 case INTEGER_TYPE:
6187 case ENUMERAL_TYPE:
6188 case BOOLEAN_TYPE:
44de5aeb 6189 case REAL_TYPE:
65355d53
RH
6190 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
6191 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
ad50bc8d
RH
6192
6193 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6194 {
6195 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
6196 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
ad50bc8d 6197 }
44de5aeb
RK
6198 break;
6199
6200 case ARRAY_TYPE:
ad50bc8d 6201 /* These types may not have declarations, so handle them here. */
8e0a600b
JJ
6202 gimplify_type_sizes (TREE_TYPE (type), list_p);
6203 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
44de5aeb
RK
6204 break;
6205
6206 case RECORD_TYPE:
6207 case UNION_TYPE:
6208 case QUAL_UNION_TYPE:
6209 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
6210 if (TREE_CODE (field) == FIELD_DECL)
8e0a600b
JJ
6211 {
6212 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
6213 gimplify_type_sizes (TREE_TYPE (field), list_p);
6214 }
6215 break;
6216
6217 case POINTER_TYPE:
6218 case REFERENCE_TYPE:
706c4bb7
OH
6219 /* We used to recurse on the pointed-to type here, which turned out to
6220 be incorrect because its definition might refer to variables not
6221 yet initialized at this point if a forward declaration is involved.
6222
6223 It was actually useful for anonymous pointed-to types to ensure
6224 that the sizes evaluation dominates every possible later use of the
6225 values. Restricting to such types here would be safe since there
f63645be
KH
6226 is no possible forward declaration around, but would introduce an
6227 undesirable middle-end semantic to anonymity. We then defer to
6228 front-ends the responsibility of ensuring that the sizes are
6229 evaluated both early and late enough, e.g. by attaching artificial
706c4bb7 6230 type declarations to the tree. */
44de5aeb
RK
6231 break;
6232
6233 default:
6234 break;
6235 }
6236
65355d53
RH
6237 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
6238 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
44de5aeb 6239
ad50bc8d 6240 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
b4830636 6241 {
ad50bc8d
RH
6242 TYPE_SIZE (t) = TYPE_SIZE (type);
6243 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
6244 TYPE_SIZES_GIMPLIFIED (t) = 1;
b4830636 6245 }
b4830636
RH
6246}
6247
6248/* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
6249 a size or position, has had all of its SAVE_EXPRs evaluated.
44de5aeb
RK
6250 We add any required statements to STMT_P. */
6251
6252void
6253gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
6254{
a9c5ddf9
RH
6255 tree type, expr = *expr_p;
6256
44de5aeb 6257 /* We don't do anything if the value isn't there, is constant, or contains
1e748a2b 6258 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
aabcd309 6259 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
1e748a2b
RK
6260 will want to replace it with a new variable, but that will cause problems
6261 if this type is from outside the function. It's OK to have that here. */
a9c5ddf9
RH
6262 if (expr == NULL_TREE || TREE_CONSTANT (expr)
6263 || TREE_CODE (expr) == VAR_DECL
6264 || CONTAINS_PLACEHOLDER_P (expr))
44de5aeb
RK
6265 return;
6266
a9c5ddf9
RH
6267 type = TREE_TYPE (expr);
6268 *expr_p = unshare_expr (expr);
6269
ad50bc8d 6270 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
a9c5ddf9
RH
6271 expr = *expr_p;
6272
6273 /* Verify that we've an exact type match with the original expression.
6274 In particular, we do not wish to drop a "sizetype" in favour of a
6275 type of similar dimensions. We don't want to pollute the generic
6276 type-stripping code with this knowledge because it doesn't matter
6277 for the bulk of GENERIC/GIMPLE. It only matters that TYPE_SIZE_UNIT
6278 and friends retain their "sizetype-ness". */
7fd6694b
RH
6279 if (TREE_TYPE (expr) != type
6280 && TREE_CODE (type) == INTEGER_TYPE
6281 && TYPE_IS_SIZETYPE (type))
a9c5ddf9
RH
6282 {
6283 tree tmp;
6284
6285 *expr_p = create_tmp_var (type, NULL);
6286 tmp = build1 (NOP_EXPR, type, expr);
b56b9fe3 6287 tmp = build_gimple_modify_stmt (*expr_p, tmp);
a9c5ddf9
RH
6288 if (EXPR_HAS_LOCATION (expr))
6289 SET_EXPR_LOCUS (tmp, EXPR_LOCUS (expr));
6290 else
6291 SET_EXPR_LOCATION (tmp, input_location);
6292
6293 gimplify_and_add (tmp, stmt_p);
6294 }
44de5aeb
RK
6295}
6296\f
6de9cd9a
DN
6297#ifdef ENABLE_CHECKING
6298/* Compare types A and B for a "close enough" match. */
6299
6300static bool
6301cpt_same_type (tree a, tree b)
6302{
6303 if (lang_hooks.types_compatible_p (a, b))
6304 return true;
6305
6306 /* ??? The C++ FE decomposes METHOD_TYPES to FUNCTION_TYPES and doesn't
6307 link them together. This routine is intended to catch type errors
6308 that will affect the optimizers, and the optimizers don't add new
6309 dereferences of function pointers, so ignore it. */
6310 if ((TREE_CODE (a) == FUNCTION_TYPE || TREE_CODE (a) == METHOD_TYPE)
6311 && (TREE_CODE (b) == FUNCTION_TYPE || TREE_CODE (b) == METHOD_TYPE))
6312 return true;
6313
6314 /* ??? The C FE pushes type qualifiers after the fact into the type of
6315 the element from the type of the array. See build_unary_op's handling
6316 of ADDR_EXPR. This seems wrong -- if we were going to do this, we
6317 should have done it when creating the variable in the first place.
6318 Alternately, why aren't the two array types made variants? */
6319 if (TREE_CODE (a) == ARRAY_TYPE && TREE_CODE (b) == ARRAY_TYPE)
6320 return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
6321
6322 /* And because of those, we have to recurse down through pointers. */
6323 if (POINTER_TYPE_P (a) && POINTER_TYPE_P (b))
6324 return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
6325
6326 return false;
6327}
6328
6329/* Check for some cases of the front end missing cast expressions.
6330 The type of a dereference should correspond to the pointer type;
6331 similarly the type of an address should match its object. */
6332
6333static tree
6334check_pointer_types_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
6335 void *data ATTRIBUTE_UNUSED)
6336{
6337 tree t = *tp;
6338 tree ptype, otype, dtype;
6339
6340 switch (TREE_CODE (t))
6341 {
6342 case INDIRECT_REF:
6343 case ARRAY_REF:
6344 otype = TREE_TYPE (t);
6345 ptype = TREE_TYPE (TREE_OPERAND (t, 0));
6346 dtype = TREE_TYPE (ptype);
282899df 6347 gcc_assert (cpt_same_type (otype, dtype));
6de9cd9a
DN
6348 break;
6349
6350 case ADDR_EXPR:
6351 ptype = TREE_TYPE (t);
6352 otype = TREE_TYPE (TREE_OPERAND (t, 0));
6353 dtype = TREE_TYPE (ptype);
6354 if (!cpt_same_type (otype, dtype))
6355 {
44de5aeb
RK
6356 /* &array is allowed to produce a pointer to the element, rather than
6357 a pointer to the array type. We must allow this in order to
6358 properly represent assigning the address of an array in C into
6359 pointer to the element type. */
282899df
NS
6360 gcc_assert (TREE_CODE (otype) == ARRAY_TYPE
6361 && POINTER_TYPE_P (ptype)
6362 && cpt_same_type (TREE_TYPE (otype), dtype));
6363 break;
6de9cd9a
DN
6364 }
6365 break;
6366
6367 default:
6368 return NULL_TREE;
6369 }
6370
6371
6372 return NULL_TREE;
6373}
6374#endif
6375
206048bd 6376/* Gimplify the body of statements pointed to by BODY_P. FNDECL is the
6de9cd9a
DN
6377 function decl containing BODY. */
6378
6379void
4744afba 6380gimplify_body (tree *body_p, tree fndecl, bool do_parms)
6de9cd9a
DN
6381{
6382 location_t saved_location = input_location;
4744afba 6383 tree body, parm_stmts;
6de9cd9a
DN
6384
6385 timevar_push (TV_TREE_GIMPLIFY);
953ff289
DN
6386
6387 gcc_assert (gimplify_ctxp == NULL);
6de9cd9a
DN
6388 push_gimplify_context ();
6389
44de5aeb
RK
6390 /* Unshare most shared trees in the body and in that of any nested functions.
6391 It would seem we don't have to do this for nested functions because
6392 they are supposed to be output and then the outer function gimplified
6393 first, but the g++ front end doesn't always do it that way. */
6394 unshare_body (body_p, fndecl);
6395 unvisit_body (body_p, fndecl);
6de9cd9a
DN
6396
6397 /* Make sure input_location isn't set to something wierd. */
6398 input_location = DECL_SOURCE_LOCATION (fndecl);
6399
4744afba
RH
6400 /* Resolve callee-copies. This has to be done before processing
6401 the body so that DECL_VALUE_EXPR gets processed correctly. */
6402 parm_stmts = do_parms ? gimplify_parameters () : NULL;
6403
6de9cd9a
DN
6404 /* Gimplify the function's body. */
6405 gimplify_stmt (body_p);
6406 body = *body_p;
6407
be1ba3d1
RH
6408 if (!body)
6409 body = alloc_stmt_list ();
6410 else if (TREE_CODE (body) == STATEMENT_LIST)
6de9cd9a
DN
6411 {
6412 tree t = expr_only (*body_p);
6413 if (t)
6414 body = t;
6415 }
44de5aeb
RK
6416
6417 /* If there isn't an outer BIND_EXPR, add one. */
6de9cd9a
DN
6418 if (TREE_CODE (body) != BIND_EXPR)
6419 {
b4257cfc
RG
6420 tree b = build3 (BIND_EXPR, void_type_node, NULL_TREE,
6421 NULL_TREE, NULL_TREE);
6de9cd9a 6422 TREE_SIDE_EFFECTS (b) = 1;
be00f578 6423 append_to_statement_list_force (body, &BIND_EXPR_BODY (b));
6de9cd9a
DN
6424 body = b;
6425 }
4744afba
RH
6426
6427 /* If we had callee-copies statements, insert them at the beginning
6428 of the function. */
6429 if (parm_stmts)
6430 {
6431 append_to_statement_list_force (BIND_EXPR_BODY (body), &parm_stmts);
6432 BIND_EXPR_BODY (body) = parm_stmts;
6433 }
6434
6435 /* Unshare again, in case gimplification was sloppy. */
6436 unshare_all_trees (body);
6437
6de9cd9a
DN
6438 *body_p = body;
6439
6440 pop_gimplify_context (body);
953ff289 6441 gcc_assert (gimplify_ctxp == NULL);
6de9cd9a
DN
6442
6443#ifdef ENABLE_CHECKING
6444 walk_tree (body_p, check_pointer_types_r, NULL, NULL);
6445#endif
6446
6447 timevar_pop (TV_TREE_GIMPLIFY);
6448 input_location = saved_location;
6449}
6450
6451/* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
6452 node for the function we want to gimplify. */
6453
6454void
6455gimplify_function_tree (tree fndecl)
6456{
e41d82f5 6457 tree oldfn, parm, ret;
6de9cd9a
DN
6458
6459 oldfn = current_function_decl;
6460 current_function_decl = fndecl;
4744afba
RH
6461 cfun = DECL_STRUCT_FUNCTION (fndecl);
6462 if (cfun == NULL)
6463 allocate_struct_function (fndecl);
6de9cd9a 6464
e41d82f5
RH
6465 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = TREE_CHAIN (parm))
6466 {
6467 /* Preliminarily mark non-addressed complex variables as eligible
6468 for promotion to gimple registers. We'll transform their uses
6469 as we find them. */
0890b981
AP
6470 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
6471 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
e41d82f5
RH
6472 && !TREE_THIS_VOLATILE (parm)
6473 && !needs_to_live_in_memory (parm))
0890b981 6474 DECL_GIMPLE_REG_P (parm) = 1;
e41d82f5
RH
6475 }
6476
6477 ret = DECL_RESULT (fndecl);
0890b981
AP
6478 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
6479 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
e41d82f5 6480 && !needs_to_live_in_memory (ret))
0890b981 6481 DECL_GIMPLE_REG_P (ret) = 1;
e41d82f5 6482
4744afba 6483 gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
6de9cd9a
DN
6484
6485 /* If we're instrumenting function entry/exit, then prepend the call to
6486 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
6487 catch the exit hook. */
6488 /* ??? Add some way to ignore exceptions for this TFE. */
6489 if (flag_instrument_function_entry_exit
6490 && ! DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl))
6491 {
6492 tree tf, x, bind;
6493
b4257cfc 6494 tf = build2 (TRY_FINALLY_EXPR, void_type_node, NULL, NULL);
6de9cd9a
DN
6495 TREE_SIDE_EFFECTS (tf) = 1;
6496 x = DECL_SAVED_TREE (fndecl);
6497 append_to_statement_list (x, &TREE_OPERAND (tf, 0));
6498 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_EXIT];
5039610b 6499 x = build_call_expr (x, 0);
6de9cd9a
DN
6500 append_to_statement_list (x, &TREE_OPERAND (tf, 1));
6501
b4257cfc 6502 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6de9cd9a
DN
6503 TREE_SIDE_EFFECTS (bind) = 1;
6504 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_ENTER];
5039610b 6505 x = build_call_expr (x, 0);
6de9cd9a
DN
6506 append_to_statement_list (x, &BIND_EXPR_BODY (bind));
6507 append_to_statement_list (tf, &BIND_EXPR_BODY (bind));
6508
6509 DECL_SAVED_TREE (fndecl) = bind;
6510 }
6511
07beea0d 6512 cfun->gimplified = true;
6de9cd9a 6513 current_function_decl = oldfn;
4744afba 6514 cfun = oldfn ? DECL_STRUCT_FUNCTION (oldfn) : NULL;
6de9cd9a 6515}
8b11a64c
ZD
6516\f
6517/* Expands EXPR to list of gimple statements STMTS. If SIMPLE is true,
6518 force the result to be either ssa_name or an invariant, otherwise
6519 just force it to be a rhs expression. If VAR is not NULL, make the
6520 base variable of the final destination be VAR if suitable. */
6521
6522tree
6523force_gimple_operand (tree expr, tree *stmts, bool simple, tree var)
6524{
6525 tree t;
6526 enum gimplify_status ret;
6527 gimple_predicate gimple_test_f;
6528
6529 *stmts = NULL_TREE;
6530
6531 if (is_gimple_val (expr))
6532 return expr;
6533
6534 gimple_test_f = simple ? is_gimple_val : is_gimple_reg_rhs;
6535
6536 push_gimplify_context ();
5cd4ec7f 6537 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8b11a64c
ZD
6538
6539 if (var)
b56b9fe3 6540 expr = build_gimple_modify_stmt (var, expr);
8b11a64c
ZD
6541
6542 ret = gimplify_expr (&expr, stmts, NULL,
6543 gimple_test_f, fb_rvalue);
282899df 6544 gcc_assert (ret != GS_ERROR);
8b11a64c 6545
5cd4ec7f 6546 if (gimple_referenced_vars (cfun))
9885da8e
ZD
6547 {
6548 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
f004ab02 6549 add_referenced_var (t);
9885da8e 6550 }
8b11a64c
ZD
6551
6552 pop_gimplify_context (NULL);
6553
6554 return expr;
6555}
6556
9885da8e
ZD
6557/* Invokes force_gimple_operand for EXPR with parameters SIMPLE_P and VAR. If
6558 some statements are produced, emits them before BSI. */
6559
6560tree
6561force_gimple_operand_bsi (block_stmt_iterator *bsi, tree expr,
6562 bool simple_p, tree var)
6563{
6564 tree stmts;
6565
6566 expr = force_gimple_operand (expr, &stmts, simple_p, var);
6567 if (stmts)
6568 bsi_insert_before (bsi, stmts, BSI_SAME_STMT);
6569
6570 return expr;
6571}
6572
6de9cd9a 6573#include "gt-gimplify.h"