* doc/invoke.texi (AVR Options): Document __AVR_ARCH__.
[official-gcc.git] / gcc / cfgexpand.c
blob4ae1600d71cc18fd381123a43edd1d1be908ca09
1 /* A pass for lowering trees to RTL.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "rtl.h"
27 #include "tm_p.h"
28 #include "basic-block.h"
29 #include "function.h"
30 #include "expr.h"
31 #include "langhooks.h"
32 #include "tree-flow.h"
33 #include "tree-pass.h"
34 #include "except.h"
35 #include "flags.h"
36 #include "diagnostic.h"
37 #include "gimple-pretty-print.h"
38 #include "toplev.h"
39 #include "debug.h"
40 #include "params.h"
41 #include "tree-inline.h"
42 #include "value-prof.h"
43 #include "target.h"
44 #include "ssaexpand.h"
45 #include "bitmap.h"
46 #include "sbitmap.h"
47 #include "cfgloop.h"
48 #include "regs.h" /* For reg_renumber. */
49 #include "insn-attr.h" /* For INSN_SCHEDULING. */
51 /* This variable holds information helping the rewriting of SSA trees
52 into RTL. */
53 struct ssaexpand SA;
55 /* This variable holds the currently expanded gimple statement for purposes
56 of comminucating the profile info to the builtin expanders. */
57 gimple currently_expanding_gimple_stmt;
59 static rtx expand_debug_expr (tree);
61 /* Return an expression tree corresponding to the RHS of GIMPLE
62 statement STMT. */
64 tree
65 gimple_assign_rhs_to_tree (gimple stmt)
67 tree t;
68 enum gimple_rhs_class grhs_class;
70 grhs_class = get_gimple_rhs_class (gimple_expr_code (stmt));
72 if (grhs_class == GIMPLE_TERNARY_RHS)
73 t = build3 (gimple_assign_rhs_code (stmt),
74 TREE_TYPE (gimple_assign_lhs (stmt)),
75 gimple_assign_rhs1 (stmt),
76 gimple_assign_rhs2 (stmt),
77 gimple_assign_rhs3 (stmt));
78 else if (grhs_class == GIMPLE_BINARY_RHS)
79 t = build2 (gimple_assign_rhs_code (stmt),
80 TREE_TYPE (gimple_assign_lhs (stmt)),
81 gimple_assign_rhs1 (stmt),
82 gimple_assign_rhs2 (stmt));
83 else if (grhs_class == GIMPLE_UNARY_RHS)
84 t = build1 (gimple_assign_rhs_code (stmt),
85 TREE_TYPE (gimple_assign_lhs (stmt)),
86 gimple_assign_rhs1 (stmt));
87 else if (grhs_class == GIMPLE_SINGLE_RHS)
89 t = gimple_assign_rhs1 (stmt);
90 /* Avoid modifying this tree in place below. */
91 if ((gimple_has_location (stmt) && CAN_HAVE_LOCATION_P (t)
92 && gimple_location (stmt) != EXPR_LOCATION (t))
93 || (gimple_block (stmt)
94 && currently_expanding_to_rtl
95 && EXPR_P (t)))
96 t = copy_node (t);
98 else
99 gcc_unreachable ();
101 if (gimple_has_location (stmt) && CAN_HAVE_LOCATION_P (t))
102 SET_EXPR_LOCATION (t, gimple_location (stmt));
104 return t;
108 #ifndef STACK_ALIGNMENT_NEEDED
109 #define STACK_ALIGNMENT_NEEDED 1
110 #endif
112 #define SSAVAR(x) (TREE_CODE (x) == SSA_NAME ? SSA_NAME_VAR (x) : x)
114 /* Associate declaration T with storage space X. If T is no
115 SSA name this is exactly SET_DECL_RTL, otherwise make the
116 partition of T associated with X. */
117 static inline void
118 set_rtl (tree t, rtx x)
120 if (TREE_CODE (t) == SSA_NAME)
122 SA.partition_to_pseudo[var_to_partition (SA.map, t)] = x;
123 if (x && !MEM_P (x))
124 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (t), x);
125 /* For the benefit of debug information at -O0 (where vartracking
126 doesn't run) record the place also in the base DECL if it's
127 a normal variable (not a parameter). */
128 if (x && x != pc_rtx && TREE_CODE (SSA_NAME_VAR (t)) == VAR_DECL)
130 tree var = SSA_NAME_VAR (t);
131 /* If we don't yet have something recorded, just record it now. */
132 if (!DECL_RTL_SET_P (var))
133 SET_DECL_RTL (var, x);
134 /* If we have it set already to "multiple places" don't
135 change this. */
136 else if (DECL_RTL (var) == pc_rtx)
138 /* If we have something recorded and it's not the same place
139 as we want to record now, we have multiple partitions for the
140 same base variable, with different places. We can't just
141 randomly chose one, hence we have to say that we don't know.
142 This only happens with optimization, and there var-tracking
143 will figure out the right thing. */
144 else if (DECL_RTL (var) != x)
145 SET_DECL_RTL (var, pc_rtx);
148 else
149 SET_DECL_RTL (t, x);
152 /* This structure holds data relevant to one variable that will be
153 placed in a stack slot. */
154 struct stack_var
156 /* The Variable. */
157 tree decl;
159 /* Initially, the size of the variable. Later, the size of the partition,
160 if this variable becomes it's partition's representative. */
161 HOST_WIDE_INT size;
163 /* The *byte* alignment required for this variable. Or as, with the
164 size, the alignment for this partition. */
165 unsigned int alignb;
167 /* The partition representative. */
168 size_t representative;
170 /* The next stack variable in the partition, or EOC. */
171 size_t next;
173 /* The numbers of conflicting stack variables. */
174 bitmap conflicts;
177 #define EOC ((size_t)-1)
179 /* We have an array of such objects while deciding allocation. */
180 static struct stack_var *stack_vars;
181 static size_t stack_vars_alloc;
182 static size_t stack_vars_num;
183 static struct pointer_map_t *decl_to_stack_part;
185 /* Conflict bitmaps go on this obstack. This allows us to destroy
186 all of them in one big sweep. */
187 static bitmap_obstack stack_var_bitmap_obstack;
189 /* An array of indices such that stack_vars[stack_vars_sorted[i]].size
190 is non-decreasing. */
191 static size_t *stack_vars_sorted;
193 /* The phase of the stack frame. This is the known misalignment of
194 virtual_stack_vars_rtx from PREFERRED_STACK_BOUNDARY. That is,
195 (frame_offset+frame_phase) % PREFERRED_STACK_BOUNDARY == 0. */
196 static int frame_phase;
198 /* Used during expand_used_vars to remember if we saw any decls for
199 which we'd like to enable stack smashing protection. */
200 static bool has_protected_decls;
202 /* Used during expand_used_vars. Remember if we say a character buffer
203 smaller than our cutoff threshold. Used for -Wstack-protector. */
204 static bool has_short_buffer;
206 /* Compute the byte alignment to use for DECL. Ignore alignment
207 we can't do with expected alignment of the stack boundary. */
209 static unsigned int
210 align_local_variable (tree decl)
212 unsigned int align = LOCAL_DECL_ALIGNMENT (decl);
213 DECL_ALIGN (decl) = align;
214 return align / BITS_PER_UNIT;
217 /* Allocate SIZE bytes at byte alignment ALIGN from the stack frame.
218 Return the frame offset. */
220 static HOST_WIDE_INT
221 alloc_stack_frame_space (HOST_WIDE_INT size, unsigned HOST_WIDE_INT align)
223 HOST_WIDE_INT offset, new_frame_offset;
225 new_frame_offset = frame_offset;
226 if (FRAME_GROWS_DOWNWARD)
228 new_frame_offset -= size + frame_phase;
229 new_frame_offset &= -align;
230 new_frame_offset += frame_phase;
231 offset = new_frame_offset;
233 else
235 new_frame_offset -= frame_phase;
236 new_frame_offset += align - 1;
237 new_frame_offset &= -align;
238 new_frame_offset += frame_phase;
239 offset = new_frame_offset;
240 new_frame_offset += size;
242 frame_offset = new_frame_offset;
244 if (frame_offset_overflow (frame_offset, cfun->decl))
245 frame_offset = offset = 0;
247 return offset;
250 /* Accumulate DECL into STACK_VARS. */
252 static void
253 add_stack_var (tree decl)
255 struct stack_var *v;
257 if (stack_vars_num >= stack_vars_alloc)
259 if (stack_vars_alloc)
260 stack_vars_alloc = stack_vars_alloc * 3 / 2;
261 else
262 stack_vars_alloc = 32;
263 stack_vars
264 = XRESIZEVEC (struct stack_var, stack_vars, stack_vars_alloc);
266 if (!decl_to_stack_part)
267 decl_to_stack_part = pointer_map_create ();
269 v = &stack_vars[stack_vars_num];
270 * (size_t *)pointer_map_insert (decl_to_stack_part, decl) = stack_vars_num;
272 v->decl = decl;
273 v->size = tree_low_cst (DECL_SIZE_UNIT (SSAVAR (decl)), 1);
274 /* Ensure that all variables have size, so that &a != &b for any two
275 variables that are simultaneously live. */
276 if (v->size == 0)
277 v->size = 1;
278 v->alignb = align_local_variable (SSAVAR (decl));
279 /* An alignment of zero can mightily confuse us later. */
280 gcc_assert (v->alignb != 0);
282 /* All variables are initially in their own partition. */
283 v->representative = stack_vars_num;
284 v->next = EOC;
286 /* All variables initially conflict with no other. */
287 v->conflicts = NULL;
289 /* Ensure that this decl doesn't get put onto the list twice. */
290 set_rtl (decl, pc_rtx);
292 stack_vars_num++;
295 /* Make the decls associated with luid's X and Y conflict. */
297 static void
298 add_stack_var_conflict (size_t x, size_t y)
300 struct stack_var *a = &stack_vars[x];
301 struct stack_var *b = &stack_vars[y];
302 if (!a->conflicts)
303 a->conflicts = BITMAP_ALLOC (&stack_var_bitmap_obstack);
304 if (!b->conflicts)
305 b->conflicts = BITMAP_ALLOC (&stack_var_bitmap_obstack);
306 bitmap_set_bit (a->conflicts, y);
307 bitmap_set_bit (b->conflicts, x);
310 /* Check whether the decls associated with luid's X and Y conflict. */
312 static bool
313 stack_var_conflict_p (size_t x, size_t y)
315 struct stack_var *a = &stack_vars[x];
316 struct stack_var *b = &stack_vars[y];
317 if (x == y)
318 return false;
319 /* Partitions containing an SSA name result from gimple registers
320 with things like unsupported modes. They are top-level and
321 hence conflict with everything else. */
322 if (TREE_CODE (a->decl) == SSA_NAME || TREE_CODE (b->decl) == SSA_NAME)
323 return true;
325 if (!a->conflicts || !b->conflicts)
326 return false;
327 return bitmap_bit_p (a->conflicts, y);
330 /* Callback for walk_stmt_ops. If OP is a decl touched by add_stack_var
331 enter its partition number into bitmap DATA. */
333 static bool
334 visit_op (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
336 bitmap active = (bitmap)data;
337 op = get_base_address (op);
338 if (op
339 && DECL_P (op)
340 && DECL_RTL_IF_SET (op) == pc_rtx)
342 size_t *v = (size_t *) pointer_map_contains (decl_to_stack_part, op);
343 if (v)
344 bitmap_set_bit (active, *v);
346 return false;
349 /* Callback for walk_stmt_ops. If OP is a decl touched by add_stack_var
350 record conflicts between it and all currently active other partitions
351 from bitmap DATA. */
353 static bool
354 visit_conflict (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
356 bitmap active = (bitmap)data;
357 op = get_base_address (op);
358 if (op
359 && DECL_P (op)
360 && DECL_RTL_IF_SET (op) == pc_rtx)
362 size_t *v =
363 (size_t *) pointer_map_contains (decl_to_stack_part, op);
364 if (v && bitmap_set_bit (active, *v))
366 size_t num = *v;
367 bitmap_iterator bi;
368 unsigned i;
369 gcc_assert (num < stack_vars_num);
370 EXECUTE_IF_SET_IN_BITMAP (active, 0, i, bi)
371 add_stack_var_conflict (num, i);
374 return false;
377 /* Helper routine for add_scope_conflicts, calculating the active partitions
378 at the end of BB, leaving the result in WORK. We're called to generate
379 conflicts when FOR_CONFLICT is true, otherwise we're just tracking
380 liveness. */
382 static void
383 add_scope_conflicts_1 (basic_block bb, bitmap work, bool for_conflict)
385 edge e;
386 edge_iterator ei;
387 gimple_stmt_iterator gsi;
388 bool (*visit)(gimple, tree, void *);
390 bitmap_clear (work);
391 FOR_EACH_EDGE (e, ei, bb->preds)
392 bitmap_ior_into (work, (bitmap)e->src->aux);
394 visit = visit_op;
396 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
398 gimple stmt = gsi_stmt (gsi);
399 walk_stmt_load_store_addr_ops (stmt, work, NULL, NULL, visit);
401 for (gsi = gsi_after_labels (bb); !gsi_end_p (gsi); gsi_next (&gsi))
403 gimple stmt = gsi_stmt (gsi);
405 if (gimple_clobber_p (stmt))
407 tree lhs = gimple_assign_lhs (stmt);
408 size_t *v;
409 /* Nested function lowering might introduce LHSs
410 that are COMPONENT_REFs. */
411 if (TREE_CODE (lhs) != VAR_DECL)
412 continue;
413 if (DECL_RTL_IF_SET (lhs) == pc_rtx
414 && (v = (size_t *)
415 pointer_map_contains (decl_to_stack_part, lhs)))
416 bitmap_clear_bit (work, *v);
418 else if (!is_gimple_debug (stmt))
420 if (for_conflict
421 && visit == visit_op)
423 /* If this is the first real instruction in this BB we need
424 to add conflicts for everything live at this point now.
425 Unlike classical liveness for named objects we can't
426 rely on seeing a def/use of the names we're interested in.
427 There might merely be indirect loads/stores. We'd not add any
428 conflicts for such partitions. */
429 bitmap_iterator bi;
430 unsigned i;
431 EXECUTE_IF_SET_IN_BITMAP (work, 0, i, bi)
433 struct stack_var *a = &stack_vars[i];
434 if (!a->conflicts)
435 a->conflicts = BITMAP_ALLOC (&stack_var_bitmap_obstack);
436 bitmap_ior_into (a->conflicts, work);
438 visit = visit_conflict;
440 walk_stmt_load_store_addr_ops (stmt, work, visit, visit, visit);
445 /* Generate stack partition conflicts between all partitions that are
446 simultaneously live. */
448 static void
449 add_scope_conflicts (void)
451 basic_block bb;
452 bool changed;
453 bitmap work = BITMAP_ALLOC (NULL);
454 int *rpo;
455 int n_bbs;
457 /* We approximate the live range of a stack variable by taking the first
458 mention of its name as starting point(s), and by the end-of-scope
459 death clobber added by gimplify as ending point(s) of the range.
460 This overapproximates in the case we for instance moved an address-taken
461 operation upward, without also moving a dereference to it upwards.
462 But it's conservatively correct as a variable never can hold values
463 before its name is mentioned at least once.
465 We then do a mostly classical bitmap liveness algorithm. */
467 FOR_ALL_BB (bb)
468 bb->aux = BITMAP_ALLOC (&stack_var_bitmap_obstack);
470 rpo = XNEWVEC (int, last_basic_block);
471 n_bbs = pre_and_rev_post_order_compute (NULL, rpo, false);
473 changed = true;
474 while (changed)
476 int i;
477 changed = false;
478 for (i = 0; i < n_bbs; i++)
480 bitmap active;
481 bb = BASIC_BLOCK (rpo[i]);
482 active = (bitmap)bb->aux;
483 add_scope_conflicts_1 (bb, work, false);
484 if (bitmap_ior_into (active, work))
485 changed = true;
489 FOR_EACH_BB (bb)
490 add_scope_conflicts_1 (bb, work, true);
492 free (rpo);
493 BITMAP_FREE (work);
494 FOR_ALL_BB (bb)
495 BITMAP_FREE (bb->aux);
498 /* A subroutine of partition_stack_vars. A comparison function for qsort,
499 sorting an array of indices by the properties of the object. */
501 static int
502 stack_var_cmp (const void *a, const void *b)
504 size_t ia = *(const size_t *)a;
505 size_t ib = *(const size_t *)b;
506 unsigned int aligna = stack_vars[ia].alignb;
507 unsigned int alignb = stack_vars[ib].alignb;
508 HOST_WIDE_INT sizea = stack_vars[ia].size;
509 HOST_WIDE_INT sizeb = stack_vars[ib].size;
510 tree decla = stack_vars[ia].decl;
511 tree declb = stack_vars[ib].decl;
512 bool largea, largeb;
513 unsigned int uida, uidb;
515 /* Primary compare on "large" alignment. Large comes first. */
516 largea = (aligna * BITS_PER_UNIT > MAX_SUPPORTED_STACK_ALIGNMENT);
517 largeb = (alignb * BITS_PER_UNIT > MAX_SUPPORTED_STACK_ALIGNMENT);
518 if (largea != largeb)
519 return (int)largeb - (int)largea;
521 /* Secondary compare on size, decreasing */
522 if (sizea > sizeb)
523 return -1;
524 if (sizea < sizeb)
525 return 1;
527 /* Tertiary compare on true alignment, decreasing. */
528 if (aligna < alignb)
529 return -1;
530 if (aligna > alignb)
531 return 1;
533 /* Final compare on ID for sort stability, increasing.
534 Two SSA names are compared by their version, SSA names come before
535 non-SSA names, and two normal decls are compared by their DECL_UID. */
536 if (TREE_CODE (decla) == SSA_NAME)
538 if (TREE_CODE (declb) == SSA_NAME)
539 uida = SSA_NAME_VERSION (decla), uidb = SSA_NAME_VERSION (declb);
540 else
541 return -1;
543 else if (TREE_CODE (declb) == SSA_NAME)
544 return 1;
545 else
546 uida = DECL_UID (decla), uidb = DECL_UID (declb);
547 if (uida < uidb)
548 return 1;
549 if (uida > uidb)
550 return -1;
551 return 0;
555 /* If the points-to solution *PI points to variables that are in a partition
556 together with other variables add all partition members to the pointed-to
557 variables bitmap. */
559 static void
560 add_partitioned_vars_to_ptset (struct pt_solution *pt,
561 struct pointer_map_t *decls_to_partitions,
562 struct pointer_set_t *visited, bitmap temp)
564 bitmap_iterator bi;
565 unsigned i;
566 bitmap *part;
568 if (pt->anything
569 || pt->vars == NULL
570 /* The pointed-to vars bitmap is shared, it is enough to
571 visit it once. */
572 || pointer_set_insert(visited, pt->vars))
573 return;
575 bitmap_clear (temp);
577 /* By using a temporary bitmap to store all members of the partitions
578 we have to add we make sure to visit each of the partitions only
579 once. */
580 EXECUTE_IF_SET_IN_BITMAP (pt->vars, 0, i, bi)
581 if ((!temp
582 || !bitmap_bit_p (temp, i))
583 && (part = (bitmap *) pointer_map_contains (decls_to_partitions,
584 (void *)(size_t) i)))
585 bitmap_ior_into (temp, *part);
586 if (!bitmap_empty_p (temp))
587 bitmap_ior_into (pt->vars, temp);
590 /* Update points-to sets based on partition info, so we can use them on RTL.
591 The bitmaps representing stack partitions will be saved until expand,
592 where partitioned decls used as bases in memory expressions will be
593 rewritten. */
595 static void
596 update_alias_info_with_stack_vars (void)
598 struct pointer_map_t *decls_to_partitions = NULL;
599 size_t i, j;
600 tree var = NULL_TREE;
602 for (i = 0; i < stack_vars_num; i++)
604 bitmap part = NULL;
605 tree name;
606 struct ptr_info_def *pi;
608 /* Not interested in partitions with single variable. */
609 if (stack_vars[i].representative != i
610 || stack_vars[i].next == EOC)
611 continue;
613 if (!decls_to_partitions)
615 decls_to_partitions = pointer_map_create ();
616 cfun->gimple_df->decls_to_pointers = pointer_map_create ();
619 /* Create an SSA_NAME that points to the partition for use
620 as base during alias-oracle queries on RTL for bases that
621 have been partitioned. */
622 if (var == NULL_TREE)
623 var = create_tmp_var (ptr_type_node, NULL);
624 name = make_ssa_name (var, NULL);
626 /* Create bitmaps representing partitions. They will be used for
627 points-to sets later, so use GGC alloc. */
628 part = BITMAP_GGC_ALLOC ();
629 for (j = i; j != EOC; j = stack_vars[j].next)
631 tree decl = stack_vars[j].decl;
632 unsigned int uid = DECL_PT_UID (decl);
633 bitmap_set_bit (part, uid);
634 *((bitmap *) pointer_map_insert (decls_to_partitions,
635 (void *)(size_t) uid)) = part;
636 *((tree *) pointer_map_insert (cfun->gimple_df->decls_to_pointers,
637 decl)) = name;
638 if (TREE_ADDRESSABLE (decl))
639 TREE_ADDRESSABLE (name) = 1;
642 /* Make the SSA name point to all partition members. */
643 pi = get_ptr_info (name);
644 pt_solution_set (&pi->pt, part, false);
647 /* Make all points-to sets that contain one member of a partition
648 contain all members of the partition. */
649 if (decls_to_partitions)
651 unsigned i;
652 struct pointer_set_t *visited = pointer_set_create ();
653 bitmap temp = BITMAP_ALLOC (&stack_var_bitmap_obstack);
655 for (i = 1; i < num_ssa_names; i++)
657 tree name = ssa_name (i);
658 struct ptr_info_def *pi;
660 if (name
661 && POINTER_TYPE_P (TREE_TYPE (name))
662 && ((pi = SSA_NAME_PTR_INFO (name)) != NULL))
663 add_partitioned_vars_to_ptset (&pi->pt, decls_to_partitions,
664 visited, temp);
667 add_partitioned_vars_to_ptset (&cfun->gimple_df->escaped,
668 decls_to_partitions, visited, temp);
670 pointer_set_destroy (visited);
671 pointer_map_destroy (decls_to_partitions);
672 BITMAP_FREE (temp);
676 /* A subroutine of partition_stack_vars. The UNION portion of a UNION/FIND
677 partitioning algorithm. Partitions A and B are known to be non-conflicting.
678 Merge them into a single partition A. */
680 static void
681 union_stack_vars (size_t a, size_t b)
683 struct stack_var *vb = &stack_vars[b];
684 bitmap_iterator bi;
685 unsigned u;
687 gcc_assert (stack_vars[b].next == EOC);
688 /* Add B to A's partition. */
689 stack_vars[b].next = stack_vars[a].next;
690 stack_vars[b].representative = a;
691 stack_vars[a].next = b;
693 /* Update the required alignment of partition A to account for B. */
694 if (stack_vars[a].alignb < stack_vars[b].alignb)
695 stack_vars[a].alignb = stack_vars[b].alignb;
697 /* Update the interference graph and merge the conflicts. */
698 if (vb->conflicts)
700 EXECUTE_IF_SET_IN_BITMAP (vb->conflicts, 0, u, bi)
701 add_stack_var_conflict (a, stack_vars[u].representative);
702 BITMAP_FREE (vb->conflicts);
706 /* A subroutine of expand_used_vars. Binpack the variables into
707 partitions constrained by the interference graph. The overall
708 algorithm used is as follows:
710 Sort the objects by size in descending order.
711 For each object A {
712 S = size(A)
713 O = 0
714 loop {
715 Look for the largest non-conflicting object B with size <= S.
716 UNION (A, B)
721 static void
722 partition_stack_vars (void)
724 size_t si, sj, n = stack_vars_num;
726 stack_vars_sorted = XNEWVEC (size_t, stack_vars_num);
727 for (si = 0; si < n; ++si)
728 stack_vars_sorted[si] = si;
730 if (n == 1)
731 return;
733 qsort (stack_vars_sorted, n, sizeof (size_t), stack_var_cmp);
735 for (si = 0; si < n; ++si)
737 size_t i = stack_vars_sorted[si];
738 unsigned int ialign = stack_vars[i].alignb;
740 /* Ignore objects that aren't partition representatives. If we
741 see a var that is not a partition representative, it must
742 have been merged earlier. */
743 if (stack_vars[i].representative != i)
744 continue;
746 for (sj = si + 1; sj < n; ++sj)
748 size_t j = stack_vars_sorted[sj];
749 unsigned int jalign = stack_vars[j].alignb;
751 /* Ignore objects that aren't partition representatives. */
752 if (stack_vars[j].representative != j)
753 continue;
755 /* Ignore conflicting objects. */
756 if (stack_var_conflict_p (i, j))
757 continue;
759 /* Do not mix objects of "small" (supported) alignment
760 and "large" (unsupported) alignment. */
761 if ((ialign * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT)
762 != (jalign * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT))
763 continue;
765 /* UNION the objects, placing J at OFFSET. */
766 union_stack_vars (i, j);
770 update_alias_info_with_stack_vars ();
773 /* A debugging aid for expand_used_vars. Dump the generated partitions. */
775 static void
776 dump_stack_var_partition (void)
778 size_t si, i, j, n = stack_vars_num;
780 for (si = 0; si < n; ++si)
782 i = stack_vars_sorted[si];
784 /* Skip variables that aren't partition representatives, for now. */
785 if (stack_vars[i].representative != i)
786 continue;
788 fprintf (dump_file, "Partition %lu: size " HOST_WIDE_INT_PRINT_DEC
789 " align %u\n", (unsigned long) i, stack_vars[i].size,
790 stack_vars[i].alignb);
792 for (j = i; j != EOC; j = stack_vars[j].next)
794 fputc ('\t', dump_file);
795 print_generic_expr (dump_file, stack_vars[j].decl, dump_flags);
797 fputc ('\n', dump_file);
801 /* Assign rtl to DECL at BASE + OFFSET. */
803 static void
804 expand_one_stack_var_at (tree decl, rtx base, unsigned base_align,
805 HOST_WIDE_INT offset)
807 unsigned align;
808 rtx x;
810 /* If this fails, we've overflowed the stack frame. Error nicely? */
811 gcc_assert (offset == trunc_int_for_mode (offset, Pmode));
813 x = plus_constant (Pmode, base, offset);
814 x = gen_rtx_MEM (DECL_MODE (SSAVAR (decl)), x);
816 if (TREE_CODE (decl) != SSA_NAME)
818 /* Set alignment we actually gave this decl if it isn't an SSA name.
819 If it is we generate stack slots only accidentally so it isn't as
820 important, we'll simply use the alignment that is already set. */
821 if (base == virtual_stack_vars_rtx)
822 offset -= frame_phase;
823 align = offset & -offset;
824 align *= BITS_PER_UNIT;
825 if (align == 0 || align > base_align)
826 align = base_align;
828 /* One would think that we could assert that we're not decreasing
829 alignment here, but (at least) the i386 port does exactly this
830 via the MINIMUM_ALIGNMENT hook. */
832 DECL_ALIGN (decl) = align;
833 DECL_USER_ALIGN (decl) = 0;
836 set_mem_attributes (x, SSAVAR (decl), true);
837 set_rtl (decl, x);
840 /* A subroutine of expand_used_vars. Give each partition representative
841 a unique location within the stack frame. Update each partition member
842 with that location. */
844 static void
845 expand_stack_vars (bool (*pred) (tree))
847 size_t si, i, j, n = stack_vars_num;
848 HOST_WIDE_INT large_size = 0, large_alloc = 0;
849 rtx large_base = NULL;
850 unsigned large_align = 0;
851 tree decl;
853 /* Determine if there are any variables requiring "large" alignment.
854 Since these are dynamically allocated, we only process these if
855 no predicate involved. */
856 large_align = stack_vars[stack_vars_sorted[0]].alignb * BITS_PER_UNIT;
857 if (pred == NULL && large_align > MAX_SUPPORTED_STACK_ALIGNMENT)
859 /* Find the total size of these variables. */
860 for (si = 0; si < n; ++si)
862 unsigned alignb;
864 i = stack_vars_sorted[si];
865 alignb = stack_vars[i].alignb;
867 /* Stop when we get to the first decl with "small" alignment. */
868 if (alignb * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT)
869 break;
871 /* Skip variables that aren't partition representatives. */
872 if (stack_vars[i].representative != i)
873 continue;
875 /* Skip variables that have already had rtl assigned. See also
876 add_stack_var where we perpetrate this pc_rtx hack. */
877 decl = stack_vars[i].decl;
878 if ((TREE_CODE (decl) == SSA_NAME
879 ? SA.partition_to_pseudo[var_to_partition (SA.map, decl)]
880 : DECL_RTL (decl)) != pc_rtx)
881 continue;
883 large_size += alignb - 1;
884 large_size &= -(HOST_WIDE_INT)alignb;
885 large_size += stack_vars[i].size;
888 /* If there were any, allocate space. */
889 if (large_size > 0)
890 large_base = allocate_dynamic_stack_space (GEN_INT (large_size), 0,
891 large_align, true);
894 for (si = 0; si < n; ++si)
896 rtx base;
897 unsigned base_align, alignb;
898 HOST_WIDE_INT offset;
900 i = stack_vars_sorted[si];
902 /* Skip variables that aren't partition representatives, for now. */
903 if (stack_vars[i].representative != i)
904 continue;
906 /* Skip variables that have already had rtl assigned. See also
907 add_stack_var where we perpetrate this pc_rtx hack. */
908 decl = stack_vars[i].decl;
909 if ((TREE_CODE (decl) == SSA_NAME
910 ? SA.partition_to_pseudo[var_to_partition (SA.map, decl)]
911 : DECL_RTL (decl)) != pc_rtx)
912 continue;
914 /* Check the predicate to see whether this variable should be
915 allocated in this pass. */
916 if (pred && !pred (decl))
917 continue;
919 alignb = stack_vars[i].alignb;
920 if (alignb * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT)
922 offset = alloc_stack_frame_space (stack_vars[i].size, alignb);
923 base = virtual_stack_vars_rtx;
924 base_align = crtl->max_used_stack_slot_alignment;
926 else
928 /* Large alignment is only processed in the last pass. */
929 if (pred)
930 continue;
931 gcc_assert (large_base != NULL);
933 large_alloc += alignb - 1;
934 large_alloc &= -(HOST_WIDE_INT)alignb;
935 offset = large_alloc;
936 large_alloc += stack_vars[i].size;
938 base = large_base;
939 base_align = large_align;
942 /* Create rtl for each variable based on their location within the
943 partition. */
944 for (j = i; j != EOC; j = stack_vars[j].next)
946 expand_one_stack_var_at (stack_vars[j].decl,
947 base, base_align,
948 offset);
952 gcc_assert (large_alloc == large_size);
955 /* Take into account all sizes of partitions and reset DECL_RTLs. */
956 static HOST_WIDE_INT
957 account_stack_vars (void)
959 size_t si, j, i, n = stack_vars_num;
960 HOST_WIDE_INT size = 0;
962 for (si = 0; si < n; ++si)
964 i = stack_vars_sorted[si];
966 /* Skip variables that aren't partition representatives, for now. */
967 if (stack_vars[i].representative != i)
968 continue;
970 size += stack_vars[i].size;
971 for (j = i; j != EOC; j = stack_vars[j].next)
972 set_rtl (stack_vars[j].decl, NULL);
974 return size;
977 /* A subroutine of expand_one_var. Called to immediately assign rtl
978 to a variable to be allocated in the stack frame. */
980 static void
981 expand_one_stack_var (tree var)
983 HOST_WIDE_INT size, offset;
984 unsigned byte_align;
986 size = tree_low_cst (DECL_SIZE_UNIT (SSAVAR (var)), 1);
987 byte_align = align_local_variable (SSAVAR (var));
989 /* We handle highly aligned variables in expand_stack_vars. */
990 gcc_assert (byte_align * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT);
992 offset = alloc_stack_frame_space (size, byte_align);
994 expand_one_stack_var_at (var, virtual_stack_vars_rtx,
995 crtl->max_used_stack_slot_alignment, offset);
998 /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL
999 that will reside in a hard register. */
1001 static void
1002 expand_one_hard_reg_var (tree var)
1004 rest_of_decl_compilation (var, 0, 0);
1007 /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL
1008 that will reside in a pseudo register. */
1010 static void
1011 expand_one_register_var (tree var)
1013 tree decl = SSAVAR (var);
1014 tree type = TREE_TYPE (decl);
1015 enum machine_mode reg_mode = promote_decl_mode (decl, NULL);
1016 rtx x = gen_reg_rtx (reg_mode);
1018 set_rtl (var, x);
1020 /* Note if the object is a user variable. */
1021 if (!DECL_ARTIFICIAL (decl))
1022 mark_user_reg (x);
1024 if (POINTER_TYPE_P (type))
1025 mark_reg_pointer (x, get_pointer_alignment (var));
1028 /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL that
1029 has some associated error, e.g. its type is error-mark. We just need
1030 to pick something that won't crash the rest of the compiler. */
1032 static void
1033 expand_one_error_var (tree var)
1035 enum machine_mode mode = DECL_MODE (var);
1036 rtx x;
1038 if (mode == BLKmode)
1039 x = gen_rtx_MEM (BLKmode, const0_rtx);
1040 else if (mode == VOIDmode)
1041 x = const0_rtx;
1042 else
1043 x = gen_reg_rtx (mode);
1045 SET_DECL_RTL (var, x);
1048 /* A subroutine of expand_one_var. VAR is a variable that will be
1049 allocated to the local stack frame. Return true if we wish to
1050 add VAR to STACK_VARS so that it will be coalesced with other
1051 variables. Return false to allocate VAR immediately.
1053 This function is used to reduce the number of variables considered
1054 for coalescing, which reduces the size of the quadratic problem. */
1056 static bool
1057 defer_stack_allocation (tree var, bool toplevel)
1059 /* If stack protection is enabled, *all* stack variables must be deferred,
1060 so that we can re-order the strings to the top of the frame. */
1061 if (flag_stack_protect)
1062 return true;
1064 /* We handle "large" alignment via dynamic allocation. We want to handle
1065 this extra complication in only one place, so defer them. */
1066 if (DECL_ALIGN (var) > MAX_SUPPORTED_STACK_ALIGNMENT)
1067 return true;
1069 /* Variables in the outermost scope automatically conflict with
1070 every other variable. The only reason to want to defer them
1071 at all is that, after sorting, we can more efficiently pack
1072 small variables in the stack frame. Continue to defer at -O2. */
1073 if (toplevel && optimize < 2)
1074 return false;
1076 /* Without optimization, *most* variables are allocated from the
1077 stack, which makes the quadratic problem large exactly when we
1078 want compilation to proceed as quickly as possible. On the
1079 other hand, we don't want the function's stack frame size to
1080 get completely out of hand. So we avoid adding scalars and
1081 "small" aggregates to the list at all. */
1082 if (optimize == 0 && tree_low_cst (DECL_SIZE_UNIT (var), 1) < 32)
1083 return false;
1085 return true;
1088 /* A subroutine of expand_used_vars. Expand one variable according to
1089 its flavor. Variables to be placed on the stack are not actually
1090 expanded yet, merely recorded.
1091 When REALLY_EXPAND is false, only add stack values to be allocated.
1092 Return stack usage this variable is supposed to take.
1095 static HOST_WIDE_INT
1096 expand_one_var (tree var, bool toplevel, bool really_expand)
1098 unsigned int align = BITS_PER_UNIT;
1099 tree origvar = var;
1101 var = SSAVAR (var);
1103 if (TREE_TYPE (var) != error_mark_node && TREE_CODE (var) == VAR_DECL)
1105 /* Because we don't know if VAR will be in register or on stack,
1106 we conservatively assume it will be on stack even if VAR is
1107 eventually put into register after RA pass. For non-automatic
1108 variables, which won't be on stack, we collect alignment of
1109 type and ignore user specified alignment. */
1110 if (TREE_STATIC (var) || DECL_EXTERNAL (var))
1111 align = MINIMUM_ALIGNMENT (TREE_TYPE (var),
1112 TYPE_MODE (TREE_TYPE (var)),
1113 TYPE_ALIGN (TREE_TYPE (var)));
1114 else if (DECL_HAS_VALUE_EXPR_P (var)
1115 || (DECL_RTL_SET_P (var) && MEM_P (DECL_RTL (var))))
1116 /* Don't consider debug only variables with DECL_HAS_VALUE_EXPR_P set
1117 or variables which were assigned a stack slot already by
1118 expand_one_stack_var_at - in the latter case DECL_ALIGN has been
1119 changed from the offset chosen to it. */
1120 align = crtl->stack_alignment_estimated;
1121 else
1122 align = MINIMUM_ALIGNMENT (var, DECL_MODE (var), DECL_ALIGN (var));
1124 /* If the variable alignment is very large we'll dynamicaly allocate
1125 it, which means that in-frame portion is just a pointer. */
1126 if (align > MAX_SUPPORTED_STACK_ALIGNMENT)
1127 align = POINTER_SIZE;
1130 if (SUPPORTS_STACK_ALIGNMENT
1131 && crtl->stack_alignment_estimated < align)
1133 /* stack_alignment_estimated shouldn't change after stack
1134 realign decision made */
1135 gcc_assert(!crtl->stack_realign_processed);
1136 crtl->stack_alignment_estimated = align;
1139 /* stack_alignment_needed > PREFERRED_STACK_BOUNDARY is permitted.
1140 So here we only make sure stack_alignment_needed >= align. */
1141 if (crtl->stack_alignment_needed < align)
1142 crtl->stack_alignment_needed = align;
1143 if (crtl->max_used_stack_slot_alignment < align)
1144 crtl->max_used_stack_slot_alignment = align;
1146 if (TREE_CODE (origvar) == SSA_NAME)
1148 gcc_assert (TREE_CODE (var) != VAR_DECL
1149 || (!DECL_EXTERNAL (var)
1150 && !DECL_HAS_VALUE_EXPR_P (var)
1151 && !TREE_STATIC (var)
1152 && TREE_TYPE (var) != error_mark_node
1153 && !DECL_HARD_REGISTER (var)
1154 && really_expand));
1156 if (TREE_CODE (var) != VAR_DECL && TREE_CODE (origvar) != SSA_NAME)
1158 else if (DECL_EXTERNAL (var))
1160 else if (DECL_HAS_VALUE_EXPR_P (var))
1162 else if (TREE_STATIC (var))
1164 else if (TREE_CODE (origvar) != SSA_NAME && DECL_RTL_SET_P (var))
1166 else if (TREE_TYPE (var) == error_mark_node)
1168 if (really_expand)
1169 expand_one_error_var (var);
1171 else if (TREE_CODE (var) == VAR_DECL && DECL_HARD_REGISTER (var))
1173 if (really_expand)
1174 expand_one_hard_reg_var (var);
1176 else if (use_register_for_decl (var))
1178 if (really_expand)
1179 expand_one_register_var (origvar);
1181 else if (! valid_constant_size_p (DECL_SIZE_UNIT (var)))
1183 /* Reject variables which cover more than half of the address-space. */
1184 if (really_expand)
1186 error ("size of variable %q+D is too large", var);
1187 expand_one_error_var (var);
1190 else if (defer_stack_allocation (var, toplevel))
1191 add_stack_var (origvar);
1192 else
1194 if (really_expand)
1195 expand_one_stack_var (origvar);
1196 return tree_low_cst (DECL_SIZE_UNIT (var), 1);
1198 return 0;
1201 /* A subroutine of expand_used_vars. Walk down through the BLOCK tree
1202 expanding variables. Those variables that can be put into registers
1203 are allocated pseudos; those that can't are put on the stack.
1205 TOPLEVEL is true if this is the outermost BLOCK. */
1207 static void
1208 expand_used_vars_for_block (tree block, bool toplevel)
1210 tree t;
1212 /* Expand all variables at this level. */
1213 for (t = BLOCK_VARS (block); t ; t = DECL_CHAIN (t))
1214 if (TREE_USED (t)
1215 && ((TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != RESULT_DECL)
1216 || !DECL_NONSHAREABLE (t)))
1217 expand_one_var (t, toplevel, true);
1219 /* Expand all variables at containing levels. */
1220 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
1221 expand_used_vars_for_block (t, false);
1224 /* A subroutine of expand_used_vars. Walk down through the BLOCK tree
1225 and clear TREE_USED on all local variables. */
1227 static void
1228 clear_tree_used (tree block)
1230 tree t;
1232 for (t = BLOCK_VARS (block); t ; t = DECL_CHAIN (t))
1233 /* if (!TREE_STATIC (t) && !DECL_EXTERNAL (t)) */
1234 if ((TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != RESULT_DECL)
1235 || !DECL_NONSHAREABLE (t))
1236 TREE_USED (t) = 0;
1238 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
1239 clear_tree_used (t);
1242 /* Examine TYPE and determine a bit mask of the following features. */
1244 #define SPCT_HAS_LARGE_CHAR_ARRAY 1
1245 #define SPCT_HAS_SMALL_CHAR_ARRAY 2
1246 #define SPCT_HAS_ARRAY 4
1247 #define SPCT_HAS_AGGREGATE 8
1249 static unsigned int
1250 stack_protect_classify_type (tree type)
1252 unsigned int ret = 0;
1253 tree t;
1255 switch (TREE_CODE (type))
1257 case ARRAY_TYPE:
1258 t = TYPE_MAIN_VARIANT (TREE_TYPE (type));
1259 if (t == char_type_node
1260 || t == signed_char_type_node
1261 || t == unsigned_char_type_node)
1263 unsigned HOST_WIDE_INT max = PARAM_VALUE (PARAM_SSP_BUFFER_SIZE);
1264 unsigned HOST_WIDE_INT len;
1266 if (!TYPE_SIZE_UNIT (type)
1267 || !host_integerp (TYPE_SIZE_UNIT (type), 1))
1268 len = max;
1269 else
1270 len = tree_low_cst (TYPE_SIZE_UNIT (type), 1);
1272 if (len < max)
1273 ret = SPCT_HAS_SMALL_CHAR_ARRAY | SPCT_HAS_ARRAY;
1274 else
1275 ret = SPCT_HAS_LARGE_CHAR_ARRAY | SPCT_HAS_ARRAY;
1277 else
1278 ret = SPCT_HAS_ARRAY;
1279 break;
1281 case UNION_TYPE:
1282 case QUAL_UNION_TYPE:
1283 case RECORD_TYPE:
1284 ret = SPCT_HAS_AGGREGATE;
1285 for (t = TYPE_FIELDS (type); t ; t = TREE_CHAIN (t))
1286 if (TREE_CODE (t) == FIELD_DECL)
1287 ret |= stack_protect_classify_type (TREE_TYPE (t));
1288 break;
1290 default:
1291 break;
1294 return ret;
1297 /* Return nonzero if DECL should be segregated into the "vulnerable" upper
1298 part of the local stack frame. Remember if we ever return nonzero for
1299 any variable in this function. The return value is the phase number in
1300 which the variable should be allocated. */
1302 static int
1303 stack_protect_decl_phase (tree decl)
1305 unsigned int bits = stack_protect_classify_type (TREE_TYPE (decl));
1306 int ret = 0;
1308 if (bits & SPCT_HAS_SMALL_CHAR_ARRAY)
1309 has_short_buffer = true;
1311 if (flag_stack_protect == 2)
1313 if ((bits & (SPCT_HAS_SMALL_CHAR_ARRAY | SPCT_HAS_LARGE_CHAR_ARRAY))
1314 && !(bits & SPCT_HAS_AGGREGATE))
1315 ret = 1;
1316 else if (bits & SPCT_HAS_ARRAY)
1317 ret = 2;
1319 else
1320 ret = (bits & SPCT_HAS_LARGE_CHAR_ARRAY) != 0;
1322 if (ret)
1323 has_protected_decls = true;
1325 return ret;
1328 /* Two helper routines that check for phase 1 and phase 2. These are used
1329 as callbacks for expand_stack_vars. */
1331 static bool
1332 stack_protect_decl_phase_1 (tree decl)
1334 return stack_protect_decl_phase (decl) == 1;
1337 static bool
1338 stack_protect_decl_phase_2 (tree decl)
1340 return stack_protect_decl_phase (decl) == 2;
1343 /* Ensure that variables in different stack protection phases conflict
1344 so that they are not merged and share the same stack slot. */
1346 static void
1347 add_stack_protection_conflicts (void)
1349 size_t i, j, n = stack_vars_num;
1350 unsigned char *phase;
1352 phase = XNEWVEC (unsigned char, n);
1353 for (i = 0; i < n; ++i)
1354 phase[i] = stack_protect_decl_phase (stack_vars[i].decl);
1356 for (i = 0; i < n; ++i)
1358 unsigned char ph_i = phase[i];
1359 for (j = i + 1; j < n; ++j)
1360 if (ph_i != phase[j])
1361 add_stack_var_conflict (i, j);
1364 XDELETEVEC (phase);
1367 /* Create a decl for the guard at the top of the stack frame. */
1369 static void
1370 create_stack_guard (void)
1372 tree guard = build_decl (DECL_SOURCE_LOCATION (current_function_decl),
1373 VAR_DECL, NULL, ptr_type_node);
1374 TREE_THIS_VOLATILE (guard) = 1;
1375 TREE_USED (guard) = 1;
1376 expand_one_stack_var (guard);
1377 crtl->stack_protect_guard = guard;
1380 /* Prepare for expanding variables. */
1381 static void
1382 init_vars_expansion (void)
1384 /* Conflict bitmaps, and a few related temporary bitmaps, go here. */
1385 bitmap_obstack_initialize (&stack_var_bitmap_obstack);
1387 /* A map from decl to stack partition. */
1388 decl_to_stack_part = pointer_map_create ();
1390 /* Initialize local stack smashing state. */
1391 has_protected_decls = false;
1392 has_short_buffer = false;
1395 /* Free up stack variable graph data. */
1396 static void
1397 fini_vars_expansion (void)
1399 bitmap_obstack_release (&stack_var_bitmap_obstack);
1400 if (stack_vars)
1401 XDELETEVEC (stack_vars);
1402 if (stack_vars_sorted)
1403 XDELETEVEC (stack_vars_sorted);
1404 stack_vars = NULL;
1405 stack_vars_sorted = NULL;
1406 stack_vars_alloc = stack_vars_num = 0;
1407 pointer_map_destroy (decl_to_stack_part);
1408 decl_to_stack_part = NULL;
1411 /* Make a fair guess for the size of the stack frame of the function
1412 in NODE. This doesn't have to be exact, the result is only used in
1413 the inline heuristics. So we don't want to run the full stack var
1414 packing algorithm (which is quadratic in the number of stack vars).
1415 Instead, we calculate the total size of all stack vars. This turns
1416 out to be a pretty fair estimate -- packing of stack vars doesn't
1417 happen very often. */
1419 HOST_WIDE_INT
1420 estimated_stack_frame_size (struct cgraph_node *node)
1422 HOST_WIDE_INT size = 0;
1423 size_t i;
1424 tree var;
1425 struct function *fn = DECL_STRUCT_FUNCTION (node->symbol.decl);
1427 push_cfun (fn);
1429 init_vars_expansion ();
1431 FOR_EACH_LOCAL_DECL (fn, i, var)
1432 if (auto_var_in_fn_p (var, fn->decl))
1433 size += expand_one_var (var, true, false);
1435 if (stack_vars_num > 0)
1437 /* Fake sorting the stack vars for account_stack_vars (). */
1438 stack_vars_sorted = XNEWVEC (size_t, stack_vars_num);
1439 for (i = 0; i < stack_vars_num; ++i)
1440 stack_vars_sorted[i] = i;
1441 size += account_stack_vars ();
1444 fini_vars_expansion ();
1445 pop_cfun ();
1446 return size;
1449 /* Expand all variables used in the function. */
1451 static void
1452 expand_used_vars (void)
1454 tree var, outer_block = DECL_INITIAL (current_function_decl);
1455 VEC(tree,heap) *maybe_local_decls = NULL;
1456 struct pointer_map_t *ssa_name_decls;
1457 unsigned i;
1458 unsigned len;
1460 /* Compute the phase of the stack frame for this function. */
1462 int align = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
1463 int off = STARTING_FRAME_OFFSET % align;
1464 frame_phase = off ? align - off : 0;
1467 /* Set TREE_USED on all variables in the local_decls. */
1468 FOR_EACH_LOCAL_DECL (cfun, i, var)
1469 TREE_USED (var) = 1;
1470 /* Clear TREE_USED on all variables associated with a block scope. */
1471 clear_tree_used (DECL_INITIAL (current_function_decl));
1473 init_vars_expansion ();
1475 ssa_name_decls = pointer_map_create ();
1476 for (i = 0; i < SA.map->num_partitions; i++)
1478 tree var = partition_to_var (SA.map, i);
1480 gcc_assert (!virtual_operand_p (var));
1482 /* Assign decls to each SSA name partition, share decls for partitions
1483 we could have coalesced (those with the same type). */
1484 if (SSA_NAME_VAR (var) == NULL_TREE)
1486 void **slot = pointer_map_insert (ssa_name_decls, TREE_TYPE (var));
1487 if (!*slot)
1488 *slot = (void *) create_tmp_reg (TREE_TYPE (var), NULL);
1489 replace_ssa_name_symbol (var, (tree) *slot);
1492 if (TREE_CODE (SSA_NAME_VAR (var)) == VAR_DECL)
1493 expand_one_var (var, true, true);
1494 else
1496 /* This is a PARM_DECL or RESULT_DECL. For those partitions that
1497 contain the default def (representing the parm or result itself)
1498 we don't do anything here. But those which don't contain the
1499 default def (representing a temporary based on the parm/result)
1500 we need to allocate space just like for normal VAR_DECLs. */
1501 if (!bitmap_bit_p (SA.partition_has_default_def, i))
1503 expand_one_var (var, true, true);
1504 gcc_assert (SA.partition_to_pseudo[i]);
1508 pointer_map_destroy (ssa_name_decls);
1510 /* At this point all variables on the local_decls with TREE_USED
1511 set are not associated with any block scope. Lay them out. */
1513 len = VEC_length (tree, cfun->local_decls);
1514 FOR_EACH_LOCAL_DECL (cfun, i, var)
1516 bool expand_now = false;
1518 /* Expanded above already. */
1519 if (is_gimple_reg (var))
1521 TREE_USED (var) = 0;
1522 goto next;
1524 /* We didn't set a block for static or extern because it's hard
1525 to tell the difference between a global variable (re)declared
1526 in a local scope, and one that's really declared there to
1527 begin with. And it doesn't really matter much, since we're
1528 not giving them stack space. Expand them now. */
1529 else if (TREE_STATIC (var) || DECL_EXTERNAL (var))
1530 expand_now = true;
1532 /* If the variable is not associated with any block, then it
1533 was created by the optimizers, and could be live anywhere
1534 in the function. */
1535 else if (TREE_USED (var))
1536 expand_now = true;
1538 /* Finally, mark all variables on the list as used. We'll use
1539 this in a moment when we expand those associated with scopes. */
1540 TREE_USED (var) = 1;
1542 if (expand_now)
1543 expand_one_var (var, true, true);
1545 next:
1546 if (DECL_ARTIFICIAL (var) && !DECL_IGNORED_P (var))
1548 rtx rtl = DECL_RTL_IF_SET (var);
1550 /* Keep artificial non-ignored vars in cfun->local_decls
1551 chain until instantiate_decls. */
1552 if (rtl && (MEM_P (rtl) || GET_CODE (rtl) == CONCAT))
1553 add_local_decl (cfun, var);
1554 else if (rtl == NULL_RTX)
1555 /* If rtl isn't set yet, which can happen e.g. with
1556 -fstack-protector, retry before returning from this
1557 function. */
1558 VEC_safe_push (tree, heap, maybe_local_decls, var);
1562 /* We duplicated some of the decls in CFUN->LOCAL_DECLS.
1564 +-----------------+-----------------+
1565 | ...processed... | ...duplicates...|
1566 +-----------------+-----------------+
1568 +-- LEN points here.
1570 We just want the duplicates, as those are the artificial
1571 non-ignored vars that we want to keep until instantiate_decls.
1572 Move them down and truncate the array. */
1573 if (!VEC_empty (tree, cfun->local_decls))
1574 VEC_block_remove (tree, cfun->local_decls, 0, len);
1576 /* At this point, all variables within the block tree with TREE_USED
1577 set are actually used by the optimized function. Lay them out. */
1578 expand_used_vars_for_block (outer_block, true);
1580 if (stack_vars_num > 0)
1582 add_scope_conflicts ();
1584 /* If stack protection is enabled, we don't share space between
1585 vulnerable data and non-vulnerable data. */
1586 if (flag_stack_protect)
1587 add_stack_protection_conflicts ();
1589 /* Now that we have collected all stack variables, and have computed a
1590 minimal interference graph, attempt to save some stack space. */
1591 partition_stack_vars ();
1592 if (dump_file)
1593 dump_stack_var_partition ();
1596 /* There are several conditions under which we should create a
1597 stack guard: protect-all, alloca used, protected decls present. */
1598 if (flag_stack_protect == 2
1599 || (flag_stack_protect
1600 && (cfun->calls_alloca || has_protected_decls)))
1601 create_stack_guard ();
1603 /* Assign rtl to each variable based on these partitions. */
1604 if (stack_vars_num > 0)
1606 /* Reorder decls to be protected by iterating over the variables
1607 array multiple times, and allocating out of each phase in turn. */
1608 /* ??? We could probably integrate this into the qsort we did
1609 earlier, such that we naturally see these variables first,
1610 and thus naturally allocate things in the right order. */
1611 if (has_protected_decls)
1613 /* Phase 1 contains only character arrays. */
1614 expand_stack_vars (stack_protect_decl_phase_1);
1616 /* Phase 2 contains other kinds of arrays. */
1617 if (flag_stack_protect == 2)
1618 expand_stack_vars (stack_protect_decl_phase_2);
1621 expand_stack_vars (NULL);
1624 fini_vars_expansion ();
1626 /* If there were any artificial non-ignored vars without rtl
1627 found earlier, see if deferred stack allocation hasn't assigned
1628 rtl to them. */
1629 FOR_EACH_VEC_ELT_REVERSE (tree, maybe_local_decls, i, var)
1631 rtx rtl = DECL_RTL_IF_SET (var);
1633 /* Keep artificial non-ignored vars in cfun->local_decls
1634 chain until instantiate_decls. */
1635 if (rtl && (MEM_P (rtl) || GET_CODE (rtl) == CONCAT))
1636 add_local_decl (cfun, var);
1638 VEC_free (tree, heap, maybe_local_decls);
1640 /* If the target requires that FRAME_OFFSET be aligned, do it. */
1641 if (STACK_ALIGNMENT_NEEDED)
1643 HOST_WIDE_INT align = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
1644 if (!FRAME_GROWS_DOWNWARD)
1645 frame_offset += align - 1;
1646 frame_offset &= -align;
1651 /* If we need to produce a detailed dump, print the tree representation
1652 for STMT to the dump file. SINCE is the last RTX after which the RTL
1653 generated for STMT should have been appended. */
1655 static void
1656 maybe_dump_rtl_for_gimple_stmt (gimple stmt, rtx since)
1658 if (dump_file && (dump_flags & TDF_DETAILS))
1660 fprintf (dump_file, "\n;; ");
1661 print_gimple_stmt (dump_file, stmt, 0,
1662 TDF_SLIM | (dump_flags & TDF_LINENO));
1663 fprintf (dump_file, "\n");
1665 print_rtl (dump_file, since ? NEXT_INSN (since) : since);
1669 /* Maps the blocks that do not contain tree labels to rtx labels. */
1671 static struct pointer_map_t *lab_rtx_for_bb;
1673 /* Returns the label_rtx expression for a label starting basic block BB. */
1675 static rtx
1676 label_rtx_for_bb (basic_block bb ATTRIBUTE_UNUSED)
1678 gimple_stmt_iterator gsi;
1679 tree lab;
1680 gimple lab_stmt;
1681 void **elt;
1683 if (bb->flags & BB_RTL)
1684 return block_label (bb);
1686 elt = pointer_map_contains (lab_rtx_for_bb, bb);
1687 if (elt)
1688 return (rtx) *elt;
1690 /* Find the tree label if it is present. */
1692 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1694 lab_stmt = gsi_stmt (gsi);
1695 if (gimple_code (lab_stmt) != GIMPLE_LABEL)
1696 break;
1698 lab = gimple_label_label (lab_stmt);
1699 if (DECL_NONLOCAL (lab))
1700 break;
1702 return label_rtx (lab);
1705 elt = pointer_map_insert (lab_rtx_for_bb, bb);
1706 *elt = gen_label_rtx ();
1707 return (rtx) *elt;
1711 /* A subroutine of expand_gimple_cond. Given E, a fallthrough edge
1712 of a basic block where we just expanded the conditional at the end,
1713 possibly clean up the CFG and instruction sequence. LAST is the
1714 last instruction before the just emitted jump sequence. */
1716 static void
1717 maybe_cleanup_end_of_block (edge e, rtx last)
1719 /* Special case: when jumpif decides that the condition is
1720 trivial it emits an unconditional jump (and the necessary
1721 barrier). But we still have two edges, the fallthru one is
1722 wrong. purge_dead_edges would clean this up later. Unfortunately
1723 we have to insert insns (and split edges) before
1724 find_many_sub_basic_blocks and hence before purge_dead_edges.
1725 But splitting edges might create new blocks which depend on the
1726 fact that if there are two edges there's no barrier. So the
1727 barrier would get lost and verify_flow_info would ICE. Instead
1728 of auditing all edge splitters to care for the barrier (which
1729 normally isn't there in a cleaned CFG), fix it here. */
1730 if (BARRIER_P (get_last_insn ()))
1732 rtx insn;
1733 remove_edge (e);
1734 /* Now, we have a single successor block, if we have insns to
1735 insert on the remaining edge we potentially will insert
1736 it at the end of this block (if the dest block isn't feasible)
1737 in order to avoid splitting the edge. This insertion will take
1738 place in front of the last jump. But we might have emitted
1739 multiple jumps (conditional and one unconditional) to the
1740 same destination. Inserting in front of the last one then
1741 is a problem. See PR 40021. We fix this by deleting all
1742 jumps except the last unconditional one. */
1743 insn = PREV_INSN (get_last_insn ());
1744 /* Make sure we have an unconditional jump. Otherwise we're
1745 confused. */
1746 gcc_assert (JUMP_P (insn) && !any_condjump_p (insn));
1747 for (insn = PREV_INSN (insn); insn != last;)
1749 insn = PREV_INSN (insn);
1750 if (JUMP_P (NEXT_INSN (insn)))
1752 if (!any_condjump_p (NEXT_INSN (insn)))
1754 gcc_assert (BARRIER_P (NEXT_INSN (NEXT_INSN (insn))));
1755 delete_insn (NEXT_INSN (NEXT_INSN (insn)));
1757 delete_insn (NEXT_INSN (insn));
1763 /* A subroutine of expand_gimple_basic_block. Expand one GIMPLE_COND.
1764 Returns a new basic block if we've terminated the current basic
1765 block and created a new one. */
1767 static basic_block
1768 expand_gimple_cond (basic_block bb, gimple stmt)
1770 basic_block new_bb, dest;
1771 edge new_edge;
1772 edge true_edge;
1773 edge false_edge;
1774 rtx last2, last;
1775 enum tree_code code;
1776 tree op0, op1;
1778 code = gimple_cond_code (stmt);
1779 op0 = gimple_cond_lhs (stmt);
1780 op1 = gimple_cond_rhs (stmt);
1781 /* We're sometimes presented with such code:
1782 D.123_1 = x < y;
1783 if (D.123_1 != 0)
1785 This would expand to two comparisons which then later might
1786 be cleaned up by combine. But some pattern matchers like if-conversion
1787 work better when there's only one compare, so make up for this
1788 here as special exception if TER would have made the same change. */
1789 if (gimple_cond_single_var_p (stmt)
1790 && SA.values
1791 && TREE_CODE (op0) == SSA_NAME
1792 && bitmap_bit_p (SA.values, SSA_NAME_VERSION (op0)))
1794 gimple second = SSA_NAME_DEF_STMT (op0);
1795 if (gimple_code (second) == GIMPLE_ASSIGN)
1797 enum tree_code code2 = gimple_assign_rhs_code (second);
1798 if (TREE_CODE_CLASS (code2) == tcc_comparison)
1800 code = code2;
1801 op0 = gimple_assign_rhs1 (second);
1802 op1 = gimple_assign_rhs2 (second);
1804 /* If jumps are cheap turn some more codes into
1805 jumpy sequences. */
1806 else if (BRANCH_COST (optimize_insn_for_speed_p (), false) < 4)
1808 if ((code2 == BIT_AND_EXPR
1809 && TYPE_PRECISION (TREE_TYPE (op0)) == 1
1810 && TREE_CODE (gimple_assign_rhs2 (second)) != INTEGER_CST)
1811 || code2 == TRUTH_AND_EXPR)
1813 code = TRUTH_ANDIF_EXPR;
1814 op0 = gimple_assign_rhs1 (second);
1815 op1 = gimple_assign_rhs2 (second);
1817 else if (code2 == BIT_IOR_EXPR || code2 == TRUTH_OR_EXPR)
1819 code = TRUTH_ORIF_EXPR;
1820 op0 = gimple_assign_rhs1 (second);
1821 op1 = gimple_assign_rhs2 (second);
1827 last2 = last = get_last_insn ();
1829 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
1830 set_curr_insn_location (gimple_location (stmt));
1832 /* These flags have no purpose in RTL land. */
1833 true_edge->flags &= ~EDGE_TRUE_VALUE;
1834 false_edge->flags &= ~EDGE_FALSE_VALUE;
1836 /* We can either have a pure conditional jump with one fallthru edge or
1837 two-way jump that needs to be decomposed into two basic blocks. */
1838 if (false_edge->dest == bb->next_bb)
1840 jumpif_1 (code, op0, op1, label_rtx_for_bb (true_edge->dest),
1841 true_edge->probability);
1842 maybe_dump_rtl_for_gimple_stmt (stmt, last);
1843 if (true_edge->goto_locus != UNKNOWN_LOCATION)
1844 set_curr_insn_location (true_edge->goto_locus);
1845 false_edge->flags |= EDGE_FALLTHRU;
1846 maybe_cleanup_end_of_block (false_edge, last);
1847 return NULL;
1849 if (true_edge->dest == bb->next_bb)
1851 jumpifnot_1 (code, op0, op1, label_rtx_for_bb (false_edge->dest),
1852 false_edge->probability);
1853 maybe_dump_rtl_for_gimple_stmt (stmt, last);
1854 if (false_edge->goto_locus != UNKNOWN_LOCATION)
1855 set_curr_insn_location (false_edge->goto_locus);
1856 true_edge->flags |= EDGE_FALLTHRU;
1857 maybe_cleanup_end_of_block (true_edge, last);
1858 return NULL;
1861 jumpif_1 (code, op0, op1, label_rtx_for_bb (true_edge->dest),
1862 true_edge->probability);
1863 last = get_last_insn ();
1864 if (false_edge->goto_locus != UNKNOWN_LOCATION)
1865 set_curr_insn_location (false_edge->goto_locus);
1866 emit_jump (label_rtx_for_bb (false_edge->dest));
1868 BB_END (bb) = last;
1869 if (BARRIER_P (BB_END (bb)))
1870 BB_END (bb) = PREV_INSN (BB_END (bb));
1871 update_bb_for_insn (bb);
1873 new_bb = create_basic_block (NEXT_INSN (last), get_last_insn (), bb);
1874 dest = false_edge->dest;
1875 redirect_edge_succ (false_edge, new_bb);
1876 false_edge->flags |= EDGE_FALLTHRU;
1877 new_bb->count = false_edge->count;
1878 new_bb->frequency = EDGE_FREQUENCY (false_edge);
1879 if (current_loops && bb->loop_father)
1880 add_bb_to_loop (new_bb, bb->loop_father);
1881 new_edge = make_edge (new_bb, dest, 0);
1882 new_edge->probability = REG_BR_PROB_BASE;
1883 new_edge->count = new_bb->count;
1884 if (BARRIER_P (BB_END (new_bb)))
1885 BB_END (new_bb) = PREV_INSN (BB_END (new_bb));
1886 update_bb_for_insn (new_bb);
1888 maybe_dump_rtl_for_gimple_stmt (stmt, last2);
1890 if (true_edge->goto_locus != UNKNOWN_LOCATION)
1892 set_curr_insn_location (true_edge->goto_locus);
1893 true_edge->goto_locus = curr_insn_location ();
1896 return new_bb;
1899 /* Mark all calls that can have a transaction restart. */
1901 static void
1902 mark_transaction_restart_calls (gimple stmt)
1904 struct tm_restart_node dummy;
1905 void **slot;
1907 if (!cfun->gimple_df->tm_restart)
1908 return;
1910 dummy.stmt = stmt;
1911 slot = htab_find_slot (cfun->gimple_df->tm_restart, &dummy, NO_INSERT);
1912 if (slot)
1914 struct tm_restart_node *n = (struct tm_restart_node *) *slot;
1915 tree list = n->label_or_list;
1916 rtx insn;
1918 for (insn = next_real_insn (get_last_insn ());
1919 !CALL_P (insn);
1920 insn = next_real_insn (insn))
1921 continue;
1923 if (TREE_CODE (list) == LABEL_DECL)
1924 add_reg_note (insn, REG_TM, label_rtx (list));
1925 else
1926 for (; list ; list = TREE_CHAIN (list))
1927 add_reg_note (insn, REG_TM, label_rtx (TREE_VALUE (list)));
1931 /* A subroutine of expand_gimple_stmt_1, expanding one GIMPLE_CALL
1932 statement STMT. */
1934 static void
1935 expand_call_stmt (gimple stmt)
1937 tree exp, decl, lhs;
1938 bool builtin_p;
1939 size_t i;
1941 if (gimple_call_internal_p (stmt))
1943 expand_internal_call (stmt);
1944 return;
1947 exp = build_vl_exp (CALL_EXPR, gimple_call_num_args (stmt) + 3);
1949 CALL_EXPR_FN (exp) = gimple_call_fn (stmt);
1950 decl = gimple_call_fndecl (stmt);
1951 builtin_p = decl && DECL_BUILT_IN (decl);
1953 /* If this is not a builtin function, the function type through which the
1954 call is made may be different from the type of the function. */
1955 if (!builtin_p)
1956 CALL_EXPR_FN (exp)
1957 = fold_convert (build_pointer_type (gimple_call_fntype (stmt)),
1958 CALL_EXPR_FN (exp));
1960 TREE_TYPE (exp) = gimple_call_return_type (stmt);
1961 CALL_EXPR_STATIC_CHAIN (exp) = gimple_call_chain (stmt);
1963 for (i = 0; i < gimple_call_num_args (stmt); i++)
1965 tree arg = gimple_call_arg (stmt, i);
1966 gimple def;
1967 /* TER addresses into arguments of builtin functions so we have a
1968 chance to infer more correct alignment information. See PR39954. */
1969 if (builtin_p
1970 && TREE_CODE (arg) == SSA_NAME
1971 && (def = get_gimple_for_ssa_name (arg))
1972 && gimple_assign_rhs_code (def) == ADDR_EXPR)
1973 arg = gimple_assign_rhs1 (def);
1974 CALL_EXPR_ARG (exp, i) = arg;
1977 if (gimple_has_side_effects (stmt))
1978 TREE_SIDE_EFFECTS (exp) = 1;
1980 if (gimple_call_nothrow_p (stmt))
1981 TREE_NOTHROW (exp) = 1;
1983 CALL_EXPR_TAILCALL (exp) = gimple_call_tail_p (stmt);
1984 CALL_EXPR_RETURN_SLOT_OPT (exp) = gimple_call_return_slot_opt_p (stmt);
1985 if (decl
1986 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1987 && (DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA
1988 || DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA_WITH_ALIGN))
1989 CALL_ALLOCA_FOR_VAR_P (exp) = gimple_call_alloca_for_var_p (stmt);
1990 else
1991 CALL_FROM_THUNK_P (exp) = gimple_call_from_thunk_p (stmt);
1992 CALL_EXPR_VA_ARG_PACK (exp) = gimple_call_va_arg_pack_p (stmt);
1993 SET_EXPR_LOCATION (exp, gimple_location (stmt));
1995 /* Ensure RTL is created for debug args. */
1996 if (decl && DECL_HAS_DEBUG_ARGS_P (decl))
1998 VEC(tree, gc) **debug_args = decl_debug_args_lookup (decl);
1999 unsigned int ix;
2000 tree dtemp;
2002 if (debug_args)
2003 for (ix = 1; VEC_iterate (tree, *debug_args, ix, dtemp); ix += 2)
2005 gcc_assert (TREE_CODE (dtemp) == DEBUG_EXPR_DECL);
2006 expand_debug_expr (dtemp);
2010 lhs = gimple_call_lhs (stmt);
2011 if (lhs)
2012 expand_assignment (lhs, exp, false);
2013 else
2014 expand_expr_real_1 (exp, const0_rtx, VOIDmode, EXPAND_NORMAL, NULL);
2016 mark_transaction_restart_calls (stmt);
2019 /* A subroutine of expand_gimple_stmt, expanding one gimple statement
2020 STMT that doesn't require special handling for outgoing edges. That
2021 is no tailcalls and no GIMPLE_COND. */
2023 static void
2024 expand_gimple_stmt_1 (gimple stmt)
2026 tree op0;
2028 set_curr_insn_location (gimple_location (stmt));
2030 switch (gimple_code (stmt))
2032 case GIMPLE_GOTO:
2033 op0 = gimple_goto_dest (stmt);
2034 if (TREE_CODE (op0) == LABEL_DECL)
2035 expand_goto (op0);
2036 else
2037 expand_computed_goto (op0);
2038 break;
2039 case GIMPLE_LABEL:
2040 expand_label (gimple_label_label (stmt));
2041 break;
2042 case GIMPLE_NOP:
2043 case GIMPLE_PREDICT:
2044 break;
2045 case GIMPLE_SWITCH:
2046 expand_case (stmt);
2047 break;
2048 case GIMPLE_ASM:
2049 expand_asm_stmt (stmt);
2050 break;
2051 case GIMPLE_CALL:
2052 expand_call_stmt (stmt);
2053 break;
2055 case GIMPLE_RETURN:
2056 op0 = gimple_return_retval (stmt);
2058 if (op0 && op0 != error_mark_node)
2060 tree result = DECL_RESULT (current_function_decl);
2062 /* If we are not returning the current function's RESULT_DECL,
2063 build an assignment to it. */
2064 if (op0 != result)
2066 /* I believe that a function's RESULT_DECL is unique. */
2067 gcc_assert (TREE_CODE (op0) != RESULT_DECL);
2069 /* ??? We'd like to use simply expand_assignment here,
2070 but this fails if the value is of BLKmode but the return
2071 decl is a register. expand_return has special handling
2072 for this combination, which eventually should move
2073 to common code. See comments there. Until then, let's
2074 build a modify expression :-/ */
2075 op0 = build2 (MODIFY_EXPR, TREE_TYPE (result),
2076 result, op0);
2079 if (!op0)
2080 expand_null_return ();
2081 else
2082 expand_return (op0);
2083 break;
2085 case GIMPLE_ASSIGN:
2087 tree lhs = gimple_assign_lhs (stmt);
2089 /* Tree expand used to fiddle with |= and &= of two bitfield
2090 COMPONENT_REFs here. This can't happen with gimple, the LHS
2091 of binary assigns must be a gimple reg. */
2093 if (TREE_CODE (lhs) != SSA_NAME
2094 || get_gimple_rhs_class (gimple_expr_code (stmt))
2095 == GIMPLE_SINGLE_RHS)
2097 tree rhs = gimple_assign_rhs1 (stmt);
2098 gcc_assert (get_gimple_rhs_class (gimple_expr_code (stmt))
2099 == GIMPLE_SINGLE_RHS);
2100 if (gimple_has_location (stmt) && CAN_HAVE_LOCATION_P (rhs))
2101 SET_EXPR_LOCATION (rhs, gimple_location (stmt));
2102 if (TREE_CLOBBER_P (rhs))
2103 /* This is a clobber to mark the going out of scope for
2104 this LHS. */
2106 else
2107 expand_assignment (lhs, rhs,
2108 gimple_assign_nontemporal_move_p (stmt));
2110 else
2112 rtx target, temp;
2113 bool nontemporal = gimple_assign_nontemporal_move_p (stmt);
2114 struct separate_ops ops;
2115 bool promoted = false;
2117 target = expand_expr (lhs, NULL_RTX, VOIDmode, EXPAND_WRITE);
2118 if (GET_CODE (target) == SUBREG && SUBREG_PROMOTED_VAR_P (target))
2119 promoted = true;
2121 ops.code = gimple_assign_rhs_code (stmt);
2122 ops.type = TREE_TYPE (lhs);
2123 switch (get_gimple_rhs_class (gimple_expr_code (stmt)))
2125 case GIMPLE_TERNARY_RHS:
2126 ops.op2 = gimple_assign_rhs3 (stmt);
2127 /* Fallthru */
2128 case GIMPLE_BINARY_RHS:
2129 ops.op1 = gimple_assign_rhs2 (stmt);
2130 /* Fallthru */
2131 case GIMPLE_UNARY_RHS:
2132 ops.op0 = gimple_assign_rhs1 (stmt);
2133 break;
2134 default:
2135 gcc_unreachable ();
2137 ops.location = gimple_location (stmt);
2139 /* If we want to use a nontemporal store, force the value to
2140 register first. If we store into a promoted register,
2141 don't directly expand to target. */
2142 temp = nontemporal || promoted ? NULL_RTX : target;
2143 temp = expand_expr_real_2 (&ops, temp, GET_MODE (target),
2144 EXPAND_NORMAL);
2146 if (temp == target)
2148 else if (promoted)
2150 int unsignedp = SUBREG_PROMOTED_UNSIGNED_P (target);
2151 /* If TEMP is a VOIDmode constant, use convert_modes to make
2152 sure that we properly convert it. */
2153 if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode)
2155 temp = convert_modes (GET_MODE (target),
2156 TYPE_MODE (ops.type),
2157 temp, unsignedp);
2158 temp = convert_modes (GET_MODE (SUBREG_REG (target)),
2159 GET_MODE (target), temp, unsignedp);
2162 convert_move (SUBREG_REG (target), temp, unsignedp);
2164 else if (nontemporal && emit_storent_insn (target, temp))
2166 else
2168 temp = force_operand (temp, target);
2169 if (temp != target)
2170 emit_move_insn (target, temp);
2174 break;
2176 default:
2177 gcc_unreachable ();
2181 /* Expand one gimple statement STMT and return the last RTL instruction
2182 before any of the newly generated ones.
2184 In addition to generating the necessary RTL instructions this also
2185 sets REG_EH_REGION notes if necessary and sets the current source
2186 location for diagnostics. */
2188 static rtx
2189 expand_gimple_stmt (gimple stmt)
2191 location_t saved_location = input_location;
2192 rtx last = get_last_insn ();
2193 int lp_nr;
2195 gcc_assert (cfun);
2197 /* We need to save and restore the current source location so that errors
2198 discovered during expansion are emitted with the right location. But
2199 it would be better if the diagnostic routines used the source location
2200 embedded in the tree nodes rather than globals. */
2201 if (gimple_has_location (stmt))
2202 input_location = gimple_location (stmt);
2204 expand_gimple_stmt_1 (stmt);
2206 /* Free any temporaries used to evaluate this statement. */
2207 free_temp_slots ();
2209 input_location = saved_location;
2211 /* Mark all insns that may trap. */
2212 lp_nr = lookup_stmt_eh_lp (stmt);
2213 if (lp_nr)
2215 rtx insn;
2216 for (insn = next_real_insn (last); insn;
2217 insn = next_real_insn (insn))
2219 if (! find_reg_note (insn, REG_EH_REGION, NULL_RTX)
2220 /* If we want exceptions for non-call insns, any
2221 may_trap_p instruction may throw. */
2222 && GET_CODE (PATTERN (insn)) != CLOBBER
2223 && GET_CODE (PATTERN (insn)) != USE
2224 && insn_could_throw_p (insn))
2225 make_reg_eh_region_note (insn, 0, lp_nr);
2229 return last;
2232 /* A subroutine of expand_gimple_basic_block. Expand one GIMPLE_CALL
2233 that has CALL_EXPR_TAILCALL set. Returns non-null if we actually
2234 generated a tail call (something that might be denied by the ABI
2235 rules governing the call; see calls.c).
2237 Sets CAN_FALLTHRU if we generated a *conditional* tail call, and
2238 can still reach the rest of BB. The case here is __builtin_sqrt,
2239 where the NaN result goes through the external function (with a
2240 tailcall) and the normal result happens via a sqrt instruction. */
2242 static basic_block
2243 expand_gimple_tailcall (basic_block bb, gimple stmt, bool *can_fallthru)
2245 rtx last2, last;
2246 edge e;
2247 edge_iterator ei;
2248 int probability;
2249 gcov_type count;
2251 last2 = last = expand_gimple_stmt (stmt);
2253 for (last = NEXT_INSN (last); last; last = NEXT_INSN (last))
2254 if (CALL_P (last) && SIBLING_CALL_P (last))
2255 goto found;
2257 maybe_dump_rtl_for_gimple_stmt (stmt, last2);
2259 *can_fallthru = true;
2260 return NULL;
2262 found:
2263 /* ??? Wouldn't it be better to just reset any pending stack adjust?
2264 Any instructions emitted here are about to be deleted. */
2265 do_pending_stack_adjust ();
2267 /* Remove any non-eh, non-abnormal edges that don't go to exit. */
2268 /* ??? I.e. the fallthrough edge. HOWEVER! If there were to be
2269 EH or abnormal edges, we shouldn't have created a tail call in
2270 the first place. So it seems to me we should just be removing
2271 all edges here, or redirecting the existing fallthru edge to
2272 the exit block. */
2274 probability = 0;
2275 count = 0;
2277 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
2279 if (!(e->flags & (EDGE_ABNORMAL | EDGE_EH)))
2281 if (e->dest != EXIT_BLOCK_PTR)
2283 e->dest->count -= e->count;
2284 e->dest->frequency -= EDGE_FREQUENCY (e);
2285 if (e->dest->count < 0)
2286 e->dest->count = 0;
2287 if (e->dest->frequency < 0)
2288 e->dest->frequency = 0;
2290 count += e->count;
2291 probability += e->probability;
2292 remove_edge (e);
2294 else
2295 ei_next (&ei);
2298 /* This is somewhat ugly: the call_expr expander often emits instructions
2299 after the sibcall (to perform the function return). These confuse the
2300 find_many_sub_basic_blocks code, so we need to get rid of these. */
2301 last = NEXT_INSN (last);
2302 gcc_assert (BARRIER_P (last));
2304 *can_fallthru = false;
2305 while (NEXT_INSN (last))
2307 /* For instance an sqrt builtin expander expands if with
2308 sibcall in the then and label for `else`. */
2309 if (LABEL_P (NEXT_INSN (last)))
2311 *can_fallthru = true;
2312 break;
2314 delete_insn (NEXT_INSN (last));
2317 e = make_edge (bb, EXIT_BLOCK_PTR, EDGE_ABNORMAL | EDGE_SIBCALL);
2318 e->probability += probability;
2319 e->count += count;
2320 BB_END (bb) = last;
2321 update_bb_for_insn (bb);
2323 if (NEXT_INSN (last))
2325 bb = create_basic_block (NEXT_INSN (last), get_last_insn (), bb);
2327 last = BB_END (bb);
2328 if (BARRIER_P (last))
2329 BB_END (bb) = PREV_INSN (last);
2332 maybe_dump_rtl_for_gimple_stmt (stmt, last2);
2334 return bb;
2337 /* Return the difference between the floor and the truncated result of
2338 a signed division by OP1 with remainder MOD. */
2339 static rtx
2340 floor_sdiv_adjust (enum machine_mode mode, rtx mod, rtx op1)
2342 /* (mod != 0 ? (op1 / mod < 0 ? -1 : 0) : 0) */
2343 return gen_rtx_IF_THEN_ELSE
2344 (mode, gen_rtx_NE (BImode, mod, const0_rtx),
2345 gen_rtx_IF_THEN_ELSE
2346 (mode, gen_rtx_LT (BImode,
2347 gen_rtx_DIV (mode, op1, mod),
2348 const0_rtx),
2349 constm1_rtx, const0_rtx),
2350 const0_rtx);
2353 /* Return the difference between the ceil and the truncated result of
2354 a signed division by OP1 with remainder MOD. */
2355 static rtx
2356 ceil_sdiv_adjust (enum machine_mode mode, rtx mod, rtx op1)
2358 /* (mod != 0 ? (op1 / mod > 0 ? 1 : 0) : 0) */
2359 return gen_rtx_IF_THEN_ELSE
2360 (mode, gen_rtx_NE (BImode, mod, const0_rtx),
2361 gen_rtx_IF_THEN_ELSE
2362 (mode, gen_rtx_GT (BImode,
2363 gen_rtx_DIV (mode, op1, mod),
2364 const0_rtx),
2365 const1_rtx, const0_rtx),
2366 const0_rtx);
2369 /* Return the difference between the ceil and the truncated result of
2370 an unsigned division by OP1 with remainder MOD. */
2371 static rtx
2372 ceil_udiv_adjust (enum machine_mode mode, rtx mod, rtx op1 ATTRIBUTE_UNUSED)
2374 /* (mod != 0 ? 1 : 0) */
2375 return gen_rtx_IF_THEN_ELSE
2376 (mode, gen_rtx_NE (BImode, mod, const0_rtx),
2377 const1_rtx, const0_rtx);
2380 /* Return the difference between the rounded and the truncated result
2381 of a signed division by OP1 with remainder MOD. Halfway cases are
2382 rounded away from zero, rather than to the nearest even number. */
2383 static rtx
2384 round_sdiv_adjust (enum machine_mode mode, rtx mod, rtx op1)
2386 /* (abs (mod) >= abs (op1) - abs (mod)
2387 ? (op1 / mod > 0 ? 1 : -1)
2388 : 0) */
2389 return gen_rtx_IF_THEN_ELSE
2390 (mode, gen_rtx_GE (BImode, gen_rtx_ABS (mode, mod),
2391 gen_rtx_MINUS (mode,
2392 gen_rtx_ABS (mode, op1),
2393 gen_rtx_ABS (mode, mod))),
2394 gen_rtx_IF_THEN_ELSE
2395 (mode, gen_rtx_GT (BImode,
2396 gen_rtx_DIV (mode, op1, mod),
2397 const0_rtx),
2398 const1_rtx, constm1_rtx),
2399 const0_rtx);
2402 /* Return the difference between the rounded and the truncated result
2403 of a unsigned division by OP1 with remainder MOD. Halfway cases
2404 are rounded away from zero, rather than to the nearest even
2405 number. */
2406 static rtx
2407 round_udiv_adjust (enum machine_mode mode, rtx mod, rtx op1)
2409 /* (mod >= op1 - mod ? 1 : 0) */
2410 return gen_rtx_IF_THEN_ELSE
2411 (mode, gen_rtx_GE (BImode, mod,
2412 gen_rtx_MINUS (mode, op1, mod)),
2413 const1_rtx, const0_rtx);
2416 /* Convert X to MODE, that must be Pmode or ptr_mode, without emitting
2417 any rtl. */
2419 static rtx
2420 convert_debug_memory_address (enum machine_mode mode, rtx x,
2421 addr_space_t as)
2423 enum machine_mode xmode = GET_MODE (x);
2425 #ifndef POINTERS_EXTEND_UNSIGNED
2426 gcc_assert (mode == Pmode
2427 || mode == targetm.addr_space.address_mode (as));
2428 gcc_assert (xmode == mode || xmode == VOIDmode);
2429 #else
2430 rtx temp;
2432 gcc_assert (targetm.addr_space.valid_pointer_mode (mode, as));
2434 if (GET_MODE (x) == mode || GET_MODE (x) == VOIDmode)
2435 return x;
2437 if (GET_MODE_PRECISION (mode) < GET_MODE_PRECISION (xmode))
2438 x = simplify_gen_subreg (mode, x, xmode,
2439 subreg_lowpart_offset
2440 (mode, xmode));
2441 else if (POINTERS_EXTEND_UNSIGNED > 0)
2442 x = gen_rtx_ZERO_EXTEND (mode, x);
2443 else if (!POINTERS_EXTEND_UNSIGNED)
2444 x = gen_rtx_SIGN_EXTEND (mode, x);
2445 else
2447 switch (GET_CODE (x))
2449 case SUBREG:
2450 if ((SUBREG_PROMOTED_VAR_P (x)
2451 || (REG_P (SUBREG_REG (x)) && REG_POINTER (SUBREG_REG (x)))
2452 || (GET_CODE (SUBREG_REG (x)) == PLUS
2453 && REG_P (XEXP (SUBREG_REG (x), 0))
2454 && REG_POINTER (XEXP (SUBREG_REG (x), 0))
2455 && CONST_INT_P (XEXP (SUBREG_REG (x), 1))))
2456 && GET_MODE (SUBREG_REG (x)) == mode)
2457 return SUBREG_REG (x);
2458 break;
2459 case LABEL_REF:
2460 temp = gen_rtx_LABEL_REF (mode, XEXP (x, 0));
2461 LABEL_REF_NONLOCAL_P (temp) = LABEL_REF_NONLOCAL_P (x);
2462 return temp;
2463 case SYMBOL_REF:
2464 temp = shallow_copy_rtx (x);
2465 PUT_MODE (temp, mode);
2466 return temp;
2467 case CONST:
2468 temp = convert_debug_memory_address (mode, XEXP (x, 0), as);
2469 if (temp)
2470 temp = gen_rtx_CONST (mode, temp);
2471 return temp;
2472 case PLUS:
2473 case MINUS:
2474 if (CONST_INT_P (XEXP (x, 1)))
2476 temp = convert_debug_memory_address (mode, XEXP (x, 0), as);
2477 if (temp)
2478 return gen_rtx_fmt_ee (GET_CODE (x), mode, temp, XEXP (x, 1));
2480 break;
2481 default:
2482 break;
2484 /* Don't know how to express ptr_extend as operation in debug info. */
2485 return NULL;
2487 #endif /* POINTERS_EXTEND_UNSIGNED */
2489 return x;
2492 /* Return an RTX equivalent to the value of the parameter DECL. */
2494 static rtx
2495 expand_debug_parm_decl (tree decl)
2497 rtx incoming = DECL_INCOMING_RTL (decl);
2499 if (incoming
2500 && GET_MODE (incoming) != BLKmode
2501 && ((REG_P (incoming) && HARD_REGISTER_P (incoming))
2502 || (MEM_P (incoming)
2503 && REG_P (XEXP (incoming, 0))
2504 && HARD_REGISTER_P (XEXP (incoming, 0)))))
2506 rtx rtl = gen_rtx_ENTRY_VALUE (GET_MODE (incoming));
2508 #ifdef HAVE_window_save
2509 /* DECL_INCOMING_RTL uses the INCOMING_REGNO of parameter registers.
2510 If the target machine has an explicit window save instruction, the
2511 actual entry value is the corresponding OUTGOING_REGNO instead. */
2512 if (REG_P (incoming)
2513 && OUTGOING_REGNO (REGNO (incoming)) != REGNO (incoming))
2514 incoming
2515 = gen_rtx_REG_offset (incoming, GET_MODE (incoming),
2516 OUTGOING_REGNO (REGNO (incoming)), 0);
2517 else if (MEM_P (incoming))
2519 rtx reg = XEXP (incoming, 0);
2520 if (OUTGOING_REGNO (REGNO (reg)) != REGNO (reg))
2522 reg = gen_raw_REG (GET_MODE (reg), OUTGOING_REGNO (REGNO (reg)));
2523 incoming = replace_equiv_address_nv (incoming, reg);
2526 #endif
2528 ENTRY_VALUE_EXP (rtl) = incoming;
2529 return rtl;
2532 if (incoming
2533 && GET_MODE (incoming) != BLKmode
2534 && !TREE_ADDRESSABLE (decl)
2535 && MEM_P (incoming)
2536 && (XEXP (incoming, 0) == virtual_incoming_args_rtx
2537 || (GET_CODE (XEXP (incoming, 0)) == PLUS
2538 && XEXP (XEXP (incoming, 0), 0) == virtual_incoming_args_rtx
2539 && CONST_INT_P (XEXP (XEXP (incoming, 0), 1)))))
2540 return incoming;
2542 return NULL_RTX;
2545 /* Return an RTX equivalent to the value of the tree expression EXP. */
2547 static rtx
2548 expand_debug_expr (tree exp)
2550 rtx op0 = NULL_RTX, op1 = NULL_RTX, op2 = NULL_RTX;
2551 enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
2552 enum machine_mode inner_mode = VOIDmode;
2553 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
2554 addr_space_t as;
2556 switch (TREE_CODE_CLASS (TREE_CODE (exp)))
2558 case tcc_expression:
2559 switch (TREE_CODE (exp))
2561 case COND_EXPR:
2562 case DOT_PROD_EXPR:
2563 case WIDEN_MULT_PLUS_EXPR:
2564 case WIDEN_MULT_MINUS_EXPR:
2565 case FMA_EXPR:
2566 goto ternary;
2568 case TRUTH_ANDIF_EXPR:
2569 case TRUTH_ORIF_EXPR:
2570 case TRUTH_AND_EXPR:
2571 case TRUTH_OR_EXPR:
2572 case TRUTH_XOR_EXPR:
2573 goto binary;
2575 case TRUTH_NOT_EXPR:
2576 goto unary;
2578 default:
2579 break;
2581 break;
2583 ternary:
2584 op2 = expand_debug_expr (TREE_OPERAND (exp, 2));
2585 if (!op2)
2586 return NULL_RTX;
2587 /* Fall through. */
2589 binary:
2590 case tcc_binary:
2591 case tcc_comparison:
2592 op1 = expand_debug_expr (TREE_OPERAND (exp, 1));
2593 if (!op1)
2594 return NULL_RTX;
2595 /* Fall through. */
2597 unary:
2598 case tcc_unary:
2599 inner_mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)));
2600 op0 = expand_debug_expr (TREE_OPERAND (exp, 0));
2601 if (!op0)
2602 return NULL_RTX;
2603 break;
2605 case tcc_type:
2606 case tcc_statement:
2607 gcc_unreachable ();
2609 case tcc_constant:
2610 case tcc_exceptional:
2611 case tcc_declaration:
2612 case tcc_reference:
2613 case tcc_vl_exp:
2614 break;
2617 switch (TREE_CODE (exp))
2619 case STRING_CST:
2620 if (!lookup_constant_def (exp))
2622 if (strlen (TREE_STRING_POINTER (exp)) + 1
2623 != (size_t) TREE_STRING_LENGTH (exp))
2624 return NULL_RTX;
2625 op0 = gen_rtx_CONST_STRING (Pmode, TREE_STRING_POINTER (exp));
2626 op0 = gen_rtx_MEM (BLKmode, op0);
2627 set_mem_attributes (op0, exp, 0);
2628 return op0;
2630 /* Fall through... */
2632 case INTEGER_CST:
2633 case REAL_CST:
2634 case FIXED_CST:
2635 op0 = expand_expr (exp, NULL_RTX, mode, EXPAND_INITIALIZER);
2636 return op0;
2638 case COMPLEX_CST:
2639 gcc_assert (COMPLEX_MODE_P (mode));
2640 op0 = expand_debug_expr (TREE_REALPART (exp));
2641 op1 = expand_debug_expr (TREE_IMAGPART (exp));
2642 return gen_rtx_CONCAT (mode, op0, op1);
2644 case DEBUG_EXPR_DECL:
2645 op0 = DECL_RTL_IF_SET (exp);
2647 if (op0)
2648 return op0;
2650 op0 = gen_rtx_DEBUG_EXPR (mode);
2651 DEBUG_EXPR_TREE_DECL (op0) = exp;
2652 SET_DECL_RTL (exp, op0);
2654 return op0;
2656 case VAR_DECL:
2657 case PARM_DECL:
2658 case FUNCTION_DECL:
2659 case LABEL_DECL:
2660 case CONST_DECL:
2661 case RESULT_DECL:
2662 op0 = DECL_RTL_IF_SET (exp);
2664 /* This decl was probably optimized away. */
2665 if (!op0)
2667 if (TREE_CODE (exp) != VAR_DECL
2668 || DECL_EXTERNAL (exp)
2669 || !TREE_STATIC (exp)
2670 || !DECL_NAME (exp)
2671 || DECL_HARD_REGISTER (exp)
2672 || DECL_IN_CONSTANT_POOL (exp)
2673 || mode == VOIDmode)
2674 return NULL;
2676 op0 = make_decl_rtl_for_debug (exp);
2677 if (!MEM_P (op0)
2678 || GET_CODE (XEXP (op0, 0)) != SYMBOL_REF
2679 || SYMBOL_REF_DECL (XEXP (op0, 0)) != exp)
2680 return NULL;
2682 else
2683 op0 = copy_rtx (op0);
2685 if (GET_MODE (op0) == BLKmode
2686 /* If op0 is not BLKmode, but BLKmode is, adjust_mode
2687 below would ICE. While it is likely a FE bug,
2688 try to be robust here. See PR43166. */
2689 || mode == BLKmode
2690 || (mode == VOIDmode && GET_MODE (op0) != VOIDmode))
2692 gcc_assert (MEM_P (op0));
2693 op0 = adjust_address_nv (op0, mode, 0);
2694 return op0;
2697 /* Fall through. */
2699 adjust_mode:
2700 case PAREN_EXPR:
2701 case NOP_EXPR:
2702 case CONVERT_EXPR:
2704 inner_mode = GET_MODE (op0);
2706 if (mode == inner_mode)
2707 return op0;
2709 if (inner_mode == VOIDmode)
2711 if (TREE_CODE (exp) == SSA_NAME)
2712 inner_mode = TYPE_MODE (TREE_TYPE (exp));
2713 else
2714 inner_mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)));
2715 if (mode == inner_mode)
2716 return op0;
2719 if (FLOAT_MODE_P (mode) && FLOAT_MODE_P (inner_mode))
2721 if (GET_MODE_BITSIZE (mode) == GET_MODE_BITSIZE (inner_mode))
2722 op0 = simplify_gen_subreg (mode, op0, inner_mode, 0);
2723 else if (GET_MODE_BITSIZE (mode) < GET_MODE_BITSIZE (inner_mode))
2724 op0 = simplify_gen_unary (FLOAT_TRUNCATE, mode, op0, inner_mode);
2725 else
2726 op0 = simplify_gen_unary (FLOAT_EXTEND, mode, op0, inner_mode);
2728 else if (FLOAT_MODE_P (mode))
2730 gcc_assert (TREE_CODE (exp) != SSA_NAME);
2731 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))))
2732 op0 = simplify_gen_unary (UNSIGNED_FLOAT, mode, op0, inner_mode);
2733 else
2734 op0 = simplify_gen_unary (FLOAT, mode, op0, inner_mode);
2736 else if (FLOAT_MODE_P (inner_mode))
2738 if (unsignedp)
2739 op0 = simplify_gen_unary (UNSIGNED_FIX, mode, op0, inner_mode);
2740 else
2741 op0 = simplify_gen_unary (FIX, mode, op0, inner_mode);
2743 else if (CONSTANT_P (op0)
2744 || GET_MODE_PRECISION (mode) <= GET_MODE_PRECISION (inner_mode))
2745 op0 = simplify_gen_subreg (mode, op0, inner_mode,
2746 subreg_lowpart_offset (mode,
2747 inner_mode));
2748 else if (TREE_CODE_CLASS (TREE_CODE (exp)) == tcc_unary
2749 ? TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0)))
2750 : unsignedp)
2751 op0 = simplify_gen_unary (ZERO_EXTEND, mode, op0, inner_mode);
2752 else
2753 op0 = simplify_gen_unary (SIGN_EXTEND, mode, op0, inner_mode);
2755 return op0;
2758 case MEM_REF:
2759 if (!is_gimple_mem_ref_addr (TREE_OPERAND (exp, 0)))
2761 tree newexp = fold_binary (MEM_REF, TREE_TYPE (exp),
2762 TREE_OPERAND (exp, 0),
2763 TREE_OPERAND (exp, 1));
2764 if (newexp)
2765 return expand_debug_expr (newexp);
2767 /* FALLTHROUGH */
2768 case INDIRECT_REF:
2769 inner_mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)));
2770 op0 = expand_debug_expr (TREE_OPERAND (exp, 0));
2771 if (!op0)
2772 return NULL;
2774 if (TREE_CODE (exp) == MEM_REF)
2776 if (GET_CODE (op0) == DEBUG_IMPLICIT_PTR
2777 || (GET_CODE (op0) == PLUS
2778 && GET_CODE (XEXP (op0, 0)) == DEBUG_IMPLICIT_PTR))
2779 /* (mem (debug_implicit_ptr)) might confuse aliasing.
2780 Instead just use get_inner_reference. */
2781 goto component_ref;
2783 op1 = expand_debug_expr (TREE_OPERAND (exp, 1));
2784 if (!op1 || !CONST_INT_P (op1))
2785 return NULL;
2787 op0 = plus_constant (inner_mode, op0, INTVAL (op1));
2790 if (POINTER_TYPE_P (TREE_TYPE (exp)))
2791 as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)));
2792 else
2793 as = ADDR_SPACE_GENERIC;
2795 op0 = convert_debug_memory_address (targetm.addr_space.address_mode (as),
2796 op0, as);
2797 if (op0 == NULL_RTX)
2798 return NULL;
2800 op0 = gen_rtx_MEM (mode, op0);
2801 set_mem_attributes (op0, exp, 0);
2802 if (TREE_CODE (exp) == MEM_REF
2803 && !is_gimple_mem_ref_addr (TREE_OPERAND (exp, 0)))
2804 set_mem_expr (op0, NULL_TREE);
2805 set_mem_addr_space (op0, as);
2807 return op0;
2809 case TARGET_MEM_REF:
2810 if (TREE_CODE (TMR_BASE (exp)) == ADDR_EXPR
2811 && !DECL_RTL_SET_P (TREE_OPERAND (TMR_BASE (exp), 0)))
2812 return NULL;
2814 op0 = expand_debug_expr
2815 (tree_mem_ref_addr (build_pointer_type (TREE_TYPE (exp)), exp));
2816 if (!op0)
2817 return NULL;
2819 if (POINTER_TYPE_P (TREE_TYPE (exp)))
2820 as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)));
2821 else
2822 as = ADDR_SPACE_GENERIC;
2824 op0 = convert_debug_memory_address (targetm.addr_space.address_mode (as),
2825 op0, as);
2826 if (op0 == NULL_RTX)
2827 return NULL;
2829 op0 = gen_rtx_MEM (mode, op0);
2831 set_mem_attributes (op0, exp, 0);
2832 set_mem_addr_space (op0, as);
2834 return op0;
2836 component_ref:
2837 case ARRAY_REF:
2838 case ARRAY_RANGE_REF:
2839 case COMPONENT_REF:
2840 case BIT_FIELD_REF:
2841 case REALPART_EXPR:
2842 case IMAGPART_EXPR:
2843 case VIEW_CONVERT_EXPR:
2845 enum machine_mode mode1;
2846 HOST_WIDE_INT bitsize, bitpos;
2847 tree offset;
2848 int volatilep = 0;
2849 tree tem = get_inner_reference (exp, &bitsize, &bitpos, &offset,
2850 &mode1, &unsignedp, &volatilep, false);
2851 rtx orig_op0;
2853 if (bitsize == 0)
2854 return NULL;
2856 orig_op0 = op0 = expand_debug_expr (tem);
2858 if (!op0)
2859 return NULL;
2861 if (offset)
2863 enum machine_mode addrmode, offmode;
2865 if (!MEM_P (op0))
2866 return NULL;
2868 op0 = XEXP (op0, 0);
2869 addrmode = GET_MODE (op0);
2870 if (addrmode == VOIDmode)
2871 addrmode = Pmode;
2873 op1 = expand_debug_expr (offset);
2874 if (!op1)
2875 return NULL;
2877 offmode = GET_MODE (op1);
2878 if (offmode == VOIDmode)
2879 offmode = TYPE_MODE (TREE_TYPE (offset));
2881 if (addrmode != offmode)
2882 op1 = simplify_gen_subreg (addrmode, op1, offmode,
2883 subreg_lowpart_offset (addrmode,
2884 offmode));
2886 /* Don't use offset_address here, we don't need a
2887 recognizable address, and we don't want to generate
2888 code. */
2889 op0 = gen_rtx_MEM (mode, simplify_gen_binary (PLUS, addrmode,
2890 op0, op1));
2893 if (MEM_P (op0))
2895 if (mode1 == VOIDmode)
2896 /* Bitfield. */
2897 mode1 = smallest_mode_for_size (bitsize, MODE_INT);
2898 if (bitpos >= BITS_PER_UNIT)
2900 op0 = adjust_address_nv (op0, mode1, bitpos / BITS_PER_UNIT);
2901 bitpos %= BITS_PER_UNIT;
2903 else if (bitpos < 0)
2905 HOST_WIDE_INT units
2906 = (-bitpos + BITS_PER_UNIT - 1) / BITS_PER_UNIT;
2907 op0 = adjust_address_nv (op0, mode1, units);
2908 bitpos += units * BITS_PER_UNIT;
2910 else if (bitpos == 0 && bitsize == GET_MODE_BITSIZE (mode))
2911 op0 = adjust_address_nv (op0, mode, 0);
2912 else if (GET_MODE (op0) != mode1)
2913 op0 = adjust_address_nv (op0, mode1, 0);
2914 else
2915 op0 = copy_rtx (op0);
2916 if (op0 == orig_op0)
2917 op0 = shallow_copy_rtx (op0);
2918 set_mem_attributes (op0, exp, 0);
2921 if (bitpos == 0 && mode == GET_MODE (op0))
2922 return op0;
2924 if (bitpos < 0)
2925 return NULL;
2927 if (GET_MODE (op0) == BLKmode)
2928 return NULL;
2930 if ((bitpos % BITS_PER_UNIT) == 0
2931 && bitsize == GET_MODE_BITSIZE (mode1))
2933 enum machine_mode opmode = GET_MODE (op0);
2935 if (opmode == VOIDmode)
2936 opmode = TYPE_MODE (TREE_TYPE (tem));
2938 /* This condition may hold if we're expanding the address
2939 right past the end of an array that turned out not to
2940 be addressable (i.e., the address was only computed in
2941 debug stmts). The gen_subreg below would rightfully
2942 crash, and the address doesn't really exist, so just
2943 drop it. */
2944 if (bitpos >= GET_MODE_BITSIZE (opmode))
2945 return NULL;
2947 if ((bitpos % GET_MODE_BITSIZE (mode)) == 0)
2948 return simplify_gen_subreg (mode, op0, opmode,
2949 bitpos / BITS_PER_UNIT);
2952 return simplify_gen_ternary (SCALAR_INT_MODE_P (GET_MODE (op0))
2953 && TYPE_UNSIGNED (TREE_TYPE (exp))
2954 ? SIGN_EXTRACT
2955 : ZERO_EXTRACT, mode,
2956 GET_MODE (op0) != VOIDmode
2957 ? GET_MODE (op0)
2958 : TYPE_MODE (TREE_TYPE (tem)),
2959 op0, GEN_INT (bitsize), GEN_INT (bitpos));
2962 case ABS_EXPR:
2963 return simplify_gen_unary (ABS, mode, op0, mode);
2965 case NEGATE_EXPR:
2966 return simplify_gen_unary (NEG, mode, op0, mode);
2968 case BIT_NOT_EXPR:
2969 return simplify_gen_unary (NOT, mode, op0, mode);
2971 case FLOAT_EXPR:
2972 return simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
2973 0)))
2974 ? UNSIGNED_FLOAT : FLOAT, mode, op0,
2975 inner_mode);
2977 case FIX_TRUNC_EXPR:
2978 return simplify_gen_unary (unsignedp ? UNSIGNED_FIX : FIX, mode, op0,
2979 inner_mode);
2981 case POINTER_PLUS_EXPR:
2982 /* For the rare target where pointers are not the same size as
2983 size_t, we need to check for mis-matched modes and correct
2984 the addend. */
2985 if (op0 && op1
2986 && GET_MODE (op0) != VOIDmode && GET_MODE (op1) != VOIDmode
2987 && GET_MODE (op0) != GET_MODE (op1))
2989 if (GET_MODE_BITSIZE (GET_MODE (op0)) < GET_MODE_BITSIZE (GET_MODE (op1)))
2990 op1 = simplify_gen_unary (TRUNCATE, GET_MODE (op0), op1,
2991 GET_MODE (op1));
2992 else
2993 /* We always sign-extend, regardless of the signedness of
2994 the operand, because the operand is always unsigned
2995 here even if the original C expression is signed. */
2996 op1 = simplify_gen_unary (SIGN_EXTEND, GET_MODE (op0), op1,
2997 GET_MODE (op1));
2999 /* Fall through. */
3000 case PLUS_EXPR:
3001 return simplify_gen_binary (PLUS, mode, op0, op1);
3003 case MINUS_EXPR:
3004 return simplify_gen_binary (MINUS, mode, op0, op1);
3006 case MULT_EXPR:
3007 return simplify_gen_binary (MULT, mode, op0, op1);
3009 case RDIV_EXPR:
3010 case TRUNC_DIV_EXPR:
3011 case EXACT_DIV_EXPR:
3012 if (unsignedp)
3013 return simplify_gen_binary (UDIV, mode, op0, op1);
3014 else
3015 return simplify_gen_binary (DIV, mode, op0, op1);
3017 case TRUNC_MOD_EXPR:
3018 return simplify_gen_binary (unsignedp ? UMOD : MOD, mode, op0, op1);
3020 case FLOOR_DIV_EXPR:
3021 if (unsignedp)
3022 return simplify_gen_binary (UDIV, mode, op0, op1);
3023 else
3025 rtx div = simplify_gen_binary (DIV, mode, op0, op1);
3026 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
3027 rtx adj = floor_sdiv_adjust (mode, mod, op1);
3028 return simplify_gen_binary (PLUS, mode, div, adj);
3031 case FLOOR_MOD_EXPR:
3032 if (unsignedp)
3033 return simplify_gen_binary (UMOD, mode, op0, op1);
3034 else
3036 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
3037 rtx adj = floor_sdiv_adjust (mode, mod, op1);
3038 adj = simplify_gen_unary (NEG, mode,
3039 simplify_gen_binary (MULT, mode, adj, op1),
3040 mode);
3041 return simplify_gen_binary (PLUS, mode, mod, adj);
3044 case CEIL_DIV_EXPR:
3045 if (unsignedp)
3047 rtx div = simplify_gen_binary (UDIV, mode, op0, op1);
3048 rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
3049 rtx adj = ceil_udiv_adjust (mode, mod, op1);
3050 return simplify_gen_binary (PLUS, mode, div, adj);
3052 else
3054 rtx div = simplify_gen_binary (DIV, mode, op0, op1);
3055 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
3056 rtx adj = ceil_sdiv_adjust (mode, mod, op1);
3057 return simplify_gen_binary (PLUS, mode, div, adj);
3060 case CEIL_MOD_EXPR:
3061 if (unsignedp)
3063 rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
3064 rtx adj = ceil_udiv_adjust (mode, mod, op1);
3065 adj = simplify_gen_unary (NEG, mode,
3066 simplify_gen_binary (MULT, mode, adj, op1),
3067 mode);
3068 return simplify_gen_binary (PLUS, mode, mod, adj);
3070 else
3072 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
3073 rtx adj = ceil_sdiv_adjust (mode, mod, op1);
3074 adj = simplify_gen_unary (NEG, mode,
3075 simplify_gen_binary (MULT, mode, adj, op1),
3076 mode);
3077 return simplify_gen_binary (PLUS, mode, mod, adj);
3080 case ROUND_DIV_EXPR:
3081 if (unsignedp)
3083 rtx div = simplify_gen_binary (UDIV, mode, op0, op1);
3084 rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
3085 rtx adj = round_udiv_adjust (mode, mod, op1);
3086 return simplify_gen_binary (PLUS, mode, div, adj);
3088 else
3090 rtx div = simplify_gen_binary (DIV, mode, op0, op1);
3091 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
3092 rtx adj = round_sdiv_adjust (mode, mod, op1);
3093 return simplify_gen_binary (PLUS, mode, div, adj);
3096 case ROUND_MOD_EXPR:
3097 if (unsignedp)
3099 rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
3100 rtx adj = round_udiv_adjust (mode, mod, op1);
3101 adj = simplify_gen_unary (NEG, mode,
3102 simplify_gen_binary (MULT, mode, adj, op1),
3103 mode);
3104 return simplify_gen_binary (PLUS, mode, mod, adj);
3106 else
3108 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
3109 rtx adj = round_sdiv_adjust (mode, mod, op1);
3110 adj = simplify_gen_unary (NEG, mode,
3111 simplify_gen_binary (MULT, mode, adj, op1),
3112 mode);
3113 return simplify_gen_binary (PLUS, mode, mod, adj);
3116 case LSHIFT_EXPR:
3117 return simplify_gen_binary (ASHIFT, mode, op0, op1);
3119 case RSHIFT_EXPR:
3120 if (unsignedp)
3121 return simplify_gen_binary (LSHIFTRT, mode, op0, op1);
3122 else
3123 return simplify_gen_binary (ASHIFTRT, mode, op0, op1);
3125 case LROTATE_EXPR:
3126 return simplify_gen_binary (ROTATE, mode, op0, op1);
3128 case RROTATE_EXPR:
3129 return simplify_gen_binary (ROTATERT, mode, op0, op1);
3131 case MIN_EXPR:
3132 return simplify_gen_binary (unsignedp ? UMIN : SMIN, mode, op0, op1);
3134 case MAX_EXPR:
3135 return simplify_gen_binary (unsignedp ? UMAX : SMAX, mode, op0, op1);
3137 case BIT_AND_EXPR:
3138 case TRUTH_AND_EXPR:
3139 return simplify_gen_binary (AND, mode, op0, op1);
3141 case BIT_IOR_EXPR:
3142 case TRUTH_OR_EXPR:
3143 return simplify_gen_binary (IOR, mode, op0, op1);
3145 case BIT_XOR_EXPR:
3146 case TRUTH_XOR_EXPR:
3147 return simplify_gen_binary (XOR, mode, op0, op1);
3149 case TRUTH_ANDIF_EXPR:
3150 return gen_rtx_IF_THEN_ELSE (mode, op0, op1, const0_rtx);
3152 case TRUTH_ORIF_EXPR:
3153 return gen_rtx_IF_THEN_ELSE (mode, op0, const_true_rtx, op1);
3155 case TRUTH_NOT_EXPR:
3156 return simplify_gen_relational (EQ, mode, inner_mode, op0, const0_rtx);
3158 case LT_EXPR:
3159 return simplify_gen_relational (unsignedp ? LTU : LT, mode, inner_mode,
3160 op0, op1);
3162 case LE_EXPR:
3163 return simplify_gen_relational (unsignedp ? LEU : LE, mode, inner_mode,
3164 op0, op1);
3166 case GT_EXPR:
3167 return simplify_gen_relational (unsignedp ? GTU : GT, mode, inner_mode,
3168 op0, op1);
3170 case GE_EXPR:
3171 return simplify_gen_relational (unsignedp ? GEU : GE, mode, inner_mode,
3172 op0, op1);
3174 case EQ_EXPR:
3175 return simplify_gen_relational (EQ, mode, inner_mode, op0, op1);
3177 case NE_EXPR:
3178 return simplify_gen_relational (NE, mode, inner_mode, op0, op1);
3180 case UNORDERED_EXPR:
3181 return simplify_gen_relational (UNORDERED, mode, inner_mode, op0, op1);
3183 case ORDERED_EXPR:
3184 return simplify_gen_relational (ORDERED, mode, inner_mode, op0, op1);
3186 case UNLT_EXPR:
3187 return simplify_gen_relational (UNLT, mode, inner_mode, op0, op1);
3189 case UNLE_EXPR:
3190 return simplify_gen_relational (UNLE, mode, inner_mode, op0, op1);
3192 case UNGT_EXPR:
3193 return simplify_gen_relational (UNGT, mode, inner_mode, op0, op1);
3195 case UNGE_EXPR:
3196 return simplify_gen_relational (UNGE, mode, inner_mode, op0, op1);
3198 case UNEQ_EXPR:
3199 return simplify_gen_relational (UNEQ, mode, inner_mode, op0, op1);
3201 case LTGT_EXPR:
3202 return simplify_gen_relational (LTGT, mode, inner_mode, op0, op1);
3204 case COND_EXPR:
3205 return gen_rtx_IF_THEN_ELSE (mode, op0, op1, op2);
3207 case COMPLEX_EXPR:
3208 gcc_assert (COMPLEX_MODE_P (mode));
3209 if (GET_MODE (op0) == VOIDmode)
3210 op0 = gen_rtx_CONST (GET_MODE_INNER (mode), op0);
3211 if (GET_MODE (op1) == VOIDmode)
3212 op1 = gen_rtx_CONST (GET_MODE_INNER (mode), op1);
3213 return gen_rtx_CONCAT (mode, op0, op1);
3215 case CONJ_EXPR:
3216 if (GET_CODE (op0) == CONCAT)
3217 return gen_rtx_CONCAT (mode, XEXP (op0, 0),
3218 simplify_gen_unary (NEG, GET_MODE_INNER (mode),
3219 XEXP (op0, 1),
3220 GET_MODE_INNER (mode)));
3221 else
3223 enum machine_mode imode = GET_MODE_INNER (mode);
3224 rtx re, im;
3226 if (MEM_P (op0))
3228 re = adjust_address_nv (op0, imode, 0);
3229 im = adjust_address_nv (op0, imode, GET_MODE_SIZE (imode));
3231 else
3233 enum machine_mode ifmode = int_mode_for_mode (mode);
3234 enum machine_mode ihmode = int_mode_for_mode (imode);
3235 rtx halfsize;
3236 if (ifmode == BLKmode || ihmode == BLKmode)
3237 return NULL;
3238 halfsize = GEN_INT (GET_MODE_BITSIZE (ihmode));
3239 re = op0;
3240 if (mode != ifmode)
3241 re = gen_rtx_SUBREG (ifmode, re, 0);
3242 re = gen_rtx_ZERO_EXTRACT (ihmode, re, halfsize, const0_rtx);
3243 if (imode != ihmode)
3244 re = gen_rtx_SUBREG (imode, re, 0);
3245 im = copy_rtx (op0);
3246 if (mode != ifmode)
3247 im = gen_rtx_SUBREG (ifmode, im, 0);
3248 im = gen_rtx_ZERO_EXTRACT (ihmode, im, halfsize, halfsize);
3249 if (imode != ihmode)
3250 im = gen_rtx_SUBREG (imode, im, 0);
3252 im = gen_rtx_NEG (imode, im);
3253 return gen_rtx_CONCAT (mode, re, im);
3256 case ADDR_EXPR:
3257 op0 = expand_debug_expr (TREE_OPERAND (exp, 0));
3258 if (!op0 || !MEM_P (op0))
3260 if ((TREE_CODE (TREE_OPERAND (exp, 0)) == VAR_DECL
3261 || TREE_CODE (TREE_OPERAND (exp, 0)) == PARM_DECL
3262 || TREE_CODE (TREE_OPERAND (exp, 0)) == RESULT_DECL)
3263 && (!TREE_ADDRESSABLE (TREE_OPERAND (exp, 0))
3264 || target_for_debug_bind (TREE_OPERAND (exp, 0))))
3265 return gen_rtx_DEBUG_IMPLICIT_PTR (mode, TREE_OPERAND (exp, 0));
3267 if (handled_component_p (TREE_OPERAND (exp, 0)))
3269 HOST_WIDE_INT bitoffset, bitsize, maxsize;
3270 tree decl
3271 = get_ref_base_and_extent (TREE_OPERAND (exp, 0),
3272 &bitoffset, &bitsize, &maxsize);
3273 if ((TREE_CODE (decl) == VAR_DECL
3274 || TREE_CODE (decl) == PARM_DECL
3275 || TREE_CODE (decl) == RESULT_DECL)
3276 && (!TREE_ADDRESSABLE (decl)
3277 || target_for_debug_bind (decl))
3278 && (bitoffset % BITS_PER_UNIT) == 0
3279 && bitsize > 0
3280 && bitsize == maxsize)
3282 rtx base = gen_rtx_DEBUG_IMPLICIT_PTR (mode, decl);
3283 return plus_constant (mode, base, bitoffset / BITS_PER_UNIT);
3287 return NULL;
3290 as = TYPE_ADDR_SPACE (TREE_TYPE (exp));
3291 op0 = convert_debug_memory_address (mode, XEXP (op0, 0), as);
3293 return op0;
3295 case VECTOR_CST:
3297 unsigned i;
3299 op0 = gen_rtx_CONCATN
3300 (mode, rtvec_alloc (TYPE_VECTOR_SUBPARTS (TREE_TYPE (exp))));
3302 for (i = 0; i < VECTOR_CST_NELTS (exp); ++i)
3304 op1 = expand_debug_expr (VECTOR_CST_ELT (exp, i));
3305 if (!op1)
3306 return NULL;
3307 XVECEXP (op0, 0, i) = op1;
3310 return op0;
3313 case CONSTRUCTOR:
3314 if (TREE_CLOBBER_P (exp))
3315 return NULL;
3316 else if (TREE_CODE (TREE_TYPE (exp)) == VECTOR_TYPE)
3318 unsigned i;
3319 tree val;
3321 op0 = gen_rtx_CONCATN
3322 (mode, rtvec_alloc (TYPE_VECTOR_SUBPARTS (TREE_TYPE (exp))));
3324 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), i, val)
3326 op1 = expand_debug_expr (val);
3327 if (!op1)
3328 return NULL;
3329 XVECEXP (op0, 0, i) = op1;
3332 if (i < TYPE_VECTOR_SUBPARTS (TREE_TYPE (exp)))
3334 op1 = expand_debug_expr
3335 (build_zero_cst (TREE_TYPE (TREE_TYPE (exp))));
3337 if (!op1)
3338 return NULL;
3340 for (; i < TYPE_VECTOR_SUBPARTS (TREE_TYPE (exp)); i++)
3341 XVECEXP (op0, 0, i) = op1;
3344 return op0;
3346 else
3347 goto flag_unsupported;
3349 case CALL_EXPR:
3350 /* ??? Maybe handle some builtins? */
3351 return NULL;
3353 case SSA_NAME:
3355 gimple g = get_gimple_for_ssa_name (exp);
3356 if (g)
3358 op0 = expand_debug_expr (gimple_assign_rhs_to_tree (g));
3359 if (!op0)
3360 return NULL;
3362 else
3364 int part = var_to_partition (SA.map, exp);
3366 if (part == NO_PARTITION)
3368 /* If this is a reference to an incoming value of parameter
3369 that is never used in the code or where the incoming
3370 value is never used in the code, use PARM_DECL's
3371 DECL_RTL if set. */
3372 if (SSA_NAME_IS_DEFAULT_DEF (exp)
3373 && TREE_CODE (SSA_NAME_VAR (exp)) == PARM_DECL)
3375 op0 = expand_debug_parm_decl (SSA_NAME_VAR (exp));
3376 if (op0)
3377 goto adjust_mode;
3378 op0 = expand_debug_expr (SSA_NAME_VAR (exp));
3379 if (op0)
3380 goto adjust_mode;
3382 return NULL;
3385 gcc_assert (part >= 0 && (unsigned)part < SA.map->num_partitions);
3387 op0 = copy_rtx (SA.partition_to_pseudo[part]);
3389 goto adjust_mode;
3392 case ERROR_MARK:
3393 return NULL;
3395 /* Vector stuff. For most of the codes we don't have rtl codes. */
3396 case REALIGN_LOAD_EXPR:
3397 case REDUC_MAX_EXPR:
3398 case REDUC_MIN_EXPR:
3399 case REDUC_PLUS_EXPR:
3400 case VEC_COND_EXPR:
3401 case VEC_LSHIFT_EXPR:
3402 case VEC_PACK_FIX_TRUNC_EXPR:
3403 case VEC_PACK_SAT_EXPR:
3404 case VEC_PACK_TRUNC_EXPR:
3405 case VEC_RSHIFT_EXPR:
3406 case VEC_UNPACK_FLOAT_HI_EXPR:
3407 case VEC_UNPACK_FLOAT_LO_EXPR:
3408 case VEC_UNPACK_HI_EXPR:
3409 case VEC_UNPACK_LO_EXPR:
3410 case VEC_WIDEN_MULT_HI_EXPR:
3411 case VEC_WIDEN_MULT_LO_EXPR:
3412 case VEC_WIDEN_MULT_EVEN_EXPR:
3413 case VEC_WIDEN_MULT_ODD_EXPR:
3414 case VEC_WIDEN_LSHIFT_HI_EXPR:
3415 case VEC_WIDEN_LSHIFT_LO_EXPR:
3416 case VEC_PERM_EXPR:
3417 return NULL;
3419 /* Misc codes. */
3420 case ADDR_SPACE_CONVERT_EXPR:
3421 case FIXED_CONVERT_EXPR:
3422 case OBJ_TYPE_REF:
3423 case WITH_SIZE_EXPR:
3424 return NULL;
3426 case DOT_PROD_EXPR:
3427 if (SCALAR_INT_MODE_P (GET_MODE (op0))
3428 && SCALAR_INT_MODE_P (mode))
3431 = simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
3432 0)))
3433 ? ZERO_EXTEND : SIGN_EXTEND, mode, op0,
3434 inner_mode);
3436 = simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
3437 1)))
3438 ? ZERO_EXTEND : SIGN_EXTEND, mode, op1,
3439 inner_mode);
3440 op0 = simplify_gen_binary (MULT, mode, op0, op1);
3441 return simplify_gen_binary (PLUS, mode, op0, op2);
3443 return NULL;
3445 case WIDEN_MULT_EXPR:
3446 case WIDEN_MULT_PLUS_EXPR:
3447 case WIDEN_MULT_MINUS_EXPR:
3448 if (SCALAR_INT_MODE_P (GET_MODE (op0))
3449 && SCALAR_INT_MODE_P (mode))
3451 inner_mode = GET_MODE (op0);
3452 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))))
3453 op0 = simplify_gen_unary (ZERO_EXTEND, mode, op0, inner_mode);
3454 else
3455 op0 = simplify_gen_unary (SIGN_EXTEND, mode, op0, inner_mode);
3456 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 1))))
3457 op1 = simplify_gen_unary (ZERO_EXTEND, mode, op1, inner_mode);
3458 else
3459 op1 = simplify_gen_unary (SIGN_EXTEND, mode, op1, inner_mode);
3460 op0 = simplify_gen_binary (MULT, mode, op0, op1);
3461 if (TREE_CODE (exp) == WIDEN_MULT_EXPR)
3462 return op0;
3463 else if (TREE_CODE (exp) == WIDEN_MULT_PLUS_EXPR)
3464 return simplify_gen_binary (PLUS, mode, op0, op2);
3465 else
3466 return simplify_gen_binary (MINUS, mode, op2, op0);
3468 return NULL;
3470 case MULT_HIGHPART_EXPR:
3471 /* ??? Similar to the above. */
3472 return NULL;
3474 case WIDEN_SUM_EXPR:
3475 case WIDEN_LSHIFT_EXPR:
3476 if (SCALAR_INT_MODE_P (GET_MODE (op0))
3477 && SCALAR_INT_MODE_P (mode))
3480 = simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
3481 0)))
3482 ? ZERO_EXTEND : SIGN_EXTEND, mode, op0,
3483 inner_mode);
3484 return simplify_gen_binary (TREE_CODE (exp) == WIDEN_LSHIFT_EXPR
3485 ? ASHIFT : PLUS, mode, op0, op1);
3487 return NULL;
3489 case FMA_EXPR:
3490 return simplify_gen_ternary (FMA, mode, inner_mode, op0, op1, op2);
3492 default:
3493 flag_unsupported:
3494 #ifdef ENABLE_CHECKING
3495 debug_tree (exp);
3496 gcc_unreachable ();
3497 #else
3498 return NULL;
3499 #endif
3503 /* Return an RTX equivalent to the source bind value of the tree expression
3504 EXP. */
3506 static rtx
3507 expand_debug_source_expr (tree exp)
3509 rtx op0 = NULL_RTX;
3510 enum machine_mode mode = VOIDmode, inner_mode;
3512 switch (TREE_CODE (exp))
3514 case PARM_DECL:
3516 mode = DECL_MODE (exp);
3517 op0 = expand_debug_parm_decl (exp);
3518 if (op0)
3519 break;
3520 /* See if this isn't an argument that has been completely
3521 optimized out. */
3522 if (!DECL_RTL_SET_P (exp)
3523 && !DECL_INCOMING_RTL (exp)
3524 && DECL_ABSTRACT_ORIGIN (current_function_decl))
3526 tree aexp = DECL_ORIGIN (exp);
3527 if (DECL_CONTEXT (aexp)
3528 == DECL_ABSTRACT_ORIGIN (current_function_decl))
3530 VEC(tree, gc) **debug_args;
3531 unsigned int ix;
3532 tree ddecl;
3533 debug_args = decl_debug_args_lookup (current_function_decl);
3534 if (debug_args != NULL)
3536 for (ix = 0; VEC_iterate (tree, *debug_args, ix, ddecl);
3537 ix += 2)
3538 if (ddecl == aexp)
3539 return gen_rtx_DEBUG_PARAMETER_REF (mode, aexp);
3543 break;
3545 default:
3546 break;
3549 if (op0 == NULL_RTX)
3550 return NULL_RTX;
3552 inner_mode = GET_MODE (op0);
3553 if (mode == inner_mode)
3554 return op0;
3556 if (FLOAT_MODE_P (mode) && FLOAT_MODE_P (inner_mode))
3558 if (GET_MODE_BITSIZE (mode) == GET_MODE_BITSIZE (inner_mode))
3559 op0 = simplify_gen_subreg (mode, op0, inner_mode, 0);
3560 else if (GET_MODE_BITSIZE (mode) < GET_MODE_BITSIZE (inner_mode))
3561 op0 = simplify_gen_unary (FLOAT_TRUNCATE, mode, op0, inner_mode);
3562 else
3563 op0 = simplify_gen_unary (FLOAT_EXTEND, mode, op0, inner_mode);
3565 else if (FLOAT_MODE_P (mode))
3566 gcc_unreachable ();
3567 else if (FLOAT_MODE_P (inner_mode))
3569 if (TYPE_UNSIGNED (TREE_TYPE (exp)))
3570 op0 = simplify_gen_unary (UNSIGNED_FIX, mode, op0, inner_mode);
3571 else
3572 op0 = simplify_gen_unary (FIX, mode, op0, inner_mode);
3574 else if (CONSTANT_P (op0)
3575 || GET_MODE_BITSIZE (mode) <= GET_MODE_BITSIZE (inner_mode))
3576 op0 = simplify_gen_subreg (mode, op0, inner_mode,
3577 subreg_lowpart_offset (mode, inner_mode));
3578 else if (TYPE_UNSIGNED (TREE_TYPE (exp)))
3579 op0 = simplify_gen_unary (ZERO_EXTEND, mode, op0, inner_mode);
3580 else
3581 op0 = simplify_gen_unary (SIGN_EXTEND, mode, op0, inner_mode);
3583 return op0;
3586 /* Expand the _LOCs in debug insns. We run this after expanding all
3587 regular insns, so that any variables referenced in the function
3588 will have their DECL_RTLs set. */
3590 static void
3591 expand_debug_locations (void)
3593 rtx insn;
3594 rtx last = get_last_insn ();
3595 int save_strict_alias = flag_strict_aliasing;
3597 /* New alias sets while setting up memory attributes cause
3598 -fcompare-debug failures, even though it doesn't bring about any
3599 codegen changes. */
3600 flag_strict_aliasing = 0;
3602 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3603 if (DEBUG_INSN_P (insn))
3605 tree value = (tree)INSN_VAR_LOCATION_LOC (insn);
3606 rtx val;
3607 enum machine_mode mode;
3609 if (value == NULL_TREE)
3610 val = NULL_RTX;
3611 else
3613 if (INSN_VAR_LOCATION_STATUS (insn)
3614 == VAR_INIT_STATUS_UNINITIALIZED)
3615 val = expand_debug_source_expr (value);
3616 else
3617 val = expand_debug_expr (value);
3618 gcc_assert (last == get_last_insn ());
3621 if (!val)
3622 val = gen_rtx_UNKNOWN_VAR_LOC ();
3623 else
3625 mode = GET_MODE (INSN_VAR_LOCATION (insn));
3627 gcc_assert (mode == GET_MODE (val)
3628 || (GET_MODE (val) == VOIDmode
3629 && (CONST_INT_P (val)
3630 || GET_CODE (val) == CONST_FIXED
3631 || CONST_DOUBLE_AS_INT_P (val)
3632 || GET_CODE (val) == LABEL_REF)));
3635 INSN_VAR_LOCATION_LOC (insn) = val;
3638 flag_strict_aliasing = save_strict_alias;
3641 /* Expand basic block BB from GIMPLE trees to RTL. */
3643 static basic_block
3644 expand_gimple_basic_block (basic_block bb)
3646 gimple_stmt_iterator gsi;
3647 gimple_seq stmts;
3648 gimple stmt = NULL;
3649 rtx note, last;
3650 edge e;
3651 edge_iterator ei;
3652 void **elt;
3654 if (dump_file)
3655 fprintf (dump_file, "\n;; Generating RTL for gimple basic block %d\n",
3656 bb->index);
3658 /* Note that since we are now transitioning from GIMPLE to RTL, we
3659 cannot use the gsi_*_bb() routines because they expect the basic
3660 block to be in GIMPLE, instead of RTL. Therefore, we need to
3661 access the BB sequence directly. */
3662 stmts = bb_seq (bb);
3663 bb->il.gimple.seq = NULL;
3664 bb->il.gimple.phi_nodes = NULL;
3665 rtl_profile_for_bb (bb);
3666 init_rtl_bb_info (bb);
3667 bb->flags |= BB_RTL;
3669 /* Remove the RETURN_EXPR if we may fall though to the exit
3670 instead. */
3671 gsi = gsi_last (stmts);
3672 if (!gsi_end_p (gsi)
3673 && gimple_code (gsi_stmt (gsi)) == GIMPLE_RETURN)
3675 gimple ret_stmt = gsi_stmt (gsi);
3677 gcc_assert (single_succ_p (bb));
3678 gcc_assert (single_succ (bb) == EXIT_BLOCK_PTR);
3680 if (bb->next_bb == EXIT_BLOCK_PTR
3681 && !gimple_return_retval (ret_stmt))
3683 gsi_remove (&gsi, false);
3684 single_succ_edge (bb)->flags |= EDGE_FALLTHRU;
3688 gsi = gsi_start (stmts);
3689 if (!gsi_end_p (gsi))
3691 stmt = gsi_stmt (gsi);
3692 if (gimple_code (stmt) != GIMPLE_LABEL)
3693 stmt = NULL;
3696 elt = pointer_map_contains (lab_rtx_for_bb, bb);
3698 if (stmt || elt)
3700 last = get_last_insn ();
3702 if (stmt)
3704 expand_gimple_stmt (stmt);
3705 gsi_next (&gsi);
3708 if (elt)
3709 emit_label ((rtx) *elt);
3711 /* Java emits line number notes in the top of labels.
3712 ??? Make this go away once line number notes are obsoleted. */
3713 BB_HEAD (bb) = NEXT_INSN (last);
3714 if (NOTE_P (BB_HEAD (bb)))
3715 BB_HEAD (bb) = NEXT_INSN (BB_HEAD (bb));
3716 note = emit_note_after (NOTE_INSN_BASIC_BLOCK, BB_HEAD (bb));
3718 maybe_dump_rtl_for_gimple_stmt (stmt, last);
3720 else
3721 note = BB_HEAD (bb) = emit_note (NOTE_INSN_BASIC_BLOCK);
3723 NOTE_BASIC_BLOCK (note) = bb;
3725 for (; !gsi_end_p (gsi); gsi_next (&gsi))
3727 basic_block new_bb;
3729 stmt = gsi_stmt (gsi);
3731 /* If this statement is a non-debug one, and we generate debug
3732 insns, then this one might be the last real use of a TERed
3733 SSA_NAME, but where there are still some debug uses further
3734 down. Expanding the current SSA name in such further debug
3735 uses by their RHS might lead to wrong debug info, as coalescing
3736 might make the operands of such RHS be placed into the same
3737 pseudo as something else. Like so:
3738 a_1 = a_0 + 1; // Assume a_1 is TERed and a_0 is dead
3739 use(a_1);
3740 a_2 = ...
3741 #DEBUG ... => a_1
3742 As a_0 and a_2 don't overlap in lifetime, assume they are coalesced.
3743 If we now would expand a_1 by it's RHS (a_0 + 1) in the debug use,
3744 the write to a_2 would actually have clobbered the place which
3745 formerly held a_0.
3747 So, instead of that, we recognize the situation, and generate
3748 debug temporaries at the last real use of TERed SSA names:
3749 a_1 = a_0 + 1;
3750 #DEBUG #D1 => a_1
3751 use(a_1);
3752 a_2 = ...
3753 #DEBUG ... => #D1
3755 if (MAY_HAVE_DEBUG_INSNS
3756 && SA.values
3757 && !is_gimple_debug (stmt))
3759 ssa_op_iter iter;
3760 tree op;
3761 gimple def;
3763 location_t sloc = curr_insn_location ();
3765 /* Look for SSA names that have their last use here (TERed
3766 names always have only one real use). */
3767 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
3768 if ((def = get_gimple_for_ssa_name (op)))
3770 imm_use_iterator imm_iter;
3771 use_operand_p use_p;
3772 bool have_debug_uses = false;
3774 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, op)
3776 if (gimple_debug_bind_p (USE_STMT (use_p)))
3778 have_debug_uses = true;
3779 break;
3783 if (have_debug_uses)
3785 /* OP is a TERed SSA name, with DEF it's defining
3786 statement, and where OP is used in further debug
3787 instructions. Generate a debug temporary, and
3788 replace all uses of OP in debug insns with that
3789 temporary. */
3790 gimple debugstmt;
3791 tree value = gimple_assign_rhs_to_tree (def);
3792 tree vexpr = make_node (DEBUG_EXPR_DECL);
3793 rtx val;
3794 enum machine_mode mode;
3796 set_curr_insn_location (gimple_location (def));
3798 DECL_ARTIFICIAL (vexpr) = 1;
3799 TREE_TYPE (vexpr) = TREE_TYPE (value);
3800 if (DECL_P (value))
3801 mode = DECL_MODE (value);
3802 else
3803 mode = TYPE_MODE (TREE_TYPE (value));
3804 DECL_MODE (vexpr) = mode;
3806 val = gen_rtx_VAR_LOCATION
3807 (mode, vexpr, (rtx)value, VAR_INIT_STATUS_INITIALIZED);
3809 emit_debug_insn (val);
3811 FOR_EACH_IMM_USE_STMT (debugstmt, imm_iter, op)
3813 if (!gimple_debug_bind_p (debugstmt))
3814 continue;
3816 FOR_EACH_IMM_USE_ON_STMT (use_p, imm_iter)
3817 SET_USE (use_p, vexpr);
3819 update_stmt (debugstmt);
3823 set_curr_insn_location (sloc);
3826 currently_expanding_gimple_stmt = stmt;
3828 /* Expand this statement, then evaluate the resulting RTL and
3829 fixup the CFG accordingly. */
3830 if (gimple_code (stmt) == GIMPLE_COND)
3832 new_bb = expand_gimple_cond (bb, stmt);
3833 if (new_bb)
3834 return new_bb;
3836 else if (gimple_debug_bind_p (stmt))
3838 location_t sloc = curr_insn_location ();
3839 gimple_stmt_iterator nsi = gsi;
3841 for (;;)
3843 tree var = gimple_debug_bind_get_var (stmt);
3844 tree value;
3845 rtx val;
3846 enum machine_mode mode;
3848 if (TREE_CODE (var) != DEBUG_EXPR_DECL
3849 && TREE_CODE (var) != LABEL_DECL
3850 && !target_for_debug_bind (var))
3851 goto delink_debug_stmt;
3853 if (gimple_debug_bind_has_value_p (stmt))
3854 value = gimple_debug_bind_get_value (stmt);
3855 else
3856 value = NULL_TREE;
3858 last = get_last_insn ();
3860 set_curr_insn_location (gimple_location (stmt));
3862 if (DECL_P (var))
3863 mode = DECL_MODE (var);
3864 else
3865 mode = TYPE_MODE (TREE_TYPE (var));
3867 val = gen_rtx_VAR_LOCATION
3868 (mode, var, (rtx)value, VAR_INIT_STATUS_INITIALIZED);
3870 emit_debug_insn (val);
3872 if (dump_file && (dump_flags & TDF_DETAILS))
3874 /* We can't dump the insn with a TREE where an RTX
3875 is expected. */
3876 PAT_VAR_LOCATION_LOC (val) = const0_rtx;
3877 maybe_dump_rtl_for_gimple_stmt (stmt, last);
3878 PAT_VAR_LOCATION_LOC (val) = (rtx)value;
3881 delink_debug_stmt:
3882 /* In order not to generate too many debug temporaries,
3883 we delink all uses of debug statements we already expanded.
3884 Therefore debug statements between definition and real
3885 use of TERed SSA names will continue to use the SSA name,
3886 and not be replaced with debug temps. */
3887 delink_stmt_imm_use (stmt);
3889 gsi = nsi;
3890 gsi_next (&nsi);
3891 if (gsi_end_p (nsi))
3892 break;
3893 stmt = gsi_stmt (nsi);
3894 if (!gimple_debug_bind_p (stmt))
3895 break;
3898 set_curr_insn_location (sloc);
3900 else if (gimple_debug_source_bind_p (stmt))
3902 location_t sloc = curr_insn_location ();
3903 tree var = gimple_debug_source_bind_get_var (stmt);
3904 tree value = gimple_debug_source_bind_get_value (stmt);
3905 rtx val;
3906 enum machine_mode mode;
3908 last = get_last_insn ();
3910 set_curr_insn_location (gimple_location (stmt));
3912 mode = DECL_MODE (var);
3914 val = gen_rtx_VAR_LOCATION (mode, var, (rtx)value,
3915 VAR_INIT_STATUS_UNINITIALIZED);
3917 emit_debug_insn (val);
3919 if (dump_file && (dump_flags & TDF_DETAILS))
3921 /* We can't dump the insn with a TREE where an RTX
3922 is expected. */
3923 PAT_VAR_LOCATION_LOC (val) = const0_rtx;
3924 maybe_dump_rtl_for_gimple_stmt (stmt, last);
3925 PAT_VAR_LOCATION_LOC (val) = (rtx)value;
3928 set_curr_insn_location (sloc);
3930 else
3932 if (is_gimple_call (stmt) && gimple_call_tail_p (stmt))
3934 bool can_fallthru;
3935 new_bb = expand_gimple_tailcall (bb, stmt, &can_fallthru);
3936 if (new_bb)
3938 if (can_fallthru)
3939 bb = new_bb;
3940 else
3941 return new_bb;
3944 else
3946 def_operand_p def_p;
3947 def_p = SINGLE_SSA_DEF_OPERAND (stmt, SSA_OP_DEF);
3949 if (def_p != NULL)
3951 /* Ignore this stmt if it is in the list of
3952 replaceable expressions. */
3953 if (SA.values
3954 && bitmap_bit_p (SA.values,
3955 SSA_NAME_VERSION (DEF_FROM_PTR (def_p))))
3956 continue;
3958 last = expand_gimple_stmt (stmt);
3959 maybe_dump_rtl_for_gimple_stmt (stmt, last);
3964 currently_expanding_gimple_stmt = NULL;
3966 /* Expand implicit goto and convert goto_locus. */
3967 FOR_EACH_EDGE (e, ei, bb->succs)
3969 if (e->goto_locus != UNKNOWN_LOCATION)
3970 set_curr_insn_location (e->goto_locus);
3971 if ((e->flags & EDGE_FALLTHRU) && e->dest != bb->next_bb)
3973 emit_jump (label_rtx_for_bb (e->dest));
3974 e->flags &= ~EDGE_FALLTHRU;
3978 /* Expanded RTL can create a jump in the last instruction of block.
3979 This later might be assumed to be a jump to successor and break edge insertion.
3980 We need to insert dummy move to prevent this. PR41440. */
3981 if (single_succ_p (bb)
3982 && (single_succ_edge (bb)->flags & EDGE_FALLTHRU)
3983 && (last = get_last_insn ())
3984 && JUMP_P (last))
3986 rtx dummy = gen_reg_rtx (SImode);
3987 emit_insn_after_noloc (gen_move_insn (dummy, dummy), last, NULL);
3990 do_pending_stack_adjust ();
3992 /* Find the block tail. The last insn in the block is the insn
3993 before a barrier and/or table jump insn. */
3994 last = get_last_insn ();
3995 if (BARRIER_P (last))
3996 last = PREV_INSN (last);
3997 if (JUMP_TABLE_DATA_P (last))
3998 last = PREV_INSN (PREV_INSN (last));
3999 BB_END (bb) = last;
4001 update_bb_for_insn (bb);
4003 return bb;
4007 /* Create a basic block for initialization code. */
4009 static basic_block
4010 construct_init_block (void)
4012 basic_block init_block, first_block;
4013 edge e = NULL;
4014 int flags;
4016 /* Multiple entry points not supported yet. */
4017 gcc_assert (EDGE_COUNT (ENTRY_BLOCK_PTR->succs) == 1);
4018 init_rtl_bb_info (ENTRY_BLOCK_PTR);
4019 init_rtl_bb_info (EXIT_BLOCK_PTR);
4020 ENTRY_BLOCK_PTR->flags |= BB_RTL;
4021 EXIT_BLOCK_PTR->flags |= BB_RTL;
4023 e = EDGE_SUCC (ENTRY_BLOCK_PTR, 0);
4025 /* When entry edge points to first basic block, we don't need jump,
4026 otherwise we have to jump into proper target. */
4027 if (e && e->dest != ENTRY_BLOCK_PTR->next_bb)
4029 tree label = gimple_block_label (e->dest);
4031 emit_jump (label_rtx (label));
4032 flags = 0;
4034 else
4035 flags = EDGE_FALLTHRU;
4037 init_block = create_basic_block (NEXT_INSN (get_insns ()),
4038 get_last_insn (),
4039 ENTRY_BLOCK_PTR);
4040 init_block->frequency = ENTRY_BLOCK_PTR->frequency;
4041 init_block->count = ENTRY_BLOCK_PTR->count;
4042 if (current_loops && ENTRY_BLOCK_PTR->loop_father)
4043 add_bb_to_loop (init_block, ENTRY_BLOCK_PTR->loop_father);
4044 if (e)
4046 first_block = e->dest;
4047 redirect_edge_succ (e, init_block);
4048 e = make_edge (init_block, first_block, flags);
4050 else
4051 e = make_edge (init_block, EXIT_BLOCK_PTR, EDGE_FALLTHRU);
4052 e->probability = REG_BR_PROB_BASE;
4053 e->count = ENTRY_BLOCK_PTR->count;
4055 update_bb_for_insn (init_block);
4056 return init_block;
4059 /* For each lexical block, set BLOCK_NUMBER to the depth at which it is
4060 found in the block tree. */
4062 static void
4063 set_block_levels (tree block, int level)
4065 while (block)
4067 BLOCK_NUMBER (block) = level;
4068 set_block_levels (BLOCK_SUBBLOCKS (block), level + 1);
4069 block = BLOCK_CHAIN (block);
4073 /* Create a block containing landing pads and similar stuff. */
4075 static void
4076 construct_exit_block (void)
4078 rtx head = get_last_insn ();
4079 rtx end;
4080 basic_block exit_block;
4081 edge e, e2;
4082 unsigned ix;
4083 edge_iterator ei;
4084 rtx orig_end = BB_END (EXIT_BLOCK_PTR->prev_bb);
4086 rtl_profile_for_bb (EXIT_BLOCK_PTR);
4088 /* Make sure the locus is set to the end of the function, so that
4089 epilogue line numbers and warnings are set properly. */
4090 if (LOCATION_LOCUS (cfun->function_end_locus) != UNKNOWN_LOCATION)
4091 input_location = cfun->function_end_locus;
4093 /* Generate rtl for function exit. */
4094 expand_function_end ();
4096 end = get_last_insn ();
4097 if (head == end)
4098 return;
4099 /* While emitting the function end we could move end of the last basic block.
4101 BB_END (EXIT_BLOCK_PTR->prev_bb) = orig_end;
4102 while (NEXT_INSN (head) && NOTE_P (NEXT_INSN (head)))
4103 head = NEXT_INSN (head);
4104 exit_block = create_basic_block (NEXT_INSN (head), end,
4105 EXIT_BLOCK_PTR->prev_bb);
4106 exit_block->frequency = EXIT_BLOCK_PTR->frequency;
4107 exit_block->count = EXIT_BLOCK_PTR->count;
4108 if (current_loops && EXIT_BLOCK_PTR->loop_father)
4109 add_bb_to_loop (exit_block, EXIT_BLOCK_PTR->loop_father);
4111 ix = 0;
4112 while (ix < EDGE_COUNT (EXIT_BLOCK_PTR->preds))
4114 e = EDGE_PRED (EXIT_BLOCK_PTR, ix);
4115 if (!(e->flags & EDGE_ABNORMAL))
4116 redirect_edge_succ (e, exit_block);
4117 else
4118 ix++;
4121 e = make_edge (exit_block, EXIT_BLOCK_PTR, EDGE_FALLTHRU);
4122 e->probability = REG_BR_PROB_BASE;
4123 e->count = EXIT_BLOCK_PTR->count;
4124 FOR_EACH_EDGE (e2, ei, EXIT_BLOCK_PTR->preds)
4125 if (e2 != e)
4127 e->count -= e2->count;
4128 exit_block->count -= e2->count;
4129 exit_block->frequency -= EDGE_FREQUENCY (e2);
4131 if (e->count < 0)
4132 e->count = 0;
4133 if (exit_block->count < 0)
4134 exit_block->count = 0;
4135 if (exit_block->frequency < 0)
4136 exit_block->frequency = 0;
4137 update_bb_for_insn (exit_block);
4140 /* Helper function for discover_nonconstant_array_refs.
4141 Look for ARRAY_REF nodes with non-constant indexes and mark them
4142 addressable. */
4144 static tree
4145 discover_nonconstant_array_refs_r (tree * tp, int *walk_subtrees,
4146 void *data ATTRIBUTE_UNUSED)
4148 tree t = *tp;
4150 if (IS_TYPE_OR_DECL_P (t))
4151 *walk_subtrees = 0;
4152 else if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
4154 while (((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
4155 && is_gimple_min_invariant (TREE_OPERAND (t, 1))
4156 && (!TREE_OPERAND (t, 2)
4157 || is_gimple_min_invariant (TREE_OPERAND (t, 2))))
4158 || (TREE_CODE (t) == COMPONENT_REF
4159 && (!TREE_OPERAND (t,2)
4160 || is_gimple_min_invariant (TREE_OPERAND (t, 2))))
4161 || TREE_CODE (t) == BIT_FIELD_REF
4162 || TREE_CODE (t) == REALPART_EXPR
4163 || TREE_CODE (t) == IMAGPART_EXPR
4164 || TREE_CODE (t) == VIEW_CONVERT_EXPR
4165 || CONVERT_EXPR_P (t))
4166 t = TREE_OPERAND (t, 0);
4168 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
4170 t = get_base_address (t);
4171 if (t && DECL_P (t)
4172 && DECL_MODE (t) != BLKmode)
4173 TREE_ADDRESSABLE (t) = 1;
4176 *walk_subtrees = 0;
4179 return NULL_TREE;
4182 /* RTL expansion is not able to compile array references with variable
4183 offsets for arrays stored in single register. Discover such
4184 expressions and mark variables as addressable to avoid this
4185 scenario. */
4187 static void
4188 discover_nonconstant_array_refs (void)
4190 basic_block bb;
4191 gimple_stmt_iterator gsi;
4193 FOR_EACH_BB (bb)
4194 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4196 gimple stmt = gsi_stmt (gsi);
4197 if (!is_gimple_debug (stmt))
4198 walk_gimple_op (stmt, discover_nonconstant_array_refs_r, NULL);
4202 /* This function sets crtl->args.internal_arg_pointer to a virtual
4203 register if DRAP is needed. Local register allocator will replace
4204 virtual_incoming_args_rtx with the virtual register. */
4206 static void
4207 expand_stack_alignment (void)
4209 rtx drap_rtx;
4210 unsigned int preferred_stack_boundary;
4212 if (! SUPPORTS_STACK_ALIGNMENT)
4213 return;
4215 if (cfun->calls_alloca
4216 || cfun->has_nonlocal_label
4217 || crtl->has_nonlocal_goto)
4218 crtl->need_drap = true;
4220 /* Call update_stack_boundary here again to update incoming stack
4221 boundary. It may set incoming stack alignment to a different
4222 value after RTL expansion. TARGET_FUNCTION_OK_FOR_SIBCALL may
4223 use the minimum incoming stack alignment to check if it is OK
4224 to perform sibcall optimization since sibcall optimization will
4225 only align the outgoing stack to incoming stack boundary. */
4226 if (targetm.calls.update_stack_boundary)
4227 targetm.calls.update_stack_boundary ();
4229 /* The incoming stack frame has to be aligned at least at
4230 parm_stack_boundary. */
4231 gcc_assert (crtl->parm_stack_boundary <= INCOMING_STACK_BOUNDARY);
4233 /* Update crtl->stack_alignment_estimated and use it later to align
4234 stack. We check PREFERRED_STACK_BOUNDARY if there may be non-call
4235 exceptions since callgraph doesn't collect incoming stack alignment
4236 in this case. */
4237 if (cfun->can_throw_non_call_exceptions
4238 && PREFERRED_STACK_BOUNDARY > crtl->preferred_stack_boundary)
4239 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
4240 else
4241 preferred_stack_boundary = crtl->preferred_stack_boundary;
4242 if (preferred_stack_boundary > crtl->stack_alignment_estimated)
4243 crtl->stack_alignment_estimated = preferred_stack_boundary;
4244 if (preferred_stack_boundary > crtl->stack_alignment_needed)
4245 crtl->stack_alignment_needed = preferred_stack_boundary;
4247 gcc_assert (crtl->stack_alignment_needed
4248 <= crtl->stack_alignment_estimated);
4250 crtl->stack_realign_needed
4251 = INCOMING_STACK_BOUNDARY < crtl->stack_alignment_estimated;
4252 crtl->stack_realign_tried = crtl->stack_realign_needed;
4254 crtl->stack_realign_processed = true;
4256 /* Target has to redefine TARGET_GET_DRAP_RTX to support stack
4257 alignment. */
4258 gcc_assert (targetm.calls.get_drap_rtx != NULL);
4259 drap_rtx = targetm.calls.get_drap_rtx ();
4261 /* stack_realign_drap and drap_rtx must match. */
4262 gcc_assert ((stack_realign_drap != 0) == (drap_rtx != NULL));
4264 /* Do nothing if NULL is returned, which means DRAP is not needed. */
4265 if (NULL != drap_rtx)
4267 crtl->args.internal_arg_pointer = drap_rtx;
4269 /* Call fixup_tail_calls to clean up REG_EQUIV note if DRAP is
4270 needed. */
4271 fixup_tail_calls ();
4275 /* Translate the intermediate representation contained in the CFG
4276 from GIMPLE trees to RTL.
4278 We do conversion per basic block and preserve/update the tree CFG.
4279 This implies we have to do some magic as the CFG can simultaneously
4280 consist of basic blocks containing RTL and GIMPLE trees. This can
4281 confuse the CFG hooks, so be careful to not manipulate CFG during
4282 the expansion. */
4284 static unsigned int
4285 gimple_expand_cfg (void)
4287 basic_block bb, init_block;
4288 sbitmap blocks;
4289 edge_iterator ei;
4290 edge e;
4291 rtx var_seq;
4292 unsigned i;
4294 timevar_push (TV_OUT_OF_SSA);
4295 rewrite_out_of_ssa (&SA);
4296 timevar_pop (TV_OUT_OF_SSA);
4297 SA.partition_to_pseudo = XCNEWVEC (rtx, SA.map->num_partitions);
4299 /* Make sure all values used by the optimization passes have sane
4300 defaults. */
4301 reg_renumber = 0;
4303 /* Some backends want to know that we are expanding to RTL. */
4304 currently_expanding_to_rtl = 1;
4305 /* Dominators are not kept up-to-date as we may create new basic-blocks. */
4306 free_dominance_info (CDI_DOMINATORS);
4308 rtl_profile_for_bb (ENTRY_BLOCK_PTR);
4310 insn_locations_init ();
4311 if (!DECL_IS_BUILTIN (current_function_decl))
4313 /* Eventually, all FEs should explicitly set function_start_locus. */
4314 if (LOCATION_LOCUS (cfun->function_start_locus) == UNKNOWN_LOCATION)
4315 set_curr_insn_location
4316 (DECL_SOURCE_LOCATION (current_function_decl));
4317 else
4318 set_curr_insn_location (cfun->function_start_locus);
4320 else
4321 set_curr_insn_location (UNKNOWN_LOCATION);
4322 prologue_location = curr_insn_location ();
4324 #ifdef INSN_SCHEDULING
4325 init_sched_attrs ();
4326 #endif
4328 /* Make sure first insn is a note even if we don't want linenums.
4329 This makes sure the first insn will never be deleted.
4330 Also, final expects a note to appear there. */
4331 emit_note (NOTE_INSN_DELETED);
4333 /* Mark arrays indexed with non-constant indices with TREE_ADDRESSABLE. */
4334 discover_nonconstant_array_refs ();
4336 targetm.expand_to_rtl_hook ();
4337 crtl->stack_alignment_needed = STACK_BOUNDARY;
4338 crtl->max_used_stack_slot_alignment = STACK_BOUNDARY;
4339 crtl->stack_alignment_estimated = 0;
4340 crtl->preferred_stack_boundary = STACK_BOUNDARY;
4341 cfun->cfg->max_jumptable_ents = 0;
4343 /* Resovle the function section. Some targets, like ARM EABI rely on knowledge
4344 of the function section at exapnsion time to predict distance of calls. */
4345 resolve_unique_section (current_function_decl, 0, flag_function_sections);
4347 /* Expand the variables recorded during gimple lowering. */
4348 timevar_push (TV_VAR_EXPAND);
4349 start_sequence ();
4351 expand_used_vars ();
4353 var_seq = get_insns ();
4354 end_sequence ();
4355 timevar_pop (TV_VAR_EXPAND);
4357 /* Honor stack protection warnings. */
4358 if (warn_stack_protect)
4360 if (cfun->calls_alloca)
4361 warning (OPT_Wstack_protector,
4362 "stack protector not protecting local variables: "
4363 "variable length buffer");
4364 if (has_short_buffer && !crtl->stack_protect_guard)
4365 warning (OPT_Wstack_protector,
4366 "stack protector not protecting function: "
4367 "all local arrays are less than %d bytes long",
4368 (int) PARAM_VALUE (PARAM_SSP_BUFFER_SIZE));
4371 /* Set up parameters and prepare for return, for the function. */
4372 expand_function_start (current_function_decl);
4374 /* If we emitted any instructions for setting up the variables,
4375 emit them before the FUNCTION_START note. */
4376 if (var_seq)
4378 emit_insn_before (var_seq, parm_birth_insn);
4380 /* In expand_function_end we'll insert the alloca save/restore
4381 before parm_birth_insn. We've just insertted an alloca call.
4382 Adjust the pointer to match. */
4383 parm_birth_insn = var_seq;
4386 /* Now that we also have the parameter RTXs, copy them over to our
4387 partitions. */
4388 for (i = 0; i < SA.map->num_partitions; i++)
4390 tree var = SSA_NAME_VAR (partition_to_var (SA.map, i));
4392 if (TREE_CODE (var) != VAR_DECL
4393 && !SA.partition_to_pseudo[i])
4394 SA.partition_to_pseudo[i] = DECL_RTL_IF_SET (var);
4395 gcc_assert (SA.partition_to_pseudo[i]);
4397 /* If this decl was marked as living in multiple places, reset
4398 this now to NULL. */
4399 if (DECL_RTL_IF_SET (var) == pc_rtx)
4400 SET_DECL_RTL (var, NULL);
4402 /* Some RTL parts really want to look at DECL_RTL(x) when x
4403 was a decl marked in REG_ATTR or MEM_ATTR. We could use
4404 SET_DECL_RTL here making this available, but that would mean
4405 to select one of the potentially many RTLs for one DECL. Instead
4406 of doing that we simply reset the MEM_EXPR of the RTL in question,
4407 then nobody can get at it and hence nobody can call DECL_RTL on it. */
4408 if (!DECL_RTL_SET_P (var))
4410 if (MEM_P (SA.partition_to_pseudo[i]))
4411 set_mem_expr (SA.partition_to_pseudo[i], NULL);
4415 /* If we have a class containing differently aligned pointers
4416 we need to merge those into the corresponding RTL pointer
4417 alignment. */
4418 for (i = 1; i < num_ssa_names; i++)
4420 tree name = ssa_name (i);
4421 int part;
4422 rtx r;
4424 if (!name
4425 /* We might have generated new SSA names in
4426 update_alias_info_with_stack_vars. They will have a NULL
4427 defining statements, and won't be part of the partitioning,
4428 so ignore those. */
4429 || !SSA_NAME_DEF_STMT (name))
4430 continue;
4431 part = var_to_partition (SA.map, name);
4432 if (part == NO_PARTITION)
4433 continue;
4435 /* Adjust all partition members to get the underlying decl of
4436 the representative which we might have created in expand_one_var. */
4437 if (SSA_NAME_VAR (name) == NULL_TREE)
4439 tree leader = partition_to_var (SA.map, part);
4440 gcc_assert (SSA_NAME_VAR (leader) != NULL_TREE);
4441 replace_ssa_name_symbol (name, SSA_NAME_VAR (leader));
4443 if (!POINTER_TYPE_P (TREE_TYPE (name)))
4444 continue;
4446 r = SA.partition_to_pseudo[part];
4447 if (REG_P (r))
4448 mark_reg_pointer (r, get_pointer_alignment (name));
4451 /* If this function is `main', emit a call to `__main'
4452 to run global initializers, etc. */
4453 if (DECL_NAME (current_function_decl)
4454 && MAIN_NAME_P (DECL_NAME (current_function_decl))
4455 && DECL_FILE_SCOPE_P (current_function_decl))
4456 expand_main_function ();
4458 /* Initialize the stack_protect_guard field. This must happen after the
4459 call to __main (if any) so that the external decl is initialized. */
4460 if (crtl->stack_protect_guard)
4461 stack_protect_prologue ();
4463 expand_phi_nodes (&SA);
4465 /* Register rtl specific functions for cfg. */
4466 rtl_register_cfg_hooks ();
4468 init_block = construct_init_block ();
4470 /* Clear EDGE_EXECUTABLE on the entry edge(s). It is cleaned from the
4471 remaining edges later. */
4472 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
4473 e->flags &= ~EDGE_EXECUTABLE;
4475 lab_rtx_for_bb = pointer_map_create ();
4476 FOR_BB_BETWEEN (bb, init_block->next_bb, EXIT_BLOCK_PTR, next_bb)
4477 bb = expand_gimple_basic_block (bb);
4479 if (MAY_HAVE_DEBUG_INSNS)
4480 expand_debug_locations ();
4482 /* Free stuff we no longer need after GIMPLE optimizations. */
4483 free_dominance_info (CDI_DOMINATORS);
4484 free_dominance_info (CDI_POST_DOMINATORS);
4485 delete_tree_cfg_annotations ();
4487 timevar_push (TV_OUT_OF_SSA);
4488 finish_out_of_ssa (&SA);
4489 timevar_pop (TV_OUT_OF_SSA);
4491 timevar_push (TV_POST_EXPAND);
4492 /* We are no longer in SSA form. */
4493 cfun->gimple_df->in_ssa_p = false;
4494 if (current_loops)
4495 loops_state_clear (LOOP_CLOSED_SSA);
4497 /* Expansion is used by optimization passes too, set maybe_hot_insn_p
4498 conservatively to true until they are all profile aware. */
4499 pointer_map_destroy (lab_rtx_for_bb);
4500 free_histograms ();
4502 construct_exit_block ();
4503 insn_locations_finalize ();
4505 /* Zap the tree EH table. */
4506 set_eh_throw_stmt_table (cfun, NULL);
4508 /* We need JUMP_LABEL be set in order to redirect jumps, and hence
4509 split edges which edge insertions might do. */
4510 rebuild_jump_labels (get_insns ());
4512 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, next_bb)
4514 edge e;
4515 edge_iterator ei;
4516 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
4518 if (e->insns.r)
4520 rebuild_jump_labels_chain (e->insns.r);
4521 /* Avoid putting insns before parm_birth_insn. */
4522 if (e->src == ENTRY_BLOCK_PTR
4523 && single_succ_p (ENTRY_BLOCK_PTR)
4524 && parm_birth_insn)
4526 rtx insns = e->insns.r;
4527 e->insns.r = NULL_RTX;
4528 emit_insn_after_noloc (insns, parm_birth_insn, e->dest);
4530 else
4531 commit_one_edge_insertion (e);
4533 else
4534 ei_next (&ei);
4538 /* We're done expanding trees to RTL. */
4539 currently_expanding_to_rtl = 0;
4541 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR->next_bb, EXIT_BLOCK_PTR, next_bb)
4543 edge e;
4544 edge_iterator ei;
4545 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
4547 /* Clear EDGE_EXECUTABLE. This flag is never used in the backend. */
4548 e->flags &= ~EDGE_EXECUTABLE;
4550 /* At the moment not all abnormal edges match the RTL
4551 representation. It is safe to remove them here as
4552 find_many_sub_basic_blocks will rediscover them.
4553 In the future we should get this fixed properly. */
4554 if ((e->flags & EDGE_ABNORMAL)
4555 && !(e->flags & EDGE_SIBCALL))
4556 remove_edge (e);
4557 else
4558 ei_next (&ei);
4562 blocks = sbitmap_alloc (last_basic_block);
4563 sbitmap_ones (blocks);
4564 find_many_sub_basic_blocks (blocks);
4565 sbitmap_free (blocks);
4566 purge_all_dead_edges ();
4568 expand_stack_alignment ();
4570 /* Fixup REG_EQUIV notes in the prologue if there are tailcalls in this
4571 function. */
4572 if (crtl->tail_call_emit)
4573 fixup_tail_calls ();
4575 /* After initial rtl generation, call back to finish generating
4576 exception support code. We need to do this before cleaning up
4577 the CFG as the code does not expect dead landing pads. */
4578 if (cfun->eh->region_tree != NULL)
4579 finish_eh_generation ();
4581 /* Remove unreachable blocks, otherwise we cannot compute dominators
4582 which are needed for loop state verification. As a side-effect
4583 this also compacts blocks.
4584 ??? We cannot remove trivially dead insns here as for example
4585 the DRAP reg on i?86 is not magically live at this point.
4586 gcc.c-torture/execute/ipa-sra-2.c execution, -Os -m32 fails otherwise. */
4587 cleanup_cfg (CLEANUP_NO_INSN_DEL);
4589 #ifdef ENABLE_CHECKING
4590 verify_flow_info ();
4591 #endif
4593 /* Initialize pseudos allocated for hard registers. */
4594 emit_initial_value_sets ();
4596 /* And finally unshare all RTL. */
4597 unshare_all_rtl ();
4599 /* There's no need to defer outputting this function any more; we
4600 know we want to output it. */
4601 DECL_DEFER_OUTPUT (current_function_decl) = 0;
4603 /* Now that we're done expanding trees to RTL, we shouldn't have any
4604 more CONCATs anywhere. */
4605 generating_concat_p = 0;
4607 if (dump_file)
4609 fprintf (dump_file,
4610 "\n\n;;\n;; Full RTL generated for this function:\n;;\n");
4611 /* And the pass manager will dump RTL for us. */
4614 /* If we're emitting a nested function, make sure its parent gets
4615 emitted as well. Doing otherwise confuses debug info. */
4617 tree parent;
4618 for (parent = DECL_CONTEXT (current_function_decl);
4619 parent != NULL_TREE;
4620 parent = get_containing_scope (parent))
4621 if (TREE_CODE (parent) == FUNCTION_DECL)
4622 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (parent)) = 1;
4625 /* We are now committed to emitting code for this function. Do any
4626 preparation, such as emitting abstract debug info for the inline
4627 before it gets mangled by optimization. */
4628 if (cgraph_function_possibly_inlined_p (current_function_decl))
4629 (*debug_hooks->outlining_inline_function) (current_function_decl);
4631 TREE_ASM_WRITTEN (current_function_decl) = 1;
4633 /* After expanding, the return labels are no longer needed. */
4634 return_label = NULL;
4635 naked_return_label = NULL;
4637 /* After expanding, the tm_restart map is no longer needed. */
4638 if (cfun->gimple_df->tm_restart)
4640 htab_delete (cfun->gimple_df->tm_restart);
4641 cfun->gimple_df->tm_restart = NULL;
4644 /* Tag the blocks with a depth number so that change_scope can find
4645 the common parent easily. */
4646 set_block_levels (DECL_INITIAL (cfun->decl), 0);
4647 default_rtl_profile ();
4649 timevar_pop (TV_POST_EXPAND);
4651 return 0;
4654 struct rtl_opt_pass pass_expand =
4657 RTL_PASS,
4658 "expand", /* name */
4659 NULL, /* gate */
4660 gimple_expand_cfg, /* execute */
4661 NULL, /* sub */
4662 NULL, /* next */
4663 0, /* static_pass_number */
4664 TV_EXPAND, /* tv_id */
4665 PROP_ssa | PROP_gimple_leh | PROP_cfg
4666 | PROP_gimple_lcx, /* properties_required */
4667 PROP_rtl, /* properties_provided */
4668 PROP_ssa | PROP_trees, /* properties_destroyed */
4669 TODO_verify_ssa | TODO_verify_flow
4670 | TODO_verify_stmts, /* todo_flags_start */
4671 TODO_ggc_collect /* todo_flags_finish */