gensupport.c (init_rtx_reader_args_cb): Start counting code generating patterns from...
[gcc.git] / gcc / gimplify.c
1 /* Tree lowering pass. This pass converts the GENERIC functions-as-trees
2 tree representation into the GIMPLE form.
3 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
4 2012 Free Software Foundation, Inc.
5 Major work done by Sebastian Pop <s.pop@laposte.net>,
6 Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
7
8 This file is part of GCC.
9
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
14
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "gimple.h"
30 #include "tree-iterator.h"
31 #include "tree-inline.h"
32 #include "tree-pretty-print.h"
33 #include "langhooks.h"
34 #include "tree-flow.h"
35 #include "cgraph.h"
36 #include "timevar.h"
37 #include "hashtab.h"
38 #include "flags.h"
39 #include "function.h"
40 #include "ggc.h"
41 #include "diagnostic-core.h"
42 #include "target.h"
43 #include "pointer-set.h"
44 #include "splay-tree.h"
45 #include "vec.h"
46 #include "gimple.h"
47 #include "tree-pass.h"
48
49 #include "langhooks-def.h" /* FIXME: for lhd_set_decl_assembler_name. */
50 #include "expr.h" /* FIXME: for can_move_by_pieces
51 and STACK_CHECK_MAX_VAR_SIZE. */
52
53 enum gimplify_omp_var_data
54 {
55 GOVD_SEEN = 1,
56 GOVD_EXPLICIT = 2,
57 GOVD_SHARED = 4,
58 GOVD_PRIVATE = 8,
59 GOVD_FIRSTPRIVATE = 16,
60 GOVD_LASTPRIVATE = 32,
61 GOVD_REDUCTION = 64,
62 GOVD_LOCAL = 128,
63 GOVD_DEBUG_PRIVATE = 256,
64 GOVD_PRIVATE_OUTER_REF = 512,
65 GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
66 | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
67 };
68
69
70 enum omp_region_type
71 {
72 ORT_WORKSHARE = 0,
73 ORT_PARALLEL = 2,
74 ORT_COMBINED_PARALLEL = 3,
75 ORT_TASK = 4,
76 ORT_UNTIED_TASK = 5
77 };
78
79 struct gimplify_omp_ctx
80 {
81 struct gimplify_omp_ctx *outer_context;
82 splay_tree variables;
83 struct pointer_set_t *privatized_types;
84 location_t location;
85 enum omp_clause_default_kind default_kind;
86 enum omp_region_type region_type;
87 };
88
89 static struct gimplify_ctx *gimplify_ctxp;
90 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
91
92
93 /* Formal (expression) temporary table handling: multiple occurrences of
94 the same scalar expression are evaluated into the same temporary. */
95
96 typedef struct gimple_temp_hash_elt
97 {
98 tree val; /* Key */
99 tree temp; /* Value */
100 } elt_t;
101
102 /* Forward declaration. */
103 static enum gimplify_status gimplify_compound_expr (tree *, gimple_seq *, bool);
104
105 /* Mark X addressable. Unlike the langhook we expect X to be in gimple
106 form and we don't do any syntax checking. */
107
108 void
109 mark_addressable (tree x)
110 {
111 while (handled_component_p (x))
112 x = TREE_OPERAND (x, 0);
113 if (TREE_CODE (x) == MEM_REF
114 && TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
115 x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
116 if (TREE_CODE (x) != VAR_DECL
117 && TREE_CODE (x) != PARM_DECL
118 && TREE_CODE (x) != RESULT_DECL)
119 return;
120 TREE_ADDRESSABLE (x) = 1;
121 }
122
123 /* Return a hash value for a formal temporary table entry. */
124
125 static hashval_t
126 gimple_tree_hash (const void *p)
127 {
128 tree t = ((const elt_t *) p)->val;
129 return iterative_hash_expr (t, 0);
130 }
131
132 /* Compare two formal temporary table entries. */
133
134 static int
135 gimple_tree_eq (const void *p1, const void *p2)
136 {
137 tree t1 = ((const elt_t *) p1)->val;
138 tree t2 = ((const elt_t *) p2)->val;
139 enum tree_code code = TREE_CODE (t1);
140
141 if (TREE_CODE (t2) != code
142 || TREE_TYPE (t1) != TREE_TYPE (t2))
143 return 0;
144
145 if (!operand_equal_p (t1, t2, 0))
146 return 0;
147
148 #ifdef ENABLE_CHECKING
149 /* Only allow them to compare equal if they also hash equal; otherwise
150 results are nondeterminate, and we fail bootstrap comparison. */
151 gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
152 #endif
153
154 return 1;
155 }
156
157 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
158 *SEQ_P is NULL, a new sequence is allocated. This function is
159 similar to gimple_seq_add_stmt, but does not scan the operands.
160 During gimplification, we need to manipulate statement sequences
161 before the def/use vectors have been constructed. */
162
163 void
164 gimple_seq_add_stmt_without_update (gimple_seq *seq_p, gimple gs)
165 {
166 gimple_stmt_iterator si;
167
168 if (gs == NULL)
169 return;
170
171 si = gsi_last (*seq_p);
172 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
173 }
174
175 /* Shorter alias name for the above function for use in gimplify.c
176 only. */
177
178 static inline void
179 gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs)
180 {
181 gimple_seq_add_stmt_without_update (seq_p, gs);
182 }
183
184 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
185 NULL, a new sequence is allocated. This function is
186 similar to gimple_seq_add_seq, but does not scan the operands.
187 During gimplification, we need to manipulate statement sequences
188 before the def/use vectors have been constructed. */
189
190 static void
191 gimplify_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
192 {
193 gimple_stmt_iterator si;
194
195 if (src == NULL)
196 return;
197
198 si = gsi_last (*dst_p);
199 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
200 }
201
202 /* Set up a context for the gimplifier. */
203
204 void
205 push_gimplify_context (struct gimplify_ctx *c)
206 {
207 memset (c, '\0', sizeof (*c));
208 c->prev_context = gimplify_ctxp;
209 gimplify_ctxp = c;
210 }
211
212 /* Tear down a context for the gimplifier. If BODY is non-null, then
213 put the temporaries into the outer BIND_EXPR. Otherwise, put them
214 in the local_decls.
215
216 BODY is not a sequence, but the first tuple in a sequence. */
217
218 void
219 pop_gimplify_context (gimple body)
220 {
221 struct gimplify_ctx *c = gimplify_ctxp;
222
223 gcc_assert (c && (c->bind_expr_stack == NULL
224 || VEC_empty (gimple, c->bind_expr_stack)));
225 VEC_free (gimple, heap, c->bind_expr_stack);
226 gimplify_ctxp = c->prev_context;
227
228 if (body)
229 declare_vars (c->temps, body, false);
230 else
231 record_vars (c->temps);
232
233 if (c->temp_htab)
234 htab_delete (c->temp_htab);
235 }
236
237 /* Push a GIMPLE_BIND tuple onto the stack of bindings. */
238
239 static void
240 gimple_push_bind_expr (gimple gimple_bind)
241 {
242 if (gimplify_ctxp->bind_expr_stack == NULL)
243 gimplify_ctxp->bind_expr_stack = VEC_alloc (gimple, heap, 8);
244 VEC_safe_push (gimple, heap, gimplify_ctxp->bind_expr_stack, gimple_bind);
245 }
246
247 /* Pop the first element off the stack of bindings. */
248
249 static void
250 gimple_pop_bind_expr (void)
251 {
252 VEC_pop (gimple, gimplify_ctxp->bind_expr_stack);
253 }
254
255 /* Return the first element of the stack of bindings. */
256
257 gimple
258 gimple_current_bind_expr (void)
259 {
260 return VEC_last (gimple, gimplify_ctxp->bind_expr_stack);
261 }
262
263 /* Return the stack of bindings created during gimplification. */
264
265 VEC(gimple, heap) *
266 gimple_bind_expr_stack (void)
267 {
268 return gimplify_ctxp->bind_expr_stack;
269 }
270
271 /* Return true iff there is a COND_EXPR between us and the innermost
272 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
273
274 static bool
275 gimple_conditional_context (void)
276 {
277 return gimplify_ctxp->conditions > 0;
278 }
279
280 /* Note that we've entered a COND_EXPR. */
281
282 static void
283 gimple_push_condition (void)
284 {
285 #ifdef ENABLE_GIMPLE_CHECKING
286 if (gimplify_ctxp->conditions == 0)
287 gcc_assert (gimple_seq_empty_p (gimplify_ctxp->conditional_cleanups));
288 #endif
289 ++(gimplify_ctxp->conditions);
290 }
291
292 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
293 now, add any conditional cleanups we've seen to the prequeue. */
294
295 static void
296 gimple_pop_condition (gimple_seq *pre_p)
297 {
298 int conds = --(gimplify_ctxp->conditions);
299
300 gcc_assert (conds >= 0);
301 if (conds == 0)
302 {
303 gimplify_seq_add_seq (pre_p, gimplify_ctxp->conditional_cleanups);
304 gimplify_ctxp->conditional_cleanups = NULL;
305 }
306 }
307
308 /* A stable comparison routine for use with splay trees and DECLs. */
309
310 static int
311 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
312 {
313 tree a = (tree) xa;
314 tree b = (tree) xb;
315
316 return DECL_UID (a) - DECL_UID (b);
317 }
318
319 /* Create a new omp construct that deals with variable remapping. */
320
321 static struct gimplify_omp_ctx *
322 new_omp_context (enum omp_region_type region_type)
323 {
324 struct gimplify_omp_ctx *c;
325
326 c = XCNEW (struct gimplify_omp_ctx);
327 c->outer_context = gimplify_omp_ctxp;
328 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
329 c->privatized_types = pointer_set_create ();
330 c->location = input_location;
331 c->region_type = region_type;
332 if ((region_type & ORT_TASK) == 0)
333 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
334 else
335 c->default_kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
336
337 return c;
338 }
339
340 /* Destroy an omp construct that deals with variable remapping. */
341
342 static void
343 delete_omp_context (struct gimplify_omp_ctx *c)
344 {
345 splay_tree_delete (c->variables);
346 pointer_set_destroy (c->privatized_types);
347 XDELETE (c);
348 }
349
350 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
351 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
352
353 /* Both gimplify the statement T and append it to *SEQ_P. This function
354 behaves exactly as gimplify_stmt, but you don't have to pass T as a
355 reference. */
356
357 void
358 gimplify_and_add (tree t, gimple_seq *seq_p)
359 {
360 gimplify_stmt (&t, seq_p);
361 }
362
363 /* Gimplify statement T into sequence *SEQ_P, and return the first
364 tuple in the sequence of generated tuples for this statement.
365 Return NULL if gimplifying T produced no tuples. */
366
367 static gimple
368 gimplify_and_return_first (tree t, gimple_seq *seq_p)
369 {
370 gimple_stmt_iterator last = gsi_last (*seq_p);
371
372 gimplify_and_add (t, seq_p);
373
374 if (!gsi_end_p (last))
375 {
376 gsi_next (&last);
377 return gsi_stmt (last);
378 }
379 else
380 return gimple_seq_first_stmt (*seq_p);
381 }
382
383 /* Strip off a legitimate source ending from the input string NAME of
384 length LEN. Rather than having to know the names used by all of
385 our front ends, we strip off an ending of a period followed by
386 up to five characters. (Java uses ".class".) */
387
388 static inline void
389 remove_suffix (char *name, int len)
390 {
391 int i;
392
393 for (i = 2; i < 8 && len > i; i++)
394 {
395 if (name[len - i] == '.')
396 {
397 name[len - i] = '\0';
398 break;
399 }
400 }
401 }
402
403 /* Create a new temporary name with PREFIX. Return an identifier. */
404
405 static GTY(()) unsigned int tmp_var_id_num;
406
407 tree
408 create_tmp_var_name (const char *prefix)
409 {
410 char *tmp_name;
411
412 if (prefix)
413 {
414 char *preftmp = ASTRDUP (prefix);
415
416 remove_suffix (preftmp, strlen (preftmp));
417 clean_symbol_name (preftmp);
418
419 prefix = preftmp;
420 }
421
422 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
423 return get_identifier (tmp_name);
424 }
425
426 /* Create a new temporary variable declaration of type TYPE.
427 Do NOT push it into the current binding. */
428
429 tree
430 create_tmp_var_raw (tree type, const char *prefix)
431 {
432 tree tmp_var;
433
434 tmp_var = build_decl (input_location,
435 VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
436 type);
437
438 /* The variable was declared by the compiler. */
439 DECL_ARTIFICIAL (tmp_var) = 1;
440 /* And we don't want debug info for it. */
441 DECL_IGNORED_P (tmp_var) = 1;
442
443 /* Make the variable writable. */
444 TREE_READONLY (tmp_var) = 0;
445
446 DECL_EXTERNAL (tmp_var) = 0;
447 TREE_STATIC (tmp_var) = 0;
448 TREE_USED (tmp_var) = 1;
449
450 return tmp_var;
451 }
452
453 /* Create a new temporary variable declaration of type TYPE. DO push the
454 variable into the current binding. Further, assume that this is called
455 only from gimplification or optimization, at which point the creation of
456 certain types are bugs. */
457
458 tree
459 create_tmp_var (tree type, const char *prefix)
460 {
461 tree tmp_var;
462
463 /* We don't allow types that are addressable (meaning we can't make copies),
464 or incomplete. We also used to reject every variable size objects here,
465 but now support those for which a constant upper bound can be obtained.
466 The processing for variable sizes is performed in gimple_add_tmp_var,
467 point at which it really matters and possibly reached via paths not going
468 through this function, e.g. after direct calls to create_tmp_var_raw. */
469 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
470
471 tmp_var = create_tmp_var_raw (type, prefix);
472 gimple_add_tmp_var (tmp_var);
473 return tmp_var;
474 }
475
476 /* Create a new temporary variable declaration of type TYPE by calling
477 create_tmp_var and if TYPE is a vector or a complex number, mark the new
478 temporary as gimple register. */
479
480 tree
481 create_tmp_reg (tree type, const char *prefix)
482 {
483 tree tmp;
484
485 tmp = create_tmp_var (type, prefix);
486 if (TREE_CODE (type) == COMPLEX_TYPE
487 || TREE_CODE (type) == VECTOR_TYPE)
488 DECL_GIMPLE_REG_P (tmp) = 1;
489
490 return tmp;
491 }
492
493 /* Create a temporary with a name derived from VAL. Subroutine of
494 lookup_tmp_var; nobody else should call this function. */
495
496 static inline tree
497 create_tmp_from_val (tree val)
498 {
499 /* Drop all qualifiers and address-space information from the value type. */
500 return create_tmp_var (TYPE_MAIN_VARIANT (TREE_TYPE (val)), get_name (val));
501 }
502
503 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
504 an existing expression temporary. */
505
506 static tree
507 lookup_tmp_var (tree val, bool is_formal)
508 {
509 tree ret;
510
511 /* If not optimizing, never really reuse a temporary. local-alloc
512 won't allocate any variable that is used in more than one basic
513 block, which means it will go into memory, causing much extra
514 work in reload and final and poorer code generation, outweighing
515 the extra memory allocation here. */
516 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
517 ret = create_tmp_from_val (val);
518 else
519 {
520 elt_t elt, *elt_p;
521 void **slot;
522
523 elt.val = val;
524 if (gimplify_ctxp->temp_htab == NULL)
525 gimplify_ctxp->temp_htab
526 = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
527 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
528 if (*slot == NULL)
529 {
530 elt_p = XNEW (elt_t);
531 elt_p->val = val;
532 elt_p->temp = ret = create_tmp_from_val (val);
533 *slot = (void *) elt_p;
534 }
535 else
536 {
537 elt_p = (elt_t *) *slot;
538 ret = elt_p->temp;
539 }
540 }
541
542 return ret;
543 }
544
545 /* Returns true iff T is a valid RHS for an assignment to a renamed
546 user -- or front-end generated artificial -- variable. */
547
548 static bool
549 is_gimple_reg_rhs (tree t)
550 {
551 return get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS;
552 }
553
554 /* Returns true iff T is a valid RHS for an assignment to an un-renamed
555 LHS, or for a call argument. */
556
557 static bool
558 is_gimple_mem_rhs (tree t)
559 {
560 /* If we're dealing with a renamable type, either source or dest must be
561 a renamed variable. */
562 if (is_gimple_reg_type (TREE_TYPE (t)))
563 return is_gimple_val (t);
564 else
565 return is_gimple_val (t) || is_gimple_lvalue (t);
566 }
567
568 /* Return true if T is a CALL_EXPR or an expression that can be
569 assigned to a temporary. Note that this predicate should only be
570 used during gimplification. See the rationale for this in
571 gimplify_modify_expr. */
572
573 static bool
574 is_gimple_reg_rhs_or_call (tree t)
575 {
576 return (get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS
577 || TREE_CODE (t) == CALL_EXPR);
578 }
579
580 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
581 this predicate should only be used during gimplification. See the
582 rationale for this in gimplify_modify_expr. */
583
584 static bool
585 is_gimple_mem_rhs_or_call (tree t)
586 {
587 /* If we're dealing with a renamable type, either source or dest must be
588 a renamed variable. */
589 if (is_gimple_reg_type (TREE_TYPE (t)))
590 return is_gimple_val (t);
591 else
592 return (is_gimple_val (t) || is_gimple_lvalue (t)
593 || TREE_CODE (t) == CALL_EXPR);
594 }
595
596 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
597
598 static tree
599 internal_get_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p,
600 bool is_formal)
601 {
602 tree t, mod;
603
604 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
605 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
606 gimplify_expr (&val, pre_p, post_p, is_gimple_reg_rhs_or_call,
607 fb_rvalue);
608
609 t = lookup_tmp_var (val, is_formal);
610
611 if (is_formal
612 && (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
613 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE))
614 DECL_GIMPLE_REG_P (t) = 1;
615
616 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
617
618 SET_EXPR_LOCATION (mod, EXPR_LOC_OR_HERE (val));
619
620 /* gimplify_modify_expr might want to reduce this further. */
621 gimplify_and_add (mod, pre_p);
622 ggc_free (mod);
623
624 /* If we're gimplifying into ssa, gimplify_modify_expr will have
625 given our temporary an SSA name. Find and return it. */
626 if (gimplify_ctxp->into_ssa)
627 {
628 gimple last = gimple_seq_last_stmt (*pre_p);
629 t = gimple_get_lhs (last);
630 }
631
632 return t;
633 }
634
635 /* Return a formal temporary variable initialized with VAL. PRE_P is as
636 in gimplify_expr. Only use this function if:
637
638 1) The value of the unfactored expression represented by VAL will not
639 change between the initialization and use of the temporary, and
640 2) The temporary will not be otherwise modified.
641
642 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
643 and #2 means it is inappropriate for && temps.
644
645 For other cases, use get_initialized_tmp_var instead. */
646
647 tree
648 get_formal_tmp_var (tree val, gimple_seq *pre_p)
649 {
650 return internal_get_tmp_var (val, pre_p, NULL, true);
651 }
652
653 /* Return a temporary variable initialized with VAL. PRE_P and POST_P
654 are as in gimplify_expr. */
655
656 tree
657 get_initialized_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p)
658 {
659 return internal_get_tmp_var (val, pre_p, post_p, false);
660 }
661
662 /* Declare all the variables in VARS in SCOPE. If DEBUG_INFO is true,
663 generate debug info for them; otherwise don't. */
664
665 void
666 declare_vars (tree vars, gimple scope, bool debug_info)
667 {
668 tree last = vars;
669 if (last)
670 {
671 tree temps, block;
672
673 gcc_assert (gimple_code (scope) == GIMPLE_BIND);
674
675 temps = nreverse (last);
676
677 block = gimple_bind_block (scope);
678 gcc_assert (!block || TREE_CODE (block) == BLOCK);
679 if (!block || !debug_info)
680 {
681 DECL_CHAIN (last) = gimple_bind_vars (scope);
682 gimple_bind_set_vars (scope, temps);
683 }
684 else
685 {
686 /* We need to attach the nodes both to the BIND_EXPR and to its
687 associated BLOCK for debugging purposes. The key point here
688 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
689 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
690 if (BLOCK_VARS (block))
691 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
692 else
693 {
694 gimple_bind_set_vars (scope,
695 chainon (gimple_bind_vars (scope), temps));
696 BLOCK_VARS (block) = temps;
697 }
698 }
699 }
700 }
701
702 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
703 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
704 no such upper bound can be obtained. */
705
706 static void
707 force_constant_size (tree var)
708 {
709 /* The only attempt we make is by querying the maximum size of objects
710 of the variable's type. */
711
712 HOST_WIDE_INT max_size;
713
714 gcc_assert (TREE_CODE (var) == VAR_DECL);
715
716 max_size = max_int_size_in_bytes (TREE_TYPE (var));
717
718 gcc_assert (max_size >= 0);
719
720 DECL_SIZE_UNIT (var)
721 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
722 DECL_SIZE (var)
723 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
724 }
725
726 /* Push the temporary variable TMP into the current binding. */
727
728 void
729 gimple_add_tmp_var (tree tmp)
730 {
731 gcc_assert (!DECL_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
732
733 /* Later processing assumes that the object size is constant, which might
734 not be true at this point. Force the use of a constant upper bound in
735 this case. */
736 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
737 force_constant_size (tmp);
738
739 DECL_CONTEXT (tmp) = current_function_decl;
740 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
741
742 if (gimplify_ctxp)
743 {
744 DECL_CHAIN (tmp) = gimplify_ctxp->temps;
745 gimplify_ctxp->temps = tmp;
746
747 /* Mark temporaries local within the nearest enclosing parallel. */
748 if (gimplify_omp_ctxp)
749 {
750 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
751 while (ctx && ctx->region_type == ORT_WORKSHARE)
752 ctx = ctx->outer_context;
753 if (ctx)
754 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
755 }
756 }
757 else if (cfun)
758 record_vars (tmp);
759 else
760 {
761 gimple_seq body_seq;
762
763 /* This case is for nested functions. We need to expose the locals
764 they create. */
765 body_seq = gimple_body (current_function_decl);
766 declare_vars (tmp, gimple_seq_first_stmt (body_seq), false);
767 }
768 }
769
770 /* Determine whether to assign a location to the statement GS. */
771
772 static bool
773 should_carry_location_p (gimple gs)
774 {
775 /* Don't emit a line note for a label. We particularly don't want to
776 emit one for the break label, since it doesn't actually correspond
777 to the beginning of the loop/switch. */
778 if (gimple_code (gs) == GIMPLE_LABEL)
779 return false;
780
781 return true;
782 }
783
784 /* Return true if a location should not be emitted for this statement
785 by annotate_one_with_location. */
786
787 static inline bool
788 gimple_do_not_emit_location_p (gimple g)
789 {
790 return gimple_plf (g, GF_PLF_1);
791 }
792
793 /* Mark statement G so a location will not be emitted by
794 annotate_one_with_location. */
795
796 static inline void
797 gimple_set_do_not_emit_location (gimple g)
798 {
799 /* The PLF flags are initialized to 0 when a new tuple is created,
800 so no need to initialize it anywhere. */
801 gimple_set_plf (g, GF_PLF_1, true);
802 }
803
804 /* Set the location for gimple statement GS to LOCATION. */
805
806 static void
807 annotate_one_with_location (gimple gs, location_t location)
808 {
809 if (!gimple_has_location (gs)
810 && !gimple_do_not_emit_location_p (gs)
811 && should_carry_location_p (gs))
812 gimple_set_location (gs, location);
813 }
814
815 /* Set LOCATION for all the statements after iterator GSI in sequence
816 SEQ. If GSI is pointing to the end of the sequence, start with the
817 first statement in SEQ. */
818
819 static void
820 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
821 location_t location)
822 {
823 if (gsi_end_p (gsi))
824 gsi = gsi_start (seq);
825 else
826 gsi_next (&gsi);
827
828 for (; !gsi_end_p (gsi); gsi_next (&gsi))
829 annotate_one_with_location (gsi_stmt (gsi), location);
830 }
831
832 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
833
834 void
835 annotate_all_with_location (gimple_seq stmt_p, location_t location)
836 {
837 gimple_stmt_iterator i;
838
839 if (gimple_seq_empty_p (stmt_p))
840 return;
841
842 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
843 {
844 gimple gs = gsi_stmt (i);
845 annotate_one_with_location (gs, location);
846 }
847 }
848 \f
849 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
850 nodes that are referenced more than once in GENERIC functions. This is
851 necessary because gimplification (translation into GIMPLE) is performed
852 by modifying tree nodes in-place, so gimplication of a shared node in a
853 first context could generate an invalid GIMPLE form in a second context.
854
855 This is achieved with a simple mark/copy/unmark algorithm that walks the
856 GENERIC representation top-down, marks nodes with TREE_VISITED the first
857 time it encounters them, duplicates them if they already have TREE_VISITED
858 set, and finally removes the TREE_VISITED marks it has set.
859
860 The algorithm works only at the function level, i.e. it generates a GENERIC
861 representation of a function with no nodes shared within the function when
862 passed a GENERIC function (except for nodes that are allowed to be shared).
863
864 At the global level, it is also necessary to unshare tree nodes that are
865 referenced in more than one function, for the same aforementioned reason.
866 This requires some cooperation from the front-end. There are 2 strategies:
867
868 1. Manual unsharing. The front-end needs to call unshare_expr on every
869 expression that might end up being shared across functions.
870
871 2. Deep unsharing. This is an extension of regular unsharing. Instead
872 of calling unshare_expr on expressions that might be shared across
873 functions, the front-end pre-marks them with TREE_VISITED. This will
874 ensure that they are unshared on the first reference within functions
875 when the regular unsharing algorithm runs. The counterpart is that
876 this algorithm must look deeper than for manual unsharing, which is
877 specified by LANG_HOOKS_DEEP_UNSHARING.
878
879 If there are only few specific cases of node sharing across functions, it is
880 probably easier for a front-end to unshare the expressions manually. On the
881 contrary, if the expressions generated at the global level are as widespread
882 as expressions generated within functions, deep unsharing is very likely the
883 way to go. */
884
885 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
886 These nodes model computations that must be done once. If we were to
887 unshare something like SAVE_EXPR(i++), the gimplification process would
888 create wrong code. However, if DATA is non-null, it must hold a pointer
889 set that is used to unshare the subtrees of these nodes. */
890
891 static tree
892 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
893 {
894 tree t = *tp;
895 enum tree_code code = TREE_CODE (t);
896
897 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
898 copy their subtrees if we can make sure to do it only once. */
899 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
900 {
901 if (data && !pointer_set_insert ((struct pointer_set_t *)data, t))
902 ;
903 else
904 *walk_subtrees = 0;
905 }
906
907 /* Stop at types, decls, constants like copy_tree_r. */
908 else if (TREE_CODE_CLASS (code) == tcc_type
909 || TREE_CODE_CLASS (code) == tcc_declaration
910 || TREE_CODE_CLASS (code) == tcc_constant
911 /* We can't do anything sensible with a BLOCK used as an
912 expression, but we also can't just die when we see it
913 because of non-expression uses. So we avert our eyes
914 and cross our fingers. Silly Java. */
915 || code == BLOCK)
916 *walk_subtrees = 0;
917
918 /* Cope with the statement expression extension. */
919 else if (code == STATEMENT_LIST)
920 ;
921
922 /* Leave the bulk of the work to copy_tree_r itself. */
923 else
924 copy_tree_r (tp, walk_subtrees, NULL);
925
926 return NULL_TREE;
927 }
928
929 /* Callback for walk_tree to unshare most of the shared trees rooted at *TP.
930 If *TP has been visited already, then *TP is deeply copied by calling
931 mostly_copy_tree_r. DATA is passed to mostly_copy_tree_r unmodified. */
932
933 static tree
934 copy_if_shared_r (tree *tp, int *walk_subtrees, void *data)
935 {
936 tree t = *tp;
937 enum tree_code code = TREE_CODE (t);
938
939 /* Skip types, decls, and constants. But we do want to look at their
940 types and the bounds of types. Mark them as visited so we properly
941 unmark their subtrees on the unmark pass. If we've already seen them,
942 don't look down further. */
943 if (TREE_CODE_CLASS (code) == tcc_type
944 || TREE_CODE_CLASS (code) == tcc_declaration
945 || TREE_CODE_CLASS (code) == tcc_constant)
946 {
947 if (TREE_VISITED (t))
948 *walk_subtrees = 0;
949 else
950 TREE_VISITED (t) = 1;
951 }
952
953 /* If this node has been visited already, unshare it and don't look
954 any deeper. */
955 else if (TREE_VISITED (t))
956 {
957 walk_tree (tp, mostly_copy_tree_r, data, NULL);
958 *walk_subtrees = 0;
959 }
960
961 /* Otherwise, mark the node as visited and keep looking. */
962 else
963 TREE_VISITED (t) = 1;
964
965 return NULL_TREE;
966 }
967
968 /* Unshare most of the shared trees rooted at *TP. DATA is passed to the
969 copy_if_shared_r callback unmodified. */
970
971 static inline void
972 copy_if_shared (tree *tp, void *data)
973 {
974 walk_tree (tp, copy_if_shared_r, data, NULL);
975 }
976
977 /* Unshare all the trees in the body of FNDECL, as well as in the bodies of
978 any nested functions. */
979
980 static void
981 unshare_body (tree fndecl)
982 {
983 struct cgraph_node *cgn = cgraph_get_node (fndecl);
984 /* If the language requires deep unsharing, we need a pointer set to make
985 sure we don't repeatedly unshare subtrees of unshareable nodes. */
986 struct pointer_set_t *visited
987 = lang_hooks.deep_unsharing ? pointer_set_create () : NULL;
988
989 copy_if_shared (&DECL_SAVED_TREE (fndecl), visited);
990 copy_if_shared (&DECL_SIZE (DECL_RESULT (fndecl)), visited);
991 copy_if_shared (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)), visited);
992
993 if (visited)
994 pointer_set_destroy (visited);
995
996 if (cgn)
997 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
998 unshare_body (cgn->symbol.decl);
999 }
1000
1001 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
1002 Subtrees are walked until the first unvisited node is encountered. */
1003
1004 static tree
1005 unmark_visited_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1006 {
1007 tree t = *tp;
1008
1009 /* If this node has been visited, unmark it and keep looking. */
1010 if (TREE_VISITED (t))
1011 TREE_VISITED (t) = 0;
1012
1013 /* Otherwise, don't look any deeper. */
1014 else
1015 *walk_subtrees = 0;
1016
1017 return NULL_TREE;
1018 }
1019
1020 /* Unmark the visited trees rooted at *TP. */
1021
1022 static inline void
1023 unmark_visited (tree *tp)
1024 {
1025 walk_tree (tp, unmark_visited_r, NULL, NULL);
1026 }
1027
1028 /* Likewise, but mark all trees as not visited. */
1029
1030 static void
1031 unvisit_body (tree fndecl)
1032 {
1033 struct cgraph_node *cgn = cgraph_get_node (fndecl);
1034
1035 unmark_visited (&DECL_SAVED_TREE (fndecl));
1036 unmark_visited (&DECL_SIZE (DECL_RESULT (fndecl)));
1037 unmark_visited (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)));
1038
1039 if (cgn)
1040 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1041 unvisit_body (cgn->symbol.decl);
1042 }
1043
1044 /* Unconditionally make an unshared copy of EXPR. This is used when using
1045 stored expressions which span multiple functions, such as BINFO_VTABLE,
1046 as the normal unsharing process can't tell that they're shared. */
1047
1048 tree
1049 unshare_expr (tree expr)
1050 {
1051 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1052 return expr;
1053 }
1054 \f
1055 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1056 contain statements and have a value. Assign its value to a temporary
1057 and give it void_type_node. Return the temporary, or NULL_TREE if
1058 WRAPPER was already void. */
1059
1060 tree
1061 voidify_wrapper_expr (tree wrapper, tree temp)
1062 {
1063 tree type = TREE_TYPE (wrapper);
1064 if (type && !VOID_TYPE_P (type))
1065 {
1066 tree *p;
1067
1068 /* Set p to point to the body of the wrapper. Loop until we find
1069 something that isn't a wrapper. */
1070 for (p = &wrapper; p && *p; )
1071 {
1072 switch (TREE_CODE (*p))
1073 {
1074 case BIND_EXPR:
1075 TREE_SIDE_EFFECTS (*p) = 1;
1076 TREE_TYPE (*p) = void_type_node;
1077 /* For a BIND_EXPR, the body is operand 1. */
1078 p = &BIND_EXPR_BODY (*p);
1079 break;
1080
1081 case CLEANUP_POINT_EXPR:
1082 case TRY_FINALLY_EXPR:
1083 case TRY_CATCH_EXPR:
1084 TREE_SIDE_EFFECTS (*p) = 1;
1085 TREE_TYPE (*p) = void_type_node;
1086 p = &TREE_OPERAND (*p, 0);
1087 break;
1088
1089 case STATEMENT_LIST:
1090 {
1091 tree_stmt_iterator i = tsi_last (*p);
1092 TREE_SIDE_EFFECTS (*p) = 1;
1093 TREE_TYPE (*p) = void_type_node;
1094 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
1095 }
1096 break;
1097
1098 case COMPOUND_EXPR:
1099 /* Advance to the last statement. Set all container types to
1100 void. */
1101 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
1102 {
1103 TREE_SIDE_EFFECTS (*p) = 1;
1104 TREE_TYPE (*p) = void_type_node;
1105 }
1106 break;
1107
1108 case TRANSACTION_EXPR:
1109 TREE_SIDE_EFFECTS (*p) = 1;
1110 TREE_TYPE (*p) = void_type_node;
1111 p = &TRANSACTION_EXPR_BODY (*p);
1112 break;
1113
1114 default:
1115 /* Assume that any tree upon which voidify_wrapper_expr is
1116 directly called is a wrapper, and that its body is op0. */
1117 if (p == &wrapper)
1118 {
1119 TREE_SIDE_EFFECTS (*p) = 1;
1120 TREE_TYPE (*p) = void_type_node;
1121 p = &TREE_OPERAND (*p, 0);
1122 break;
1123 }
1124 goto out;
1125 }
1126 }
1127
1128 out:
1129 if (p == NULL || IS_EMPTY_STMT (*p))
1130 temp = NULL_TREE;
1131 else if (temp)
1132 {
1133 /* The wrapper is on the RHS of an assignment that we're pushing
1134 down. */
1135 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1136 || TREE_CODE (temp) == MODIFY_EXPR);
1137 TREE_OPERAND (temp, 1) = *p;
1138 *p = temp;
1139 }
1140 else
1141 {
1142 temp = create_tmp_var (type, "retval");
1143 *p = build2 (INIT_EXPR, type, temp, *p);
1144 }
1145
1146 return temp;
1147 }
1148
1149 return NULL_TREE;
1150 }
1151
1152 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1153 a temporary through which they communicate. */
1154
1155 static void
1156 build_stack_save_restore (gimple *save, gimple *restore)
1157 {
1158 tree tmp_var;
1159
1160 *save = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_SAVE), 0);
1161 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1162 gimple_call_set_lhs (*save, tmp_var);
1163
1164 *restore
1165 = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_RESTORE),
1166 1, tmp_var);
1167 }
1168
1169 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1170
1171 static enum gimplify_status
1172 gimplify_bind_expr (tree *expr_p, gimple_seq *pre_p)
1173 {
1174 tree bind_expr = *expr_p;
1175 bool old_save_stack = gimplify_ctxp->save_stack;
1176 tree t;
1177 gimple gimple_bind;
1178 gimple_seq body, cleanup;
1179 gimple stack_save;
1180
1181 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1182
1183 /* Mark variables seen in this bind expr. */
1184 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1185 {
1186 if (TREE_CODE (t) == VAR_DECL)
1187 {
1188 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1189
1190 /* Mark variable as local. */
1191 if (ctx && !DECL_EXTERNAL (t)
1192 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1193 || splay_tree_lookup (ctx->variables,
1194 (splay_tree_key) t) == NULL))
1195 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1196
1197 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1198
1199 if (DECL_HARD_REGISTER (t) && !is_global_var (t) && cfun)
1200 cfun->has_local_explicit_reg_vars = true;
1201 }
1202
1203 /* Preliminarily mark non-addressed complex variables as eligible
1204 for promotion to gimple registers. We'll transform their uses
1205 as we find them. */
1206 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1207 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1208 && !TREE_THIS_VOLATILE (t)
1209 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1210 && !needs_to_live_in_memory (t))
1211 DECL_GIMPLE_REG_P (t) = 1;
1212 }
1213
1214 gimple_bind = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL,
1215 BIND_EXPR_BLOCK (bind_expr));
1216 gimple_push_bind_expr (gimple_bind);
1217
1218 gimplify_ctxp->save_stack = false;
1219
1220 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1221 body = NULL;
1222 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body);
1223 gimple_bind_set_body (gimple_bind, body);
1224
1225 cleanup = NULL;
1226 stack_save = NULL;
1227 if (gimplify_ctxp->save_stack)
1228 {
1229 gimple stack_restore;
1230
1231 /* Save stack on entry and restore it on exit. Add a try_finally
1232 block to achieve this. Note that mudflap depends on the
1233 format of the emitted code: see mx_register_decls(). */
1234 build_stack_save_restore (&stack_save, &stack_restore);
1235
1236 gimplify_seq_add_stmt (&cleanup, stack_restore);
1237 }
1238
1239 /* Add clobbers for all variables that go out of scope. */
1240 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1241 {
1242 if (TREE_CODE (t) == VAR_DECL
1243 && !is_global_var (t)
1244 && DECL_CONTEXT (t) == current_function_decl
1245 && !DECL_HARD_REGISTER (t)
1246 && !TREE_THIS_VOLATILE (t)
1247 && !DECL_HAS_VALUE_EXPR_P (t)
1248 /* Only care for variables that have to be in memory. Others
1249 will be rewritten into SSA names, hence moved to the top-level. */
1250 && !is_gimple_reg (t))
1251 {
1252 tree clobber = build_constructor (TREE_TYPE (t), NULL);
1253 TREE_THIS_VOLATILE (clobber) = 1;
1254 gimplify_seq_add_stmt (&cleanup, gimple_build_assign (t, clobber));
1255 }
1256 }
1257
1258 if (cleanup)
1259 {
1260 gimple gs;
1261 gimple_seq new_body;
1262
1263 new_body = NULL;
1264 gs = gimple_build_try (gimple_bind_body (gimple_bind), cleanup,
1265 GIMPLE_TRY_FINALLY);
1266
1267 if (stack_save)
1268 gimplify_seq_add_stmt (&new_body, stack_save);
1269 gimplify_seq_add_stmt (&new_body, gs);
1270 gimple_bind_set_body (gimple_bind, new_body);
1271 }
1272
1273 gimplify_ctxp->save_stack = old_save_stack;
1274 gimple_pop_bind_expr ();
1275
1276 gimplify_seq_add_stmt (pre_p, gimple_bind);
1277
1278 if (temp)
1279 {
1280 *expr_p = temp;
1281 return GS_OK;
1282 }
1283
1284 *expr_p = NULL_TREE;
1285 return GS_ALL_DONE;
1286 }
1287
1288 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1289 GIMPLE value, it is assigned to a new temporary and the statement is
1290 re-written to return the temporary.
1291
1292 PRE_P points to the sequence where side effects that must happen before
1293 STMT should be stored. */
1294
1295 static enum gimplify_status
1296 gimplify_return_expr (tree stmt, gimple_seq *pre_p)
1297 {
1298 gimple ret;
1299 tree ret_expr = TREE_OPERAND (stmt, 0);
1300 tree result_decl, result;
1301
1302 if (ret_expr == error_mark_node)
1303 return GS_ERROR;
1304
1305 if (!ret_expr
1306 || TREE_CODE (ret_expr) == RESULT_DECL
1307 || ret_expr == error_mark_node)
1308 {
1309 gimple ret = gimple_build_return (ret_expr);
1310 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1311 gimplify_seq_add_stmt (pre_p, ret);
1312 return GS_ALL_DONE;
1313 }
1314
1315 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1316 result_decl = NULL_TREE;
1317 else
1318 {
1319 result_decl = TREE_OPERAND (ret_expr, 0);
1320
1321 /* See through a return by reference. */
1322 if (TREE_CODE (result_decl) == INDIRECT_REF)
1323 result_decl = TREE_OPERAND (result_decl, 0);
1324
1325 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1326 || TREE_CODE (ret_expr) == INIT_EXPR)
1327 && TREE_CODE (result_decl) == RESULT_DECL);
1328 }
1329
1330 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1331 Recall that aggregate_value_p is FALSE for any aggregate type that is
1332 returned in registers. If we're returning values in registers, then
1333 we don't want to extend the lifetime of the RESULT_DECL, particularly
1334 across another call. In addition, for those aggregates for which
1335 hard_function_value generates a PARALLEL, we'll die during normal
1336 expansion of structure assignments; there's special code in expand_return
1337 to handle this case that does not exist in expand_expr. */
1338 if (!result_decl)
1339 result = NULL_TREE;
1340 else if (aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1341 {
1342 if (TREE_CODE (DECL_SIZE (result_decl)) != INTEGER_CST)
1343 {
1344 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl)))
1345 gimplify_type_sizes (TREE_TYPE (result_decl), pre_p);
1346 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1347 should be effectively allocated by the caller, i.e. all calls to
1348 this function must be subject to the Return Slot Optimization. */
1349 gimplify_one_sizepos (&DECL_SIZE (result_decl), pre_p);
1350 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl), pre_p);
1351 }
1352 result = result_decl;
1353 }
1354 else if (gimplify_ctxp->return_temp)
1355 result = gimplify_ctxp->return_temp;
1356 else
1357 {
1358 result = create_tmp_reg (TREE_TYPE (result_decl), NULL);
1359
1360 /* ??? With complex control flow (usually involving abnormal edges),
1361 we can wind up warning about an uninitialized value for this. Due
1362 to how this variable is constructed and initialized, this is never
1363 true. Give up and never warn. */
1364 TREE_NO_WARNING (result) = 1;
1365
1366 gimplify_ctxp->return_temp = result;
1367 }
1368
1369 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1370 Then gimplify the whole thing. */
1371 if (result != result_decl)
1372 TREE_OPERAND (ret_expr, 0) = result;
1373
1374 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1375
1376 ret = gimple_build_return (result);
1377 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1378 gimplify_seq_add_stmt (pre_p, ret);
1379
1380 return GS_ALL_DONE;
1381 }
1382
1383 /* Gimplify a variable-length array DECL. */
1384
1385 static void
1386 gimplify_vla_decl (tree decl, gimple_seq *seq_p)
1387 {
1388 /* This is a variable-sized decl. Simplify its size and mark it
1389 for deferred expansion. Note that mudflap depends on the format
1390 of the emitted code: see mx_register_decls(). */
1391 tree t, addr, ptr_type;
1392
1393 gimplify_one_sizepos (&DECL_SIZE (decl), seq_p);
1394 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), seq_p);
1395
1396 /* All occurrences of this decl in final gimplified code will be
1397 replaced by indirection. Setting DECL_VALUE_EXPR does two
1398 things: First, it lets the rest of the gimplifier know what
1399 replacement to use. Second, it lets the debug info know
1400 where to find the value. */
1401 ptr_type = build_pointer_type (TREE_TYPE (decl));
1402 addr = create_tmp_var (ptr_type, get_name (decl));
1403 DECL_IGNORED_P (addr) = 0;
1404 t = build_fold_indirect_ref (addr);
1405 TREE_THIS_NOTRAP (t) = 1;
1406 SET_DECL_VALUE_EXPR (decl, t);
1407 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1408
1409 t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
1410 t = build_call_expr (t, 2, DECL_SIZE_UNIT (decl),
1411 size_int (DECL_ALIGN (decl)));
1412 /* The call has been built for a variable-sized object. */
1413 CALL_ALLOCA_FOR_VAR_P (t) = 1;
1414 t = fold_convert (ptr_type, t);
1415 t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
1416
1417 gimplify_and_add (t, seq_p);
1418
1419 /* Indicate that we need to restore the stack level when the
1420 enclosing BIND_EXPR is exited. */
1421 gimplify_ctxp->save_stack = true;
1422 }
1423
1424 /* Gimplify a DECL_EXPR node *STMT_P by making any necessary allocation
1425 and initialization explicit. */
1426
1427 static enum gimplify_status
1428 gimplify_decl_expr (tree *stmt_p, gimple_seq *seq_p)
1429 {
1430 tree stmt = *stmt_p;
1431 tree decl = DECL_EXPR_DECL (stmt);
1432
1433 *stmt_p = NULL_TREE;
1434
1435 if (TREE_TYPE (decl) == error_mark_node)
1436 return GS_ERROR;
1437
1438 if ((TREE_CODE (decl) == TYPE_DECL
1439 || TREE_CODE (decl) == VAR_DECL)
1440 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1441 gimplify_type_sizes (TREE_TYPE (decl), seq_p);
1442
1443 /* ??? DECL_ORIGINAL_TYPE is streamed for LTO so it needs to be gimplified
1444 in case its size expressions contain problematic nodes like CALL_EXPR. */
1445 if (TREE_CODE (decl) == TYPE_DECL
1446 && DECL_ORIGINAL_TYPE (decl)
1447 && !TYPE_SIZES_GIMPLIFIED (DECL_ORIGINAL_TYPE (decl)))
1448 gimplify_type_sizes (DECL_ORIGINAL_TYPE (decl), seq_p);
1449
1450 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1451 {
1452 tree init = DECL_INITIAL (decl);
1453
1454 if (TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1455 || (!TREE_STATIC (decl)
1456 && flag_stack_check == GENERIC_STACK_CHECK
1457 && compare_tree_int (DECL_SIZE_UNIT (decl),
1458 STACK_CHECK_MAX_VAR_SIZE) > 0))
1459 gimplify_vla_decl (decl, seq_p);
1460
1461 /* Some front ends do not explicitly declare all anonymous
1462 artificial variables. We compensate here by declaring the
1463 variables, though it would be better if the front ends would
1464 explicitly declare them. */
1465 if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1466 && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1467 gimple_add_tmp_var (decl);
1468
1469 if (init && init != error_mark_node)
1470 {
1471 if (!TREE_STATIC (decl))
1472 {
1473 DECL_INITIAL (decl) = NULL_TREE;
1474 init = build2 (INIT_EXPR, void_type_node, decl, init);
1475 gimplify_and_add (init, seq_p);
1476 ggc_free (init);
1477 }
1478 else
1479 /* We must still examine initializers for static variables
1480 as they may contain a label address. */
1481 walk_tree (&init, force_labels_r, NULL, NULL);
1482 }
1483 }
1484
1485 return GS_ALL_DONE;
1486 }
1487
1488 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1489 and replacing the LOOP_EXPR with goto, but if the loop contains an
1490 EXIT_EXPR, we need to append a label for it to jump to. */
1491
1492 static enum gimplify_status
1493 gimplify_loop_expr (tree *expr_p, gimple_seq *pre_p)
1494 {
1495 tree saved_label = gimplify_ctxp->exit_label;
1496 tree start_label = create_artificial_label (UNKNOWN_LOCATION);
1497
1498 gimplify_seq_add_stmt (pre_p, gimple_build_label (start_label));
1499
1500 gimplify_ctxp->exit_label = NULL_TREE;
1501
1502 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1503
1504 gimplify_seq_add_stmt (pre_p, gimple_build_goto (start_label));
1505
1506 if (gimplify_ctxp->exit_label)
1507 gimplify_seq_add_stmt (pre_p,
1508 gimple_build_label (gimplify_ctxp->exit_label));
1509
1510 gimplify_ctxp->exit_label = saved_label;
1511
1512 *expr_p = NULL;
1513 return GS_ALL_DONE;
1514 }
1515
1516 /* Gimplify a statement list onto a sequence. These may be created either
1517 by an enlightened front-end, or by shortcut_cond_expr. */
1518
1519 static enum gimplify_status
1520 gimplify_statement_list (tree *expr_p, gimple_seq *pre_p)
1521 {
1522 tree temp = voidify_wrapper_expr (*expr_p, NULL);
1523
1524 tree_stmt_iterator i = tsi_start (*expr_p);
1525
1526 while (!tsi_end_p (i))
1527 {
1528 gimplify_stmt (tsi_stmt_ptr (i), pre_p);
1529 tsi_delink (&i);
1530 }
1531
1532 if (temp)
1533 {
1534 *expr_p = temp;
1535 return GS_OK;
1536 }
1537
1538 return GS_ALL_DONE;
1539 }
1540 \f
1541 /* Compare two case labels. Because the front end should already have
1542 made sure that case ranges do not overlap, it is enough to only compare
1543 the CASE_LOW values of each case label. */
1544
1545 static int
1546 compare_case_labels (const void *p1, const void *p2)
1547 {
1548 const_tree const case1 = *(const_tree const*)p1;
1549 const_tree const case2 = *(const_tree const*)p2;
1550
1551 /* The 'default' case label always goes first. */
1552 if (!CASE_LOW (case1))
1553 return -1;
1554 else if (!CASE_LOW (case2))
1555 return 1;
1556 else
1557 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1558 }
1559
1560 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1561
1562 void
1563 sort_case_labels (VEC(tree,heap)* label_vec)
1564 {
1565 VEC_qsort (tree, label_vec, compare_case_labels);
1566 }
1567 \f
1568 /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
1569
1570 LABELS is a vector that contains all case labels to look at.
1571
1572 INDEX_TYPE is the type of the switch index expression. Case labels
1573 in LABELS are discarded if their values are not in the value range
1574 covered by INDEX_TYPE. The remaining case label values are folded
1575 to INDEX_TYPE.
1576
1577 If a default case exists in LABELS, it is removed from LABELS and
1578 returned in DEFAULT_CASEP. If no default case exists, but the
1579 case labels already cover the whole range of INDEX_TYPE, a default
1580 case is returned pointing to one of the existing case labels.
1581 Otherwise DEFAULT_CASEP is set to NULL_TREE.
1582
1583 DEFAULT_CASEP may be NULL, in which case the above comment doesn't
1584 apply and no action is taken regardless of whether a default case is
1585 found or not. */
1586
1587 void
1588 preprocess_case_label_vec_for_gimple (VEC(tree,heap) *labels,
1589 tree index_type,
1590 tree *default_casep)
1591 {
1592 tree min_value, max_value;
1593 tree default_case = NULL_TREE;
1594 size_t i, len;
1595
1596 i = 0;
1597 min_value = TYPE_MIN_VALUE (index_type);
1598 max_value = TYPE_MAX_VALUE (index_type);
1599 while (i < VEC_length (tree, labels))
1600 {
1601 tree elt = VEC_index (tree, labels, i);
1602 tree low = CASE_LOW (elt);
1603 tree high = CASE_HIGH (elt);
1604 bool remove_element = FALSE;
1605
1606 if (low)
1607 {
1608 gcc_checking_assert (TREE_CODE (low) == INTEGER_CST);
1609 gcc_checking_assert (!high || TREE_CODE (high) == INTEGER_CST);
1610
1611 /* This is a non-default case label, i.e. it has a value.
1612
1613 See if the case label is reachable within the range of
1614 the index type. Remove out-of-range case values. Turn
1615 case ranges into a canonical form (high > low strictly)
1616 and convert the case label values to the index type.
1617
1618 NB: The type of gimple_switch_index() may be the promoted
1619 type, but the case labels retain the original type. */
1620
1621 if (high)
1622 {
1623 /* This is a case range. Discard empty ranges.
1624 If the bounds or the range are equal, turn this
1625 into a simple (one-value) case. */
1626 int cmp = tree_int_cst_compare (high, low);
1627 if (cmp < 0)
1628 remove_element = TRUE;
1629 else if (cmp == 0)
1630 high = NULL_TREE;
1631 }
1632
1633 if (! high)
1634 {
1635 /* If the simple case value is unreachable, ignore it. */
1636 if ((TREE_CODE (min_value) == INTEGER_CST
1637 && tree_int_cst_compare (low, min_value) < 0)
1638 || (TREE_CODE (max_value) == INTEGER_CST
1639 && tree_int_cst_compare (low, max_value) > 0))
1640 remove_element = TRUE;
1641 else
1642 low = fold_convert (index_type, low);
1643 }
1644 else
1645 {
1646 /* If the entire case range is unreachable, ignore it. */
1647 if ((TREE_CODE (min_value) == INTEGER_CST
1648 && tree_int_cst_compare (high, min_value) < 0)
1649 || (TREE_CODE (max_value) == INTEGER_CST
1650 && tree_int_cst_compare (low, max_value) > 0))
1651 remove_element = TRUE;
1652 else
1653 {
1654 /* If the lower bound is less than the index type's
1655 minimum value, truncate the range bounds. */
1656 if (TREE_CODE (min_value) == INTEGER_CST
1657 && tree_int_cst_compare (low, min_value) < 0)
1658 low = min_value;
1659 low = fold_convert (index_type, low);
1660
1661 /* If the upper bound is greater than the index type's
1662 maximum value, truncate the range bounds. */
1663 if (TREE_CODE (max_value) == INTEGER_CST
1664 && tree_int_cst_compare (high, max_value) > 0)
1665 high = max_value;
1666 high = fold_convert (index_type, high);
1667
1668 /* We may have folded a case range to a one-value case. */
1669 if (tree_int_cst_equal (low, high))
1670 high = NULL_TREE;
1671 }
1672 }
1673
1674 CASE_LOW (elt) = low;
1675 CASE_HIGH (elt) = high;
1676 }
1677 else
1678 {
1679 gcc_assert (!default_case);
1680 default_case = elt;
1681 /* The default case must be passed separately to the
1682 gimple_build_switch routines. But if DEFAULT_CASEP
1683 is NULL, we do not remove the default case (it would
1684 be completely lost). */
1685 if (default_casep)
1686 remove_element = TRUE;
1687 }
1688
1689 if (remove_element)
1690 VEC_ordered_remove (tree, labels, i);
1691 else
1692 i++;
1693 }
1694 len = i;
1695
1696 if (!VEC_empty (tree, labels))
1697 sort_case_labels (labels);
1698
1699 if (default_casep && !default_case)
1700 {
1701 /* If the switch has no default label, add one, so that we jump
1702 around the switch body. If the labels already cover the whole
1703 range of the switch index_type, add the default label pointing
1704 to one of the existing labels. */
1705 if (len
1706 && TYPE_MIN_VALUE (index_type)
1707 && TYPE_MAX_VALUE (index_type)
1708 && tree_int_cst_equal (CASE_LOW (VEC_index (tree, labels, 0)),
1709 TYPE_MIN_VALUE (index_type)))
1710 {
1711 tree low, high = CASE_HIGH (VEC_index (tree, labels, len - 1));
1712 if (!high)
1713 high = CASE_LOW (VEC_index (tree, labels, len - 1));
1714 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (index_type)))
1715 {
1716 for (i = 1; i < len; i++)
1717 {
1718 high = CASE_LOW (VEC_index (tree, labels, i));
1719 low = CASE_HIGH (VEC_index (tree, labels, i - 1));
1720 if (!low)
1721 low = CASE_LOW (VEC_index (tree, labels, i - 1));
1722 if ((TREE_INT_CST_LOW (low) + 1
1723 != TREE_INT_CST_LOW (high))
1724 || (TREE_INT_CST_HIGH (low)
1725 + (TREE_INT_CST_LOW (high) == 0)
1726 != TREE_INT_CST_HIGH (high)))
1727 break;
1728 }
1729 if (i == len)
1730 {
1731 tree label = CASE_LABEL (VEC_index (tree, labels, 0));
1732 default_case = build_case_label (NULL_TREE, NULL_TREE,
1733 label);
1734 }
1735 }
1736 }
1737 }
1738
1739 if (default_casep)
1740 *default_casep = default_case;
1741 }
1742 \f
1743 /* Gimplify a SWITCH_EXPR, and collect the vector of labels it can
1744 branch to. */
1745
1746 static enum gimplify_status
1747 gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p)
1748 {
1749 tree switch_expr = *expr_p;
1750 gimple_seq switch_body_seq = NULL;
1751 enum gimplify_status ret;
1752 tree index_type = TREE_TYPE (switch_expr);
1753 if (index_type == NULL_TREE)
1754 index_type = TREE_TYPE (SWITCH_COND (switch_expr));
1755
1756 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL, is_gimple_val,
1757 fb_rvalue);
1758 if (ret == GS_ERROR || ret == GS_UNHANDLED)
1759 return ret;
1760
1761 if (SWITCH_BODY (switch_expr))
1762 {
1763 VEC (tree,heap) *labels;
1764 VEC (tree,heap) *saved_labels;
1765 tree default_case = NULL_TREE;
1766 gimple gimple_switch;
1767
1768 /* If someone can be bothered to fill in the labels, they can
1769 be bothered to null out the body too. */
1770 gcc_assert (!SWITCH_LABELS (switch_expr));
1771
1772 /* Save old labels, get new ones from body, then restore the old
1773 labels. Save all the things from the switch body to append after. */
1774 saved_labels = gimplify_ctxp->case_labels;
1775 gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1776
1777 gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq);
1778 labels = gimplify_ctxp->case_labels;
1779 gimplify_ctxp->case_labels = saved_labels;
1780
1781 preprocess_case_label_vec_for_gimple (labels, index_type,
1782 &default_case);
1783
1784 if (!default_case)
1785 {
1786 gimple new_default;
1787
1788 default_case
1789 = build_case_label (NULL_TREE, NULL_TREE,
1790 create_artificial_label (UNKNOWN_LOCATION));
1791 new_default = gimple_build_label (CASE_LABEL (default_case));
1792 gimplify_seq_add_stmt (&switch_body_seq, new_default);
1793 }
1794
1795 gimple_switch = gimple_build_switch_vec (SWITCH_COND (switch_expr),
1796 default_case, labels);
1797 gimplify_seq_add_stmt (pre_p, gimple_switch);
1798 gimplify_seq_add_seq (pre_p, switch_body_seq);
1799 VEC_free(tree, heap, labels);
1800 }
1801 else
1802 gcc_assert (SWITCH_LABELS (switch_expr));
1803
1804 return GS_ALL_DONE;
1805 }
1806
1807 /* Gimplify the CASE_LABEL_EXPR pointed to by EXPR_P. */
1808
1809 static enum gimplify_status
1810 gimplify_case_label_expr (tree *expr_p, gimple_seq *pre_p)
1811 {
1812 struct gimplify_ctx *ctxp;
1813 gimple gimple_label;
1814
1815 /* Invalid OpenMP programs can play Duff's Device type games with
1816 #pragma omp parallel. At least in the C front end, we don't
1817 detect such invalid branches until after gimplification. */
1818 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1819 if (ctxp->case_labels)
1820 break;
1821
1822 gimple_label = gimple_build_label (CASE_LABEL (*expr_p));
1823 VEC_safe_push (tree, heap, ctxp->case_labels, *expr_p);
1824 gimplify_seq_add_stmt (pre_p, gimple_label);
1825
1826 return GS_ALL_DONE;
1827 }
1828
1829 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1830 if necessary. */
1831
1832 tree
1833 build_and_jump (tree *label_p)
1834 {
1835 if (label_p == NULL)
1836 /* If there's nowhere to jump, just fall through. */
1837 return NULL_TREE;
1838
1839 if (*label_p == NULL_TREE)
1840 {
1841 tree label = create_artificial_label (UNKNOWN_LOCATION);
1842 *label_p = label;
1843 }
1844
1845 return build1 (GOTO_EXPR, void_type_node, *label_p);
1846 }
1847
1848 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1849 This also involves building a label to jump to and communicating it to
1850 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1851
1852 static enum gimplify_status
1853 gimplify_exit_expr (tree *expr_p)
1854 {
1855 tree cond = TREE_OPERAND (*expr_p, 0);
1856 tree expr;
1857
1858 expr = build_and_jump (&gimplify_ctxp->exit_label);
1859 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1860 *expr_p = expr;
1861
1862 return GS_OK;
1863 }
1864
1865 /* A helper function to be called via walk_tree. Mark all labels under *TP
1866 as being forced. To be called for DECL_INITIAL of static variables. */
1867
1868 tree
1869 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1870 {
1871 if (TYPE_P (*tp))
1872 *walk_subtrees = 0;
1873 if (TREE_CODE (*tp) == LABEL_DECL)
1874 FORCED_LABEL (*tp) = 1;
1875
1876 return NULL_TREE;
1877 }
1878
1879 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1880 different from its canonical type, wrap the whole thing inside a
1881 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1882 type.
1883
1884 The canonical type of a COMPONENT_REF is the type of the field being
1885 referenced--unless the field is a bit-field which can be read directly
1886 in a smaller mode, in which case the canonical type is the
1887 sign-appropriate type corresponding to that mode. */
1888
1889 static void
1890 canonicalize_component_ref (tree *expr_p)
1891 {
1892 tree expr = *expr_p;
1893 tree type;
1894
1895 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1896
1897 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1898 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1899 else
1900 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1901
1902 /* One could argue that all the stuff below is not necessary for
1903 the non-bitfield case and declare it a FE error if type
1904 adjustment would be needed. */
1905 if (TREE_TYPE (expr) != type)
1906 {
1907 #ifdef ENABLE_TYPES_CHECKING
1908 tree old_type = TREE_TYPE (expr);
1909 #endif
1910 int type_quals;
1911
1912 /* We need to preserve qualifiers and propagate them from
1913 operand 0. */
1914 type_quals = TYPE_QUALS (type)
1915 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr, 0)));
1916 if (TYPE_QUALS (type) != type_quals)
1917 type = build_qualified_type (TYPE_MAIN_VARIANT (type), type_quals);
1918
1919 /* Set the type of the COMPONENT_REF to the underlying type. */
1920 TREE_TYPE (expr) = type;
1921
1922 #ifdef ENABLE_TYPES_CHECKING
1923 /* It is now a FE error, if the conversion from the canonical
1924 type to the original expression type is not useless. */
1925 gcc_assert (useless_type_conversion_p (old_type, type));
1926 #endif
1927 }
1928 }
1929
1930 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1931 to foo, embed that change in the ADDR_EXPR by converting
1932 T array[U];
1933 (T *)&array
1934 ==>
1935 &array[L]
1936 where L is the lower bound. For simplicity, only do this for constant
1937 lower bound.
1938 The constraint is that the type of &array[L] is trivially convertible
1939 to T *. */
1940
1941 static void
1942 canonicalize_addr_expr (tree *expr_p)
1943 {
1944 tree expr = *expr_p;
1945 tree addr_expr = TREE_OPERAND (expr, 0);
1946 tree datype, ddatype, pddatype;
1947
1948 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1949 if (!POINTER_TYPE_P (TREE_TYPE (expr))
1950 || TREE_CODE (addr_expr) != ADDR_EXPR)
1951 return;
1952
1953 /* The addr_expr type should be a pointer to an array. */
1954 datype = TREE_TYPE (TREE_TYPE (addr_expr));
1955 if (TREE_CODE (datype) != ARRAY_TYPE)
1956 return;
1957
1958 /* The pointer to element type shall be trivially convertible to
1959 the expression pointer type. */
1960 ddatype = TREE_TYPE (datype);
1961 pddatype = build_pointer_type (ddatype);
1962 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr)),
1963 pddatype))
1964 return;
1965
1966 /* The lower bound and element sizes must be constant. */
1967 if (!TYPE_SIZE_UNIT (ddatype)
1968 || TREE_CODE (TYPE_SIZE_UNIT (ddatype)) != INTEGER_CST
1969 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1970 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1971 return;
1972
1973 /* All checks succeeded. Build a new node to merge the cast. */
1974 *expr_p = build4 (ARRAY_REF, ddatype, TREE_OPERAND (addr_expr, 0),
1975 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1976 NULL_TREE, NULL_TREE);
1977 *expr_p = build1 (ADDR_EXPR, pddatype, *expr_p);
1978
1979 /* We can have stripped a required restrict qualifier above. */
1980 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
1981 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
1982 }
1983
1984 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1985 underneath as appropriate. */
1986
1987 static enum gimplify_status
1988 gimplify_conversion (tree *expr_p)
1989 {
1990 location_t loc = EXPR_LOCATION (*expr_p);
1991 gcc_assert (CONVERT_EXPR_P (*expr_p));
1992
1993 /* Then strip away all but the outermost conversion. */
1994 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1995
1996 /* And remove the outermost conversion if it's useless. */
1997 if (tree_ssa_useless_type_conversion (*expr_p))
1998 *expr_p = TREE_OPERAND (*expr_p, 0);
1999
2000 /* If we still have a conversion at the toplevel,
2001 then canonicalize some constructs. */
2002 if (CONVERT_EXPR_P (*expr_p))
2003 {
2004 tree sub = TREE_OPERAND (*expr_p, 0);
2005
2006 /* If a NOP conversion is changing the type of a COMPONENT_REF
2007 expression, then canonicalize its type now in order to expose more
2008 redundant conversions. */
2009 if (TREE_CODE (sub) == COMPONENT_REF)
2010 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
2011
2012 /* If a NOP conversion is changing a pointer to array of foo
2013 to a pointer to foo, embed that change in the ADDR_EXPR. */
2014 else if (TREE_CODE (sub) == ADDR_EXPR)
2015 canonicalize_addr_expr (expr_p);
2016 }
2017
2018 /* If we have a conversion to a non-register type force the
2019 use of a VIEW_CONVERT_EXPR instead. */
2020 if (CONVERT_EXPR_P (*expr_p) && !is_gimple_reg_type (TREE_TYPE (*expr_p)))
2021 *expr_p = fold_build1_loc (loc, VIEW_CONVERT_EXPR, TREE_TYPE (*expr_p),
2022 TREE_OPERAND (*expr_p, 0));
2023
2024 return GS_OK;
2025 }
2026
2027 /* Nonlocal VLAs seen in the current function. */
2028 static struct pointer_set_t *nonlocal_vlas;
2029
2030 /* Gimplify a VAR_DECL or PARM_DECL. Return GS_OK if we expanded a
2031 DECL_VALUE_EXPR, and it's worth re-examining things. */
2032
2033 static enum gimplify_status
2034 gimplify_var_or_parm_decl (tree *expr_p)
2035 {
2036 tree decl = *expr_p;
2037
2038 /* ??? If this is a local variable, and it has not been seen in any
2039 outer BIND_EXPR, then it's probably the result of a duplicate
2040 declaration, for which we've already issued an error. It would
2041 be really nice if the front end wouldn't leak these at all.
2042 Currently the only known culprit is C++ destructors, as seen
2043 in g++.old-deja/g++.jason/binding.C. */
2044 if (TREE_CODE (decl) == VAR_DECL
2045 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
2046 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
2047 && decl_function_context (decl) == current_function_decl)
2048 {
2049 gcc_assert (seen_error ());
2050 return GS_ERROR;
2051 }
2052
2053 /* When within an OpenMP context, notice uses of variables. */
2054 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
2055 return GS_ALL_DONE;
2056
2057 /* If the decl is an alias for another expression, substitute it now. */
2058 if (DECL_HAS_VALUE_EXPR_P (decl))
2059 {
2060 tree value_expr = DECL_VALUE_EXPR (decl);
2061
2062 /* For referenced nonlocal VLAs add a decl for debugging purposes
2063 to the current function. */
2064 if (TREE_CODE (decl) == VAR_DECL
2065 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
2066 && nonlocal_vlas != NULL
2067 && TREE_CODE (value_expr) == INDIRECT_REF
2068 && TREE_CODE (TREE_OPERAND (value_expr, 0)) == VAR_DECL
2069 && decl_function_context (decl) != current_function_decl)
2070 {
2071 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
2072 while (ctx && ctx->region_type == ORT_WORKSHARE)
2073 ctx = ctx->outer_context;
2074 if (!ctx && !pointer_set_insert (nonlocal_vlas, decl))
2075 {
2076 tree copy = copy_node (decl), block;
2077
2078 lang_hooks.dup_lang_specific_decl (copy);
2079 SET_DECL_RTL (copy, 0);
2080 TREE_USED (copy) = 1;
2081 block = DECL_INITIAL (current_function_decl);
2082 DECL_CHAIN (copy) = BLOCK_VARS (block);
2083 BLOCK_VARS (block) = copy;
2084 SET_DECL_VALUE_EXPR (copy, unshare_expr (value_expr));
2085 DECL_HAS_VALUE_EXPR_P (copy) = 1;
2086 }
2087 }
2088
2089 *expr_p = unshare_expr (value_expr);
2090 return GS_OK;
2091 }
2092
2093 return GS_ALL_DONE;
2094 }
2095
2096 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
2097 node *EXPR_P.
2098
2099 compound_lval
2100 : min_lval '[' val ']'
2101 | min_lval '.' ID
2102 | compound_lval '[' val ']'
2103 | compound_lval '.' ID
2104
2105 This is not part of the original SIMPLE definition, which separates
2106 array and member references, but it seems reasonable to handle them
2107 together. Also, this way we don't run into problems with union
2108 aliasing; gcc requires that for accesses through a union to alias, the
2109 union reference must be explicit, which was not always the case when we
2110 were splitting up array and member refs.
2111
2112 PRE_P points to the sequence where side effects that must happen before
2113 *EXPR_P should be stored.
2114
2115 POST_P points to the sequence where side effects that must happen after
2116 *EXPR_P should be stored. */
2117
2118 static enum gimplify_status
2119 gimplify_compound_lval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2120 fallback_t fallback)
2121 {
2122 tree *p;
2123 VEC(tree,heap) *stack;
2124 enum gimplify_status ret = GS_ALL_DONE, tret;
2125 int i;
2126 location_t loc = EXPR_LOCATION (*expr_p);
2127 tree expr = *expr_p;
2128
2129 /* Create a stack of the subexpressions so later we can walk them in
2130 order from inner to outer. */
2131 stack = VEC_alloc (tree, heap, 10);
2132
2133 /* We can handle anything that get_inner_reference can deal with. */
2134 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
2135 {
2136 restart:
2137 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
2138 if (TREE_CODE (*p) == INDIRECT_REF)
2139 *p = fold_indirect_ref_loc (loc, *p);
2140
2141 if (handled_component_p (*p))
2142 ;
2143 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
2144 additional COMPONENT_REFs. */
2145 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
2146 && gimplify_var_or_parm_decl (p) == GS_OK)
2147 goto restart;
2148 else
2149 break;
2150
2151 VEC_safe_push (tree, heap, stack, *p);
2152 }
2153
2154 gcc_assert (VEC_length (tree, stack));
2155
2156 /* Now STACK is a stack of pointers to all the refs we've walked through
2157 and P points to the innermost expression.
2158
2159 Java requires that we elaborated nodes in source order. That
2160 means we must gimplify the inner expression followed by each of
2161 the indices, in order. But we can't gimplify the inner
2162 expression until we deal with any variable bounds, sizes, or
2163 positions in order to deal with PLACEHOLDER_EXPRs.
2164
2165 So we do this in three steps. First we deal with the annotations
2166 for any variables in the components, then we gimplify the base,
2167 then we gimplify any indices, from left to right. */
2168 for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
2169 {
2170 tree t = VEC_index (tree, stack, i);
2171
2172 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2173 {
2174 /* Gimplify the low bound and element type size and put them into
2175 the ARRAY_REF. If these values are set, they have already been
2176 gimplified. */
2177 if (TREE_OPERAND (t, 2) == NULL_TREE)
2178 {
2179 tree low = unshare_expr (array_ref_low_bound (t));
2180 if (!is_gimple_min_invariant (low))
2181 {
2182 TREE_OPERAND (t, 2) = low;
2183 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2184 post_p, is_gimple_reg,
2185 fb_rvalue);
2186 ret = MIN (ret, tret);
2187 }
2188 }
2189 else
2190 {
2191 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2192 is_gimple_reg, fb_rvalue);
2193 ret = MIN (ret, tret);
2194 }
2195
2196 if (TREE_OPERAND (t, 3) == NULL_TREE)
2197 {
2198 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
2199 tree elmt_size = unshare_expr (array_ref_element_size (t));
2200 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
2201
2202 /* Divide the element size by the alignment of the element
2203 type (above). */
2204 elmt_size
2205 = size_binop_loc (loc, EXACT_DIV_EXPR, elmt_size, factor);
2206
2207 if (!is_gimple_min_invariant (elmt_size))
2208 {
2209 TREE_OPERAND (t, 3) = elmt_size;
2210 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p,
2211 post_p, is_gimple_reg,
2212 fb_rvalue);
2213 ret = MIN (ret, tret);
2214 }
2215 }
2216 else
2217 {
2218 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
2219 is_gimple_reg, fb_rvalue);
2220 ret = MIN (ret, tret);
2221 }
2222 }
2223 else if (TREE_CODE (t) == COMPONENT_REF)
2224 {
2225 /* Set the field offset into T and gimplify it. */
2226 if (TREE_OPERAND (t, 2) == NULL_TREE)
2227 {
2228 tree offset = unshare_expr (component_ref_field_offset (t));
2229 tree field = TREE_OPERAND (t, 1);
2230 tree factor
2231 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
2232
2233 /* Divide the offset by its alignment. */
2234 offset = size_binop_loc (loc, EXACT_DIV_EXPR, offset, factor);
2235
2236 if (!is_gimple_min_invariant (offset))
2237 {
2238 TREE_OPERAND (t, 2) = offset;
2239 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2240 post_p, is_gimple_reg,
2241 fb_rvalue);
2242 ret = MIN (ret, tret);
2243 }
2244 }
2245 else
2246 {
2247 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2248 is_gimple_reg, fb_rvalue);
2249 ret = MIN (ret, tret);
2250 }
2251 }
2252 }
2253
2254 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2255 so as to match the min_lval predicate. Failure to do so may result
2256 in the creation of large aggregate temporaries. */
2257 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
2258 fallback | fb_lvalue);
2259 ret = MIN (ret, tret);
2260
2261 /* And finally, the indices and operands to BIT_FIELD_REF. During this
2262 loop we also remove any useless conversions. */
2263 for (; VEC_length (tree, stack) > 0; )
2264 {
2265 tree t = VEC_pop (tree, stack);
2266
2267 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2268 {
2269 /* Gimplify the dimension. */
2270 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
2271 {
2272 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2273 is_gimple_val, fb_rvalue);
2274 ret = MIN (ret, tret);
2275 }
2276 }
2277 else if (TREE_CODE (t) == BIT_FIELD_REF)
2278 {
2279 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2280 is_gimple_val, fb_rvalue);
2281 ret = MIN (ret, tret);
2282 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2283 is_gimple_val, fb_rvalue);
2284 ret = MIN (ret, tret);
2285 }
2286
2287 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
2288
2289 /* The innermost expression P may have originally had
2290 TREE_SIDE_EFFECTS set which would have caused all the outer
2291 expressions in *EXPR_P leading to P to also have had
2292 TREE_SIDE_EFFECTS set. */
2293 recalculate_side_effects (t);
2294 }
2295
2296 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
2297 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
2298 {
2299 canonicalize_component_ref (expr_p);
2300 }
2301
2302 VEC_free (tree, heap, stack);
2303
2304 gcc_assert (*expr_p == expr || ret != GS_ALL_DONE);
2305
2306 return ret;
2307 }
2308
2309 /* Gimplify the self modifying expression pointed to by EXPR_P
2310 (++, --, +=, -=).
2311
2312 PRE_P points to the list where side effects that must happen before
2313 *EXPR_P should be stored.
2314
2315 POST_P points to the list where side effects that must happen after
2316 *EXPR_P should be stored.
2317
2318 WANT_VALUE is nonzero iff we want to use the value of this expression
2319 in another expression. */
2320
2321 static enum gimplify_status
2322 gimplify_self_mod_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2323 bool want_value)
2324 {
2325 enum tree_code code;
2326 tree lhs, lvalue, rhs, t1;
2327 gimple_seq post = NULL, *orig_post_p = post_p;
2328 bool postfix;
2329 enum tree_code arith_code;
2330 enum gimplify_status ret;
2331 location_t loc = EXPR_LOCATION (*expr_p);
2332
2333 code = TREE_CODE (*expr_p);
2334
2335 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
2336 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
2337
2338 /* Prefix or postfix? */
2339 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
2340 /* Faster to treat as prefix if result is not used. */
2341 postfix = want_value;
2342 else
2343 postfix = false;
2344
2345 /* For postfix, make sure the inner expression's post side effects
2346 are executed after side effects from this expression. */
2347 if (postfix)
2348 post_p = &post;
2349
2350 /* Add or subtract? */
2351 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2352 arith_code = PLUS_EXPR;
2353 else
2354 arith_code = MINUS_EXPR;
2355
2356 /* Gimplify the LHS into a GIMPLE lvalue. */
2357 lvalue = TREE_OPERAND (*expr_p, 0);
2358 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
2359 if (ret == GS_ERROR)
2360 return ret;
2361
2362 /* Extract the operands to the arithmetic operation. */
2363 lhs = lvalue;
2364 rhs = TREE_OPERAND (*expr_p, 1);
2365
2366 /* For postfix operator, we evaluate the LHS to an rvalue and then use
2367 that as the result value and in the postqueue operation. We also
2368 make sure to make lvalue a minimal lval, see
2369 gcc.c-torture/execute/20040313-1.c for an example where this matters. */
2370 if (postfix)
2371 {
2372 if (!is_gimple_min_lval (lvalue))
2373 {
2374 mark_addressable (lvalue);
2375 lvalue = build_fold_addr_expr_loc (input_location, lvalue);
2376 gimplify_expr (&lvalue, pre_p, post_p, is_gimple_val, fb_rvalue);
2377 lvalue = build_fold_indirect_ref_loc (input_location, lvalue);
2378 }
2379 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
2380 if (ret == GS_ERROR)
2381 return ret;
2382 }
2383
2384 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
2385 if (POINTER_TYPE_P (TREE_TYPE (lhs)))
2386 {
2387 rhs = convert_to_ptrofftype_loc (loc, rhs);
2388 if (arith_code == MINUS_EXPR)
2389 rhs = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (rhs), rhs);
2390 arith_code = POINTER_PLUS_EXPR;
2391 }
2392
2393 if (postfix)
2394 {
2395 tree t2 = get_initialized_tmp_var (lhs, pre_p, NULL);
2396 t1 = build2 (arith_code, TREE_TYPE (*expr_p), t2, rhs);
2397 gimplify_assign (lvalue, t1, pre_p);
2398 gimplify_seq_add_seq (orig_post_p, post);
2399 *expr_p = t2;
2400 return GS_ALL_DONE;
2401 }
2402 else
2403 {
2404 t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
2405 *expr_p = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
2406 return GS_OK;
2407 }
2408 }
2409
2410 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
2411
2412 static void
2413 maybe_with_size_expr (tree *expr_p)
2414 {
2415 tree expr = *expr_p;
2416 tree type = TREE_TYPE (expr);
2417 tree size;
2418
2419 /* If we've already wrapped this or the type is error_mark_node, we can't do
2420 anything. */
2421 if (TREE_CODE (expr) == WITH_SIZE_EXPR
2422 || type == error_mark_node)
2423 return;
2424
2425 /* If the size isn't known or is a constant, we have nothing to do. */
2426 size = TYPE_SIZE_UNIT (type);
2427 if (!size || TREE_CODE (size) == INTEGER_CST)
2428 return;
2429
2430 /* Otherwise, make a WITH_SIZE_EXPR. */
2431 size = unshare_expr (size);
2432 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
2433 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
2434 }
2435
2436 /* Helper for gimplify_call_expr. Gimplify a single argument *ARG_P
2437 Store any side-effects in PRE_P. CALL_LOCATION is the location of
2438 the CALL_EXPR. */
2439
2440 static enum gimplify_status
2441 gimplify_arg (tree *arg_p, gimple_seq *pre_p, location_t call_location)
2442 {
2443 bool (*test) (tree);
2444 fallback_t fb;
2445
2446 /* In general, we allow lvalues for function arguments to avoid
2447 extra overhead of copying large aggregates out of even larger
2448 aggregates into temporaries only to copy the temporaries to
2449 the argument list. Make optimizers happy by pulling out to
2450 temporaries those types that fit in registers. */
2451 if (is_gimple_reg_type (TREE_TYPE (*arg_p)))
2452 test = is_gimple_val, fb = fb_rvalue;
2453 else
2454 {
2455 test = is_gimple_lvalue, fb = fb_either;
2456 /* Also strip a TARGET_EXPR that would force an extra copy. */
2457 if (TREE_CODE (*arg_p) == TARGET_EXPR)
2458 {
2459 tree init = TARGET_EXPR_INITIAL (*arg_p);
2460 if (init
2461 && !VOID_TYPE_P (TREE_TYPE (init)))
2462 *arg_p = init;
2463 }
2464 }
2465
2466 /* If this is a variable sized type, we must remember the size. */
2467 maybe_with_size_expr (arg_p);
2468
2469 /* FIXME diagnostics: This will mess up gcc.dg/Warray-bounds.c. */
2470 /* Make sure arguments have the same location as the function call
2471 itself. */
2472 protected_set_expr_location (*arg_p, call_location);
2473
2474 /* There is a sequence point before a function call. Side effects in
2475 the argument list must occur before the actual call. So, when
2476 gimplifying arguments, force gimplify_expr to use an internal
2477 post queue which is then appended to the end of PRE_P. */
2478 return gimplify_expr (arg_p, pre_p, NULL, test, fb);
2479 }
2480
2481 /* Gimplify the CALL_EXPR node *EXPR_P into the GIMPLE sequence PRE_P.
2482 WANT_VALUE is true if the result of the call is desired. */
2483
2484 static enum gimplify_status
2485 gimplify_call_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
2486 {
2487 tree fndecl, parms, p, fnptrtype;
2488 enum gimplify_status ret;
2489 int i, nargs;
2490 gimple call;
2491 bool builtin_va_start_p = FALSE;
2492 location_t loc = EXPR_LOCATION (*expr_p);
2493
2494 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
2495
2496 /* For reliable diagnostics during inlining, it is necessary that
2497 every call_expr be annotated with file and line. */
2498 if (! EXPR_HAS_LOCATION (*expr_p))
2499 SET_EXPR_LOCATION (*expr_p, input_location);
2500
2501 /* This may be a call to a builtin function.
2502
2503 Builtin function calls may be transformed into different
2504 (and more efficient) builtin function calls under certain
2505 circumstances. Unfortunately, gimplification can muck things
2506 up enough that the builtin expanders are not aware that certain
2507 transformations are still valid.
2508
2509 So we attempt transformation/gimplification of the call before
2510 we gimplify the CALL_EXPR. At this time we do not manage to
2511 transform all calls in the same manner as the expanders do, but
2512 we do transform most of them. */
2513 fndecl = get_callee_fndecl (*expr_p);
2514 if (fndecl && DECL_BUILT_IN (fndecl))
2515 {
2516 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2517
2518 if (new_tree && new_tree != *expr_p)
2519 {
2520 /* There was a transformation of this call which computes the
2521 same value, but in a more efficient way. Return and try
2522 again. */
2523 *expr_p = new_tree;
2524 return GS_OK;
2525 }
2526
2527 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
2528 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_VA_START)
2529 {
2530 builtin_va_start_p = TRUE;
2531 if (call_expr_nargs (*expr_p) < 2)
2532 {
2533 error ("too few arguments to function %<va_start%>");
2534 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2535 return GS_OK;
2536 }
2537
2538 if (fold_builtin_next_arg (*expr_p, true))
2539 {
2540 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2541 return GS_OK;
2542 }
2543 }
2544 }
2545
2546 /* Remember the original function pointer type. */
2547 fnptrtype = TREE_TYPE (CALL_EXPR_FN (*expr_p));
2548
2549 /* There is a sequence point before the call, so any side effects in
2550 the calling expression must occur before the actual call. Force
2551 gimplify_expr to use an internal post queue. */
2552 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
2553 is_gimple_call_addr, fb_rvalue);
2554
2555 nargs = call_expr_nargs (*expr_p);
2556
2557 /* Get argument types for verification. */
2558 fndecl = get_callee_fndecl (*expr_p);
2559 parms = NULL_TREE;
2560 if (fndecl)
2561 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2562 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p))))
2563 parms = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p))));
2564
2565 if (fndecl && DECL_ARGUMENTS (fndecl))
2566 p = DECL_ARGUMENTS (fndecl);
2567 else if (parms)
2568 p = parms;
2569 else
2570 p = NULL_TREE;
2571 for (i = 0; i < nargs && p; i++, p = TREE_CHAIN (p))
2572 ;
2573
2574 /* If the last argument is __builtin_va_arg_pack () and it is not
2575 passed as a named argument, decrease the number of CALL_EXPR
2576 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2577 if (!p
2578 && i < nargs
2579 && TREE_CODE (CALL_EXPR_ARG (*expr_p, nargs - 1)) == CALL_EXPR)
2580 {
2581 tree last_arg = CALL_EXPR_ARG (*expr_p, nargs - 1);
2582 tree last_arg_fndecl = get_callee_fndecl (last_arg);
2583
2584 if (last_arg_fndecl
2585 && TREE_CODE (last_arg_fndecl) == FUNCTION_DECL
2586 && DECL_BUILT_IN_CLASS (last_arg_fndecl) == BUILT_IN_NORMAL
2587 && DECL_FUNCTION_CODE (last_arg_fndecl) == BUILT_IN_VA_ARG_PACK)
2588 {
2589 tree call = *expr_p;
2590
2591 --nargs;
2592 *expr_p = build_call_array_loc (loc, TREE_TYPE (call),
2593 CALL_EXPR_FN (call),
2594 nargs, CALL_EXPR_ARGP (call));
2595
2596 /* Copy all CALL_EXPR flags, location and block, except
2597 CALL_EXPR_VA_ARG_PACK flag. */
2598 CALL_EXPR_STATIC_CHAIN (*expr_p) = CALL_EXPR_STATIC_CHAIN (call);
2599 CALL_EXPR_TAILCALL (*expr_p) = CALL_EXPR_TAILCALL (call);
2600 CALL_EXPR_RETURN_SLOT_OPT (*expr_p)
2601 = CALL_EXPR_RETURN_SLOT_OPT (call);
2602 CALL_FROM_THUNK_P (*expr_p) = CALL_FROM_THUNK_P (call);
2603 SET_EXPR_LOCATION (*expr_p, EXPR_LOCATION (call));
2604 TREE_BLOCK (*expr_p) = TREE_BLOCK (call);
2605
2606 /* Set CALL_EXPR_VA_ARG_PACK. */
2607 CALL_EXPR_VA_ARG_PACK (*expr_p) = 1;
2608 }
2609 }
2610
2611 /* Finally, gimplify the function arguments. */
2612 if (nargs > 0)
2613 {
2614 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2615 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2616 PUSH_ARGS_REVERSED ? i-- : i++)
2617 {
2618 enum gimplify_status t;
2619
2620 /* Avoid gimplifying the second argument to va_start, which needs to
2621 be the plain PARM_DECL. */
2622 if ((i != 1) || !builtin_va_start_p)
2623 {
2624 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p,
2625 EXPR_LOCATION (*expr_p));
2626
2627 if (t == GS_ERROR)
2628 ret = GS_ERROR;
2629 }
2630 }
2631 }
2632
2633 /* Verify the function result. */
2634 if (want_value && fndecl
2635 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype))))
2636 {
2637 error_at (loc, "using result of function returning %<void%>");
2638 ret = GS_ERROR;
2639 }
2640
2641 /* Try this again in case gimplification exposed something. */
2642 if (ret != GS_ERROR)
2643 {
2644 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2645
2646 if (new_tree && new_tree != *expr_p)
2647 {
2648 /* There was a transformation of this call which computes the
2649 same value, but in a more efficient way. Return and try
2650 again. */
2651 *expr_p = new_tree;
2652 return GS_OK;
2653 }
2654 }
2655 else
2656 {
2657 *expr_p = error_mark_node;
2658 return GS_ERROR;
2659 }
2660
2661 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2662 decl. This allows us to eliminate redundant or useless
2663 calls to "const" functions. */
2664 if (TREE_CODE (*expr_p) == CALL_EXPR)
2665 {
2666 int flags = call_expr_flags (*expr_p);
2667 if (flags & (ECF_CONST | ECF_PURE)
2668 /* An infinite loop is considered a side effect. */
2669 && !(flags & (ECF_LOOPING_CONST_OR_PURE)))
2670 TREE_SIDE_EFFECTS (*expr_p) = 0;
2671 }
2672
2673 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2674 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2675 form and delegate the creation of a GIMPLE_CALL to
2676 gimplify_modify_expr. This is always possible because when
2677 WANT_VALUE is true, the caller wants the result of this call into
2678 a temporary, which means that we will emit an INIT_EXPR in
2679 internal_get_tmp_var which will then be handled by
2680 gimplify_modify_expr. */
2681 if (!want_value)
2682 {
2683 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2684 have to do is replicate it as a GIMPLE_CALL tuple. */
2685 gimple_stmt_iterator gsi;
2686 call = gimple_build_call_from_tree (*expr_p);
2687 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
2688 gimplify_seq_add_stmt (pre_p, call);
2689 gsi = gsi_last (*pre_p);
2690 fold_stmt (&gsi);
2691 *expr_p = NULL_TREE;
2692 }
2693 else
2694 /* Remember the original function type. */
2695 CALL_EXPR_FN (*expr_p) = build1 (NOP_EXPR, fnptrtype,
2696 CALL_EXPR_FN (*expr_p));
2697
2698 return ret;
2699 }
2700
2701 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2702 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2703
2704 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2705 condition is true or false, respectively. If null, we should generate
2706 our own to skip over the evaluation of this specific expression.
2707
2708 LOCUS is the source location of the COND_EXPR.
2709
2710 This function is the tree equivalent of do_jump.
2711
2712 shortcut_cond_r should only be called by shortcut_cond_expr. */
2713
2714 static tree
2715 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p,
2716 location_t locus)
2717 {
2718 tree local_label = NULL_TREE;
2719 tree t, expr = NULL;
2720
2721 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2722 retain the shortcut semantics. Just insert the gotos here;
2723 shortcut_cond_expr will append the real blocks later. */
2724 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2725 {
2726 location_t new_locus;
2727
2728 /* Turn if (a && b) into
2729
2730 if (a); else goto no;
2731 if (b) goto yes; else goto no;
2732 (no:) */
2733
2734 if (false_label_p == NULL)
2735 false_label_p = &local_label;
2736
2737 /* Keep the original source location on the first 'if'. */
2738 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p, locus);
2739 append_to_statement_list (t, &expr);
2740
2741 /* Set the source location of the && on the second 'if'. */
2742 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2743 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2744 new_locus);
2745 append_to_statement_list (t, &expr);
2746 }
2747 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2748 {
2749 location_t new_locus;
2750
2751 /* Turn if (a || b) into
2752
2753 if (a) goto yes;
2754 if (b) goto yes; else goto no;
2755 (yes:) */
2756
2757 if (true_label_p == NULL)
2758 true_label_p = &local_label;
2759
2760 /* Keep the original source location on the first 'if'. */
2761 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL, locus);
2762 append_to_statement_list (t, &expr);
2763
2764 /* Set the source location of the || on the second 'if'. */
2765 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2766 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2767 new_locus);
2768 append_to_statement_list (t, &expr);
2769 }
2770 else if (TREE_CODE (pred) == COND_EXPR
2771 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 1)))
2772 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 2))))
2773 {
2774 location_t new_locus;
2775
2776 /* As long as we're messing with gotos, turn if (a ? b : c) into
2777 if (a)
2778 if (b) goto yes; else goto no;
2779 else
2780 if (c) goto yes; else goto no;
2781
2782 Don't do this if one of the arms has void type, which can happen
2783 in C++ when the arm is throw. */
2784
2785 /* Keep the original source location on the first 'if'. Set the source
2786 location of the ? on the second 'if'. */
2787 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2788 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2789 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2790 false_label_p, locus),
2791 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2792 false_label_p, new_locus));
2793 }
2794 else
2795 {
2796 expr = build3 (COND_EXPR, void_type_node, pred,
2797 build_and_jump (true_label_p),
2798 build_and_jump (false_label_p));
2799 SET_EXPR_LOCATION (expr, locus);
2800 }
2801
2802 if (local_label)
2803 {
2804 t = build1 (LABEL_EXPR, void_type_node, local_label);
2805 append_to_statement_list (t, &expr);
2806 }
2807
2808 return expr;
2809 }
2810
2811 /* Given a conditional expression EXPR with short-circuit boolean
2812 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2813 predicate apart into the equivalent sequence of conditionals. */
2814
2815 static tree
2816 shortcut_cond_expr (tree expr)
2817 {
2818 tree pred = TREE_OPERAND (expr, 0);
2819 tree then_ = TREE_OPERAND (expr, 1);
2820 tree else_ = TREE_OPERAND (expr, 2);
2821 tree true_label, false_label, end_label, t;
2822 tree *true_label_p;
2823 tree *false_label_p;
2824 bool emit_end, emit_false, jump_over_else;
2825 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2826 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2827
2828 /* First do simple transformations. */
2829 if (!else_se)
2830 {
2831 /* If there is no 'else', turn
2832 if (a && b) then c
2833 into
2834 if (a) if (b) then c. */
2835 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2836 {
2837 /* Keep the original source location on the first 'if'. */
2838 location_t locus = EXPR_LOC_OR_HERE (expr);
2839 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2840 /* Set the source location of the && on the second 'if'. */
2841 if (EXPR_HAS_LOCATION (pred))
2842 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2843 then_ = shortcut_cond_expr (expr);
2844 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2845 pred = TREE_OPERAND (pred, 0);
2846 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2847 SET_EXPR_LOCATION (expr, locus);
2848 }
2849 }
2850
2851 if (!then_se)
2852 {
2853 /* If there is no 'then', turn
2854 if (a || b); else d
2855 into
2856 if (a); else if (b); else d. */
2857 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2858 {
2859 /* Keep the original source location on the first 'if'. */
2860 location_t locus = EXPR_LOC_OR_HERE (expr);
2861 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2862 /* Set the source location of the || on the second 'if'. */
2863 if (EXPR_HAS_LOCATION (pred))
2864 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2865 else_ = shortcut_cond_expr (expr);
2866 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2867 pred = TREE_OPERAND (pred, 0);
2868 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2869 SET_EXPR_LOCATION (expr, locus);
2870 }
2871 }
2872
2873 /* If we're done, great. */
2874 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2875 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2876 return expr;
2877
2878 /* Otherwise we need to mess with gotos. Change
2879 if (a) c; else d;
2880 to
2881 if (a); else goto no;
2882 c; goto end;
2883 no: d; end:
2884 and recursively gimplify the condition. */
2885
2886 true_label = false_label = end_label = NULL_TREE;
2887
2888 /* If our arms just jump somewhere, hijack those labels so we don't
2889 generate jumps to jumps. */
2890
2891 if (then_
2892 && TREE_CODE (then_) == GOTO_EXPR
2893 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2894 {
2895 true_label = GOTO_DESTINATION (then_);
2896 then_ = NULL;
2897 then_se = false;
2898 }
2899
2900 if (else_
2901 && TREE_CODE (else_) == GOTO_EXPR
2902 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2903 {
2904 false_label = GOTO_DESTINATION (else_);
2905 else_ = NULL;
2906 else_se = false;
2907 }
2908
2909 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2910 if (true_label)
2911 true_label_p = &true_label;
2912 else
2913 true_label_p = NULL;
2914
2915 /* The 'else' branch also needs a label if it contains interesting code. */
2916 if (false_label || else_se)
2917 false_label_p = &false_label;
2918 else
2919 false_label_p = NULL;
2920
2921 /* If there was nothing else in our arms, just forward the label(s). */
2922 if (!then_se && !else_se)
2923 return shortcut_cond_r (pred, true_label_p, false_label_p,
2924 EXPR_LOC_OR_HERE (expr));
2925
2926 /* If our last subexpression already has a terminal label, reuse it. */
2927 if (else_se)
2928 t = expr_last (else_);
2929 else if (then_se)
2930 t = expr_last (then_);
2931 else
2932 t = NULL;
2933 if (t && TREE_CODE (t) == LABEL_EXPR)
2934 end_label = LABEL_EXPR_LABEL (t);
2935
2936 /* If we don't care about jumping to the 'else' branch, jump to the end
2937 if the condition is false. */
2938 if (!false_label_p)
2939 false_label_p = &end_label;
2940
2941 /* We only want to emit these labels if we aren't hijacking them. */
2942 emit_end = (end_label == NULL_TREE);
2943 emit_false = (false_label == NULL_TREE);
2944
2945 /* We only emit the jump over the else clause if we have to--if the
2946 then clause may fall through. Otherwise we can wind up with a
2947 useless jump and a useless label at the end of gimplified code,
2948 which will cause us to think that this conditional as a whole
2949 falls through even if it doesn't. If we then inline a function
2950 which ends with such a condition, that can cause us to issue an
2951 inappropriate warning about control reaching the end of a
2952 non-void function. */
2953 jump_over_else = block_may_fallthru (then_);
2954
2955 pred = shortcut_cond_r (pred, true_label_p, false_label_p,
2956 EXPR_LOC_OR_HERE (expr));
2957
2958 expr = NULL;
2959 append_to_statement_list (pred, &expr);
2960
2961 append_to_statement_list (then_, &expr);
2962 if (else_se)
2963 {
2964 if (jump_over_else)
2965 {
2966 tree last = expr_last (expr);
2967 t = build_and_jump (&end_label);
2968 if (EXPR_HAS_LOCATION (last))
2969 SET_EXPR_LOCATION (t, EXPR_LOCATION (last));
2970 append_to_statement_list (t, &expr);
2971 }
2972 if (emit_false)
2973 {
2974 t = build1 (LABEL_EXPR, void_type_node, false_label);
2975 append_to_statement_list (t, &expr);
2976 }
2977 append_to_statement_list (else_, &expr);
2978 }
2979 if (emit_end && end_label)
2980 {
2981 t = build1 (LABEL_EXPR, void_type_node, end_label);
2982 append_to_statement_list (t, &expr);
2983 }
2984
2985 return expr;
2986 }
2987
2988 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2989
2990 tree
2991 gimple_boolify (tree expr)
2992 {
2993 tree type = TREE_TYPE (expr);
2994 location_t loc = EXPR_LOCATION (expr);
2995
2996 if (TREE_CODE (expr) == NE_EXPR
2997 && TREE_CODE (TREE_OPERAND (expr, 0)) == CALL_EXPR
2998 && integer_zerop (TREE_OPERAND (expr, 1)))
2999 {
3000 tree call = TREE_OPERAND (expr, 0);
3001 tree fn = get_callee_fndecl (call);
3002
3003 /* For __builtin_expect ((long) (x), y) recurse into x as well
3004 if x is truth_value_p. */
3005 if (fn
3006 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
3007 && DECL_FUNCTION_CODE (fn) == BUILT_IN_EXPECT
3008 && call_expr_nargs (call) == 2)
3009 {
3010 tree arg = CALL_EXPR_ARG (call, 0);
3011 if (arg)
3012 {
3013 if (TREE_CODE (arg) == NOP_EXPR
3014 && TREE_TYPE (arg) == TREE_TYPE (call))
3015 arg = TREE_OPERAND (arg, 0);
3016 if (truth_value_p (TREE_CODE (arg)))
3017 {
3018 arg = gimple_boolify (arg);
3019 CALL_EXPR_ARG (call, 0)
3020 = fold_convert_loc (loc, TREE_TYPE (call), arg);
3021 }
3022 }
3023 }
3024 }
3025
3026 switch (TREE_CODE (expr))
3027 {
3028 case TRUTH_AND_EXPR:
3029 case TRUTH_OR_EXPR:
3030 case TRUTH_XOR_EXPR:
3031 case TRUTH_ANDIF_EXPR:
3032 case TRUTH_ORIF_EXPR:
3033 /* Also boolify the arguments of truth exprs. */
3034 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
3035 /* FALLTHRU */
3036
3037 case TRUTH_NOT_EXPR:
3038 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3039
3040 /* These expressions always produce boolean results. */
3041 if (TREE_CODE (type) != BOOLEAN_TYPE)
3042 TREE_TYPE (expr) = boolean_type_node;
3043 return expr;
3044
3045 default:
3046 if (COMPARISON_CLASS_P (expr))
3047 {
3048 /* There expressions always prduce boolean results. */
3049 if (TREE_CODE (type) != BOOLEAN_TYPE)
3050 TREE_TYPE (expr) = boolean_type_node;
3051 return expr;
3052 }
3053 /* Other expressions that get here must have boolean values, but
3054 might need to be converted to the appropriate mode. */
3055 if (TREE_CODE (type) == BOOLEAN_TYPE)
3056 return expr;
3057 return fold_convert_loc (loc, boolean_type_node, expr);
3058 }
3059 }
3060
3061 /* Given a conditional expression *EXPR_P without side effects, gimplify
3062 its operands. New statements are inserted to PRE_P. */
3063
3064 static enum gimplify_status
3065 gimplify_pure_cond_expr (tree *expr_p, gimple_seq *pre_p)
3066 {
3067 tree expr = *expr_p, cond;
3068 enum gimplify_status ret, tret;
3069 enum tree_code code;
3070
3071 cond = gimple_boolify (COND_EXPR_COND (expr));
3072
3073 /* We need to handle && and || specially, as their gimplification
3074 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
3075 code = TREE_CODE (cond);
3076 if (code == TRUTH_ANDIF_EXPR)
3077 TREE_SET_CODE (cond, TRUTH_AND_EXPR);
3078 else if (code == TRUTH_ORIF_EXPR)
3079 TREE_SET_CODE (cond, TRUTH_OR_EXPR);
3080 ret = gimplify_expr (&cond, pre_p, NULL, is_gimple_condexpr, fb_rvalue);
3081 COND_EXPR_COND (*expr_p) = cond;
3082
3083 tret = gimplify_expr (&COND_EXPR_THEN (expr), pre_p, NULL,
3084 is_gimple_val, fb_rvalue);
3085 ret = MIN (ret, tret);
3086 tret = gimplify_expr (&COND_EXPR_ELSE (expr), pre_p, NULL,
3087 is_gimple_val, fb_rvalue);
3088
3089 return MIN (ret, tret);
3090 }
3091
3092 /* Return true if evaluating EXPR could trap.
3093 EXPR is GENERIC, while tree_could_trap_p can be called
3094 only on GIMPLE. */
3095
3096 static bool
3097 generic_expr_could_trap_p (tree expr)
3098 {
3099 unsigned i, n;
3100
3101 if (!expr || is_gimple_val (expr))
3102 return false;
3103
3104 if (!EXPR_P (expr) || tree_could_trap_p (expr))
3105 return true;
3106
3107 n = TREE_OPERAND_LENGTH (expr);
3108 for (i = 0; i < n; i++)
3109 if (generic_expr_could_trap_p (TREE_OPERAND (expr, i)))
3110 return true;
3111
3112 return false;
3113 }
3114
3115 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
3116 into
3117
3118 if (p) if (p)
3119 t1 = a; a;
3120 else or else
3121 t1 = b; b;
3122 t1;
3123
3124 The second form is used when *EXPR_P is of type void.
3125
3126 PRE_P points to the list where side effects that must happen before
3127 *EXPR_P should be stored. */
3128
3129 static enum gimplify_status
3130 gimplify_cond_expr (tree *expr_p, gimple_seq *pre_p, fallback_t fallback)
3131 {
3132 tree expr = *expr_p;
3133 tree type = TREE_TYPE (expr);
3134 location_t loc = EXPR_LOCATION (expr);
3135 tree tmp, arm1, arm2;
3136 enum gimplify_status ret;
3137 tree label_true, label_false, label_cont;
3138 bool have_then_clause_p, have_else_clause_p;
3139 gimple gimple_cond;
3140 enum tree_code pred_code;
3141 gimple_seq seq = NULL;
3142
3143 /* If this COND_EXPR has a value, copy the values into a temporary within
3144 the arms. */
3145 if (!VOID_TYPE_P (type))
3146 {
3147 tree then_ = TREE_OPERAND (expr, 1), else_ = TREE_OPERAND (expr, 2);
3148 tree result;
3149
3150 /* If either an rvalue is ok or we do not require an lvalue, create the
3151 temporary. But we cannot do that if the type is addressable. */
3152 if (((fallback & fb_rvalue) || !(fallback & fb_lvalue))
3153 && !TREE_ADDRESSABLE (type))
3154 {
3155 if (gimplify_ctxp->allow_rhs_cond_expr
3156 /* If either branch has side effects or could trap, it can't be
3157 evaluated unconditionally. */
3158 && !TREE_SIDE_EFFECTS (then_)
3159 && !generic_expr_could_trap_p (then_)
3160 && !TREE_SIDE_EFFECTS (else_)
3161 && !generic_expr_could_trap_p (else_))
3162 return gimplify_pure_cond_expr (expr_p, pre_p);
3163
3164 tmp = create_tmp_var (type, "iftmp");
3165 result = tmp;
3166 }
3167
3168 /* Otherwise, only create and copy references to the values. */
3169 else
3170 {
3171 type = build_pointer_type (type);
3172
3173 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3174 then_ = build_fold_addr_expr_loc (loc, then_);
3175
3176 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3177 else_ = build_fold_addr_expr_loc (loc, else_);
3178
3179 expr
3180 = build3 (COND_EXPR, type, TREE_OPERAND (expr, 0), then_, else_);
3181
3182 tmp = create_tmp_var (type, "iftmp");
3183 result = build_simple_mem_ref_loc (loc, tmp);
3184 }
3185
3186 /* Build the new then clause, `tmp = then_;'. But don't build the
3187 assignment if the value is void; in C++ it can be if it's a throw. */
3188 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3189 TREE_OPERAND (expr, 1) = build2 (MODIFY_EXPR, type, tmp, then_);
3190
3191 /* Similarly, build the new else clause, `tmp = else_;'. */
3192 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3193 TREE_OPERAND (expr, 2) = build2 (MODIFY_EXPR, type, tmp, else_);
3194
3195 TREE_TYPE (expr) = void_type_node;
3196 recalculate_side_effects (expr);
3197
3198 /* Move the COND_EXPR to the prequeue. */
3199 gimplify_stmt (&expr, pre_p);
3200
3201 *expr_p = result;
3202 return GS_ALL_DONE;
3203 }
3204
3205 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3206 STRIP_TYPE_NOPS (TREE_OPERAND (expr, 0));
3207 if (TREE_CODE (TREE_OPERAND (expr, 0)) == COMPOUND_EXPR)
3208 gimplify_compound_expr (&TREE_OPERAND (expr, 0), pre_p, true);
3209
3210 /* Make sure the condition has BOOLEAN_TYPE. */
3211 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3212
3213 /* Break apart && and || conditions. */
3214 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
3215 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
3216 {
3217 expr = shortcut_cond_expr (expr);
3218
3219 if (expr != *expr_p)
3220 {
3221 *expr_p = expr;
3222
3223 /* We can't rely on gimplify_expr to re-gimplify the expanded
3224 form properly, as cleanups might cause the target labels to be
3225 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3226 set up a conditional context. */
3227 gimple_push_condition ();
3228 gimplify_stmt (expr_p, &seq);
3229 gimple_pop_condition (pre_p);
3230 gimple_seq_add_seq (pre_p, seq);
3231
3232 return GS_ALL_DONE;
3233 }
3234 }
3235
3236 /* Now do the normal gimplification. */
3237
3238 /* Gimplify condition. */
3239 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL, is_gimple_condexpr,
3240 fb_rvalue);
3241 if (ret == GS_ERROR)
3242 return GS_ERROR;
3243 gcc_assert (TREE_OPERAND (expr, 0) != NULL_TREE);
3244
3245 gimple_push_condition ();
3246
3247 have_then_clause_p = have_else_clause_p = false;
3248 if (TREE_OPERAND (expr, 1) != NULL
3249 && TREE_CODE (TREE_OPERAND (expr, 1)) == GOTO_EXPR
3250 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 1))) == LABEL_DECL
3251 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 1)))
3252 == current_function_decl)
3253 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3254 have different locations, otherwise we end up with incorrect
3255 location information on the branches. */
3256 && (optimize
3257 || !EXPR_HAS_LOCATION (expr)
3258 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 1))
3259 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 1))))
3260 {
3261 label_true = GOTO_DESTINATION (TREE_OPERAND (expr, 1));
3262 have_then_clause_p = true;
3263 }
3264 else
3265 label_true = create_artificial_label (UNKNOWN_LOCATION);
3266 if (TREE_OPERAND (expr, 2) != NULL
3267 && TREE_CODE (TREE_OPERAND (expr, 2)) == GOTO_EXPR
3268 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 2))) == LABEL_DECL
3269 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 2)))
3270 == current_function_decl)
3271 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3272 have different locations, otherwise we end up with incorrect
3273 location information on the branches. */
3274 && (optimize
3275 || !EXPR_HAS_LOCATION (expr)
3276 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 2))
3277 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 2))))
3278 {
3279 label_false = GOTO_DESTINATION (TREE_OPERAND (expr, 2));
3280 have_else_clause_p = true;
3281 }
3282 else
3283 label_false = create_artificial_label (UNKNOWN_LOCATION);
3284
3285 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1,
3286 &arm2);
3287
3288 gimple_cond = gimple_build_cond (pred_code, arm1, arm2, label_true,
3289 label_false);
3290
3291 gimplify_seq_add_stmt (&seq, gimple_cond);
3292 label_cont = NULL_TREE;
3293 if (!have_then_clause_p)
3294 {
3295 /* For if (...) {} else { code; } put label_true after
3296 the else block. */
3297 if (TREE_OPERAND (expr, 1) == NULL_TREE
3298 && !have_else_clause_p
3299 && TREE_OPERAND (expr, 2) != NULL_TREE)
3300 label_cont = label_true;
3301 else
3302 {
3303 gimplify_seq_add_stmt (&seq, gimple_build_label (label_true));
3304 have_then_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 1), &seq);
3305 /* For if (...) { code; } else {} or
3306 if (...) { code; } else goto label; or
3307 if (...) { code; return; } else { ... }
3308 label_cont isn't needed. */
3309 if (!have_else_clause_p
3310 && TREE_OPERAND (expr, 2) != NULL_TREE
3311 && gimple_seq_may_fallthru (seq))
3312 {
3313 gimple g;
3314 label_cont = create_artificial_label (UNKNOWN_LOCATION);
3315
3316 g = gimple_build_goto (label_cont);
3317
3318 /* GIMPLE_COND's are very low level; they have embedded
3319 gotos. This particular embedded goto should not be marked
3320 with the location of the original COND_EXPR, as it would
3321 correspond to the COND_EXPR's condition, not the ELSE or the
3322 THEN arms. To avoid marking it with the wrong location, flag
3323 it as "no location". */
3324 gimple_set_do_not_emit_location (g);
3325
3326 gimplify_seq_add_stmt (&seq, g);
3327 }
3328 }
3329 }
3330 if (!have_else_clause_p)
3331 {
3332 gimplify_seq_add_stmt (&seq, gimple_build_label (label_false));
3333 have_else_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 2), &seq);
3334 }
3335 if (label_cont)
3336 gimplify_seq_add_stmt (&seq, gimple_build_label (label_cont));
3337
3338 gimple_pop_condition (pre_p);
3339 gimple_seq_add_seq (pre_p, seq);
3340
3341 if (ret == GS_ERROR)
3342 ; /* Do nothing. */
3343 else if (have_then_clause_p || have_else_clause_p)
3344 ret = GS_ALL_DONE;
3345 else
3346 {
3347 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3348 expr = TREE_OPERAND (expr, 0);
3349 gimplify_stmt (&expr, pre_p);
3350 }
3351
3352 *expr_p = NULL;
3353 return ret;
3354 }
3355
3356 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3357 to be marked addressable.
3358
3359 We cannot rely on such an expression being directly markable if a temporary
3360 has been created by the gimplification. In this case, we create another
3361 temporary and initialize it with a copy, which will become a store after we
3362 mark it addressable. This can happen if the front-end passed us something
3363 that it could not mark addressable yet, like a Fortran pass-by-reference
3364 parameter (int) floatvar. */
3365
3366 static void
3367 prepare_gimple_addressable (tree *expr_p, gimple_seq *seq_p)
3368 {
3369 while (handled_component_p (*expr_p))
3370 expr_p = &TREE_OPERAND (*expr_p, 0);
3371 if (is_gimple_reg (*expr_p))
3372 *expr_p = get_initialized_tmp_var (*expr_p, seq_p, NULL);
3373 }
3374
3375 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3376 a call to __builtin_memcpy. */
3377
3378 static enum gimplify_status
3379 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value,
3380 gimple_seq *seq_p)
3381 {
3382 tree t, to, to_ptr, from, from_ptr;
3383 gimple gs;
3384 location_t loc = EXPR_LOCATION (*expr_p);
3385
3386 to = TREE_OPERAND (*expr_p, 0);
3387 from = TREE_OPERAND (*expr_p, 1);
3388
3389 /* Mark the RHS addressable. Beware that it may not be possible to do so
3390 directly if a temporary has been created by the gimplification. */
3391 prepare_gimple_addressable (&from, seq_p);
3392
3393 mark_addressable (from);
3394 from_ptr = build_fold_addr_expr_loc (loc, from);
3395 gimplify_arg (&from_ptr, seq_p, loc);
3396
3397 mark_addressable (to);
3398 to_ptr = build_fold_addr_expr_loc (loc, to);
3399 gimplify_arg (&to_ptr, seq_p, loc);
3400
3401 t = builtin_decl_implicit (BUILT_IN_MEMCPY);
3402
3403 gs = gimple_build_call (t, 3, to_ptr, from_ptr, size);
3404
3405 if (want_value)
3406 {
3407 /* tmp = memcpy() */
3408 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3409 gimple_call_set_lhs (gs, t);
3410 gimplify_seq_add_stmt (seq_p, gs);
3411
3412 *expr_p = build_simple_mem_ref (t);
3413 return GS_ALL_DONE;
3414 }
3415
3416 gimplify_seq_add_stmt (seq_p, gs);
3417 *expr_p = NULL;
3418 return GS_ALL_DONE;
3419 }
3420
3421 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3422 a call to __builtin_memset. In this case we know that the RHS is
3423 a CONSTRUCTOR with an empty element list. */
3424
3425 static enum gimplify_status
3426 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value,
3427 gimple_seq *seq_p)
3428 {
3429 tree t, from, to, to_ptr;
3430 gimple gs;
3431 location_t loc = EXPR_LOCATION (*expr_p);
3432
3433 /* Assert our assumptions, to abort instead of producing wrong code
3434 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3435 not be immediately exposed. */
3436 from = TREE_OPERAND (*expr_p, 1);
3437 if (TREE_CODE (from) == WITH_SIZE_EXPR)
3438 from = TREE_OPERAND (from, 0);
3439
3440 gcc_assert (TREE_CODE (from) == CONSTRUCTOR
3441 && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (from)));
3442
3443 /* Now proceed. */
3444 to = TREE_OPERAND (*expr_p, 0);
3445
3446 to_ptr = build_fold_addr_expr_loc (loc, to);
3447 gimplify_arg (&to_ptr, seq_p, loc);
3448 t = builtin_decl_implicit (BUILT_IN_MEMSET);
3449
3450 gs = gimple_build_call (t, 3, to_ptr, integer_zero_node, size);
3451
3452 if (want_value)
3453 {
3454 /* tmp = memset() */
3455 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3456 gimple_call_set_lhs (gs, t);
3457 gimplify_seq_add_stmt (seq_p, gs);
3458
3459 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (to), t);
3460 return GS_ALL_DONE;
3461 }
3462
3463 gimplify_seq_add_stmt (seq_p, gs);
3464 *expr_p = NULL;
3465 return GS_ALL_DONE;
3466 }
3467
3468 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3469 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3470 assignment. Return non-null if we detect a potential overlap. */
3471
3472 struct gimplify_init_ctor_preeval_data
3473 {
3474 /* The base decl of the lhs object. May be NULL, in which case we
3475 have to assume the lhs is indirect. */
3476 tree lhs_base_decl;
3477
3478 /* The alias set of the lhs object. */
3479 alias_set_type lhs_alias_set;
3480 };
3481
3482 static tree
3483 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
3484 {
3485 struct gimplify_init_ctor_preeval_data *data
3486 = (struct gimplify_init_ctor_preeval_data *) xdata;
3487 tree t = *tp;
3488
3489 /* If we find the base object, obviously we have overlap. */
3490 if (data->lhs_base_decl == t)
3491 return t;
3492
3493 /* If the constructor component is indirect, determine if we have a
3494 potential overlap with the lhs. The only bits of information we
3495 have to go on at this point are addressability and alias sets. */
3496 if ((INDIRECT_REF_P (t)
3497 || TREE_CODE (t) == MEM_REF)
3498 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3499 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
3500 return t;
3501
3502 /* If the constructor component is a call, determine if it can hide a
3503 potential overlap with the lhs through an INDIRECT_REF like above.
3504 ??? Ugh - this is completely broken. In fact this whole analysis
3505 doesn't look conservative. */
3506 if (TREE_CODE (t) == CALL_EXPR)
3507 {
3508 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
3509
3510 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
3511 if (POINTER_TYPE_P (TREE_VALUE (type))
3512 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3513 && alias_sets_conflict_p (data->lhs_alias_set,
3514 get_alias_set
3515 (TREE_TYPE (TREE_VALUE (type)))))
3516 return t;
3517 }
3518
3519 if (IS_TYPE_OR_DECL_P (t))
3520 *walk_subtrees = 0;
3521 return NULL;
3522 }
3523
3524 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3525 force values that overlap with the lhs (as described by *DATA)
3526 into temporaries. */
3527
3528 static void
3529 gimplify_init_ctor_preeval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3530 struct gimplify_init_ctor_preeval_data *data)
3531 {
3532 enum gimplify_status one;
3533
3534 /* If the value is constant, then there's nothing to pre-evaluate. */
3535 if (TREE_CONSTANT (*expr_p))
3536 {
3537 /* Ensure it does not have side effects, it might contain a reference to
3538 the object we're initializing. */
3539 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p));
3540 return;
3541 }
3542
3543 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3544 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
3545 return;
3546
3547 /* Recurse for nested constructors. */
3548 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
3549 {
3550 unsigned HOST_WIDE_INT ix;
3551 constructor_elt *ce;
3552 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
3553
3554 FOR_EACH_VEC_ELT (constructor_elt, v, ix, ce)
3555 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
3556
3557 return;
3558 }
3559
3560 /* If this is a variable sized type, we must remember the size. */
3561 maybe_with_size_expr (expr_p);
3562
3563 /* Gimplify the constructor element to something appropriate for the rhs
3564 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3565 the gimplifier will consider this a store to memory. Doing this
3566 gimplification now means that we won't have to deal with complicated
3567 language-specific trees, nor trees like SAVE_EXPR that can induce
3568 exponential search behavior. */
3569 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
3570 if (one == GS_ERROR)
3571 {
3572 *expr_p = NULL;
3573 return;
3574 }
3575
3576 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3577 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3578 always be true for all scalars, since is_gimple_mem_rhs insists on a
3579 temporary variable for them. */
3580 if (DECL_P (*expr_p))
3581 return;
3582
3583 /* If this is of variable size, we have no choice but to assume it doesn't
3584 overlap since we can't make a temporary for it. */
3585 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
3586 return;
3587
3588 /* Otherwise, we must search for overlap ... */
3589 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
3590 return;
3591
3592 /* ... and if found, force the value into a temporary. */
3593 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
3594 }
3595
3596 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3597 a RANGE_EXPR in a CONSTRUCTOR for an array.
3598
3599 var = lower;
3600 loop_entry:
3601 object[var] = value;
3602 if (var == upper)
3603 goto loop_exit;
3604 var = var + 1;
3605 goto loop_entry;
3606 loop_exit:
3607
3608 We increment var _after_ the loop exit check because we might otherwise
3609 fail if upper == TYPE_MAX_VALUE (type for upper).
3610
3611 Note that we never have to deal with SAVE_EXPRs here, because this has
3612 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3613
3614 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
3615 gimple_seq *, bool);
3616
3617 static void
3618 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
3619 tree value, tree array_elt_type,
3620 gimple_seq *pre_p, bool cleared)
3621 {
3622 tree loop_entry_label, loop_exit_label, fall_thru_label;
3623 tree var, var_type, cref, tmp;
3624
3625 loop_entry_label = create_artificial_label (UNKNOWN_LOCATION);
3626 loop_exit_label = create_artificial_label (UNKNOWN_LOCATION);
3627 fall_thru_label = create_artificial_label (UNKNOWN_LOCATION);
3628
3629 /* Create and initialize the index variable. */
3630 var_type = TREE_TYPE (upper);
3631 var = create_tmp_var (var_type, NULL);
3632 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, lower));
3633
3634 /* Add the loop entry label. */
3635 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_entry_label));
3636
3637 /* Build the reference. */
3638 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3639 var, NULL_TREE, NULL_TREE);
3640
3641 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3642 the store. Otherwise just assign value to the reference. */
3643
3644 if (TREE_CODE (value) == CONSTRUCTOR)
3645 /* NB we might have to call ourself recursively through
3646 gimplify_init_ctor_eval if the value is a constructor. */
3647 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3648 pre_p, cleared);
3649 else
3650 gimplify_seq_add_stmt (pre_p, gimple_build_assign (cref, value));
3651
3652 /* We exit the loop when the index var is equal to the upper bound. */
3653 gimplify_seq_add_stmt (pre_p,
3654 gimple_build_cond (EQ_EXPR, var, upper,
3655 loop_exit_label, fall_thru_label));
3656
3657 gimplify_seq_add_stmt (pre_p, gimple_build_label (fall_thru_label));
3658
3659 /* Otherwise, increment the index var... */
3660 tmp = build2 (PLUS_EXPR, var_type, var,
3661 fold_convert (var_type, integer_one_node));
3662 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, tmp));
3663
3664 /* ...and jump back to the loop entry. */
3665 gimplify_seq_add_stmt (pre_p, gimple_build_goto (loop_entry_label));
3666
3667 /* Add the loop exit label. */
3668 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_exit_label));
3669 }
3670
3671 /* Return true if FDECL is accessing a field that is zero sized. */
3672
3673 static bool
3674 zero_sized_field_decl (const_tree fdecl)
3675 {
3676 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
3677 && integer_zerop (DECL_SIZE (fdecl)))
3678 return true;
3679 return false;
3680 }
3681
3682 /* Return true if TYPE is zero sized. */
3683
3684 static bool
3685 zero_sized_type (const_tree type)
3686 {
3687 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
3688 && integer_zerop (TYPE_SIZE (type)))
3689 return true;
3690 return false;
3691 }
3692
3693 /* A subroutine of gimplify_init_constructor. Generate individual
3694 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3695 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3696 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3697 zeroed first. */
3698
3699 static void
3700 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
3701 gimple_seq *pre_p, bool cleared)
3702 {
3703 tree array_elt_type = NULL;
3704 unsigned HOST_WIDE_INT ix;
3705 tree purpose, value;
3706
3707 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
3708 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
3709
3710 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
3711 {
3712 tree cref;
3713
3714 /* NULL values are created above for gimplification errors. */
3715 if (value == NULL)
3716 continue;
3717
3718 if (cleared && initializer_zerop (value))
3719 continue;
3720
3721 /* ??? Here's to hoping the front end fills in all of the indices,
3722 so we don't have to figure out what's missing ourselves. */
3723 gcc_assert (purpose);
3724
3725 /* Skip zero-sized fields, unless value has side-effects. This can
3726 happen with calls to functions returning a zero-sized type, which
3727 we shouldn't discard. As a number of downstream passes don't
3728 expect sets of zero-sized fields, we rely on the gimplification of
3729 the MODIFY_EXPR we make below to drop the assignment statement. */
3730 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
3731 continue;
3732
3733 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3734 whole range. */
3735 if (TREE_CODE (purpose) == RANGE_EXPR)
3736 {
3737 tree lower = TREE_OPERAND (purpose, 0);
3738 tree upper = TREE_OPERAND (purpose, 1);
3739
3740 /* If the lower bound is equal to upper, just treat it as if
3741 upper was the index. */
3742 if (simple_cst_equal (lower, upper))
3743 purpose = upper;
3744 else
3745 {
3746 gimplify_init_ctor_eval_range (object, lower, upper, value,
3747 array_elt_type, pre_p, cleared);
3748 continue;
3749 }
3750 }
3751
3752 if (array_elt_type)
3753 {
3754 /* Do not use bitsizetype for ARRAY_REF indices. */
3755 if (TYPE_DOMAIN (TREE_TYPE (object)))
3756 purpose
3757 = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object))),
3758 purpose);
3759 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3760 purpose, NULL_TREE, NULL_TREE);
3761 }
3762 else
3763 {
3764 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
3765 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
3766 unshare_expr (object), purpose, NULL_TREE);
3767 }
3768
3769 if (TREE_CODE (value) == CONSTRUCTOR
3770 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
3771 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3772 pre_p, cleared);
3773 else
3774 {
3775 tree init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
3776 gimplify_and_add (init, pre_p);
3777 ggc_free (init);
3778 }
3779 }
3780 }
3781
3782 /* Return the appropriate RHS predicate for this LHS. */
3783
3784 gimple_predicate
3785 rhs_predicate_for (tree lhs)
3786 {
3787 if (is_gimple_reg (lhs))
3788 return is_gimple_reg_rhs_or_call;
3789 else
3790 return is_gimple_mem_rhs_or_call;
3791 }
3792
3793 /* Gimplify a C99 compound literal expression. This just means adding
3794 the DECL_EXPR before the current statement and using its anonymous
3795 decl instead. */
3796
3797 static enum gimplify_status
3798 gimplify_compound_literal_expr (tree *expr_p, gimple_seq *pre_p,
3799 bool (*gimple_test_f) (tree),
3800 fallback_t fallback)
3801 {
3802 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p);
3803 tree decl = DECL_EXPR_DECL (decl_s);
3804 tree init = DECL_INITIAL (decl);
3805 /* Mark the decl as addressable if the compound literal
3806 expression is addressable now, otherwise it is marked too late
3807 after we gimplify the initialization expression. */
3808 if (TREE_ADDRESSABLE (*expr_p))
3809 TREE_ADDRESSABLE (decl) = 1;
3810 /* Otherwise, if we don't need an lvalue and have a literal directly
3811 substitute it. Check if it matches the gimple predicate, as
3812 otherwise we'd generate a new temporary, and we can as well just
3813 use the decl we already have. */
3814 else if (!TREE_ADDRESSABLE (decl)
3815 && init
3816 && (fallback & fb_lvalue) == 0
3817 && gimple_test_f (init))
3818 {
3819 *expr_p = init;
3820 return GS_OK;
3821 }
3822
3823 /* Preliminarily mark non-addressed complex variables as eligible
3824 for promotion to gimple registers. We'll transform their uses
3825 as we find them. */
3826 if ((TREE_CODE (TREE_TYPE (decl)) == COMPLEX_TYPE
3827 || TREE_CODE (TREE_TYPE (decl)) == VECTOR_TYPE)
3828 && !TREE_THIS_VOLATILE (decl)
3829 && !needs_to_live_in_memory (decl))
3830 DECL_GIMPLE_REG_P (decl) = 1;
3831
3832 /* If the decl is not addressable, then it is being used in some
3833 expression or on the right hand side of a statement, and it can
3834 be put into a readonly data section. */
3835 if (!TREE_ADDRESSABLE (decl) && (fallback & fb_lvalue) == 0)
3836 TREE_READONLY (decl) = 1;
3837
3838 /* This decl isn't mentioned in the enclosing block, so add it to the
3839 list of temps. FIXME it seems a bit of a kludge to say that
3840 anonymous artificial vars aren't pushed, but everything else is. */
3841 if (DECL_NAME (decl) == NULL_TREE && !DECL_SEEN_IN_BIND_EXPR_P (decl))
3842 gimple_add_tmp_var (decl);
3843
3844 gimplify_and_add (decl_s, pre_p);
3845 *expr_p = decl;
3846 return GS_OK;
3847 }
3848
3849 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3850 return a new CONSTRUCTOR if something changed. */
3851
3852 static tree
3853 optimize_compound_literals_in_ctor (tree orig_ctor)
3854 {
3855 tree ctor = orig_ctor;
3856 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (ctor);
3857 unsigned int idx, num = VEC_length (constructor_elt, elts);
3858
3859 for (idx = 0; idx < num; idx++)
3860 {
3861 tree value = VEC_index (constructor_elt, elts, idx)->value;
3862 tree newval = value;
3863 if (TREE_CODE (value) == CONSTRUCTOR)
3864 newval = optimize_compound_literals_in_ctor (value);
3865 else if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
3866 {
3867 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (value);
3868 tree decl = DECL_EXPR_DECL (decl_s);
3869 tree init = DECL_INITIAL (decl);
3870
3871 if (!TREE_ADDRESSABLE (value)
3872 && !TREE_ADDRESSABLE (decl)
3873 && init)
3874 newval = optimize_compound_literals_in_ctor (init);
3875 }
3876 if (newval == value)
3877 continue;
3878
3879 if (ctor == orig_ctor)
3880 {
3881 ctor = copy_node (orig_ctor);
3882 CONSTRUCTOR_ELTS (ctor) = VEC_copy (constructor_elt, gc, elts);
3883 elts = CONSTRUCTOR_ELTS (ctor);
3884 }
3885 VEC_index (constructor_elt, elts, idx)->value = newval;
3886 }
3887 return ctor;
3888 }
3889
3890 /* A subroutine of gimplify_modify_expr. Break out elements of a
3891 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3892
3893 Note that we still need to clear any elements that don't have explicit
3894 initializers, so if not all elements are initialized we keep the
3895 original MODIFY_EXPR, we just remove all of the constructor elements.
3896
3897 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3898 GS_ERROR if we would have to create a temporary when gimplifying
3899 this constructor. Otherwise, return GS_OK.
3900
3901 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3902
3903 static enum gimplify_status
3904 gimplify_init_constructor (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3905 bool want_value, bool notify_temp_creation)
3906 {
3907 tree object, ctor, type;
3908 enum gimplify_status ret;
3909 VEC(constructor_elt,gc) *elts;
3910
3911 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == CONSTRUCTOR);
3912
3913 if (!notify_temp_creation)
3914 {
3915 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3916 is_gimple_lvalue, fb_lvalue);
3917 if (ret == GS_ERROR)
3918 return ret;
3919 }
3920
3921 object = TREE_OPERAND (*expr_p, 0);
3922 ctor = TREE_OPERAND (*expr_p, 1) =
3923 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p, 1));
3924 type = TREE_TYPE (ctor);
3925 elts = CONSTRUCTOR_ELTS (ctor);
3926 ret = GS_ALL_DONE;
3927
3928 switch (TREE_CODE (type))
3929 {
3930 case RECORD_TYPE:
3931 case UNION_TYPE:
3932 case QUAL_UNION_TYPE:
3933 case ARRAY_TYPE:
3934 {
3935 struct gimplify_init_ctor_preeval_data preeval_data;
3936 HOST_WIDE_INT num_ctor_elements, num_nonzero_elements;
3937 bool cleared, complete_p, valid_const_initializer;
3938
3939 /* Aggregate types must lower constructors to initialization of
3940 individual elements. The exception is that a CONSTRUCTOR node
3941 with no elements indicates zero-initialization of the whole. */
3942 if (VEC_empty (constructor_elt, elts))
3943 {
3944 if (notify_temp_creation)
3945 return GS_OK;
3946 break;
3947 }
3948
3949 /* Fetch information about the constructor to direct later processing.
3950 We might want to make static versions of it in various cases, and
3951 can only do so if it known to be a valid constant initializer. */
3952 valid_const_initializer
3953 = categorize_ctor_elements (ctor, &num_nonzero_elements,
3954 &num_ctor_elements, &complete_p);
3955
3956 /* If a const aggregate variable is being initialized, then it
3957 should never be a lose to promote the variable to be static. */
3958 if (valid_const_initializer
3959 && num_nonzero_elements > 1
3960 && TREE_READONLY (object)
3961 && TREE_CODE (object) == VAR_DECL
3962 && (flag_merge_constants >= 2 || !TREE_ADDRESSABLE (object)))
3963 {
3964 if (notify_temp_creation)
3965 return GS_ERROR;
3966 DECL_INITIAL (object) = ctor;
3967 TREE_STATIC (object) = 1;
3968 if (!DECL_NAME (object))
3969 DECL_NAME (object) = create_tmp_var_name ("C");
3970 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3971
3972 /* ??? C++ doesn't automatically append a .<number> to the
3973 assembler name, and even when it does, it looks a FE private
3974 data structures to figure out what that number should be,
3975 which are not set for this variable. I suppose this is
3976 important for local statics for inline functions, which aren't
3977 "local" in the object file sense. So in order to get a unique
3978 TU-local symbol, we must invoke the lhd version now. */
3979 lhd_set_decl_assembler_name (object);
3980
3981 *expr_p = NULL_TREE;
3982 break;
3983 }
3984
3985 /* If there are "lots" of initialized elements, even discounting
3986 those that are not address constants (and thus *must* be
3987 computed at runtime), then partition the constructor into
3988 constant and non-constant parts. Block copy the constant
3989 parts in, then generate code for the non-constant parts. */
3990 /* TODO. There's code in cp/typeck.c to do this. */
3991
3992 if (int_size_in_bytes (TREE_TYPE (ctor)) < 0)
3993 /* store_constructor will ignore the clearing of variable-sized
3994 objects. Initializers for such objects must explicitly set
3995 every field that needs to be set. */
3996 cleared = false;
3997 else if (!complete_p)
3998 /* If the constructor isn't complete, clear the whole object
3999 beforehand.
4000
4001 ??? This ought not to be needed. For any element not present
4002 in the initializer, we should simply set them to zero. Except
4003 we'd need to *find* the elements that are not present, and that
4004 requires trickery to avoid quadratic compile-time behavior in
4005 large cases or excessive memory use in small cases. */
4006 cleared = true;
4007 else if (num_ctor_elements - num_nonzero_elements
4008 > CLEAR_RATIO (optimize_function_for_speed_p (cfun))
4009 && num_nonzero_elements < num_ctor_elements / 4)
4010 /* If there are "lots" of zeros, it's more efficient to clear
4011 the memory and then set the nonzero elements. */
4012 cleared = true;
4013 else
4014 cleared = false;
4015
4016 /* If there are "lots" of initialized elements, and all of them
4017 are valid address constants, then the entire initializer can
4018 be dropped to memory, and then memcpy'd out. Don't do this
4019 for sparse arrays, though, as it's more efficient to follow
4020 the standard CONSTRUCTOR behavior of memset followed by
4021 individual element initialization. Also don't do this for small
4022 all-zero initializers (which aren't big enough to merit
4023 clearing), and don't try to make bitwise copies of
4024 TREE_ADDRESSABLE types. */
4025 if (valid_const_initializer
4026 && !(cleared || num_nonzero_elements == 0)
4027 && !TREE_ADDRESSABLE (type))
4028 {
4029 HOST_WIDE_INT size = int_size_in_bytes (type);
4030 unsigned int align;
4031
4032 /* ??? We can still get unbounded array types, at least
4033 from the C++ front end. This seems wrong, but attempt
4034 to work around it for now. */
4035 if (size < 0)
4036 {
4037 size = int_size_in_bytes (TREE_TYPE (object));
4038 if (size >= 0)
4039 TREE_TYPE (ctor) = type = TREE_TYPE (object);
4040 }
4041
4042 /* Find the maximum alignment we can assume for the object. */
4043 /* ??? Make use of DECL_OFFSET_ALIGN. */
4044 if (DECL_P (object))
4045 align = DECL_ALIGN (object);
4046 else
4047 align = TYPE_ALIGN (type);
4048
4049 /* Do a block move either if the size is so small as to make
4050 each individual move a sub-unit move on average, or if it
4051 is so large as to make individual moves inefficient. */
4052 if (size > 0
4053 && num_nonzero_elements > 1
4054 && (size < num_nonzero_elements
4055 || !can_move_by_pieces (size, align)))
4056 {
4057 if (notify_temp_creation)
4058 return GS_ERROR;
4059
4060 walk_tree (&ctor, force_labels_r, NULL, NULL);
4061 ctor = tree_output_constant_def (ctor);
4062 if (!useless_type_conversion_p (type, TREE_TYPE (ctor)))
4063 ctor = build1 (VIEW_CONVERT_EXPR, type, ctor);
4064 TREE_OPERAND (*expr_p, 1) = ctor;
4065
4066 /* This is no longer an assignment of a CONSTRUCTOR, but
4067 we still may have processing to do on the LHS. So
4068 pretend we didn't do anything here to let that happen. */
4069 return GS_UNHANDLED;
4070 }
4071 }
4072
4073 /* If the target is volatile, we have non-zero elements and more than
4074 one field to assign, initialize the target from a temporary. */
4075 if (TREE_THIS_VOLATILE (object)
4076 && !TREE_ADDRESSABLE (type)
4077 && num_nonzero_elements > 0
4078 && VEC_length (constructor_elt, elts) > 1)
4079 {
4080 tree temp = create_tmp_var (TYPE_MAIN_VARIANT (type), NULL);
4081 TREE_OPERAND (*expr_p, 0) = temp;
4082 *expr_p = build2 (COMPOUND_EXPR, TREE_TYPE (*expr_p),
4083 *expr_p,
4084 build2 (MODIFY_EXPR, void_type_node,
4085 object, temp));
4086 return GS_OK;
4087 }
4088
4089 if (notify_temp_creation)
4090 return GS_OK;
4091
4092 /* If there are nonzero elements and if needed, pre-evaluate to capture
4093 elements overlapping with the lhs into temporaries. We must do this
4094 before clearing to fetch the values before they are zeroed-out. */
4095 if (num_nonzero_elements > 0 && TREE_CODE (*expr_p) != INIT_EXPR)
4096 {
4097 preeval_data.lhs_base_decl = get_base_address (object);
4098 if (!DECL_P (preeval_data.lhs_base_decl))
4099 preeval_data.lhs_base_decl = NULL;
4100 preeval_data.lhs_alias_set = get_alias_set (object);
4101
4102 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
4103 pre_p, post_p, &preeval_data);
4104 }
4105
4106 if (cleared)
4107 {
4108 /* Zap the CONSTRUCTOR element list, which simplifies this case.
4109 Note that we still have to gimplify, in order to handle the
4110 case of variable sized types. Avoid shared tree structures. */
4111 CONSTRUCTOR_ELTS (ctor) = NULL;
4112 TREE_SIDE_EFFECTS (ctor) = 0;
4113 object = unshare_expr (object);
4114 gimplify_stmt (expr_p, pre_p);
4115 }
4116
4117 /* If we have not block cleared the object, or if there are nonzero
4118 elements in the constructor, add assignments to the individual
4119 scalar fields of the object. */
4120 if (!cleared || num_nonzero_elements > 0)
4121 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
4122
4123 *expr_p = NULL_TREE;
4124 }
4125 break;
4126
4127 case COMPLEX_TYPE:
4128 {
4129 tree r, i;
4130
4131 if (notify_temp_creation)
4132 return GS_OK;
4133
4134 /* Extract the real and imaginary parts out of the ctor. */
4135 gcc_assert (VEC_length (constructor_elt, elts) == 2);
4136 r = VEC_index (constructor_elt, elts, 0)->value;
4137 i = VEC_index (constructor_elt, elts, 1)->value;
4138 if (r == NULL || i == NULL)
4139 {
4140 tree zero = build_zero_cst (TREE_TYPE (type));
4141 if (r == NULL)
4142 r = zero;
4143 if (i == NULL)
4144 i = zero;
4145 }
4146
4147 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
4148 represent creation of a complex value. */
4149 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
4150 {
4151 ctor = build_complex (type, r, i);
4152 TREE_OPERAND (*expr_p, 1) = ctor;
4153 }
4154 else
4155 {
4156 ctor = build2 (COMPLEX_EXPR, type, r, i);
4157 TREE_OPERAND (*expr_p, 1) = ctor;
4158 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1),
4159 pre_p,
4160 post_p,
4161 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
4162 fb_rvalue);
4163 }
4164 }
4165 break;
4166
4167 case VECTOR_TYPE:
4168 {
4169 unsigned HOST_WIDE_INT ix;
4170 constructor_elt *ce;
4171
4172 if (notify_temp_creation)
4173 return GS_OK;
4174
4175 /* Go ahead and simplify constant constructors to VECTOR_CST. */
4176 if (TREE_CONSTANT (ctor))
4177 {
4178 bool constant_p = true;
4179 tree value;
4180
4181 /* Even when ctor is constant, it might contain non-*_CST
4182 elements, such as addresses or trapping values like
4183 1.0/0.0 - 1.0/0.0. Such expressions don't belong
4184 in VECTOR_CST nodes. */
4185 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
4186 if (!CONSTANT_CLASS_P (value))
4187 {
4188 constant_p = false;
4189 break;
4190 }
4191
4192 if (constant_p)
4193 {
4194 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
4195 break;
4196 }
4197
4198 /* Don't reduce an initializer constant even if we can't
4199 make a VECTOR_CST. It won't do anything for us, and it'll
4200 prevent us from representing it as a single constant. */
4201 if (initializer_constant_valid_p (ctor, type))
4202 break;
4203
4204 TREE_CONSTANT (ctor) = 0;
4205 }
4206
4207 /* Vector types use CONSTRUCTOR all the way through gimple
4208 compilation as a general initializer. */
4209 FOR_EACH_VEC_ELT (constructor_elt, elts, ix, ce)
4210 {
4211 enum gimplify_status tret;
4212 tret = gimplify_expr (&ce->value, pre_p, post_p, is_gimple_val,
4213 fb_rvalue);
4214 if (tret == GS_ERROR)
4215 ret = GS_ERROR;
4216 }
4217 if (!is_gimple_reg (TREE_OPERAND (*expr_p, 0)))
4218 TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
4219 }
4220 break;
4221
4222 default:
4223 /* So how did we get a CONSTRUCTOR for a scalar type? */
4224 gcc_unreachable ();
4225 }
4226
4227 if (ret == GS_ERROR)
4228 return GS_ERROR;
4229 else if (want_value)
4230 {
4231 *expr_p = object;
4232 return GS_OK;
4233 }
4234 else
4235 {
4236 /* If we have gimplified both sides of the initializer but have
4237 not emitted an assignment, do so now. */
4238 if (*expr_p)
4239 {
4240 tree lhs = TREE_OPERAND (*expr_p, 0);
4241 tree rhs = TREE_OPERAND (*expr_p, 1);
4242 gimple init = gimple_build_assign (lhs, rhs);
4243 gimplify_seq_add_stmt (pre_p, init);
4244 *expr_p = NULL;
4245 }
4246
4247 return GS_ALL_DONE;
4248 }
4249 }
4250
4251 /* Given a pointer value OP0, return a simplified version of an
4252 indirection through OP0, or NULL_TREE if no simplification is
4253 possible. Note that the resulting type may be different from
4254 the type pointed to in the sense that it is still compatible
4255 from the langhooks point of view. */
4256
4257 tree
4258 gimple_fold_indirect_ref (tree t)
4259 {
4260 tree ptype = TREE_TYPE (t), type = TREE_TYPE (ptype);
4261 tree sub = t;
4262 tree subtype;
4263
4264 STRIP_NOPS (sub);
4265 subtype = TREE_TYPE (sub);
4266 if (!POINTER_TYPE_P (subtype))
4267 return NULL_TREE;
4268
4269 if (TREE_CODE (sub) == ADDR_EXPR)
4270 {
4271 tree op = TREE_OPERAND (sub, 0);
4272 tree optype = TREE_TYPE (op);
4273 /* *&p => p */
4274 if (useless_type_conversion_p (type, optype))
4275 return op;
4276
4277 /* *(foo *)&fooarray => fooarray[0] */
4278 if (TREE_CODE (optype) == ARRAY_TYPE
4279 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype))) == INTEGER_CST
4280 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4281 {
4282 tree type_domain = TYPE_DOMAIN (optype);
4283 tree min_val = size_zero_node;
4284 if (type_domain && TYPE_MIN_VALUE (type_domain))
4285 min_val = TYPE_MIN_VALUE (type_domain);
4286 if (TREE_CODE (min_val) == INTEGER_CST)
4287 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
4288 }
4289 /* *(foo *)&complexfoo => __real__ complexfoo */
4290 else if (TREE_CODE (optype) == COMPLEX_TYPE
4291 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4292 return fold_build1 (REALPART_EXPR, type, op);
4293 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4294 else if (TREE_CODE (optype) == VECTOR_TYPE
4295 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4296 {
4297 tree part_width = TYPE_SIZE (type);
4298 tree index = bitsize_int (0);
4299 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
4300 }
4301 }
4302
4303 /* *(p + CST) -> ... */
4304 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
4305 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
4306 {
4307 tree addr = TREE_OPERAND (sub, 0);
4308 tree off = TREE_OPERAND (sub, 1);
4309 tree addrtype;
4310
4311 STRIP_NOPS (addr);
4312 addrtype = TREE_TYPE (addr);
4313
4314 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4315 if (TREE_CODE (addr) == ADDR_EXPR
4316 && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
4317 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
4318 && host_integerp (off, 1))
4319 {
4320 unsigned HOST_WIDE_INT offset = tree_low_cst (off, 1);
4321 tree part_width = TYPE_SIZE (type);
4322 unsigned HOST_WIDE_INT part_widthi
4323 = tree_low_cst (part_width, 0) / BITS_PER_UNIT;
4324 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
4325 tree index = bitsize_int (indexi);
4326 if (offset / part_widthi
4327 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype)))
4328 return fold_build3 (BIT_FIELD_REF, type, TREE_OPERAND (addr, 0),
4329 part_width, index);
4330 }
4331
4332 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4333 if (TREE_CODE (addr) == ADDR_EXPR
4334 && TREE_CODE (TREE_TYPE (addrtype)) == COMPLEX_TYPE
4335 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
4336 {
4337 tree size = TYPE_SIZE_UNIT (type);
4338 if (tree_int_cst_equal (size, off))
4339 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (addr, 0));
4340 }
4341
4342 /* *(p + CST) -> MEM_REF <p, CST>. */
4343 if (TREE_CODE (addr) != ADDR_EXPR
4344 || DECL_P (TREE_OPERAND (addr, 0)))
4345 return fold_build2 (MEM_REF, type,
4346 addr,
4347 build_int_cst_wide (ptype,
4348 TREE_INT_CST_LOW (off),
4349 TREE_INT_CST_HIGH (off)));
4350 }
4351
4352 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4353 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
4354 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype)))) == INTEGER_CST
4355 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
4356 {
4357 tree type_domain;
4358 tree min_val = size_zero_node;
4359 tree osub = sub;
4360 sub = gimple_fold_indirect_ref (sub);
4361 if (! sub)
4362 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
4363 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
4364 if (type_domain && TYPE_MIN_VALUE (type_domain))
4365 min_val = TYPE_MIN_VALUE (type_domain);
4366 if (TREE_CODE (min_val) == INTEGER_CST)
4367 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
4368 }
4369
4370 return NULL_TREE;
4371 }
4372
4373 /* Given a pointer value OP0, return a simplified version of an
4374 indirection through OP0, or NULL_TREE if no simplification is
4375 possible. This may only be applied to a rhs of an expression.
4376 Note that the resulting type may be different from the type pointed
4377 to in the sense that it is still compatible from the langhooks
4378 point of view. */
4379
4380 static tree
4381 gimple_fold_indirect_ref_rhs (tree t)
4382 {
4383 return gimple_fold_indirect_ref (t);
4384 }
4385
4386 /* Subroutine of gimplify_modify_expr to do simplifications of
4387 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4388 something changes. */
4389
4390 static enum gimplify_status
4391 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p,
4392 gimple_seq *pre_p, gimple_seq *post_p,
4393 bool want_value)
4394 {
4395 enum gimplify_status ret = GS_UNHANDLED;
4396 bool changed;
4397
4398 do
4399 {
4400 changed = false;
4401 switch (TREE_CODE (*from_p))
4402 {
4403 case VAR_DECL:
4404 /* If we're assigning from a read-only variable initialized with
4405 a constructor, do the direct assignment from the constructor,
4406 but only if neither source nor target are volatile since this
4407 latter assignment might end up being done on a per-field basis. */
4408 if (DECL_INITIAL (*from_p)
4409 && TREE_READONLY (*from_p)
4410 && !TREE_THIS_VOLATILE (*from_p)
4411 && !TREE_THIS_VOLATILE (*to_p)
4412 && TREE_CODE (DECL_INITIAL (*from_p)) == CONSTRUCTOR)
4413 {
4414 tree old_from = *from_p;
4415 enum gimplify_status subret;
4416
4417 /* Move the constructor into the RHS. */
4418 *from_p = unshare_expr (DECL_INITIAL (*from_p));
4419
4420 /* Let's see if gimplify_init_constructor will need to put
4421 it in memory. */
4422 subret = gimplify_init_constructor (expr_p, NULL, NULL,
4423 false, true);
4424 if (subret == GS_ERROR)
4425 {
4426 /* If so, revert the change. */
4427 *from_p = old_from;
4428 }
4429 else
4430 {
4431 ret = GS_OK;
4432 changed = true;
4433 }
4434 }
4435 break;
4436 case INDIRECT_REF:
4437 {
4438 /* If we have code like
4439
4440 *(const A*)(A*)&x
4441
4442 where the type of "x" is a (possibly cv-qualified variant
4443 of "A"), treat the entire expression as identical to "x".
4444 This kind of code arises in C++ when an object is bound
4445 to a const reference, and if "x" is a TARGET_EXPR we want
4446 to take advantage of the optimization below. */
4447 bool volatile_p = TREE_THIS_VOLATILE (*from_p);
4448 tree t = gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
4449 if (t)
4450 {
4451 if (TREE_THIS_VOLATILE (t) != volatile_p)
4452 {
4453 if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
4454 t = build_simple_mem_ref_loc (EXPR_LOCATION (*from_p),
4455 build_fold_addr_expr (t));
4456 if (REFERENCE_CLASS_P (t))
4457 TREE_THIS_VOLATILE (t) = volatile_p;
4458 }
4459 *from_p = t;
4460 ret = GS_OK;
4461 changed = true;
4462 }
4463 break;
4464 }
4465
4466 case TARGET_EXPR:
4467 {
4468 /* If we are initializing something from a TARGET_EXPR, strip the
4469 TARGET_EXPR and initialize it directly, if possible. This can't
4470 be done if the initializer is void, since that implies that the
4471 temporary is set in some non-trivial way.
4472
4473 ??? What about code that pulls out the temp and uses it
4474 elsewhere? I think that such code never uses the TARGET_EXPR as
4475 an initializer. If I'm wrong, we'll die because the temp won't
4476 have any RTL. In that case, I guess we'll need to replace
4477 references somehow. */
4478 tree init = TARGET_EXPR_INITIAL (*from_p);
4479
4480 if (init
4481 && !VOID_TYPE_P (TREE_TYPE (init)))
4482 {
4483 *from_p = init;
4484 ret = GS_OK;
4485 changed = true;
4486 }
4487 }
4488 break;
4489
4490 case COMPOUND_EXPR:
4491 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4492 caught. */
4493 gimplify_compound_expr (from_p, pre_p, true);
4494 ret = GS_OK;
4495 changed = true;
4496 break;
4497
4498 case CONSTRUCTOR:
4499 /* If we already made some changes, let the front end have a
4500 crack at this before we break it down. */
4501 if (ret != GS_UNHANDLED)
4502 break;
4503 /* If we're initializing from a CONSTRUCTOR, break this into
4504 individual MODIFY_EXPRs. */
4505 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value,
4506 false);
4507
4508 case COND_EXPR:
4509 /* If we're assigning to a non-register type, push the assignment
4510 down into the branches. This is mandatory for ADDRESSABLE types,
4511 since we cannot generate temporaries for such, but it saves a
4512 copy in other cases as well. */
4513 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
4514 {
4515 /* This code should mirror the code in gimplify_cond_expr. */
4516 enum tree_code code = TREE_CODE (*expr_p);
4517 tree cond = *from_p;
4518 tree result = *to_p;
4519
4520 ret = gimplify_expr (&result, pre_p, post_p,
4521 is_gimple_lvalue, fb_lvalue);
4522 if (ret != GS_ERROR)
4523 ret = GS_OK;
4524
4525 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
4526 TREE_OPERAND (cond, 1)
4527 = build2 (code, void_type_node, result,
4528 TREE_OPERAND (cond, 1));
4529 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
4530 TREE_OPERAND (cond, 2)
4531 = build2 (code, void_type_node, unshare_expr (result),
4532 TREE_OPERAND (cond, 2));
4533
4534 TREE_TYPE (cond) = void_type_node;
4535 recalculate_side_effects (cond);
4536
4537 if (want_value)
4538 {
4539 gimplify_and_add (cond, pre_p);
4540 *expr_p = unshare_expr (result);
4541 }
4542 else
4543 *expr_p = cond;
4544 return ret;
4545 }
4546 break;
4547
4548 case CALL_EXPR:
4549 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4550 return slot so that we don't generate a temporary. */
4551 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
4552 && aggregate_value_p (*from_p, *from_p))
4553 {
4554 bool use_target;
4555
4556 if (!(rhs_predicate_for (*to_p))(*from_p))
4557 /* If we need a temporary, *to_p isn't accurate. */
4558 use_target = false;
4559 /* It's OK to use the return slot directly unless it's an NRV. */
4560 else if (TREE_CODE (*to_p) == RESULT_DECL
4561 && DECL_NAME (*to_p) == NULL_TREE
4562 && needs_to_live_in_memory (*to_p))
4563 use_target = true;
4564 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
4565 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
4566 /* Don't force regs into memory. */
4567 use_target = false;
4568 else if (TREE_CODE (*expr_p) == INIT_EXPR)
4569 /* It's OK to use the target directly if it's being
4570 initialized. */
4571 use_target = true;
4572 else if (variably_modified_type_p (TREE_TYPE (*to_p), NULL_TREE))
4573 /* Always use the target and thus RSO for variable-sized types.
4574 GIMPLE cannot deal with a variable-sized assignment
4575 embedded in a call statement. */
4576 use_target = true;
4577 else if (TREE_CODE (*to_p) != SSA_NAME
4578 && (!is_gimple_variable (*to_p)
4579 || needs_to_live_in_memory (*to_p)))
4580 /* Don't use the original target if it's already addressable;
4581 if its address escapes, and the called function uses the
4582 NRV optimization, a conforming program could see *to_p
4583 change before the called function returns; see c++/19317.
4584 When optimizing, the return_slot pass marks more functions
4585 as safe after we have escape info. */
4586 use_target = false;
4587 else
4588 use_target = true;
4589
4590 if (use_target)
4591 {
4592 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
4593 mark_addressable (*to_p);
4594 }
4595 }
4596 break;
4597
4598 case WITH_SIZE_EXPR:
4599 /* Likewise for calls that return an aggregate of non-constant size,
4600 since we would not be able to generate a temporary at all. */
4601 if (TREE_CODE (TREE_OPERAND (*from_p, 0)) == CALL_EXPR)
4602 {
4603 *from_p = TREE_OPERAND (*from_p, 0);
4604 /* We don't change ret in this case because the
4605 WITH_SIZE_EXPR might have been added in
4606 gimplify_modify_expr, so returning GS_OK would lead to an
4607 infinite loop. */
4608 changed = true;
4609 }
4610 break;
4611
4612 /* If we're initializing from a container, push the initialization
4613 inside it. */
4614 case CLEANUP_POINT_EXPR:
4615 case BIND_EXPR:
4616 case STATEMENT_LIST:
4617 {
4618 tree wrap = *from_p;
4619 tree t;
4620
4621 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_min_lval,
4622 fb_lvalue);
4623 if (ret != GS_ERROR)
4624 ret = GS_OK;
4625
4626 t = voidify_wrapper_expr (wrap, *expr_p);
4627 gcc_assert (t == *expr_p);
4628
4629 if (want_value)
4630 {
4631 gimplify_and_add (wrap, pre_p);
4632 *expr_p = unshare_expr (*to_p);
4633 }
4634 else
4635 *expr_p = wrap;
4636 return GS_OK;
4637 }
4638
4639 case COMPOUND_LITERAL_EXPR:
4640 {
4641 tree complit = TREE_OPERAND (*expr_p, 1);
4642 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (complit);
4643 tree decl = DECL_EXPR_DECL (decl_s);
4644 tree init = DECL_INITIAL (decl);
4645
4646 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4647 into struct T x = { 0, 1, 2 } if the address of the
4648 compound literal has never been taken. */
4649 if (!TREE_ADDRESSABLE (complit)
4650 && !TREE_ADDRESSABLE (decl)
4651 && init)
4652 {
4653 *expr_p = copy_node (*expr_p);
4654 TREE_OPERAND (*expr_p, 1) = init;
4655 return GS_OK;
4656 }
4657 }
4658
4659 default:
4660 break;
4661 }
4662 }
4663 while (changed);
4664
4665 return ret;
4666 }
4667
4668
4669 /* Return true if T looks like a valid GIMPLE statement. */
4670
4671 static bool
4672 is_gimple_stmt (tree t)
4673 {
4674 const enum tree_code code = TREE_CODE (t);
4675
4676 switch (code)
4677 {
4678 case NOP_EXPR:
4679 /* The only valid NOP_EXPR is the empty statement. */
4680 return IS_EMPTY_STMT (t);
4681
4682 case BIND_EXPR:
4683 case COND_EXPR:
4684 /* These are only valid if they're void. */
4685 return TREE_TYPE (t) == NULL || VOID_TYPE_P (TREE_TYPE (t));
4686
4687 case SWITCH_EXPR:
4688 case GOTO_EXPR:
4689 case RETURN_EXPR:
4690 case LABEL_EXPR:
4691 case CASE_LABEL_EXPR:
4692 case TRY_CATCH_EXPR:
4693 case TRY_FINALLY_EXPR:
4694 case EH_FILTER_EXPR:
4695 case CATCH_EXPR:
4696 case ASM_EXPR:
4697 case STATEMENT_LIST:
4698 case OMP_PARALLEL:
4699 case OMP_FOR:
4700 case OMP_SECTIONS:
4701 case OMP_SECTION:
4702 case OMP_SINGLE:
4703 case OMP_MASTER:
4704 case OMP_ORDERED:
4705 case OMP_CRITICAL:
4706 case OMP_TASK:
4707 /* These are always void. */
4708 return true;
4709
4710 case CALL_EXPR:
4711 case MODIFY_EXPR:
4712 case PREDICT_EXPR:
4713 /* These are valid regardless of their type. */
4714 return true;
4715
4716 default:
4717 return false;
4718 }
4719 }
4720
4721
4722 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4723 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4724 DECL_GIMPLE_REG_P set.
4725
4726 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4727 other, unmodified part of the complex object just before the total store.
4728 As a consequence, if the object is still uninitialized, an undefined value
4729 will be loaded into a register, which may result in a spurious exception
4730 if the register is floating-point and the value happens to be a signaling
4731 NaN for example. Then the fully-fledged complex operations lowering pass
4732 followed by a DCE pass are necessary in order to fix things up. */
4733
4734 static enum gimplify_status
4735 gimplify_modify_expr_complex_part (tree *expr_p, gimple_seq *pre_p,
4736 bool want_value)
4737 {
4738 enum tree_code code, ocode;
4739 tree lhs, rhs, new_rhs, other, realpart, imagpart;
4740
4741 lhs = TREE_OPERAND (*expr_p, 0);
4742 rhs = TREE_OPERAND (*expr_p, 1);
4743 code = TREE_CODE (lhs);
4744 lhs = TREE_OPERAND (lhs, 0);
4745
4746 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
4747 other = build1 (ocode, TREE_TYPE (rhs), lhs);
4748 TREE_NO_WARNING (other) = 1;
4749 other = get_formal_tmp_var (other, pre_p);
4750
4751 realpart = code == REALPART_EXPR ? rhs : other;
4752 imagpart = code == REALPART_EXPR ? other : rhs;
4753
4754 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
4755 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
4756 else
4757 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
4758
4759 gimplify_seq_add_stmt (pre_p, gimple_build_assign (lhs, new_rhs));
4760 *expr_p = (want_value) ? rhs : NULL_TREE;
4761
4762 return GS_ALL_DONE;
4763 }
4764
4765 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4766
4767 modify_expr
4768 : varname '=' rhs
4769 | '*' ID '=' rhs
4770
4771 PRE_P points to the list where side effects that must happen before
4772 *EXPR_P should be stored.
4773
4774 POST_P points to the list where side effects that must happen after
4775 *EXPR_P should be stored.
4776
4777 WANT_VALUE is nonzero iff we want to use the value of this expression
4778 in another expression. */
4779
4780 static enum gimplify_status
4781 gimplify_modify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
4782 bool want_value)
4783 {
4784 tree *from_p = &TREE_OPERAND (*expr_p, 1);
4785 tree *to_p = &TREE_OPERAND (*expr_p, 0);
4786 enum gimplify_status ret = GS_UNHANDLED;
4787 gimple assign;
4788 location_t loc = EXPR_LOCATION (*expr_p);
4789 gimple_stmt_iterator gsi;
4790
4791 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
4792 || TREE_CODE (*expr_p) == INIT_EXPR);
4793
4794 /* Trying to simplify a clobber using normal logic doesn't work,
4795 so handle it here. */
4796 if (TREE_CLOBBER_P (*from_p))
4797 {
4798 gcc_assert (!want_value && TREE_CODE (*to_p) == VAR_DECL);
4799 gimplify_seq_add_stmt (pre_p, gimple_build_assign (*to_p, *from_p));
4800 *expr_p = NULL;
4801 return GS_ALL_DONE;
4802 }
4803
4804 /* Insert pointer conversions required by the middle-end that are not
4805 required by the frontend. This fixes middle-end type checking for
4806 for example gcc.dg/redecl-6.c. */
4807 if (POINTER_TYPE_P (TREE_TYPE (*to_p)))
4808 {
4809 STRIP_USELESS_TYPE_CONVERSION (*from_p);
4810 if (!useless_type_conversion_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
4811 *from_p = fold_convert_loc (loc, TREE_TYPE (*to_p), *from_p);
4812 }
4813
4814 /* See if any simplifications can be done based on what the RHS is. */
4815 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4816 want_value);
4817 if (ret != GS_UNHANDLED)
4818 return ret;
4819
4820 /* For zero sized types only gimplify the left hand side and right hand
4821 side as statements and throw away the assignment. Do this after
4822 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4823 types properly. */
4824 if (zero_sized_type (TREE_TYPE (*from_p)) && !want_value)
4825 {
4826 gimplify_stmt (from_p, pre_p);
4827 gimplify_stmt (to_p, pre_p);
4828 *expr_p = NULL_TREE;
4829 return GS_ALL_DONE;
4830 }
4831
4832 /* If the value being copied is of variable width, compute the length
4833 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4834 before gimplifying any of the operands so that we can resolve any
4835 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4836 the size of the expression to be copied, not of the destination, so
4837 that is what we must do here. */
4838 maybe_with_size_expr (from_p);
4839
4840 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4841 if (ret == GS_ERROR)
4842 return ret;
4843
4844 /* As a special case, we have to temporarily allow for assignments
4845 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4846 a toplevel statement, when gimplifying the GENERIC expression
4847 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4848 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4849
4850 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4851 prevent gimplify_expr from trying to create a new temporary for
4852 foo's LHS, we tell it that it should only gimplify until it
4853 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4854 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4855 and all we need to do here is set 'a' to be its LHS. */
4856 ret = gimplify_expr (from_p, pre_p, post_p, rhs_predicate_for (*to_p),
4857 fb_rvalue);
4858 if (ret == GS_ERROR)
4859 return ret;
4860
4861 /* Now see if the above changed *from_p to something we handle specially. */
4862 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4863 want_value);
4864 if (ret != GS_UNHANDLED)
4865 return ret;
4866
4867 /* If we've got a variable sized assignment between two lvalues (i.e. does
4868 not involve a call), then we can make things a bit more straightforward
4869 by converting the assignment to memcpy or memset. */
4870 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
4871 {
4872 tree from = TREE_OPERAND (*from_p, 0);
4873 tree size = TREE_OPERAND (*from_p, 1);
4874
4875 if (TREE_CODE (from) == CONSTRUCTOR)
4876 return gimplify_modify_expr_to_memset (expr_p, size, want_value, pre_p);
4877
4878 if (is_gimple_addressable (from))
4879 {
4880 *from_p = from;
4881 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value,
4882 pre_p);
4883 }
4884 }
4885
4886 /* Transform partial stores to non-addressable complex variables into
4887 total stores. This allows us to use real instead of virtual operands
4888 for these variables, which improves optimization. */
4889 if ((TREE_CODE (*to_p) == REALPART_EXPR
4890 || TREE_CODE (*to_p) == IMAGPART_EXPR)
4891 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
4892 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
4893
4894 /* Try to alleviate the effects of the gimplification creating artificial
4895 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4896 if (!gimplify_ctxp->into_ssa
4897 && TREE_CODE (*from_p) == VAR_DECL
4898 && DECL_IGNORED_P (*from_p)
4899 && DECL_P (*to_p)
4900 && !DECL_IGNORED_P (*to_p))
4901 {
4902 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
4903 DECL_NAME (*from_p)
4904 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
4905 DECL_DEBUG_EXPR_IS_FROM (*from_p) = 1;
4906 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
4907 }
4908
4909 if (want_value && TREE_THIS_VOLATILE (*to_p))
4910 *from_p = get_initialized_tmp_var (*from_p, pre_p, post_p);
4911
4912 if (TREE_CODE (*from_p) == CALL_EXPR)
4913 {
4914 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4915 instead of a GIMPLE_ASSIGN. */
4916 tree fnptrtype = TREE_TYPE (CALL_EXPR_FN (*from_p));
4917 CALL_EXPR_FN (*from_p) = TREE_OPERAND (CALL_EXPR_FN (*from_p), 0);
4918 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p));
4919 assign = gimple_build_call_from_tree (*from_p);
4920 gimple_call_set_fntype (assign, TREE_TYPE (fnptrtype));
4921 if (!gimple_call_noreturn_p (assign))
4922 gimple_call_set_lhs (assign, *to_p);
4923 }
4924 else
4925 {
4926 assign = gimple_build_assign (*to_p, *from_p);
4927 gimple_set_location (assign, EXPR_LOCATION (*expr_p));
4928 }
4929
4930 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
4931 {
4932 /* If we've somehow already got an SSA_NAME on the LHS, then
4933 we've probably modified it twice. Not good. */
4934 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
4935 *to_p = make_ssa_name (*to_p, assign);
4936 gimple_set_lhs (assign, *to_p);
4937 }
4938
4939 gimplify_seq_add_stmt (pre_p, assign);
4940 gsi = gsi_last (*pre_p);
4941 fold_stmt (&gsi);
4942
4943 if (want_value)
4944 {
4945 *expr_p = TREE_THIS_VOLATILE (*to_p) ? *from_p : unshare_expr (*to_p);
4946 return GS_OK;
4947 }
4948 else
4949 *expr_p = NULL;
4950
4951 return GS_ALL_DONE;
4952 }
4953
4954 /* Gimplify a comparison between two variable-sized objects. Do this
4955 with a call to BUILT_IN_MEMCMP. */
4956
4957 static enum gimplify_status
4958 gimplify_variable_sized_compare (tree *expr_p)
4959 {
4960 location_t loc = EXPR_LOCATION (*expr_p);
4961 tree op0 = TREE_OPERAND (*expr_p, 0);
4962 tree op1 = TREE_OPERAND (*expr_p, 1);
4963 tree t, arg, dest, src, expr;
4964
4965 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
4966 arg = unshare_expr (arg);
4967 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
4968 src = build_fold_addr_expr_loc (loc, op1);
4969 dest = build_fold_addr_expr_loc (loc, op0);
4970 t = builtin_decl_implicit (BUILT_IN_MEMCMP);
4971 t = build_call_expr_loc (loc, t, 3, dest, src, arg);
4972
4973 expr
4974 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
4975 SET_EXPR_LOCATION (expr, loc);
4976 *expr_p = expr;
4977
4978 return GS_OK;
4979 }
4980
4981 /* Gimplify a comparison between two aggregate objects of integral scalar
4982 mode as a comparison between the bitwise equivalent scalar values. */
4983
4984 static enum gimplify_status
4985 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
4986 {
4987 location_t loc = EXPR_LOCATION (*expr_p);
4988 tree op0 = TREE_OPERAND (*expr_p, 0);
4989 tree op1 = TREE_OPERAND (*expr_p, 1);
4990
4991 tree type = TREE_TYPE (op0);
4992 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
4993
4994 op0 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op0);
4995 op1 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op1);
4996
4997 *expr_p
4998 = fold_build2_loc (loc, TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
4999
5000 return GS_OK;
5001 }
5002
5003 /* Gimplify an expression sequence. This function gimplifies each
5004 expression and rewrites the original expression with the last
5005 expression of the sequence in GIMPLE form.
5006
5007 PRE_P points to the list where the side effects for all the
5008 expressions in the sequence will be emitted.
5009
5010 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
5011
5012 static enum gimplify_status
5013 gimplify_compound_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
5014 {
5015 tree t = *expr_p;
5016
5017 do
5018 {
5019 tree *sub_p = &TREE_OPERAND (t, 0);
5020
5021 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
5022 gimplify_compound_expr (sub_p, pre_p, false);
5023 else
5024 gimplify_stmt (sub_p, pre_p);
5025
5026 t = TREE_OPERAND (t, 1);
5027 }
5028 while (TREE_CODE (t) == COMPOUND_EXPR);
5029
5030 *expr_p = t;
5031 if (want_value)
5032 return GS_OK;
5033 else
5034 {
5035 gimplify_stmt (expr_p, pre_p);
5036 return GS_ALL_DONE;
5037 }
5038 }
5039
5040 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
5041 gimplify. After gimplification, EXPR_P will point to a new temporary
5042 that holds the original value of the SAVE_EXPR node.
5043
5044 PRE_P points to the list where side effects that must happen before
5045 *EXPR_P should be stored. */
5046
5047 static enum gimplify_status
5048 gimplify_save_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5049 {
5050 enum gimplify_status ret = GS_ALL_DONE;
5051 tree val;
5052
5053 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
5054 val = TREE_OPERAND (*expr_p, 0);
5055
5056 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
5057 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
5058 {
5059 /* The operand may be a void-valued expression such as SAVE_EXPRs
5060 generated by the Java frontend for class initialization. It is
5061 being executed only for its side-effects. */
5062 if (TREE_TYPE (val) == void_type_node)
5063 {
5064 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5065 is_gimple_stmt, fb_none);
5066 val = NULL;
5067 }
5068 else
5069 val = get_initialized_tmp_var (val, pre_p, post_p);
5070
5071 TREE_OPERAND (*expr_p, 0) = val;
5072 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
5073 }
5074
5075 *expr_p = val;
5076
5077 return ret;
5078 }
5079
5080 /* Rewrite the ADDR_EXPR node pointed to by EXPR_P
5081
5082 unary_expr
5083 : ...
5084 | '&' varname
5085 ...
5086
5087 PRE_P points to the list where side effects that must happen before
5088 *EXPR_P should be stored.
5089
5090 POST_P points to the list where side effects that must happen after
5091 *EXPR_P should be stored. */
5092
5093 static enum gimplify_status
5094 gimplify_addr_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5095 {
5096 tree expr = *expr_p;
5097 tree op0 = TREE_OPERAND (expr, 0);
5098 enum gimplify_status ret;
5099 location_t loc = EXPR_LOCATION (*expr_p);
5100
5101 switch (TREE_CODE (op0))
5102 {
5103 case INDIRECT_REF:
5104 do_indirect_ref:
5105 /* Check if we are dealing with an expression of the form '&*ptr'.
5106 While the front end folds away '&*ptr' into 'ptr', these
5107 expressions may be generated internally by the compiler (e.g.,
5108 builtins like __builtin_va_end). */
5109 /* Caution: the silent array decomposition semantics we allow for
5110 ADDR_EXPR means we can't always discard the pair. */
5111 /* Gimplification of the ADDR_EXPR operand may drop
5112 cv-qualification conversions, so make sure we add them if
5113 needed. */
5114 {
5115 tree op00 = TREE_OPERAND (op0, 0);
5116 tree t_expr = TREE_TYPE (expr);
5117 tree t_op00 = TREE_TYPE (op00);
5118
5119 if (!useless_type_conversion_p (t_expr, t_op00))
5120 op00 = fold_convert_loc (loc, TREE_TYPE (expr), op00);
5121 *expr_p = op00;
5122 ret = GS_OK;
5123 }
5124 break;
5125
5126 case VIEW_CONVERT_EXPR:
5127 /* Take the address of our operand and then convert it to the type of
5128 this ADDR_EXPR.
5129
5130 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
5131 all clear. The impact of this transformation is even less clear. */
5132
5133 /* If the operand is a useless conversion, look through it. Doing so
5134 guarantees that the ADDR_EXPR and its operand will remain of the
5135 same type. */
5136 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
5137 op0 = TREE_OPERAND (op0, 0);
5138
5139 *expr_p = fold_convert_loc (loc, TREE_TYPE (expr),
5140 build_fold_addr_expr_loc (loc,
5141 TREE_OPERAND (op0, 0)));
5142 ret = GS_OK;
5143 break;
5144
5145 default:
5146 /* We use fb_either here because the C frontend sometimes takes
5147 the address of a call that returns a struct; see
5148 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
5149 the implied temporary explicit. */
5150
5151 /* Make the operand addressable. */
5152 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
5153 is_gimple_addressable, fb_either);
5154 if (ret == GS_ERROR)
5155 break;
5156
5157 /* Then mark it. Beware that it may not be possible to do so directly
5158 if a temporary has been created by the gimplification. */
5159 prepare_gimple_addressable (&TREE_OPERAND (expr, 0), pre_p);
5160
5161 op0 = TREE_OPERAND (expr, 0);
5162
5163 /* For various reasons, the gimplification of the expression
5164 may have made a new INDIRECT_REF. */
5165 if (TREE_CODE (op0) == INDIRECT_REF)
5166 goto do_indirect_ref;
5167
5168 mark_addressable (TREE_OPERAND (expr, 0));
5169
5170 /* The FEs may end up building ADDR_EXPRs early on a decl with
5171 an incomplete type. Re-build ADDR_EXPRs in canonical form
5172 here. */
5173 if (!types_compatible_p (TREE_TYPE (op0), TREE_TYPE (TREE_TYPE (expr))))
5174 *expr_p = build_fold_addr_expr (op0);
5175
5176 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
5177 recompute_tree_invariant_for_addr_expr (*expr_p);
5178
5179 /* If we re-built the ADDR_EXPR add a conversion to the original type
5180 if required. */
5181 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
5182 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
5183
5184 break;
5185 }
5186
5187 return ret;
5188 }
5189
5190 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
5191 value; output operands should be a gimple lvalue. */
5192
5193 static enum gimplify_status
5194 gimplify_asm_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5195 {
5196 tree expr;
5197 int noutputs;
5198 const char **oconstraints;
5199 int i;
5200 tree link;
5201 const char *constraint;
5202 bool allows_mem, allows_reg, is_inout;
5203 enum gimplify_status ret, tret;
5204 gimple stmt;
5205 VEC(tree, gc) *inputs;
5206 VEC(tree, gc) *outputs;
5207 VEC(tree, gc) *clobbers;
5208 VEC(tree, gc) *labels;
5209 tree link_next;
5210
5211 expr = *expr_p;
5212 noutputs = list_length (ASM_OUTPUTS (expr));
5213 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
5214
5215 inputs = outputs = clobbers = labels = NULL;
5216
5217 ret = GS_ALL_DONE;
5218 link_next = NULL_TREE;
5219 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = link_next)
5220 {
5221 bool ok;
5222 size_t constraint_len;
5223
5224 link_next = TREE_CHAIN (link);
5225
5226 oconstraints[i]
5227 = constraint
5228 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5229 constraint_len = strlen (constraint);
5230 if (constraint_len == 0)
5231 continue;
5232
5233 ok = parse_output_constraint (&constraint, i, 0, 0,
5234 &allows_mem, &allows_reg, &is_inout);
5235 if (!ok)
5236 {
5237 ret = GS_ERROR;
5238 is_inout = false;
5239 }
5240
5241 if (!allows_reg && allows_mem)
5242 mark_addressable (TREE_VALUE (link));
5243
5244 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5245 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
5246 fb_lvalue | fb_mayfail);
5247 if (tret == GS_ERROR)
5248 {
5249 error ("invalid lvalue in asm output %d", i);
5250 ret = tret;
5251 }
5252
5253 VEC_safe_push (tree, gc, outputs, link);
5254 TREE_CHAIN (link) = NULL_TREE;
5255
5256 if (is_inout)
5257 {
5258 /* An input/output operand. To give the optimizers more
5259 flexibility, split it into separate input and output
5260 operands. */
5261 tree input;
5262 char buf[10];
5263
5264 /* Turn the in/out constraint into an output constraint. */
5265 char *p = xstrdup (constraint);
5266 p[0] = '=';
5267 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
5268
5269 /* And add a matching input constraint. */
5270 if (allows_reg)
5271 {
5272 sprintf (buf, "%d", i);
5273
5274 /* If there are multiple alternatives in the constraint,
5275 handle each of them individually. Those that allow register
5276 will be replaced with operand number, the others will stay
5277 unchanged. */
5278 if (strchr (p, ',') != NULL)
5279 {
5280 size_t len = 0, buflen = strlen (buf);
5281 char *beg, *end, *str, *dst;
5282
5283 for (beg = p + 1;;)
5284 {
5285 end = strchr (beg, ',');
5286 if (end == NULL)
5287 end = strchr (beg, '\0');
5288 if ((size_t) (end - beg) < buflen)
5289 len += buflen + 1;
5290 else
5291 len += end - beg + 1;
5292 if (*end)
5293 beg = end + 1;
5294 else
5295 break;
5296 }
5297
5298 str = (char *) alloca (len);
5299 for (beg = p + 1, dst = str;;)
5300 {
5301 const char *tem;
5302 bool mem_p, reg_p, inout_p;
5303
5304 end = strchr (beg, ',');
5305 if (end)
5306 *end = '\0';
5307 beg[-1] = '=';
5308 tem = beg - 1;
5309 parse_output_constraint (&tem, i, 0, 0,
5310 &mem_p, &reg_p, &inout_p);
5311 if (dst != str)
5312 *dst++ = ',';
5313 if (reg_p)
5314 {
5315 memcpy (dst, buf, buflen);
5316 dst += buflen;
5317 }
5318 else
5319 {
5320 if (end)
5321 len = end - beg;
5322 else
5323 len = strlen (beg);
5324 memcpy (dst, beg, len);
5325 dst += len;
5326 }
5327 if (end)
5328 beg = end + 1;
5329 else
5330 break;
5331 }
5332 *dst = '\0';
5333 input = build_string (dst - str, str);
5334 }
5335 else
5336 input = build_string (strlen (buf), buf);
5337 }
5338 else
5339 input = build_string (constraint_len - 1, constraint + 1);
5340
5341 free (p);
5342
5343 input = build_tree_list (build_tree_list (NULL_TREE, input),
5344 unshare_expr (TREE_VALUE (link)));
5345 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
5346 }
5347 }
5348
5349 link_next = NULL_TREE;
5350 for (link = ASM_INPUTS (expr); link; ++i, link = link_next)
5351 {
5352 link_next = TREE_CHAIN (link);
5353 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5354 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
5355 oconstraints, &allows_mem, &allows_reg);
5356
5357 /* If we can't make copies, we can only accept memory. */
5358 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
5359 {
5360 if (allows_mem)
5361 allows_reg = 0;
5362 else
5363 {
5364 error ("impossible constraint in %<asm%>");
5365 error ("non-memory input %d must stay in memory", i);
5366 return GS_ERROR;
5367 }
5368 }
5369
5370 /* If the operand is a memory input, it should be an lvalue. */
5371 if (!allows_reg && allows_mem)
5372 {
5373 tree inputv = TREE_VALUE (link);
5374 STRIP_NOPS (inputv);
5375 if (TREE_CODE (inputv) == PREDECREMENT_EXPR
5376 || TREE_CODE (inputv) == PREINCREMENT_EXPR
5377 || TREE_CODE (inputv) == POSTDECREMENT_EXPR
5378 || TREE_CODE (inputv) == POSTINCREMENT_EXPR)
5379 TREE_VALUE (link) = error_mark_node;
5380 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5381 is_gimple_lvalue, fb_lvalue | fb_mayfail);
5382 mark_addressable (TREE_VALUE (link));
5383 if (tret == GS_ERROR)
5384 {
5385 if (EXPR_HAS_LOCATION (TREE_VALUE (link)))
5386 input_location = EXPR_LOCATION (TREE_VALUE (link));
5387 error ("memory input %d is not directly addressable", i);
5388 ret = tret;
5389 }
5390 }
5391 else
5392 {
5393 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5394 is_gimple_asm_val, fb_rvalue);
5395 if (tret == GS_ERROR)
5396 ret = tret;
5397 }
5398
5399 TREE_CHAIN (link) = NULL_TREE;
5400 VEC_safe_push (tree, gc, inputs, link);
5401 }
5402
5403 for (link = ASM_CLOBBERS (expr); link; ++i, link = TREE_CHAIN (link))
5404 VEC_safe_push (tree, gc, clobbers, link);
5405
5406 for (link = ASM_LABELS (expr); link; ++i, link = TREE_CHAIN (link))
5407 VEC_safe_push (tree, gc, labels, link);
5408
5409 /* Do not add ASMs with errors to the gimple IL stream. */
5410 if (ret != GS_ERROR)
5411 {
5412 stmt = gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr)),
5413 inputs, outputs, clobbers, labels);
5414
5415 gimple_asm_set_volatile (stmt, ASM_VOLATILE_P (expr));
5416 gimple_asm_set_input (stmt, ASM_INPUT_P (expr));
5417
5418 gimplify_seq_add_stmt (pre_p, stmt);
5419 }
5420
5421 return ret;
5422 }
5423
5424 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5425 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5426 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5427 return to this function.
5428
5429 FIXME should we complexify the prequeue handling instead? Or use flags
5430 for all the cleanups and let the optimizer tighten them up? The current
5431 code seems pretty fragile; it will break on a cleanup within any
5432 non-conditional nesting. But any such nesting would be broken, anyway;
5433 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5434 and continues out of it. We can do that at the RTL level, though, so
5435 having an optimizer to tighten up try/finally regions would be a Good
5436 Thing. */
5437
5438 static enum gimplify_status
5439 gimplify_cleanup_point_expr (tree *expr_p, gimple_seq *pre_p)
5440 {
5441 gimple_stmt_iterator iter;
5442 gimple_seq body_sequence = NULL;
5443
5444 tree temp = voidify_wrapper_expr (*expr_p, NULL);
5445
5446 /* We only care about the number of conditions between the innermost
5447 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5448 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5449 int old_conds = gimplify_ctxp->conditions;
5450 gimple_seq old_cleanups = gimplify_ctxp->conditional_cleanups;
5451 bool old_in_cleanup_point_expr = gimplify_ctxp->in_cleanup_point_expr;
5452 gimplify_ctxp->conditions = 0;
5453 gimplify_ctxp->conditional_cleanups = NULL;
5454 gimplify_ctxp->in_cleanup_point_expr = true;
5455
5456 gimplify_stmt (&TREE_OPERAND (*expr_p, 0), &body_sequence);
5457
5458 gimplify_ctxp->conditions = old_conds;
5459 gimplify_ctxp->conditional_cleanups = old_cleanups;
5460 gimplify_ctxp->in_cleanup_point_expr = old_in_cleanup_point_expr;
5461
5462 for (iter = gsi_start (body_sequence); !gsi_end_p (iter); )
5463 {
5464 gimple wce = gsi_stmt (iter);
5465
5466 if (gimple_code (wce) == GIMPLE_WITH_CLEANUP_EXPR)
5467 {
5468 if (gsi_one_before_end_p (iter))
5469 {
5470 /* Note that gsi_insert_seq_before and gsi_remove do not
5471 scan operands, unlike some other sequence mutators. */
5472 if (!gimple_wce_cleanup_eh_only (wce))
5473 gsi_insert_seq_before_without_update (&iter,
5474 gimple_wce_cleanup (wce),
5475 GSI_SAME_STMT);
5476 gsi_remove (&iter, true);
5477 break;
5478 }
5479 else
5480 {
5481 gimple gtry;
5482 gimple_seq seq;
5483 enum gimple_try_flags kind;
5484
5485 if (gimple_wce_cleanup_eh_only (wce))
5486 kind = GIMPLE_TRY_CATCH;
5487 else
5488 kind = GIMPLE_TRY_FINALLY;
5489 seq = gsi_split_seq_after (iter);
5490
5491 gtry = gimple_build_try (seq, gimple_wce_cleanup (wce), kind);
5492 /* Do not use gsi_replace here, as it may scan operands.
5493 We want to do a simple structural modification only. */
5494 gsi_set_stmt (&iter, gtry);
5495 iter = gsi_start (gtry->gimple_try.eval);
5496 }
5497 }
5498 else
5499 gsi_next (&iter);
5500 }
5501
5502 gimplify_seq_add_seq (pre_p, body_sequence);
5503 if (temp)
5504 {
5505 *expr_p = temp;
5506 return GS_OK;
5507 }
5508 else
5509 {
5510 *expr_p = NULL;
5511 return GS_ALL_DONE;
5512 }
5513 }
5514
5515 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5516 is the cleanup action required. EH_ONLY is true if the cleanup should
5517 only be executed if an exception is thrown, not on normal exit. */
5518
5519 static void
5520 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, gimple_seq *pre_p)
5521 {
5522 gimple wce;
5523 gimple_seq cleanup_stmts = NULL;
5524
5525 /* Errors can result in improperly nested cleanups. Which results in
5526 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5527 if (seen_error ())
5528 return;
5529
5530 if (gimple_conditional_context ())
5531 {
5532 /* If we're in a conditional context, this is more complex. We only
5533 want to run the cleanup if we actually ran the initialization that
5534 necessitates it, but we want to run it after the end of the
5535 conditional context. So we wrap the try/finally around the
5536 condition and use a flag to determine whether or not to actually
5537 run the destructor. Thus
5538
5539 test ? f(A()) : 0
5540
5541 becomes (approximately)
5542
5543 flag = 0;
5544 try {
5545 if (test) { A::A(temp); flag = 1; val = f(temp); }
5546 else { val = 0; }
5547 } finally {
5548 if (flag) A::~A(temp);
5549 }
5550 val
5551 */
5552 tree flag = create_tmp_var (boolean_type_node, "cleanup");
5553 gimple ffalse = gimple_build_assign (flag, boolean_false_node);
5554 gimple ftrue = gimple_build_assign (flag, boolean_true_node);
5555
5556 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
5557 gimplify_stmt (&cleanup, &cleanup_stmts);
5558 wce = gimple_build_wce (cleanup_stmts);
5559
5560 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, ffalse);
5561 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, wce);
5562 gimplify_seq_add_stmt (pre_p, ftrue);
5563
5564 /* Because of this manipulation, and the EH edges that jump
5565 threading cannot redirect, the temporary (VAR) will appear
5566 to be used uninitialized. Don't warn. */
5567 TREE_NO_WARNING (var) = 1;
5568 }
5569 else
5570 {
5571 gimplify_stmt (&cleanup, &cleanup_stmts);
5572 wce = gimple_build_wce (cleanup_stmts);
5573 gimple_wce_set_cleanup_eh_only (wce, eh_only);
5574 gimplify_seq_add_stmt (pre_p, wce);
5575 }
5576 }
5577
5578 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5579
5580 static enum gimplify_status
5581 gimplify_target_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5582 {
5583 tree targ = *expr_p;
5584 tree temp = TARGET_EXPR_SLOT (targ);
5585 tree init = TARGET_EXPR_INITIAL (targ);
5586 enum gimplify_status ret;
5587
5588 if (init)
5589 {
5590 tree cleanup = NULL_TREE;
5591
5592 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5593 to the temps list. Handle also variable length TARGET_EXPRs. */
5594 if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
5595 {
5596 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
5597 gimplify_type_sizes (TREE_TYPE (temp), pre_p);
5598 gimplify_vla_decl (temp, pre_p);
5599 }
5600 else
5601 gimple_add_tmp_var (temp);
5602
5603 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5604 expression is supposed to initialize the slot. */
5605 if (VOID_TYPE_P (TREE_TYPE (init)))
5606 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5607 else
5608 {
5609 tree init_expr = build2 (INIT_EXPR, void_type_node, temp, init);
5610 init = init_expr;
5611 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5612 init = NULL;
5613 ggc_free (init_expr);
5614 }
5615 if (ret == GS_ERROR)
5616 {
5617 /* PR c++/28266 Make sure this is expanded only once. */
5618 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5619 return GS_ERROR;
5620 }
5621 if (init)
5622 gimplify_and_add (init, pre_p);
5623
5624 /* If needed, push the cleanup for the temp. */
5625 if (TARGET_EXPR_CLEANUP (targ))
5626 {
5627 if (CLEANUP_EH_ONLY (targ))
5628 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
5629 CLEANUP_EH_ONLY (targ), pre_p);
5630 else
5631 cleanup = TARGET_EXPR_CLEANUP (targ);
5632 }
5633
5634 /* Add a clobber for the temporary going out of scope, like
5635 gimplify_bind_expr. */
5636 if (gimplify_ctxp->in_cleanup_point_expr
5637 && needs_to_live_in_memory (temp))
5638 {
5639 tree clobber = build_constructor (TREE_TYPE (temp), NULL);
5640 TREE_THIS_VOLATILE (clobber) = true;
5641 clobber = build2 (MODIFY_EXPR, TREE_TYPE (temp), temp, clobber);
5642 if (cleanup)
5643 cleanup = build2 (COMPOUND_EXPR, void_type_node, cleanup,
5644 clobber);
5645 else
5646 cleanup = clobber;
5647 }
5648
5649 if (cleanup)
5650 gimple_push_cleanup (temp, cleanup, false, pre_p);
5651
5652 /* Only expand this once. */
5653 TREE_OPERAND (targ, 3) = init;
5654 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5655 }
5656 else
5657 /* We should have expanded this before. */
5658 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
5659
5660 *expr_p = temp;
5661 return GS_OK;
5662 }
5663
5664 /* Gimplification of expression trees. */
5665
5666 /* Gimplify an expression which appears at statement context. The
5667 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5668 NULL, a new sequence is allocated.
5669
5670 Return true if we actually added a statement to the queue. */
5671
5672 bool
5673 gimplify_stmt (tree *stmt_p, gimple_seq *seq_p)
5674 {
5675 gimple_seq_node last;
5676
5677 last = gimple_seq_last (*seq_p);
5678 gimplify_expr (stmt_p, seq_p, NULL, is_gimple_stmt, fb_none);
5679 return last != gimple_seq_last (*seq_p);
5680 }
5681
5682 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5683 to CTX. If entries already exist, force them to be some flavor of private.
5684 If there is no enclosing parallel, do nothing. */
5685
5686 void
5687 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
5688 {
5689 splay_tree_node n;
5690
5691 if (decl == NULL || !DECL_P (decl))
5692 return;
5693
5694 do
5695 {
5696 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5697 if (n != NULL)
5698 {
5699 if (n->value & GOVD_SHARED)
5700 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
5701 else
5702 return;
5703 }
5704 else if (ctx->region_type != ORT_WORKSHARE)
5705 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
5706
5707 ctx = ctx->outer_context;
5708 }
5709 while (ctx);
5710 }
5711
5712 /* Similarly for each of the type sizes of TYPE. */
5713
5714 static void
5715 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
5716 {
5717 if (type == NULL || type == error_mark_node)
5718 return;
5719 type = TYPE_MAIN_VARIANT (type);
5720
5721 if (pointer_set_insert (ctx->privatized_types, type))
5722 return;
5723
5724 switch (TREE_CODE (type))
5725 {
5726 case INTEGER_TYPE:
5727 case ENUMERAL_TYPE:
5728 case BOOLEAN_TYPE:
5729 case REAL_TYPE:
5730 case FIXED_POINT_TYPE:
5731 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
5732 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
5733 break;
5734
5735 case ARRAY_TYPE:
5736 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5737 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
5738 break;
5739
5740 case RECORD_TYPE:
5741 case UNION_TYPE:
5742 case QUAL_UNION_TYPE:
5743 {
5744 tree field;
5745 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5746 if (TREE_CODE (field) == FIELD_DECL)
5747 {
5748 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
5749 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
5750 }
5751 }
5752 break;
5753
5754 case POINTER_TYPE:
5755 case REFERENCE_TYPE:
5756 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5757 break;
5758
5759 default:
5760 break;
5761 }
5762
5763 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
5764 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
5765 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
5766 }
5767
5768 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5769
5770 static void
5771 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
5772 {
5773 splay_tree_node n;
5774 unsigned int nflags;
5775 tree t;
5776
5777 if (error_operand_p (decl))
5778 return;
5779
5780 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5781 there are constructors involved somewhere. */
5782 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
5783 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
5784 flags |= GOVD_SEEN;
5785
5786 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5787 if (n != NULL)
5788 {
5789 /* We shouldn't be re-adding the decl with the same data
5790 sharing class. */
5791 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
5792 /* The only combination of data sharing classes we should see is
5793 FIRSTPRIVATE and LASTPRIVATE. */
5794 nflags = n->value | flags;
5795 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
5796 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
5797 n->value = nflags;
5798 return;
5799 }
5800
5801 /* When adding a variable-sized variable, we have to handle all sorts
5802 of additional bits of data: the pointer replacement variable, and
5803 the parameters of the type. */
5804 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5805 {
5806 /* Add the pointer replacement variable as PRIVATE if the variable
5807 replacement is private, else FIRSTPRIVATE since we'll need the
5808 address of the original variable either for SHARED, or for the
5809 copy into or out of the context. */
5810 if (!(flags & GOVD_LOCAL))
5811 {
5812 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
5813 nflags |= flags & GOVD_SEEN;
5814 t = DECL_VALUE_EXPR (decl);
5815 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5816 t = TREE_OPERAND (t, 0);
5817 gcc_assert (DECL_P (t));
5818 omp_add_variable (ctx, t, nflags);
5819 }
5820
5821 /* Add all of the variable and type parameters (which should have
5822 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5823 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
5824 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
5825 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5826
5827 /* The variable-sized variable itself is never SHARED, only some form
5828 of PRIVATE. The sharing would take place via the pointer variable
5829 which we remapped above. */
5830 if (flags & GOVD_SHARED)
5831 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
5832 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
5833
5834 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5835 alloca statement we generate for the variable, so make sure it
5836 is available. This isn't automatically needed for the SHARED
5837 case, since we won't be allocating local storage then.
5838 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5839 in this case omp_notice_variable will be called later
5840 on when it is gimplified. */
5841 else if (! (flags & GOVD_LOCAL)
5842 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl))))
5843 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
5844 }
5845 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
5846 {
5847 gcc_assert ((flags & GOVD_LOCAL) == 0);
5848 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5849
5850 /* Similar to the direct variable sized case above, we'll need the
5851 size of references being privatized. */
5852 if ((flags & GOVD_SHARED) == 0)
5853 {
5854 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
5855 if (TREE_CODE (t) != INTEGER_CST)
5856 omp_notice_variable (ctx, t, true);
5857 }
5858 }
5859
5860 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
5861 }
5862
5863 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5864 This just prints out diagnostics about threadprivate variable uses
5865 in untied tasks. If DECL2 is non-NULL, prevent this warning
5866 on that variable. */
5867
5868 static bool
5869 omp_notice_threadprivate_variable (struct gimplify_omp_ctx *ctx, tree decl,
5870 tree decl2)
5871 {
5872 splay_tree_node n;
5873
5874 if (ctx->region_type != ORT_UNTIED_TASK)
5875 return false;
5876 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5877 if (n == NULL)
5878 {
5879 error ("threadprivate variable %qE used in untied task",
5880 DECL_NAME (decl));
5881 error_at (ctx->location, "enclosing task");
5882 splay_tree_insert (ctx->variables, (splay_tree_key)decl, 0);
5883 }
5884 if (decl2)
5885 splay_tree_insert (ctx->variables, (splay_tree_key)decl2, 0);
5886 return false;
5887 }
5888
5889 /* Record the fact that DECL was used within the OpenMP context CTX.
5890 IN_CODE is true when real code uses DECL, and false when we should
5891 merely emit default(none) errors. Return true if DECL is going to
5892 be remapped and thus DECL shouldn't be gimplified into its
5893 DECL_VALUE_EXPR (if any). */
5894
5895 static bool
5896 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
5897 {
5898 splay_tree_node n;
5899 unsigned flags = in_code ? GOVD_SEEN : 0;
5900 bool ret = false, shared;
5901
5902 if (error_operand_p (decl))
5903 return false;
5904
5905 /* Threadprivate variables are predetermined. */
5906 if (is_global_var (decl))
5907 {
5908 if (DECL_THREAD_LOCAL_P (decl))
5909 return omp_notice_threadprivate_variable (ctx, decl, NULL_TREE);
5910
5911 if (DECL_HAS_VALUE_EXPR_P (decl))
5912 {
5913 tree value = get_base_address (DECL_VALUE_EXPR (decl));
5914
5915 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
5916 return omp_notice_threadprivate_variable (ctx, decl, value);
5917 }
5918 }
5919
5920 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5921 if (n == NULL)
5922 {
5923 enum omp_clause_default_kind default_kind, kind;
5924 struct gimplify_omp_ctx *octx;
5925
5926 if (ctx->region_type == ORT_WORKSHARE)
5927 goto do_outer;
5928
5929 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5930 remapped firstprivate instead of shared. To some extent this is
5931 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5932 default_kind = ctx->default_kind;
5933 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
5934 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
5935 default_kind = kind;
5936
5937 switch (default_kind)
5938 {
5939 case OMP_CLAUSE_DEFAULT_NONE:
5940 error ("%qE not specified in enclosing parallel",
5941 DECL_NAME (lang_hooks.decls.omp_report_decl (decl)));
5942 if ((ctx->region_type & ORT_TASK) != 0)
5943 error_at (ctx->location, "enclosing task");
5944 else
5945 error_at (ctx->location, "enclosing parallel");
5946 /* FALLTHRU */
5947 case OMP_CLAUSE_DEFAULT_SHARED:
5948 flags |= GOVD_SHARED;
5949 break;
5950 case OMP_CLAUSE_DEFAULT_PRIVATE:
5951 flags |= GOVD_PRIVATE;
5952 break;
5953 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
5954 flags |= GOVD_FIRSTPRIVATE;
5955 break;
5956 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5957 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5958 gcc_assert ((ctx->region_type & ORT_TASK) != 0);
5959 if (ctx->outer_context)
5960 omp_notice_variable (ctx->outer_context, decl, in_code);
5961 for (octx = ctx->outer_context; octx; octx = octx->outer_context)
5962 {
5963 splay_tree_node n2;
5964
5965 n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
5966 if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
5967 {
5968 flags |= GOVD_FIRSTPRIVATE;
5969 break;
5970 }
5971 if ((octx->region_type & ORT_PARALLEL) != 0)
5972 break;
5973 }
5974 if (flags & GOVD_FIRSTPRIVATE)
5975 break;
5976 if (octx == NULL
5977 && (TREE_CODE (decl) == PARM_DECL
5978 || (!is_global_var (decl)
5979 && DECL_CONTEXT (decl) == current_function_decl)))
5980 {
5981 flags |= GOVD_FIRSTPRIVATE;
5982 break;
5983 }
5984 flags |= GOVD_SHARED;
5985 break;
5986 default:
5987 gcc_unreachable ();
5988 }
5989
5990 if ((flags & GOVD_PRIVATE)
5991 && lang_hooks.decls.omp_private_outer_ref (decl))
5992 flags |= GOVD_PRIVATE_OUTER_REF;
5993
5994 omp_add_variable (ctx, decl, flags);
5995
5996 shared = (flags & GOVD_SHARED) != 0;
5997 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5998 goto do_outer;
5999 }
6000
6001 if ((n->value & (GOVD_SEEN | GOVD_LOCAL)) == 0
6002 && (flags & (GOVD_SEEN | GOVD_LOCAL)) == GOVD_SEEN
6003 && DECL_SIZE (decl)
6004 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
6005 {
6006 splay_tree_node n2;
6007 tree t = DECL_VALUE_EXPR (decl);
6008 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
6009 t = TREE_OPERAND (t, 0);
6010 gcc_assert (DECL_P (t));
6011 n2 = splay_tree_lookup (ctx->variables, (splay_tree_key) t);
6012 n2->value |= GOVD_SEEN;
6013 }
6014
6015 shared = ((flags | n->value) & GOVD_SHARED) != 0;
6016 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
6017
6018 /* If nothing changed, there's nothing left to do. */
6019 if ((n->value & flags) == flags)
6020 return ret;
6021 flags |= n->value;
6022 n->value = flags;
6023
6024 do_outer:
6025 /* If the variable is private in the current context, then we don't
6026 need to propagate anything to an outer context. */
6027 if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
6028 return ret;
6029 if (ctx->outer_context
6030 && omp_notice_variable (ctx->outer_context, decl, in_code))
6031 return true;
6032 return ret;
6033 }
6034
6035 /* Verify that DECL is private within CTX. If there's specific information
6036 to the contrary in the innermost scope, generate an error. */
6037
6038 static bool
6039 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
6040 {
6041 splay_tree_node n;
6042
6043 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
6044 if (n != NULL)
6045 {
6046 if (n->value & GOVD_SHARED)
6047 {
6048 if (ctx == gimplify_omp_ctxp)
6049 {
6050 error ("iteration variable %qE should be private",
6051 DECL_NAME (decl));
6052 n->value = GOVD_PRIVATE;
6053 return true;
6054 }
6055 else
6056 return false;
6057 }
6058 else if ((n->value & GOVD_EXPLICIT) != 0
6059 && (ctx == gimplify_omp_ctxp
6060 || (ctx->region_type == ORT_COMBINED_PARALLEL
6061 && gimplify_omp_ctxp->outer_context == ctx)))
6062 {
6063 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
6064 error ("iteration variable %qE should not be firstprivate",
6065 DECL_NAME (decl));
6066 else if ((n->value & GOVD_REDUCTION) != 0)
6067 error ("iteration variable %qE should not be reduction",
6068 DECL_NAME (decl));
6069 }
6070 return (ctx == gimplify_omp_ctxp
6071 || (ctx->region_type == ORT_COMBINED_PARALLEL
6072 && gimplify_omp_ctxp->outer_context == ctx));
6073 }
6074
6075 if (ctx->region_type != ORT_WORKSHARE)
6076 return false;
6077 else if (ctx->outer_context)
6078 return omp_is_private (ctx->outer_context, decl);
6079 return false;
6080 }
6081
6082 /* Return true if DECL is private within a parallel region
6083 that binds to the current construct's context or in parallel
6084 region's REDUCTION clause. */
6085
6086 static bool
6087 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
6088 {
6089 splay_tree_node n;
6090
6091 do
6092 {
6093 ctx = ctx->outer_context;
6094 if (ctx == NULL)
6095 return !(is_global_var (decl)
6096 /* References might be private, but might be shared too. */
6097 || lang_hooks.decls.omp_privatize_by_reference (decl));
6098
6099 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6100 if (n != NULL)
6101 return (n->value & GOVD_SHARED) == 0;
6102 }
6103 while (ctx->region_type == ORT_WORKSHARE);
6104 return false;
6105 }
6106
6107 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
6108 and previous omp contexts. */
6109
6110 static void
6111 gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
6112 enum omp_region_type region_type)
6113 {
6114 struct gimplify_omp_ctx *ctx, *outer_ctx;
6115 struct gimplify_ctx gctx;
6116 tree c;
6117
6118 ctx = new_omp_context (region_type);
6119 outer_ctx = ctx->outer_context;
6120
6121 while ((c = *list_p) != NULL)
6122 {
6123 bool remove = false;
6124 bool notice_outer = true;
6125 const char *check_non_private = NULL;
6126 unsigned int flags;
6127 tree decl;
6128
6129 switch (OMP_CLAUSE_CODE (c))
6130 {
6131 case OMP_CLAUSE_PRIVATE:
6132 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
6133 if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
6134 {
6135 flags |= GOVD_PRIVATE_OUTER_REF;
6136 OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
6137 }
6138 else
6139 notice_outer = false;
6140 goto do_add;
6141 case OMP_CLAUSE_SHARED:
6142 flags = GOVD_SHARED | GOVD_EXPLICIT;
6143 goto do_add;
6144 case OMP_CLAUSE_FIRSTPRIVATE:
6145 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
6146 check_non_private = "firstprivate";
6147 goto do_add;
6148 case OMP_CLAUSE_LASTPRIVATE:
6149 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
6150 check_non_private = "lastprivate";
6151 goto do_add;
6152 case OMP_CLAUSE_REDUCTION:
6153 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
6154 check_non_private = "reduction";
6155 goto do_add;
6156
6157 do_add:
6158 decl = OMP_CLAUSE_DECL (c);
6159 if (error_operand_p (decl))
6160 {
6161 remove = true;
6162 break;
6163 }
6164 omp_add_variable (ctx, decl, flags);
6165 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
6166 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
6167 {
6168 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
6169 GOVD_LOCAL | GOVD_SEEN);
6170 gimplify_omp_ctxp = ctx;
6171 push_gimplify_context (&gctx);
6172
6173 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = NULL;
6174 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = NULL;
6175
6176 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c),
6177 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c));
6178 pop_gimplify_context
6179 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c)));
6180 push_gimplify_context (&gctx);
6181 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c),
6182 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
6183 pop_gimplify_context
6184 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c)));
6185 OMP_CLAUSE_REDUCTION_INIT (c) = NULL_TREE;
6186 OMP_CLAUSE_REDUCTION_MERGE (c) = NULL_TREE;
6187
6188 gimplify_omp_ctxp = outer_ctx;
6189 }
6190 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6191 && OMP_CLAUSE_LASTPRIVATE_STMT (c))
6192 {
6193 gimplify_omp_ctxp = ctx;
6194 push_gimplify_context (&gctx);
6195 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
6196 {
6197 tree bind = build3 (BIND_EXPR, void_type_node, NULL,
6198 NULL, NULL);
6199 TREE_SIDE_EFFECTS (bind) = 1;
6200 BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
6201 OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
6202 }
6203 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c),
6204 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6205 pop_gimplify_context
6206 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c)));
6207 OMP_CLAUSE_LASTPRIVATE_STMT (c) = NULL_TREE;
6208
6209 gimplify_omp_ctxp = outer_ctx;
6210 }
6211 if (notice_outer)
6212 goto do_notice;
6213 break;
6214
6215 case OMP_CLAUSE_COPYIN:
6216 case OMP_CLAUSE_COPYPRIVATE:
6217 decl = OMP_CLAUSE_DECL (c);
6218 if (error_operand_p (decl))
6219 {
6220 remove = true;
6221 break;
6222 }
6223 do_notice:
6224 if (outer_ctx)
6225 omp_notice_variable (outer_ctx, decl, true);
6226 if (check_non_private
6227 && region_type == ORT_WORKSHARE
6228 && omp_check_private (ctx, decl))
6229 {
6230 error ("%s variable %qE is private in outer context",
6231 check_non_private, DECL_NAME (decl));
6232 remove = true;
6233 }
6234 break;
6235
6236 case OMP_CLAUSE_FINAL:
6237 case OMP_CLAUSE_IF:
6238 OMP_CLAUSE_OPERAND (c, 0)
6239 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
6240 /* Fall through. */
6241
6242 case OMP_CLAUSE_SCHEDULE:
6243 case OMP_CLAUSE_NUM_THREADS:
6244 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
6245 is_gimple_val, fb_rvalue) == GS_ERROR)
6246 remove = true;
6247 break;
6248
6249 case OMP_CLAUSE_NOWAIT:
6250 case OMP_CLAUSE_ORDERED:
6251 case OMP_CLAUSE_UNTIED:
6252 case OMP_CLAUSE_COLLAPSE:
6253 case OMP_CLAUSE_MERGEABLE:
6254 break;
6255
6256 case OMP_CLAUSE_DEFAULT:
6257 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
6258 break;
6259
6260 default:
6261 gcc_unreachable ();
6262 }
6263
6264 if (remove)
6265 *list_p = OMP_CLAUSE_CHAIN (c);
6266 else
6267 list_p = &OMP_CLAUSE_CHAIN (c);
6268 }
6269
6270 gimplify_omp_ctxp = ctx;
6271 }
6272
6273 /* For all variables that were not actually used within the context,
6274 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
6275
6276 static int
6277 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
6278 {
6279 tree *list_p = (tree *) data;
6280 tree decl = (tree) n->key;
6281 unsigned flags = n->value;
6282 enum omp_clause_code code;
6283 tree clause;
6284 bool private_debug;
6285
6286 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
6287 return 0;
6288 if ((flags & GOVD_SEEN) == 0)
6289 return 0;
6290 if (flags & GOVD_DEBUG_PRIVATE)
6291 {
6292 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
6293 private_debug = true;
6294 }
6295 else
6296 private_debug
6297 = lang_hooks.decls.omp_private_debug_clause (decl,
6298 !!(flags & GOVD_SHARED));
6299 if (private_debug)
6300 code = OMP_CLAUSE_PRIVATE;
6301 else if (flags & GOVD_SHARED)
6302 {
6303 if (is_global_var (decl))
6304 {
6305 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
6306 while (ctx != NULL)
6307 {
6308 splay_tree_node on
6309 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6310 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
6311 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
6312 break;
6313 ctx = ctx->outer_context;
6314 }
6315 if (ctx == NULL)
6316 return 0;
6317 }
6318 code = OMP_CLAUSE_SHARED;
6319 }
6320 else if (flags & GOVD_PRIVATE)
6321 code = OMP_CLAUSE_PRIVATE;
6322 else if (flags & GOVD_FIRSTPRIVATE)
6323 code = OMP_CLAUSE_FIRSTPRIVATE;
6324 else
6325 gcc_unreachable ();
6326
6327 clause = build_omp_clause (input_location, code);
6328 OMP_CLAUSE_DECL (clause) = decl;
6329 OMP_CLAUSE_CHAIN (clause) = *list_p;
6330 if (private_debug)
6331 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
6332 else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
6333 OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
6334 *list_p = clause;
6335 lang_hooks.decls.omp_finish_clause (clause);
6336
6337 return 0;
6338 }
6339
6340 static void
6341 gimplify_adjust_omp_clauses (tree *list_p)
6342 {
6343 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
6344 tree c, decl;
6345
6346 while ((c = *list_p) != NULL)
6347 {
6348 splay_tree_node n;
6349 bool remove = false;
6350
6351 switch (OMP_CLAUSE_CODE (c))
6352 {
6353 case OMP_CLAUSE_PRIVATE:
6354 case OMP_CLAUSE_SHARED:
6355 case OMP_CLAUSE_FIRSTPRIVATE:
6356 decl = OMP_CLAUSE_DECL (c);
6357 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6358 remove = !(n->value & GOVD_SEEN);
6359 if (! remove)
6360 {
6361 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
6362 if ((n->value & GOVD_DEBUG_PRIVATE)
6363 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
6364 {
6365 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
6366 || ((n->value & GOVD_DATA_SHARE_CLASS)
6367 == GOVD_PRIVATE));
6368 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
6369 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
6370 }
6371 }
6372 break;
6373
6374 case OMP_CLAUSE_LASTPRIVATE:
6375 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6376 accurately reflect the presence of a FIRSTPRIVATE clause. */
6377 decl = OMP_CLAUSE_DECL (c);
6378 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6379 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
6380 = (n->value & GOVD_FIRSTPRIVATE) != 0;
6381 break;
6382
6383 case OMP_CLAUSE_REDUCTION:
6384 case OMP_CLAUSE_COPYIN:
6385 case OMP_CLAUSE_COPYPRIVATE:
6386 case OMP_CLAUSE_IF:
6387 case OMP_CLAUSE_NUM_THREADS:
6388 case OMP_CLAUSE_SCHEDULE:
6389 case OMP_CLAUSE_NOWAIT:
6390 case OMP_CLAUSE_ORDERED:
6391 case OMP_CLAUSE_DEFAULT:
6392 case OMP_CLAUSE_UNTIED:
6393 case OMP_CLAUSE_COLLAPSE:
6394 case OMP_CLAUSE_FINAL:
6395 case OMP_CLAUSE_MERGEABLE:
6396 break;
6397
6398 default:
6399 gcc_unreachable ();
6400 }
6401
6402 if (remove)
6403 *list_p = OMP_CLAUSE_CHAIN (c);
6404 else
6405 list_p = &OMP_CLAUSE_CHAIN (c);
6406 }
6407
6408 /* Add in any implicit data sharing. */
6409 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
6410
6411 gimplify_omp_ctxp = ctx->outer_context;
6412 delete_omp_context (ctx);
6413 }
6414
6415 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6416 gimplification of the body, as well as scanning the body for used
6417 variables. We need to do this scan now, because variable-sized
6418 decls will be decomposed during gimplification. */
6419
6420 static void
6421 gimplify_omp_parallel (tree *expr_p, gimple_seq *pre_p)
6422 {
6423 tree expr = *expr_p;
6424 gimple g;
6425 gimple_seq body = NULL;
6426 struct gimplify_ctx gctx;
6427
6428 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
6429 OMP_PARALLEL_COMBINED (expr)
6430 ? ORT_COMBINED_PARALLEL
6431 : ORT_PARALLEL);
6432
6433 push_gimplify_context (&gctx);
6434
6435 g = gimplify_and_return_first (OMP_PARALLEL_BODY (expr), &body);
6436 if (gimple_code (g) == GIMPLE_BIND)
6437 pop_gimplify_context (g);
6438 else
6439 pop_gimplify_context (NULL);
6440
6441 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
6442
6443 g = gimple_build_omp_parallel (body,
6444 OMP_PARALLEL_CLAUSES (expr),
6445 NULL_TREE, NULL_TREE);
6446 if (OMP_PARALLEL_COMBINED (expr))
6447 gimple_omp_set_subcode (g, GF_OMP_PARALLEL_COMBINED);
6448 gimplify_seq_add_stmt (pre_p, g);
6449 *expr_p = NULL_TREE;
6450 }
6451
6452 /* Gimplify the contents of an OMP_TASK statement. This involves
6453 gimplification of the body, as well as scanning the body for used
6454 variables. We need to do this scan now, because variable-sized
6455 decls will be decomposed during gimplification. */
6456
6457 static void
6458 gimplify_omp_task (tree *expr_p, gimple_seq *pre_p)
6459 {
6460 tree expr = *expr_p;
6461 gimple g;
6462 gimple_seq body = NULL;
6463 struct gimplify_ctx gctx;
6464
6465 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p,
6466 find_omp_clause (OMP_TASK_CLAUSES (expr),
6467 OMP_CLAUSE_UNTIED)
6468 ? ORT_UNTIED_TASK : ORT_TASK);
6469
6470 push_gimplify_context (&gctx);
6471
6472 g = gimplify_and_return_first (OMP_TASK_BODY (expr), &body);
6473 if (gimple_code (g) == GIMPLE_BIND)
6474 pop_gimplify_context (g);
6475 else
6476 pop_gimplify_context (NULL);
6477
6478 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
6479
6480 g = gimple_build_omp_task (body,
6481 OMP_TASK_CLAUSES (expr),
6482 NULL_TREE, NULL_TREE,
6483 NULL_TREE, NULL_TREE, NULL_TREE);
6484 gimplify_seq_add_stmt (pre_p, g);
6485 *expr_p = NULL_TREE;
6486 }
6487
6488 /* Gimplify the gross structure of an OMP_FOR statement. */
6489
6490 static enum gimplify_status
6491 gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
6492 {
6493 tree for_stmt, decl, var, t;
6494 enum gimplify_status ret = GS_ALL_DONE;
6495 enum gimplify_status tret;
6496 gimple gfor;
6497 gimple_seq for_body, for_pre_body;
6498 int i;
6499
6500 for_stmt = *expr_p;
6501
6502 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
6503 ORT_WORKSHARE);
6504
6505 /* Handle OMP_FOR_INIT. */
6506 for_pre_body = NULL;
6507 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt), &for_pre_body);
6508 OMP_FOR_PRE_BODY (for_stmt) = NULL_TREE;
6509
6510 for_body = NULL;
6511 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6512 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
6513 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6514 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
6515 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6516 {
6517 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6518 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6519 decl = TREE_OPERAND (t, 0);
6520 gcc_assert (DECL_P (decl));
6521 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
6522 || POINTER_TYPE_P (TREE_TYPE (decl)));
6523
6524 /* Make sure the iteration variable is private. */
6525 if (omp_is_private (gimplify_omp_ctxp, decl))
6526 omp_notice_variable (gimplify_omp_ctxp, decl, true);
6527 else
6528 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
6529
6530 /* If DECL is not a gimple register, create a temporary variable to act
6531 as an iteration counter. This is valid, since DECL cannot be
6532 modified in the body of the loop. */
6533 if (!is_gimple_reg (decl))
6534 {
6535 var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
6536 TREE_OPERAND (t, 0) = var;
6537
6538 gimplify_seq_add_stmt (&for_body, gimple_build_assign (decl, var));
6539
6540 omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
6541 }
6542 else
6543 var = decl;
6544
6545 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6546 is_gimple_val, fb_rvalue);
6547 ret = MIN (ret, tret);
6548 if (ret == GS_ERROR)
6549 return ret;
6550
6551 /* Handle OMP_FOR_COND. */
6552 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6553 gcc_assert (COMPARISON_CLASS_P (t));
6554 gcc_assert (TREE_OPERAND (t, 0) == decl);
6555
6556 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6557 is_gimple_val, fb_rvalue);
6558 ret = MIN (ret, tret);
6559
6560 /* Handle OMP_FOR_INCR. */
6561 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6562 switch (TREE_CODE (t))
6563 {
6564 case PREINCREMENT_EXPR:
6565 case POSTINCREMENT_EXPR:
6566 t = build_int_cst (TREE_TYPE (decl), 1);
6567 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6568 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6569 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6570 break;
6571
6572 case PREDECREMENT_EXPR:
6573 case POSTDECREMENT_EXPR:
6574 t = build_int_cst (TREE_TYPE (decl), -1);
6575 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6576 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6577 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6578 break;
6579
6580 case MODIFY_EXPR:
6581 gcc_assert (TREE_OPERAND (t, 0) == decl);
6582 TREE_OPERAND (t, 0) = var;
6583
6584 t = TREE_OPERAND (t, 1);
6585 switch (TREE_CODE (t))
6586 {
6587 case PLUS_EXPR:
6588 if (TREE_OPERAND (t, 1) == decl)
6589 {
6590 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
6591 TREE_OPERAND (t, 0) = var;
6592 break;
6593 }
6594
6595 /* Fallthru. */
6596 case MINUS_EXPR:
6597 case POINTER_PLUS_EXPR:
6598 gcc_assert (TREE_OPERAND (t, 0) == decl);
6599 TREE_OPERAND (t, 0) = var;
6600 break;
6601 default:
6602 gcc_unreachable ();
6603 }
6604
6605 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6606 is_gimple_val, fb_rvalue);
6607 ret = MIN (ret, tret);
6608 break;
6609
6610 default:
6611 gcc_unreachable ();
6612 }
6613
6614 if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
6615 {
6616 tree c;
6617 for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
6618 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6619 && OMP_CLAUSE_DECL (c) == decl
6620 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) == NULL)
6621 {
6622 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6623 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6624 gcc_assert (TREE_OPERAND (t, 0) == var);
6625 t = TREE_OPERAND (t, 1);
6626 gcc_assert (TREE_CODE (t) == PLUS_EXPR
6627 || TREE_CODE (t) == MINUS_EXPR
6628 || TREE_CODE (t) == POINTER_PLUS_EXPR);
6629 gcc_assert (TREE_OPERAND (t, 0) == var);
6630 t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
6631 TREE_OPERAND (t, 1));
6632 gimplify_assign (decl, t,
6633 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6634 }
6635 }
6636 }
6637
6638 gimplify_and_add (OMP_FOR_BODY (for_stmt), &for_body);
6639
6640 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
6641
6642 gfor = gimple_build_omp_for (for_body, OMP_FOR_CLAUSES (for_stmt),
6643 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)),
6644 for_pre_body);
6645
6646 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6647 {
6648 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6649 gimple_omp_for_set_index (gfor, i, TREE_OPERAND (t, 0));
6650 gimple_omp_for_set_initial (gfor, i, TREE_OPERAND (t, 1));
6651 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6652 gimple_omp_for_set_cond (gfor, i, TREE_CODE (t));
6653 gimple_omp_for_set_final (gfor, i, TREE_OPERAND (t, 1));
6654 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6655 gimple_omp_for_set_incr (gfor, i, TREE_OPERAND (t, 1));
6656 }
6657
6658 gimplify_seq_add_stmt (pre_p, gfor);
6659 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
6660 }
6661
6662 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6663 In particular, OMP_SECTIONS and OMP_SINGLE. */
6664
6665 static void
6666 gimplify_omp_workshare (tree *expr_p, gimple_seq *pre_p)
6667 {
6668 tree expr = *expr_p;
6669 gimple stmt;
6670 gimple_seq body = NULL;
6671
6672 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr), pre_p, ORT_WORKSHARE);
6673 gimplify_and_add (OMP_BODY (expr), &body);
6674 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr));
6675
6676 if (TREE_CODE (expr) == OMP_SECTIONS)
6677 stmt = gimple_build_omp_sections (body, OMP_CLAUSES (expr));
6678 else if (TREE_CODE (expr) == OMP_SINGLE)
6679 stmt = gimple_build_omp_single (body, OMP_CLAUSES (expr));
6680 else
6681 gcc_unreachable ();
6682
6683 gimplify_seq_add_stmt (pre_p, stmt);
6684 }
6685
6686 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6687 stabilized the lhs of the atomic operation as *ADDR. Return true if
6688 EXPR is this stabilized form. */
6689
6690 static bool
6691 goa_lhs_expr_p (tree expr, tree addr)
6692 {
6693 /* Also include casts to other type variants. The C front end is fond
6694 of adding these for e.g. volatile variables. This is like
6695 STRIP_TYPE_NOPS but includes the main variant lookup. */
6696 STRIP_USELESS_TYPE_CONVERSION (expr);
6697
6698 if (TREE_CODE (expr) == INDIRECT_REF)
6699 {
6700 expr = TREE_OPERAND (expr, 0);
6701 while (expr != addr
6702 && (CONVERT_EXPR_P (expr)
6703 || TREE_CODE (expr) == NON_LVALUE_EXPR)
6704 && TREE_CODE (expr) == TREE_CODE (addr)
6705 && types_compatible_p (TREE_TYPE (expr), TREE_TYPE (addr)))
6706 {
6707 expr = TREE_OPERAND (expr, 0);
6708 addr = TREE_OPERAND (addr, 0);
6709 }
6710 if (expr == addr)
6711 return true;
6712 return (TREE_CODE (addr) == ADDR_EXPR
6713 && TREE_CODE (expr) == ADDR_EXPR
6714 && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
6715 }
6716 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
6717 return true;
6718 return false;
6719 }
6720
6721 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6722 expression does not involve the lhs, evaluate it into a temporary.
6723 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6724 or -1 if an error was encountered. */
6725
6726 static int
6727 goa_stabilize_expr (tree *expr_p, gimple_seq *pre_p, tree lhs_addr,
6728 tree lhs_var)
6729 {
6730 tree expr = *expr_p;
6731 int saw_lhs;
6732
6733 if (goa_lhs_expr_p (expr, lhs_addr))
6734 {
6735 *expr_p = lhs_var;
6736 return 1;
6737 }
6738 if (is_gimple_val (expr))
6739 return 0;
6740
6741 saw_lhs = 0;
6742 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
6743 {
6744 case tcc_binary:
6745 case tcc_comparison:
6746 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p, lhs_addr,
6747 lhs_var);
6748 case tcc_unary:
6749 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p, lhs_addr,
6750 lhs_var);
6751 break;
6752 case tcc_expression:
6753 switch (TREE_CODE (expr))
6754 {
6755 case TRUTH_ANDIF_EXPR:
6756 case TRUTH_ORIF_EXPR:
6757 case TRUTH_AND_EXPR:
6758 case TRUTH_OR_EXPR:
6759 case TRUTH_XOR_EXPR:
6760 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
6761 lhs_addr, lhs_var);
6762 case TRUTH_NOT_EXPR:
6763 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
6764 lhs_addr, lhs_var);
6765 break;
6766 case COMPOUND_EXPR:
6767 /* Break out any preevaluations from cp_build_modify_expr. */
6768 for (; TREE_CODE (expr) == COMPOUND_EXPR;
6769 expr = TREE_OPERAND (expr, 1))
6770 gimplify_stmt (&TREE_OPERAND (expr, 0), pre_p);
6771 *expr_p = expr;
6772 return goa_stabilize_expr (expr_p, pre_p, lhs_addr, lhs_var);
6773 default:
6774 break;
6775 }
6776 break;
6777 default:
6778 break;
6779 }
6780
6781 if (saw_lhs == 0)
6782 {
6783 enum gimplify_status gs;
6784 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
6785 if (gs != GS_ALL_DONE)
6786 saw_lhs = -1;
6787 }
6788
6789 return saw_lhs;
6790 }
6791
6792 /* Gimplify an OMP_ATOMIC statement. */
6793
6794 static enum gimplify_status
6795 gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
6796 {
6797 tree addr = TREE_OPERAND (*expr_p, 0);
6798 tree rhs = TREE_CODE (*expr_p) == OMP_ATOMIC_READ
6799 ? NULL : TREE_OPERAND (*expr_p, 1);
6800 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
6801 tree tmp_load;
6802 gimple loadstmt, storestmt;
6803
6804 tmp_load = create_tmp_reg (type, NULL);
6805 if (rhs && goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
6806 return GS_ERROR;
6807
6808 if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
6809 != GS_ALL_DONE)
6810 return GS_ERROR;
6811
6812 loadstmt = gimple_build_omp_atomic_load (tmp_load, addr);
6813 gimplify_seq_add_stmt (pre_p, loadstmt);
6814 if (rhs && gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
6815 != GS_ALL_DONE)
6816 return GS_ERROR;
6817
6818 if (TREE_CODE (*expr_p) == OMP_ATOMIC_READ)
6819 rhs = tmp_load;
6820 storestmt = gimple_build_omp_atomic_store (rhs);
6821 gimplify_seq_add_stmt (pre_p, storestmt);
6822 switch (TREE_CODE (*expr_p))
6823 {
6824 case OMP_ATOMIC_READ:
6825 case OMP_ATOMIC_CAPTURE_OLD:
6826 *expr_p = tmp_load;
6827 gimple_omp_atomic_set_need_value (loadstmt);
6828 break;
6829 case OMP_ATOMIC_CAPTURE_NEW:
6830 *expr_p = rhs;
6831 gimple_omp_atomic_set_need_value (storestmt);
6832 break;
6833 default:
6834 *expr_p = NULL;
6835 break;
6836 }
6837
6838 return GS_ALL_DONE;
6839 }
6840
6841 /* Gimplify a TRANSACTION_EXPR. This involves gimplification of the
6842 body, and adding some EH bits. */
6843
6844 static enum gimplify_status
6845 gimplify_transaction (tree *expr_p, gimple_seq *pre_p)
6846 {
6847 tree expr = *expr_p, temp, tbody = TRANSACTION_EXPR_BODY (expr);
6848 gimple g;
6849 gimple_seq body = NULL;
6850 struct gimplify_ctx gctx;
6851 int subcode = 0;
6852
6853 /* Wrap the transaction body in a BIND_EXPR so we have a context
6854 where to put decls for OpenMP. */
6855 if (TREE_CODE (tbody) != BIND_EXPR)
6856 {
6857 tree bind = build3 (BIND_EXPR, void_type_node, NULL, tbody, NULL);
6858 TREE_SIDE_EFFECTS (bind) = 1;
6859 SET_EXPR_LOCATION (bind, EXPR_LOCATION (tbody));
6860 TRANSACTION_EXPR_BODY (expr) = bind;
6861 }
6862
6863 push_gimplify_context (&gctx);
6864 temp = voidify_wrapper_expr (*expr_p, NULL);
6865
6866 g = gimplify_and_return_first (TRANSACTION_EXPR_BODY (expr), &body);
6867 pop_gimplify_context (g);
6868
6869 g = gimple_build_transaction (body, NULL);
6870 if (TRANSACTION_EXPR_OUTER (expr))
6871 subcode = GTMA_IS_OUTER;
6872 else if (TRANSACTION_EXPR_RELAXED (expr))
6873 subcode = GTMA_IS_RELAXED;
6874 gimple_transaction_set_subcode (g, subcode);
6875
6876 gimplify_seq_add_stmt (pre_p, g);
6877
6878 if (temp)
6879 {
6880 *expr_p = temp;
6881 return GS_OK;
6882 }
6883
6884 *expr_p = NULL_TREE;
6885 return GS_ALL_DONE;
6886 }
6887
6888 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6889 expression produces a value to be used as an operand inside a GIMPLE
6890 statement, the value will be stored back in *EXPR_P. This value will
6891 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6892 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6893 emitted in PRE_P and POST_P.
6894
6895 Additionally, this process may overwrite parts of the input
6896 expression during gimplification. Ideally, it should be
6897 possible to do non-destructive gimplification.
6898
6899 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6900 the expression needs to evaluate to a value to be used as
6901 an operand in a GIMPLE statement, this value will be stored in
6902 *EXPR_P on exit. This happens when the caller specifies one
6903 of fb_lvalue or fb_rvalue fallback flags.
6904
6905 PRE_P will contain the sequence of GIMPLE statements corresponding
6906 to the evaluation of EXPR and all the side-effects that must
6907 be executed before the main expression. On exit, the last
6908 statement of PRE_P is the core statement being gimplified. For
6909 instance, when gimplifying 'if (++a)' the last statement in
6910 PRE_P will be 'if (t.1)' where t.1 is the result of
6911 pre-incrementing 'a'.
6912
6913 POST_P will contain the sequence of GIMPLE statements corresponding
6914 to the evaluation of all the side-effects that must be executed
6915 after the main expression. If this is NULL, the post
6916 side-effects are stored at the end of PRE_P.
6917
6918 The reason why the output is split in two is to handle post
6919 side-effects explicitly. In some cases, an expression may have
6920 inner and outer post side-effects which need to be emitted in
6921 an order different from the one given by the recursive
6922 traversal. For instance, for the expression (*p--)++ the post
6923 side-effects of '--' must actually occur *after* the post
6924 side-effects of '++'. However, gimplification will first visit
6925 the inner expression, so if a separate POST sequence was not
6926 used, the resulting sequence would be:
6927
6928 1 t.1 = *p
6929 2 p = p - 1
6930 3 t.2 = t.1 + 1
6931 4 *p = t.2
6932
6933 However, the post-decrement operation in line #2 must not be
6934 evaluated until after the store to *p at line #4, so the
6935 correct sequence should be:
6936
6937 1 t.1 = *p
6938 2 t.2 = t.1 + 1
6939 3 *p = t.2
6940 4 p = p - 1
6941
6942 So, by specifying a separate post queue, it is possible
6943 to emit the post side-effects in the correct order.
6944 If POST_P is NULL, an internal queue will be used. Before
6945 returning to the caller, the sequence POST_P is appended to
6946 the main output sequence PRE_P.
6947
6948 GIMPLE_TEST_F points to a function that takes a tree T and
6949 returns nonzero if T is in the GIMPLE form requested by the
6950 caller. The GIMPLE predicates are in gimple.c.
6951
6952 FALLBACK tells the function what sort of a temporary we want if
6953 gimplification cannot produce an expression that complies with
6954 GIMPLE_TEST_F.
6955
6956 fb_none means that no temporary should be generated
6957 fb_rvalue means that an rvalue is OK to generate
6958 fb_lvalue means that an lvalue is OK to generate
6959 fb_either means that either is OK, but an lvalue is preferable.
6960 fb_mayfail means that gimplification may fail (in which case
6961 GS_ERROR will be returned)
6962
6963 The return value is either GS_ERROR or GS_ALL_DONE, since this
6964 function iterates until EXPR is completely gimplified or an error
6965 occurs. */
6966
6967 enum gimplify_status
6968 gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
6969 bool (*gimple_test_f) (tree), fallback_t fallback)
6970 {
6971 tree tmp;
6972 gimple_seq internal_pre = NULL;
6973 gimple_seq internal_post = NULL;
6974 tree save_expr;
6975 bool is_statement;
6976 location_t saved_location;
6977 enum gimplify_status ret;
6978 gimple_stmt_iterator pre_last_gsi, post_last_gsi;
6979
6980 save_expr = *expr_p;
6981 if (save_expr == NULL_TREE)
6982 return GS_ALL_DONE;
6983
6984 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
6985 is_statement = gimple_test_f == is_gimple_stmt;
6986 if (is_statement)
6987 gcc_assert (pre_p);
6988
6989 /* Consistency checks. */
6990 if (gimple_test_f == is_gimple_reg)
6991 gcc_assert (fallback & (fb_rvalue | fb_lvalue));
6992 else if (gimple_test_f == is_gimple_val
6993 || gimple_test_f == is_gimple_call_addr
6994 || gimple_test_f == is_gimple_condexpr
6995 || gimple_test_f == is_gimple_mem_rhs
6996 || gimple_test_f == is_gimple_mem_rhs_or_call
6997 || gimple_test_f == is_gimple_reg_rhs
6998 || gimple_test_f == is_gimple_reg_rhs_or_call
6999 || gimple_test_f == is_gimple_asm_val
7000 || gimple_test_f == is_gimple_mem_ref_addr)
7001 gcc_assert (fallback & fb_rvalue);
7002 else if (gimple_test_f == is_gimple_min_lval
7003 || gimple_test_f == is_gimple_lvalue)
7004 gcc_assert (fallback & fb_lvalue);
7005 else if (gimple_test_f == is_gimple_addressable)
7006 gcc_assert (fallback & fb_either);
7007 else if (gimple_test_f == is_gimple_stmt)
7008 gcc_assert (fallback == fb_none);
7009 else
7010 {
7011 /* We should have recognized the GIMPLE_TEST_F predicate to
7012 know what kind of fallback to use in case a temporary is
7013 needed to hold the value or address of *EXPR_P. */
7014 gcc_unreachable ();
7015 }
7016
7017 /* We used to check the predicate here and return immediately if it
7018 succeeds. This is wrong; the design is for gimplification to be
7019 idempotent, and for the predicates to only test for valid forms, not
7020 whether they are fully simplified. */
7021 if (pre_p == NULL)
7022 pre_p = &internal_pre;
7023
7024 if (post_p == NULL)
7025 post_p = &internal_post;
7026
7027 /* Remember the last statements added to PRE_P and POST_P. Every
7028 new statement added by the gimplification helpers needs to be
7029 annotated with location information. To centralize the
7030 responsibility, we remember the last statement that had been
7031 added to both queues before gimplifying *EXPR_P. If
7032 gimplification produces new statements in PRE_P and POST_P, those
7033 statements will be annotated with the same location information
7034 as *EXPR_P. */
7035 pre_last_gsi = gsi_last (*pre_p);
7036 post_last_gsi = gsi_last (*post_p);
7037
7038 saved_location = input_location;
7039 if (save_expr != error_mark_node
7040 && EXPR_HAS_LOCATION (*expr_p))
7041 input_location = EXPR_LOCATION (*expr_p);
7042
7043 /* Loop over the specific gimplifiers until the toplevel node
7044 remains the same. */
7045 do
7046 {
7047 /* Strip away as many useless type conversions as possible
7048 at the toplevel. */
7049 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
7050
7051 /* Remember the expr. */
7052 save_expr = *expr_p;
7053
7054 /* Die, die, die, my darling. */
7055 if (save_expr == error_mark_node
7056 || (TREE_TYPE (save_expr)
7057 && TREE_TYPE (save_expr) == error_mark_node))
7058 {
7059 ret = GS_ERROR;
7060 break;
7061 }
7062
7063 /* Do any language-specific gimplification. */
7064 ret = ((enum gimplify_status)
7065 lang_hooks.gimplify_expr (expr_p, pre_p, post_p));
7066 if (ret == GS_OK)
7067 {
7068 if (*expr_p == NULL_TREE)
7069 break;
7070 if (*expr_p != save_expr)
7071 continue;
7072 }
7073 else if (ret != GS_UNHANDLED)
7074 break;
7075
7076 /* Make sure that all the cases set 'ret' appropriately. */
7077 ret = GS_UNHANDLED;
7078 switch (TREE_CODE (*expr_p))
7079 {
7080 /* First deal with the special cases. */
7081
7082 case POSTINCREMENT_EXPR:
7083 case POSTDECREMENT_EXPR:
7084 case PREINCREMENT_EXPR:
7085 case PREDECREMENT_EXPR:
7086 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
7087 fallback != fb_none);
7088 break;
7089
7090 case ARRAY_REF:
7091 case ARRAY_RANGE_REF:
7092 case REALPART_EXPR:
7093 case IMAGPART_EXPR:
7094 case COMPONENT_REF:
7095 case VIEW_CONVERT_EXPR:
7096 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
7097 fallback ? fallback : fb_rvalue);
7098 break;
7099
7100 case COND_EXPR:
7101 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
7102
7103 /* C99 code may assign to an array in a structure value of a
7104 conditional expression, and this has undefined behavior
7105 only on execution, so create a temporary if an lvalue is
7106 required. */
7107 if (fallback == fb_lvalue)
7108 {
7109 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7110 mark_addressable (*expr_p);
7111 ret = GS_OK;
7112 }
7113 break;
7114
7115 case CALL_EXPR:
7116 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
7117
7118 /* C99 code may assign to an array in a structure returned
7119 from a function, and this has undefined behavior only on
7120 execution, so create a temporary if an lvalue is
7121 required. */
7122 if (fallback == fb_lvalue)
7123 {
7124 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7125 mark_addressable (*expr_p);
7126 ret = GS_OK;
7127 }
7128 break;
7129
7130 case TREE_LIST:
7131 gcc_unreachable ();
7132
7133 case COMPOUND_EXPR:
7134 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
7135 break;
7136
7137 case COMPOUND_LITERAL_EXPR:
7138 ret = gimplify_compound_literal_expr (expr_p, pre_p,
7139 gimple_test_f, fallback);
7140 break;
7141
7142 case MODIFY_EXPR:
7143 case INIT_EXPR:
7144 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
7145 fallback != fb_none);
7146 break;
7147
7148 case TRUTH_ANDIF_EXPR:
7149 case TRUTH_ORIF_EXPR:
7150 {
7151 /* Preserve the original type of the expression and the
7152 source location of the outer expression. */
7153 tree org_type = TREE_TYPE (*expr_p);
7154 *expr_p = gimple_boolify (*expr_p);
7155 *expr_p = build3_loc (input_location, COND_EXPR,
7156 org_type, *expr_p,
7157 fold_convert_loc
7158 (input_location,
7159 org_type, boolean_true_node),
7160 fold_convert_loc
7161 (input_location,
7162 org_type, boolean_false_node));
7163 ret = GS_OK;
7164 break;
7165 }
7166
7167 case TRUTH_NOT_EXPR:
7168 {
7169 tree type = TREE_TYPE (*expr_p);
7170 /* The parsers are careful to generate TRUTH_NOT_EXPR
7171 only with operands that are always zero or one.
7172 We do not fold here but handle the only interesting case
7173 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
7174 *expr_p = gimple_boolify (*expr_p);
7175 if (TYPE_PRECISION (TREE_TYPE (*expr_p)) == 1)
7176 *expr_p = build1_loc (input_location, BIT_NOT_EXPR,
7177 TREE_TYPE (*expr_p),
7178 TREE_OPERAND (*expr_p, 0));
7179 else
7180 *expr_p = build2_loc (input_location, BIT_XOR_EXPR,
7181 TREE_TYPE (*expr_p),
7182 TREE_OPERAND (*expr_p, 0),
7183 build_int_cst (TREE_TYPE (*expr_p), 1));
7184 if (!useless_type_conversion_p (type, TREE_TYPE (*expr_p)))
7185 *expr_p = fold_convert_loc (input_location, type, *expr_p);
7186 ret = GS_OK;
7187 break;
7188 }
7189
7190 case ADDR_EXPR:
7191 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
7192 break;
7193
7194 case VA_ARG_EXPR:
7195 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
7196 break;
7197
7198 CASE_CONVERT:
7199 if (IS_EMPTY_STMT (*expr_p))
7200 {
7201 ret = GS_ALL_DONE;
7202 break;
7203 }
7204
7205 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
7206 || fallback == fb_none)
7207 {
7208 /* Just strip a conversion to void (or in void context) and
7209 try again. */
7210 *expr_p = TREE_OPERAND (*expr_p, 0);
7211 ret = GS_OK;
7212 break;
7213 }
7214
7215 ret = gimplify_conversion (expr_p);
7216 if (ret == GS_ERROR)
7217 break;
7218 if (*expr_p != save_expr)
7219 break;
7220 /* FALLTHRU */
7221
7222 case FIX_TRUNC_EXPR:
7223 /* unary_expr: ... | '(' cast ')' val | ... */
7224 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7225 is_gimple_val, fb_rvalue);
7226 recalculate_side_effects (*expr_p);
7227 break;
7228
7229 case INDIRECT_REF:
7230 {
7231 bool volatilep = TREE_THIS_VOLATILE (*expr_p);
7232 bool notrap = TREE_THIS_NOTRAP (*expr_p);
7233 tree saved_ptr_type = TREE_TYPE (TREE_OPERAND (*expr_p, 0));
7234
7235 *expr_p = fold_indirect_ref_loc (input_location, *expr_p);
7236 if (*expr_p != save_expr)
7237 {
7238 ret = GS_OK;
7239 break;
7240 }
7241
7242 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7243 is_gimple_reg, fb_rvalue);
7244 if (ret == GS_ERROR)
7245 break;
7246
7247 recalculate_side_effects (*expr_p);
7248 *expr_p = fold_build2_loc (input_location, MEM_REF,
7249 TREE_TYPE (*expr_p),
7250 TREE_OPERAND (*expr_p, 0),
7251 build_int_cst (saved_ptr_type, 0));
7252 TREE_THIS_VOLATILE (*expr_p) = volatilep;
7253 TREE_THIS_NOTRAP (*expr_p) = notrap;
7254 ret = GS_OK;
7255 break;
7256 }
7257
7258 /* We arrive here through the various re-gimplifcation paths. */
7259 case MEM_REF:
7260 /* First try re-folding the whole thing. */
7261 tmp = fold_binary (MEM_REF, TREE_TYPE (*expr_p),
7262 TREE_OPERAND (*expr_p, 0),
7263 TREE_OPERAND (*expr_p, 1));
7264 if (tmp)
7265 {
7266 *expr_p = tmp;
7267 recalculate_side_effects (*expr_p);
7268 ret = GS_OK;
7269 break;
7270 }
7271 /* Avoid re-gimplifying the address operand if it is already
7272 in suitable form. Re-gimplifying would mark the address
7273 operand addressable. Always gimplify when not in SSA form
7274 as we still may have to gimplify decls with value-exprs. */
7275 if (!gimplify_ctxp || !gimplify_ctxp->into_ssa
7276 || !is_gimple_mem_ref_addr (TREE_OPERAND (*expr_p, 0)))
7277 {
7278 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7279 is_gimple_mem_ref_addr, fb_rvalue);
7280 if (ret == GS_ERROR)
7281 break;
7282 }
7283 recalculate_side_effects (*expr_p);
7284 ret = GS_ALL_DONE;
7285 break;
7286
7287 /* Constants need not be gimplified. */
7288 case INTEGER_CST:
7289 case REAL_CST:
7290 case FIXED_CST:
7291 case STRING_CST:
7292 case COMPLEX_CST:
7293 case VECTOR_CST:
7294 ret = GS_ALL_DONE;
7295 break;
7296
7297 case CONST_DECL:
7298 /* If we require an lvalue, such as for ADDR_EXPR, retain the
7299 CONST_DECL node. Otherwise the decl is replaceable by its
7300 value. */
7301 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
7302 if (fallback & fb_lvalue)
7303 ret = GS_ALL_DONE;
7304 else
7305 {
7306 *expr_p = DECL_INITIAL (*expr_p);
7307 ret = GS_OK;
7308 }
7309 break;
7310
7311 case DECL_EXPR:
7312 ret = gimplify_decl_expr (expr_p, pre_p);
7313 break;
7314
7315 case BIND_EXPR:
7316 ret = gimplify_bind_expr (expr_p, pre_p);
7317 break;
7318
7319 case LOOP_EXPR:
7320 ret = gimplify_loop_expr (expr_p, pre_p);
7321 break;
7322
7323 case SWITCH_EXPR:
7324 ret = gimplify_switch_expr (expr_p, pre_p);
7325 break;
7326
7327 case EXIT_EXPR:
7328 ret = gimplify_exit_expr (expr_p);
7329 break;
7330
7331 case GOTO_EXPR:
7332 /* If the target is not LABEL, then it is a computed jump
7333 and the target needs to be gimplified. */
7334 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
7335 {
7336 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
7337 NULL, is_gimple_val, fb_rvalue);
7338 if (ret == GS_ERROR)
7339 break;
7340 }
7341 gimplify_seq_add_stmt (pre_p,
7342 gimple_build_goto (GOTO_DESTINATION (*expr_p)));
7343 ret = GS_ALL_DONE;
7344 break;
7345
7346 case PREDICT_EXPR:
7347 gimplify_seq_add_stmt (pre_p,
7348 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p),
7349 PREDICT_EXPR_OUTCOME (*expr_p)));
7350 ret = GS_ALL_DONE;
7351 break;
7352
7353 case LABEL_EXPR:
7354 ret = GS_ALL_DONE;
7355 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
7356 == current_function_decl);
7357 gimplify_seq_add_stmt (pre_p,
7358 gimple_build_label (LABEL_EXPR_LABEL (*expr_p)));
7359 break;
7360
7361 case CASE_LABEL_EXPR:
7362 ret = gimplify_case_label_expr (expr_p, pre_p);
7363 break;
7364
7365 case RETURN_EXPR:
7366 ret = gimplify_return_expr (*expr_p, pre_p);
7367 break;
7368
7369 case CONSTRUCTOR:
7370 /* Don't reduce this in place; let gimplify_init_constructor work its
7371 magic. Buf if we're just elaborating this for side effects, just
7372 gimplify any element that has side-effects. */
7373 if (fallback == fb_none)
7374 {
7375 unsigned HOST_WIDE_INT ix;
7376 tree val;
7377 tree temp = NULL_TREE;
7378 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p), ix, val)
7379 if (TREE_SIDE_EFFECTS (val))
7380 append_to_statement_list (val, &temp);
7381
7382 *expr_p = temp;
7383 ret = temp ? GS_OK : GS_ALL_DONE;
7384 }
7385 /* C99 code may assign to an array in a constructed
7386 structure or union, and this has undefined behavior only
7387 on execution, so create a temporary if an lvalue is
7388 required. */
7389 else if (fallback == fb_lvalue)
7390 {
7391 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7392 mark_addressable (*expr_p);
7393 ret = GS_OK;
7394 }
7395 else
7396 ret = GS_ALL_DONE;
7397 break;
7398
7399 /* The following are special cases that are not handled by the
7400 original GIMPLE grammar. */
7401
7402 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7403 eliminated. */
7404 case SAVE_EXPR:
7405 ret = gimplify_save_expr (expr_p, pre_p, post_p);
7406 break;
7407
7408 case BIT_FIELD_REF:
7409 {
7410 enum gimplify_status r0, r1, r2;
7411
7412 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7413 post_p, is_gimple_lvalue, fb_either);
7414 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7415 post_p, is_gimple_val, fb_rvalue);
7416 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7417 post_p, is_gimple_val, fb_rvalue);
7418 recalculate_side_effects (*expr_p);
7419
7420 ret = MIN (r0, MIN (r1, r2));
7421 }
7422 break;
7423
7424 case TARGET_MEM_REF:
7425 {
7426 enum gimplify_status r0 = GS_ALL_DONE, r1 = GS_ALL_DONE;
7427
7428 if (TMR_BASE (*expr_p))
7429 r0 = gimplify_expr (&TMR_BASE (*expr_p), pre_p,
7430 post_p, is_gimple_mem_ref_addr, fb_either);
7431 if (TMR_INDEX (*expr_p))
7432 r1 = gimplify_expr (&TMR_INDEX (*expr_p), pre_p,
7433 post_p, is_gimple_val, fb_rvalue);
7434 if (TMR_INDEX2 (*expr_p))
7435 r1 = gimplify_expr (&TMR_INDEX2 (*expr_p), pre_p,
7436 post_p, is_gimple_val, fb_rvalue);
7437 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7438 ret = MIN (r0, r1);
7439 }
7440 break;
7441
7442 case NON_LVALUE_EXPR:
7443 /* This should have been stripped above. */
7444 gcc_unreachable ();
7445
7446 case ASM_EXPR:
7447 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
7448 break;
7449
7450 case TRY_FINALLY_EXPR:
7451 case TRY_CATCH_EXPR:
7452 {
7453 gimple_seq eval, cleanup;
7454 gimple try_;
7455
7456 eval = cleanup = NULL;
7457 gimplify_and_add (TREE_OPERAND (*expr_p, 0), &eval);
7458 gimplify_and_add (TREE_OPERAND (*expr_p, 1), &cleanup);
7459 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7460 if (gimple_seq_empty_p (cleanup))
7461 {
7462 gimple_seq_add_seq (pre_p, eval);
7463 ret = GS_ALL_DONE;
7464 break;
7465 }
7466 try_ = gimple_build_try (eval, cleanup,
7467 TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
7468 ? GIMPLE_TRY_FINALLY
7469 : GIMPLE_TRY_CATCH);
7470 if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
7471 gimple_try_set_catch_is_cleanup (try_,
7472 TRY_CATCH_IS_CLEANUP (*expr_p));
7473 gimplify_seq_add_stmt (pre_p, try_);
7474 ret = GS_ALL_DONE;
7475 break;
7476 }
7477
7478 case CLEANUP_POINT_EXPR:
7479 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
7480 break;
7481
7482 case TARGET_EXPR:
7483 ret = gimplify_target_expr (expr_p, pre_p, post_p);
7484 break;
7485
7486 case CATCH_EXPR:
7487 {
7488 gimple c;
7489 gimple_seq handler = NULL;
7490 gimplify_and_add (CATCH_BODY (*expr_p), &handler);
7491 c = gimple_build_catch (CATCH_TYPES (*expr_p), handler);
7492 gimplify_seq_add_stmt (pre_p, c);
7493 ret = GS_ALL_DONE;
7494 break;
7495 }
7496
7497 case EH_FILTER_EXPR:
7498 {
7499 gimple ehf;
7500 gimple_seq failure = NULL;
7501
7502 gimplify_and_add (EH_FILTER_FAILURE (*expr_p), &failure);
7503 ehf = gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p), failure);
7504 gimple_set_no_warning (ehf, TREE_NO_WARNING (*expr_p));
7505 gimplify_seq_add_stmt (pre_p, ehf);
7506 ret = GS_ALL_DONE;
7507 break;
7508 }
7509
7510 case OBJ_TYPE_REF:
7511 {
7512 enum gimplify_status r0, r1;
7513 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p,
7514 post_p, is_gimple_val, fb_rvalue);
7515 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p,
7516 post_p, is_gimple_val, fb_rvalue);
7517 TREE_SIDE_EFFECTS (*expr_p) = 0;
7518 ret = MIN (r0, r1);
7519 }
7520 break;
7521
7522 case LABEL_DECL:
7523 /* We get here when taking the address of a label. We mark
7524 the label as "forced"; meaning it can never be removed and
7525 it is a potential target for any computed goto. */
7526 FORCED_LABEL (*expr_p) = 1;
7527 ret = GS_ALL_DONE;
7528 break;
7529
7530 case STATEMENT_LIST:
7531 ret = gimplify_statement_list (expr_p, pre_p);
7532 break;
7533
7534 case WITH_SIZE_EXPR:
7535 {
7536 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7537 post_p == &internal_post ? NULL : post_p,
7538 gimple_test_f, fallback);
7539 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7540 is_gimple_val, fb_rvalue);
7541 ret = GS_ALL_DONE;
7542 }
7543 break;
7544
7545 case VAR_DECL:
7546 case PARM_DECL:
7547 ret = gimplify_var_or_parm_decl (expr_p);
7548 break;
7549
7550 case RESULT_DECL:
7551 /* When within an OpenMP context, notice uses of variables. */
7552 if (gimplify_omp_ctxp)
7553 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
7554 ret = GS_ALL_DONE;
7555 break;
7556
7557 case SSA_NAME:
7558 /* Allow callbacks into the gimplifier during optimization. */
7559 ret = GS_ALL_DONE;
7560 break;
7561
7562 case OMP_PARALLEL:
7563 gimplify_omp_parallel (expr_p, pre_p);
7564 ret = GS_ALL_DONE;
7565 break;
7566
7567 case OMP_TASK:
7568 gimplify_omp_task (expr_p, pre_p);
7569 ret = GS_ALL_DONE;
7570 break;
7571
7572 case OMP_FOR:
7573 ret = gimplify_omp_for (expr_p, pre_p);
7574 break;
7575
7576 case OMP_SECTIONS:
7577 case OMP_SINGLE:
7578 gimplify_omp_workshare (expr_p, pre_p);
7579 ret = GS_ALL_DONE;
7580 break;
7581
7582 case OMP_SECTION:
7583 case OMP_MASTER:
7584 case OMP_ORDERED:
7585 case OMP_CRITICAL:
7586 {
7587 gimple_seq body = NULL;
7588 gimple g;
7589
7590 gimplify_and_add (OMP_BODY (*expr_p), &body);
7591 switch (TREE_CODE (*expr_p))
7592 {
7593 case OMP_SECTION:
7594 g = gimple_build_omp_section (body);
7595 break;
7596 case OMP_MASTER:
7597 g = gimple_build_omp_master (body);
7598 break;
7599 case OMP_ORDERED:
7600 g = gimple_build_omp_ordered (body);
7601 break;
7602 case OMP_CRITICAL:
7603 g = gimple_build_omp_critical (body,
7604 OMP_CRITICAL_NAME (*expr_p));
7605 break;
7606 default:
7607 gcc_unreachable ();
7608 }
7609 gimplify_seq_add_stmt (pre_p, g);
7610 ret = GS_ALL_DONE;
7611 break;
7612 }
7613
7614 case OMP_ATOMIC:
7615 case OMP_ATOMIC_READ:
7616 case OMP_ATOMIC_CAPTURE_OLD:
7617 case OMP_ATOMIC_CAPTURE_NEW:
7618 ret = gimplify_omp_atomic (expr_p, pre_p);
7619 break;
7620
7621 case TRANSACTION_EXPR:
7622 ret = gimplify_transaction (expr_p, pre_p);
7623 break;
7624
7625 case TRUTH_AND_EXPR:
7626 case TRUTH_OR_EXPR:
7627 case TRUTH_XOR_EXPR:
7628 {
7629 tree orig_type = TREE_TYPE (*expr_p);
7630 tree new_type, xop0, xop1;
7631 *expr_p = gimple_boolify (*expr_p);
7632 new_type = TREE_TYPE (*expr_p);
7633 if (!useless_type_conversion_p (orig_type, new_type))
7634 {
7635 *expr_p = fold_convert_loc (input_location, orig_type, *expr_p);
7636 ret = GS_OK;
7637 break;
7638 }
7639
7640 /* Boolified binary truth expressions are semantically equivalent
7641 to bitwise binary expressions. Canonicalize them to the
7642 bitwise variant. */
7643 switch (TREE_CODE (*expr_p))
7644 {
7645 case TRUTH_AND_EXPR:
7646 TREE_SET_CODE (*expr_p, BIT_AND_EXPR);
7647 break;
7648 case TRUTH_OR_EXPR:
7649 TREE_SET_CODE (*expr_p, BIT_IOR_EXPR);
7650 break;
7651 case TRUTH_XOR_EXPR:
7652 TREE_SET_CODE (*expr_p, BIT_XOR_EXPR);
7653 break;
7654 default:
7655 break;
7656 }
7657 /* Now make sure that operands have compatible type to
7658 expression's new_type. */
7659 xop0 = TREE_OPERAND (*expr_p, 0);
7660 xop1 = TREE_OPERAND (*expr_p, 1);
7661 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop0)))
7662 TREE_OPERAND (*expr_p, 0) = fold_convert_loc (input_location,
7663 new_type,
7664 xop0);
7665 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop1)))
7666 TREE_OPERAND (*expr_p, 1) = fold_convert_loc (input_location,
7667 new_type,
7668 xop1);
7669 /* Continue classified as tcc_binary. */
7670 goto expr_2;
7671 }
7672
7673 case FMA_EXPR:
7674 case VEC_PERM_EXPR:
7675 /* Classified as tcc_expression. */
7676 goto expr_3;
7677
7678 case POINTER_PLUS_EXPR:
7679 {
7680 enum gimplify_status r0, r1;
7681 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7682 post_p, is_gimple_val, fb_rvalue);
7683 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7684 post_p, is_gimple_val, fb_rvalue);
7685 recalculate_side_effects (*expr_p);
7686 ret = MIN (r0, r1);
7687 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7688 after gimplifying operands - this is similar to how
7689 it would be folding all gimplified stmts on creation
7690 to have them canonicalized, which is what we eventually
7691 should do anyway. */
7692 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7693 && is_gimple_min_invariant (TREE_OPERAND (*expr_p, 0)))
7694 {
7695 *expr_p = build_fold_addr_expr_with_type_loc
7696 (input_location,
7697 fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (*expr_p)),
7698 TREE_OPERAND (*expr_p, 0),
7699 fold_convert (ptr_type_node,
7700 TREE_OPERAND (*expr_p, 1))),
7701 TREE_TYPE (*expr_p));
7702 ret = MIN (ret, GS_OK);
7703 }
7704 break;
7705 }
7706
7707 default:
7708 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
7709 {
7710 case tcc_comparison:
7711 /* Handle comparison of objects of non scalar mode aggregates
7712 with a call to memcmp. It would be nice to only have to do
7713 this for variable-sized objects, but then we'd have to allow
7714 the same nest of reference nodes we allow for MODIFY_EXPR and
7715 that's too complex.
7716
7717 Compare scalar mode aggregates as scalar mode values. Using
7718 memcmp for them would be very inefficient at best, and is
7719 plain wrong if bitfields are involved. */
7720 {
7721 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
7722
7723 /* Vector comparisons need no boolification. */
7724 if (TREE_CODE (type) == VECTOR_TYPE)
7725 goto expr_2;
7726 else if (!AGGREGATE_TYPE_P (type))
7727 {
7728 tree org_type = TREE_TYPE (*expr_p);
7729 *expr_p = gimple_boolify (*expr_p);
7730 if (!useless_type_conversion_p (org_type,
7731 TREE_TYPE (*expr_p)))
7732 {
7733 *expr_p = fold_convert_loc (input_location,
7734 org_type, *expr_p);
7735 ret = GS_OK;
7736 }
7737 else
7738 goto expr_2;
7739 }
7740 else if (TYPE_MODE (type) != BLKmode)
7741 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
7742 else
7743 ret = gimplify_variable_sized_compare (expr_p);
7744
7745 break;
7746 }
7747
7748 /* If *EXPR_P does not need to be special-cased, handle it
7749 according to its class. */
7750 case tcc_unary:
7751 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7752 post_p, is_gimple_val, fb_rvalue);
7753 break;
7754
7755 case tcc_binary:
7756 expr_2:
7757 {
7758 enum gimplify_status r0, r1;
7759
7760 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7761 post_p, is_gimple_val, fb_rvalue);
7762 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7763 post_p, is_gimple_val, fb_rvalue);
7764
7765 ret = MIN (r0, r1);
7766 break;
7767 }
7768
7769 expr_3:
7770 {
7771 enum gimplify_status r0, r1, r2;
7772
7773 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7774 post_p, is_gimple_val, fb_rvalue);
7775 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7776 post_p, is_gimple_val, fb_rvalue);
7777 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7778 post_p, is_gimple_val, fb_rvalue);
7779
7780 ret = MIN (MIN (r0, r1), r2);
7781 break;
7782 }
7783
7784 case tcc_declaration:
7785 case tcc_constant:
7786 ret = GS_ALL_DONE;
7787 goto dont_recalculate;
7788
7789 default:
7790 gcc_unreachable ();
7791 }
7792
7793 recalculate_side_effects (*expr_p);
7794
7795 dont_recalculate:
7796 break;
7797 }
7798
7799 gcc_assert (*expr_p || ret != GS_OK);
7800 }
7801 while (ret == GS_OK);
7802
7803 /* If we encountered an error_mark somewhere nested inside, either
7804 stub out the statement or propagate the error back out. */
7805 if (ret == GS_ERROR)
7806 {
7807 if (is_statement)
7808 *expr_p = NULL;
7809 goto out;
7810 }
7811
7812 /* This was only valid as a return value from the langhook, which
7813 we handled. Make sure it doesn't escape from any other context. */
7814 gcc_assert (ret != GS_UNHANDLED);
7815
7816 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
7817 {
7818 /* We aren't looking for a value, and we don't have a valid
7819 statement. If it doesn't have side-effects, throw it away. */
7820 if (!TREE_SIDE_EFFECTS (*expr_p))
7821 *expr_p = NULL;
7822 else if (!TREE_THIS_VOLATILE (*expr_p))
7823 {
7824 /* This is probably a _REF that contains something nested that
7825 has side effects. Recurse through the operands to find it. */
7826 enum tree_code code = TREE_CODE (*expr_p);
7827
7828 switch (code)
7829 {
7830 case COMPONENT_REF:
7831 case REALPART_EXPR:
7832 case IMAGPART_EXPR:
7833 case VIEW_CONVERT_EXPR:
7834 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7835 gimple_test_f, fallback);
7836 break;
7837
7838 case ARRAY_REF:
7839 case ARRAY_RANGE_REF:
7840 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7841 gimple_test_f, fallback);
7842 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7843 gimple_test_f, fallback);
7844 break;
7845
7846 default:
7847 /* Anything else with side-effects must be converted to
7848 a valid statement before we get here. */
7849 gcc_unreachable ();
7850 }
7851
7852 *expr_p = NULL;
7853 }
7854 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
7855 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
7856 {
7857 /* Historically, the compiler has treated a bare reference
7858 to a non-BLKmode volatile lvalue as forcing a load. */
7859 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
7860
7861 /* Normally, we do not want to create a temporary for a
7862 TREE_ADDRESSABLE type because such a type should not be
7863 copied by bitwise-assignment. However, we make an
7864 exception here, as all we are doing here is ensuring that
7865 we read the bytes that make up the type. We use
7866 create_tmp_var_raw because create_tmp_var will abort when
7867 given a TREE_ADDRESSABLE type. */
7868 tree tmp = create_tmp_var_raw (type, "vol");
7869 gimple_add_tmp_var (tmp);
7870 gimplify_assign (tmp, *expr_p, pre_p);
7871 *expr_p = NULL;
7872 }
7873 else
7874 /* We can't do anything useful with a volatile reference to
7875 an incomplete type, so just throw it away. Likewise for
7876 a BLKmode type, since any implicit inner load should
7877 already have been turned into an explicit one by the
7878 gimplification process. */
7879 *expr_p = NULL;
7880 }
7881
7882 /* If we are gimplifying at the statement level, we're done. Tack
7883 everything together and return. */
7884 if (fallback == fb_none || is_statement)
7885 {
7886 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7887 it out for GC to reclaim it. */
7888 *expr_p = NULL_TREE;
7889
7890 if (!gimple_seq_empty_p (internal_pre)
7891 || !gimple_seq_empty_p (internal_post))
7892 {
7893 gimplify_seq_add_seq (&internal_pre, internal_post);
7894 gimplify_seq_add_seq (pre_p, internal_pre);
7895 }
7896
7897 /* The result of gimplifying *EXPR_P is going to be the last few
7898 statements in *PRE_P and *POST_P. Add location information
7899 to all the statements that were added by the gimplification
7900 helpers. */
7901 if (!gimple_seq_empty_p (*pre_p))
7902 annotate_all_with_location_after (*pre_p, pre_last_gsi, input_location);
7903
7904 if (!gimple_seq_empty_p (*post_p))
7905 annotate_all_with_location_after (*post_p, post_last_gsi,
7906 input_location);
7907
7908 goto out;
7909 }
7910
7911 #ifdef ENABLE_GIMPLE_CHECKING
7912 if (*expr_p)
7913 {
7914 enum tree_code code = TREE_CODE (*expr_p);
7915 /* These expressions should already be in gimple IR form. */
7916 gcc_assert (code != MODIFY_EXPR
7917 && code != ASM_EXPR
7918 && code != BIND_EXPR
7919 && code != CATCH_EXPR
7920 && (code != COND_EXPR || gimplify_ctxp->allow_rhs_cond_expr)
7921 && code != EH_FILTER_EXPR
7922 && code != GOTO_EXPR
7923 && code != LABEL_EXPR
7924 && code != LOOP_EXPR
7925 && code != SWITCH_EXPR
7926 && code != TRY_FINALLY_EXPR
7927 && code != OMP_CRITICAL
7928 && code != OMP_FOR
7929 && code != OMP_MASTER
7930 && code != OMP_ORDERED
7931 && code != OMP_PARALLEL
7932 && code != OMP_SECTIONS
7933 && code != OMP_SECTION
7934 && code != OMP_SINGLE);
7935 }
7936 #endif
7937
7938 /* Otherwise we're gimplifying a subexpression, so the resulting
7939 value is interesting. If it's a valid operand that matches
7940 GIMPLE_TEST_F, we're done. Unless we are handling some
7941 post-effects internally; if that's the case, we need to copy into
7942 a temporary before adding the post-effects to POST_P. */
7943 if (gimple_seq_empty_p (internal_post) && (*gimple_test_f) (*expr_p))
7944 goto out;
7945
7946 /* Otherwise, we need to create a new temporary for the gimplified
7947 expression. */
7948
7949 /* We can't return an lvalue if we have an internal postqueue. The
7950 object the lvalue refers to would (probably) be modified by the
7951 postqueue; we need to copy the value out first, which means an
7952 rvalue. */
7953 if ((fallback & fb_lvalue)
7954 && gimple_seq_empty_p (internal_post)
7955 && is_gimple_addressable (*expr_p))
7956 {
7957 /* An lvalue will do. Take the address of the expression, store it
7958 in a temporary, and replace the expression with an INDIRECT_REF of
7959 that temporary. */
7960 tmp = build_fold_addr_expr_loc (input_location, *expr_p);
7961 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
7962 *expr_p = build_simple_mem_ref (tmp);
7963 }
7964 else if ((fallback & fb_rvalue) && is_gimple_reg_rhs_or_call (*expr_p))
7965 {
7966 /* An rvalue will do. Assign the gimplified expression into a
7967 new temporary TMP and replace the original expression with
7968 TMP. First, make sure that the expression has a type so that
7969 it can be assigned into a temporary. */
7970 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
7971 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
7972 }
7973 else
7974 {
7975 #ifdef ENABLE_GIMPLE_CHECKING
7976 if (!(fallback & fb_mayfail))
7977 {
7978 fprintf (stderr, "gimplification failed:\n");
7979 print_generic_expr (stderr, *expr_p, 0);
7980 debug_tree (*expr_p);
7981 internal_error ("gimplification failed");
7982 }
7983 #endif
7984 gcc_assert (fallback & fb_mayfail);
7985
7986 /* If this is an asm statement, and the user asked for the
7987 impossible, don't die. Fail and let gimplify_asm_expr
7988 issue an error. */
7989 ret = GS_ERROR;
7990 goto out;
7991 }
7992
7993 /* Make sure the temporary matches our predicate. */
7994 gcc_assert ((*gimple_test_f) (*expr_p));
7995
7996 if (!gimple_seq_empty_p (internal_post))
7997 {
7998 annotate_all_with_location (internal_post, input_location);
7999 gimplify_seq_add_seq (pre_p, internal_post);
8000 }
8001
8002 out:
8003 input_location = saved_location;
8004 return ret;
8005 }
8006
8007 /* Look through TYPE for variable-sized objects and gimplify each such
8008 size that we find. Add to LIST_P any statements generated. */
8009
8010 void
8011 gimplify_type_sizes (tree type, gimple_seq *list_p)
8012 {
8013 tree field, t;
8014
8015 if (type == NULL || type == error_mark_node)
8016 return;
8017
8018 /* We first do the main variant, then copy into any other variants. */
8019 type = TYPE_MAIN_VARIANT (type);
8020
8021 /* Avoid infinite recursion. */
8022 if (TYPE_SIZES_GIMPLIFIED (type))
8023 return;
8024
8025 TYPE_SIZES_GIMPLIFIED (type) = 1;
8026
8027 switch (TREE_CODE (type))
8028 {
8029 case INTEGER_TYPE:
8030 case ENUMERAL_TYPE:
8031 case BOOLEAN_TYPE:
8032 case REAL_TYPE:
8033 case FIXED_POINT_TYPE:
8034 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
8035 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
8036
8037 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8038 {
8039 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
8040 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
8041 }
8042 break;
8043
8044 case ARRAY_TYPE:
8045 /* These types may not have declarations, so handle them here. */
8046 gimplify_type_sizes (TREE_TYPE (type), list_p);
8047 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
8048 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
8049 with assigned stack slots, for -O1+ -g they should be tracked
8050 by VTA. */
8051 if (!(TYPE_NAME (type)
8052 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
8053 && DECL_IGNORED_P (TYPE_NAME (type)))
8054 && TYPE_DOMAIN (type)
8055 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type)))
8056 {
8057 t = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
8058 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8059 DECL_IGNORED_P (t) = 0;
8060 t = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
8061 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8062 DECL_IGNORED_P (t) = 0;
8063 }
8064 break;
8065
8066 case RECORD_TYPE:
8067 case UNION_TYPE:
8068 case QUAL_UNION_TYPE:
8069 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
8070 if (TREE_CODE (field) == FIELD_DECL)
8071 {
8072 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
8073 gimplify_one_sizepos (&DECL_SIZE (field), list_p);
8074 gimplify_one_sizepos (&DECL_SIZE_UNIT (field), list_p);
8075 gimplify_type_sizes (TREE_TYPE (field), list_p);
8076 }
8077 break;
8078
8079 case POINTER_TYPE:
8080 case REFERENCE_TYPE:
8081 /* We used to recurse on the pointed-to type here, which turned out to
8082 be incorrect because its definition might refer to variables not
8083 yet initialized at this point if a forward declaration is involved.
8084
8085 It was actually useful for anonymous pointed-to types to ensure
8086 that the sizes evaluation dominates every possible later use of the
8087 values. Restricting to such types here would be safe since there
8088 is no possible forward declaration around, but would introduce an
8089 undesirable middle-end semantic to anonymity. We then defer to
8090 front-ends the responsibility of ensuring that the sizes are
8091 evaluated both early and late enough, e.g. by attaching artificial
8092 type declarations to the tree. */
8093 break;
8094
8095 default:
8096 break;
8097 }
8098
8099 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
8100 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
8101
8102 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8103 {
8104 TYPE_SIZE (t) = TYPE_SIZE (type);
8105 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
8106 TYPE_SIZES_GIMPLIFIED (t) = 1;
8107 }
8108 }
8109
8110 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
8111 a size or position, has had all of its SAVE_EXPRs evaluated.
8112 We add any required statements to *STMT_P. */
8113
8114 void
8115 gimplify_one_sizepos (tree *expr_p, gimple_seq *stmt_p)
8116 {
8117 tree expr = *expr_p;
8118
8119 /* We don't do anything if the value isn't there, is constant, or contains
8120 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
8121 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
8122 will want to replace it with a new variable, but that will cause problems
8123 if this type is from outside the function. It's OK to have that here. */
8124 if (expr == NULL_TREE || TREE_CONSTANT (expr)
8125 || TREE_CODE (expr) == VAR_DECL
8126 || CONTAINS_PLACEHOLDER_P (expr))
8127 return;
8128
8129 *expr_p = unshare_expr (expr);
8130
8131 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
8132 expr = *expr_p;
8133 }
8134
8135 /* Gimplify the body of statements of FNDECL and return a GIMPLE_BIND node
8136 containing the sequence of corresponding GIMPLE statements. If DO_PARMS
8137 is true, also gimplify the parameters. */
8138
8139 gimple
8140 gimplify_body (tree fndecl, bool do_parms)
8141 {
8142 location_t saved_location = input_location;
8143 gimple_seq parm_stmts, seq;
8144 gimple outer_bind;
8145 struct gimplify_ctx gctx;
8146 struct cgraph_node *cgn;
8147
8148 timevar_push (TV_TREE_GIMPLIFY);
8149
8150 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
8151 gimplification. */
8152 default_rtl_profile ();
8153
8154 gcc_assert (gimplify_ctxp == NULL);
8155 push_gimplify_context (&gctx);
8156
8157 /* Unshare most shared trees in the body and in that of any nested functions.
8158 It would seem we don't have to do this for nested functions because
8159 they are supposed to be output and then the outer function gimplified
8160 first, but the g++ front end doesn't always do it that way. */
8161 unshare_body (fndecl);
8162 unvisit_body (fndecl);
8163
8164 cgn = cgraph_get_node (fndecl);
8165 if (cgn && cgn->origin)
8166 nonlocal_vlas = pointer_set_create ();
8167
8168 /* Make sure input_location isn't set to something weird. */
8169 input_location = DECL_SOURCE_LOCATION (fndecl);
8170
8171 /* Resolve callee-copies. This has to be done before processing
8172 the body so that DECL_VALUE_EXPR gets processed correctly. */
8173 parm_stmts = do_parms ? gimplify_parameters () : NULL;
8174
8175 /* Gimplify the function's body. */
8176 seq = NULL;
8177 gimplify_stmt (&DECL_SAVED_TREE (fndecl), &seq);
8178 outer_bind = gimple_seq_first_stmt (seq);
8179 if (!outer_bind)
8180 {
8181 outer_bind = gimple_build_nop ();
8182 gimplify_seq_add_stmt (&seq, outer_bind);
8183 }
8184
8185 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
8186 not the case, wrap everything in a GIMPLE_BIND to make it so. */
8187 if (gimple_code (outer_bind) == GIMPLE_BIND
8188 && gimple_seq_first (seq) == gimple_seq_last (seq))
8189 ;
8190 else
8191 outer_bind = gimple_build_bind (NULL_TREE, seq, NULL);
8192
8193 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8194
8195 /* If we had callee-copies statements, insert them at the beginning
8196 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
8197 if (!gimple_seq_empty_p (parm_stmts))
8198 {
8199 tree parm;
8200
8201 gimplify_seq_add_seq (&parm_stmts, gimple_bind_body (outer_bind));
8202 gimple_bind_set_body (outer_bind, parm_stmts);
8203
8204 for (parm = DECL_ARGUMENTS (current_function_decl);
8205 parm; parm = DECL_CHAIN (parm))
8206 if (DECL_HAS_VALUE_EXPR_P (parm))
8207 {
8208 DECL_HAS_VALUE_EXPR_P (parm) = 0;
8209 DECL_IGNORED_P (parm) = 0;
8210 }
8211 }
8212
8213 if (nonlocal_vlas)
8214 {
8215 pointer_set_destroy (nonlocal_vlas);
8216 nonlocal_vlas = NULL;
8217 }
8218
8219 pop_gimplify_context (outer_bind);
8220 gcc_assert (gimplify_ctxp == NULL);
8221
8222 if (!seen_error ())
8223 verify_gimple_in_seq (gimple_bind_body (outer_bind));
8224
8225 timevar_pop (TV_TREE_GIMPLIFY);
8226 input_location = saved_location;
8227
8228 return outer_bind;
8229 }
8230
8231 typedef char *char_p; /* For DEF_VEC_P. */
8232 DEF_VEC_P(char_p);
8233 DEF_VEC_ALLOC_P(char_p,heap);
8234
8235 /* Return whether we should exclude FNDECL from instrumentation. */
8236
8237 static bool
8238 flag_instrument_functions_exclude_p (tree fndecl)
8239 {
8240 VEC(char_p,heap) *vec;
8241
8242 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_functions;
8243 if (VEC_length (char_p, vec) > 0)
8244 {
8245 const char *name;
8246 int i;
8247 char *s;
8248
8249 name = lang_hooks.decl_printable_name (fndecl, 0);
8250 FOR_EACH_VEC_ELT (char_p, vec, i, s)
8251 if (strstr (name, s) != NULL)
8252 return true;
8253 }
8254
8255 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_files;
8256 if (VEC_length (char_p, vec) > 0)
8257 {
8258 const char *name;
8259 int i;
8260 char *s;
8261
8262 name = DECL_SOURCE_FILE (fndecl);
8263 FOR_EACH_VEC_ELT (char_p, vec, i, s)
8264 if (strstr (name, s) != NULL)
8265 return true;
8266 }
8267
8268 return false;
8269 }
8270
8271 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
8272 node for the function we want to gimplify.
8273
8274 Return the sequence of GIMPLE statements corresponding to the body
8275 of FNDECL. */
8276
8277 void
8278 gimplify_function_tree (tree fndecl)
8279 {
8280 tree oldfn, parm, ret;
8281 gimple_seq seq;
8282 gimple bind;
8283
8284 gcc_assert (!gimple_body (fndecl));
8285
8286 oldfn = current_function_decl;
8287 current_function_decl = fndecl;
8288 if (DECL_STRUCT_FUNCTION (fndecl))
8289 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
8290 else
8291 push_struct_function (fndecl);
8292
8293 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
8294 {
8295 /* Preliminarily mark non-addressed complex variables as eligible
8296 for promotion to gimple registers. We'll transform their uses
8297 as we find them. */
8298 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
8299 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
8300 && !TREE_THIS_VOLATILE (parm)
8301 && !needs_to_live_in_memory (parm))
8302 DECL_GIMPLE_REG_P (parm) = 1;
8303 }
8304
8305 ret = DECL_RESULT (fndecl);
8306 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
8307 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
8308 && !needs_to_live_in_memory (ret))
8309 DECL_GIMPLE_REG_P (ret) = 1;
8310
8311 bind = gimplify_body (fndecl, true);
8312
8313 /* The tree body of the function is no longer needed, replace it
8314 with the new GIMPLE body. */
8315 seq = NULL;
8316 gimple_seq_add_stmt (&seq, bind);
8317 gimple_set_body (fndecl, seq);
8318
8319 /* If we're instrumenting function entry/exit, then prepend the call to
8320 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
8321 catch the exit hook. */
8322 /* ??? Add some way to ignore exceptions for this TFE. */
8323 if (flag_instrument_function_entry_exit
8324 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
8325 && !flag_instrument_functions_exclude_p (fndecl))
8326 {
8327 tree x;
8328 gimple new_bind;
8329 gimple tf;
8330 gimple_seq cleanup = NULL, body = NULL;
8331 tree tmp_var;
8332 gimple call;
8333
8334 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8335 call = gimple_build_call (x, 1, integer_zero_node);
8336 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8337 gimple_call_set_lhs (call, tmp_var);
8338 gimplify_seq_add_stmt (&cleanup, call);
8339 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT);
8340 call = gimple_build_call (x, 2,
8341 build_fold_addr_expr (current_function_decl),
8342 tmp_var);
8343 gimplify_seq_add_stmt (&cleanup, call);
8344 tf = gimple_build_try (seq, cleanup, GIMPLE_TRY_FINALLY);
8345
8346 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8347 call = gimple_build_call (x, 1, integer_zero_node);
8348 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8349 gimple_call_set_lhs (call, tmp_var);
8350 gimplify_seq_add_stmt (&body, call);
8351 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER);
8352 call = gimple_build_call (x, 2,
8353 build_fold_addr_expr (current_function_decl),
8354 tmp_var);
8355 gimplify_seq_add_stmt (&body, call);
8356 gimplify_seq_add_stmt (&body, tf);
8357 new_bind = gimple_build_bind (NULL, body, gimple_bind_block (bind));
8358 /* Clear the block for BIND, since it is no longer directly inside
8359 the function, but within a try block. */
8360 gimple_bind_set_block (bind, NULL);
8361
8362 /* Replace the current function body with the body
8363 wrapped in the try/finally TF. */
8364 seq = NULL;
8365 gimple_seq_add_stmt (&seq, new_bind);
8366 gimple_set_body (fndecl, seq);
8367 }
8368
8369 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8370 cfun->curr_properties = PROP_gimple_any;
8371
8372 current_function_decl = oldfn;
8373 pop_cfun ();
8374 }
8375
8376 /* Some transformations like inlining may invalidate the GIMPLE form
8377 for operands. This function traverses all the operands in STMT and
8378 gimplifies anything that is not a valid gimple operand. Any new
8379 GIMPLE statements are inserted before *GSI_P. */
8380
8381 void
8382 gimple_regimplify_operands (gimple stmt, gimple_stmt_iterator *gsi_p)
8383 {
8384 size_t i, num_ops;
8385 tree orig_lhs = NULL_TREE, lhs, t;
8386 gimple_seq pre = NULL;
8387 gimple post_stmt = NULL;
8388 struct gimplify_ctx gctx;
8389
8390 push_gimplify_context (&gctx);
8391 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8392
8393 switch (gimple_code (stmt))
8394 {
8395 case GIMPLE_COND:
8396 gimplify_expr (gimple_cond_lhs_ptr (stmt), &pre, NULL,
8397 is_gimple_val, fb_rvalue);
8398 gimplify_expr (gimple_cond_rhs_ptr (stmt), &pre, NULL,
8399 is_gimple_val, fb_rvalue);
8400 break;
8401 case GIMPLE_SWITCH:
8402 gimplify_expr (gimple_switch_index_ptr (stmt), &pre, NULL,
8403 is_gimple_val, fb_rvalue);
8404 break;
8405 case GIMPLE_OMP_ATOMIC_LOAD:
8406 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt), &pre, NULL,
8407 is_gimple_val, fb_rvalue);
8408 break;
8409 case GIMPLE_ASM:
8410 {
8411 size_t i, noutputs = gimple_asm_noutputs (stmt);
8412 const char *constraint, **oconstraints;
8413 bool allows_mem, allows_reg, is_inout;
8414
8415 oconstraints
8416 = (const char **) alloca ((noutputs) * sizeof (const char *));
8417 for (i = 0; i < noutputs; i++)
8418 {
8419 tree op = gimple_asm_output_op (stmt, i);
8420 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8421 oconstraints[i] = constraint;
8422 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
8423 &allows_reg, &is_inout);
8424 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8425 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
8426 fb_lvalue | fb_mayfail);
8427 }
8428 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
8429 {
8430 tree op = gimple_asm_input_op (stmt, i);
8431 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8432 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
8433 oconstraints, &allows_mem, &allows_reg);
8434 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op))) && allows_mem)
8435 allows_reg = 0;
8436 if (!allows_reg && allows_mem)
8437 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8438 is_gimple_lvalue, fb_lvalue | fb_mayfail);
8439 else
8440 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8441 is_gimple_asm_val, fb_rvalue);
8442 }
8443 }
8444 break;
8445 default:
8446 /* NOTE: We start gimplifying operands from last to first to
8447 make sure that side-effects on the RHS of calls, assignments
8448 and ASMs are executed before the LHS. The ordering is not
8449 important for other statements. */
8450 num_ops = gimple_num_ops (stmt);
8451 orig_lhs = gimple_get_lhs (stmt);
8452 for (i = num_ops; i > 0; i--)
8453 {
8454 tree op = gimple_op (stmt, i - 1);
8455 if (op == NULL_TREE)
8456 continue;
8457 if (i == 1 && (is_gimple_call (stmt) || is_gimple_assign (stmt)))
8458 gimplify_expr (&op, &pre, NULL, is_gimple_lvalue, fb_lvalue);
8459 else if (i == 2
8460 && is_gimple_assign (stmt)
8461 && num_ops == 2
8462 && get_gimple_rhs_class (gimple_expr_code (stmt))
8463 == GIMPLE_SINGLE_RHS)
8464 gimplify_expr (&op, &pre, NULL,
8465 rhs_predicate_for (gimple_assign_lhs (stmt)),
8466 fb_rvalue);
8467 else if (i == 2 && is_gimple_call (stmt))
8468 {
8469 if (TREE_CODE (op) == FUNCTION_DECL)
8470 continue;
8471 gimplify_expr (&op, &pre, NULL, is_gimple_call_addr, fb_rvalue);
8472 }
8473 else
8474 gimplify_expr (&op, &pre, NULL, is_gimple_val, fb_rvalue);
8475 gimple_set_op (stmt, i - 1, op);
8476 }
8477
8478 lhs = gimple_get_lhs (stmt);
8479 /* If the LHS changed it in a way that requires a simple RHS,
8480 create temporary. */
8481 if (lhs && !is_gimple_reg (lhs))
8482 {
8483 bool need_temp = false;
8484
8485 if (is_gimple_assign (stmt)
8486 && num_ops == 2
8487 && get_gimple_rhs_class (gimple_expr_code (stmt))
8488 == GIMPLE_SINGLE_RHS)
8489 gimplify_expr (gimple_assign_rhs1_ptr (stmt), &pre, NULL,
8490 rhs_predicate_for (gimple_assign_lhs (stmt)),
8491 fb_rvalue);
8492 else if (is_gimple_reg (lhs))
8493 {
8494 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8495 {
8496 if (is_gimple_call (stmt))
8497 {
8498 i = gimple_call_flags (stmt);
8499 if ((i & ECF_LOOPING_CONST_OR_PURE)
8500 || !(i & (ECF_CONST | ECF_PURE)))
8501 need_temp = true;
8502 }
8503 if (stmt_can_throw_internal (stmt))
8504 need_temp = true;
8505 }
8506 }
8507 else
8508 {
8509 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8510 need_temp = true;
8511 else if (TYPE_MODE (TREE_TYPE (lhs)) != BLKmode)
8512 {
8513 if (is_gimple_call (stmt))
8514 {
8515 tree fndecl = gimple_call_fndecl (stmt);
8516
8517 if (!aggregate_value_p (TREE_TYPE (lhs), fndecl)
8518 && !(fndecl && DECL_RESULT (fndecl)
8519 && DECL_BY_REFERENCE (DECL_RESULT (fndecl))))
8520 need_temp = true;
8521 }
8522 else
8523 need_temp = true;
8524 }
8525 }
8526 if (need_temp)
8527 {
8528 tree temp = create_tmp_reg (TREE_TYPE (lhs), NULL);
8529
8530 if (TREE_CODE (orig_lhs) == SSA_NAME)
8531 orig_lhs = SSA_NAME_VAR (orig_lhs);
8532
8533 if (gimple_in_ssa_p (cfun))
8534 temp = make_ssa_name (temp, NULL);
8535 gimple_set_lhs (stmt, temp);
8536 post_stmt = gimple_build_assign (lhs, temp);
8537 if (TREE_CODE (lhs) == SSA_NAME)
8538 SSA_NAME_DEF_STMT (lhs) = post_stmt;
8539 }
8540 }
8541 break;
8542 }
8543
8544 if (gimple_referenced_vars (cfun))
8545 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
8546 add_referenced_var (t);
8547
8548 if (!gimple_seq_empty_p (pre))
8549 {
8550 if (gimple_in_ssa_p (cfun))
8551 {
8552 gimple_stmt_iterator i;
8553
8554 for (i = gsi_start (pre); !gsi_end_p (i); gsi_next (&i))
8555 {
8556 tree lhs = gimple_get_lhs (gsi_stmt (i));
8557 if (lhs
8558 && TREE_CODE (lhs) != SSA_NAME
8559 && is_gimple_reg (lhs))
8560 mark_sym_for_renaming (lhs);
8561 }
8562 }
8563 gsi_insert_seq_before (gsi_p, pre, GSI_SAME_STMT);
8564 }
8565 if (post_stmt)
8566 gsi_insert_after (gsi_p, post_stmt, GSI_NEW_STMT);
8567
8568 pop_gimplify_context (NULL);
8569 }
8570
8571 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8572 the predicate that will hold for the result. If VAR is not NULL, make the
8573 base variable of the final destination be VAR if suitable. */
8574
8575 tree
8576 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
8577 gimple_predicate gimple_test_f, tree var)
8578 {
8579 tree t;
8580 enum gimplify_status ret;
8581 struct gimplify_ctx gctx;
8582
8583 *stmts = NULL;
8584
8585 /* gimple_test_f might be more strict than is_gimple_val, make
8586 sure we pass both. Just checking gimple_test_f doesn't work
8587 because most gimple predicates do not work recursively. */
8588 if (is_gimple_val (expr)
8589 && (*gimple_test_f) (expr))
8590 return expr;
8591
8592 push_gimplify_context (&gctx);
8593 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8594 gimplify_ctxp->allow_rhs_cond_expr = true;
8595
8596 if (var)
8597 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
8598
8599 if (TREE_CODE (expr) != MODIFY_EXPR
8600 && TREE_TYPE (expr) == void_type_node)
8601 {
8602 gimplify_and_add (expr, stmts);
8603 expr = NULL_TREE;
8604 }
8605 else
8606 {
8607 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
8608 gcc_assert (ret != GS_ERROR);
8609 }
8610
8611 if (gimple_referenced_vars (cfun))
8612 for (t = gimplify_ctxp->temps; t ; t = DECL_CHAIN (t))
8613 add_referenced_var (t);
8614
8615 if (!gimple_seq_empty_p (*stmts)
8616 && gimplify_ctxp->into_ssa)
8617 {
8618 gimple_stmt_iterator i;
8619
8620 for (i = gsi_start (*stmts); !gsi_end_p (i); gsi_next (&i))
8621 {
8622 tree lhs = gimple_get_lhs (gsi_stmt (i));
8623 if (lhs
8624 && TREE_CODE (lhs) != SSA_NAME
8625 && is_gimple_reg (lhs))
8626 mark_sym_for_renaming (lhs);
8627 }
8628 }
8629
8630 pop_gimplify_context (NULL);
8631
8632 return expr;
8633 }
8634
8635 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8636 force the result to be either ssa_name or an invariant, otherwise
8637 just force it to be a rhs expression. If VAR is not NULL, make the
8638 base variable of the final destination be VAR if suitable. */
8639
8640 tree
8641 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
8642 {
8643 return force_gimple_operand_1 (expr, stmts,
8644 simple ? is_gimple_val : is_gimple_reg_rhs,
8645 var);
8646 }
8647
8648 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8649 and VAR. If some statements are produced, emits them at GSI.
8650 If BEFORE is true. the statements are appended before GSI, otherwise
8651 they are appended after it. M specifies the way GSI moves after
8652 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8653
8654 tree
8655 force_gimple_operand_gsi_1 (gimple_stmt_iterator *gsi, tree expr,
8656 gimple_predicate gimple_test_f,
8657 tree var, bool before,
8658 enum gsi_iterator_update m)
8659 {
8660 gimple_seq stmts;
8661
8662 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var);
8663
8664 if (!gimple_seq_empty_p (stmts))
8665 {
8666 if (before)
8667 gsi_insert_seq_before (gsi, stmts, m);
8668 else
8669 gsi_insert_seq_after (gsi, stmts, m);
8670 }
8671
8672 return expr;
8673 }
8674
8675 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8676 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8677 otherwise just force it to be a rhs expression. If some statements are
8678 produced, emits them at GSI. If BEFORE is true, the statements are
8679 appended before GSI, otherwise they are appended after it. M specifies
8680 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8681 are the usual values). */
8682
8683 tree
8684 force_gimple_operand_gsi (gimple_stmt_iterator *gsi, tree expr,
8685 bool simple_p, tree var, bool before,
8686 enum gsi_iterator_update m)
8687 {
8688 return force_gimple_operand_gsi_1 (gsi, expr,
8689 simple_p
8690 ? is_gimple_val : is_gimple_reg_rhs,
8691 var, before, m);
8692 }
8693
8694
8695 #include "gt-gimplify.h"