2011-06-16 Tom de Vries <tom@codesourcery.com>
[official-gcc.git] / gcc / cfgexpand.c
blobefd3ed93c36bf0bfc29c7eeedf288915f5a87a75
1 /* A pass for lowering trees to RTL.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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 "timevar.h"
34 #include "tree-dump.h"
35 #include "tree-pass.h"
36 #include "except.h"
37 #include "flags.h"
38 #include "diagnostic.h"
39 #include "tree-pretty-print.h"
40 #include "gimple-pretty-print.h"
41 #include "toplev.h"
42 #include "debug.h"
43 #include "params.h"
44 #include "tree-inline.h"
45 #include "value-prof.h"
46 #include "target.h"
47 #include "ssaexpand.h"
48 #include "bitmap.h"
49 #include "sbitmap.h"
50 #include "insn-attr.h" /* For INSN_SCHEDULING. */
52 /* This variable holds information helping the rewriting of SSA trees
53 into RTL. */
54 struct ssaexpand SA;
56 /* This variable holds the currently expanded gimple statement for purposes
57 of comminucating the profile info to the builtin expanders. */
58 gimple currently_expanding_gimple_stmt;
60 /* Return an expression tree corresponding to the RHS of GIMPLE
61 statement STMT. */
63 tree
64 gimple_assign_rhs_to_tree (gimple stmt)
66 tree t;
67 enum gimple_rhs_class grhs_class;
69 grhs_class = get_gimple_rhs_class (gimple_expr_code (stmt));
71 if (grhs_class == GIMPLE_TERNARY_RHS)
72 t = build3 (gimple_assign_rhs_code (stmt),
73 TREE_TYPE (gimple_assign_lhs (stmt)),
74 gimple_assign_rhs1 (stmt),
75 gimple_assign_rhs2 (stmt),
76 gimple_assign_rhs3 (stmt));
77 else if (grhs_class == GIMPLE_BINARY_RHS)
78 t = build2 (gimple_assign_rhs_code (stmt),
79 TREE_TYPE (gimple_assign_lhs (stmt)),
80 gimple_assign_rhs1 (stmt),
81 gimple_assign_rhs2 (stmt));
82 else if (grhs_class == GIMPLE_UNARY_RHS)
83 t = build1 (gimple_assign_rhs_code (stmt),
84 TREE_TYPE (gimple_assign_lhs (stmt)),
85 gimple_assign_rhs1 (stmt));
86 else if (grhs_class == GIMPLE_SINGLE_RHS)
88 t = gimple_assign_rhs1 (stmt);
89 /* Avoid modifying this tree in place below. */
90 if ((gimple_has_location (stmt) && CAN_HAVE_LOCATION_P (t)
91 && gimple_location (stmt) != EXPR_LOCATION (t))
92 || (gimple_block (stmt)
93 && currently_expanding_to_rtl
94 && EXPR_P (t)
95 && gimple_block (stmt) != TREE_BLOCK (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));
103 if (gimple_block (stmt) && currently_expanding_to_rtl && EXPR_P (t))
104 TREE_BLOCK (t) = gimple_block (stmt);
106 return t;
110 #ifndef STACK_ALIGNMENT_NEEDED
111 #define STACK_ALIGNMENT_NEEDED 1
112 #endif
114 #define SSAVAR(x) (TREE_CODE (x) == SSA_NAME ? SSA_NAME_VAR (x) : x)
116 /* Associate declaration T with storage space X. If T is no
117 SSA name this is exactly SET_DECL_RTL, otherwise make the
118 partition of T associated with X. */
119 static inline void
120 set_rtl (tree t, rtx x)
122 if (TREE_CODE (t) == SSA_NAME)
124 SA.partition_to_pseudo[var_to_partition (SA.map, t)] = x;
125 if (x && !MEM_P (x))
126 set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (t), x);
127 /* For the benefit of debug information at -O0 (where vartracking
128 doesn't run) record the place also in the base DECL if it's
129 a normal variable (not a parameter). */
130 if (x && x != pc_rtx && TREE_CODE (SSA_NAME_VAR (t)) == VAR_DECL)
132 tree var = SSA_NAME_VAR (t);
133 /* If we don't yet have something recorded, just record it now. */
134 if (!DECL_RTL_SET_P (var))
135 SET_DECL_RTL (var, x);
136 /* If we have it set alrady to "multiple places" don't
137 change this. */
138 else if (DECL_RTL (var) == pc_rtx)
140 /* If we have something recorded and it's not the same place
141 as we want to record now, we have multiple partitions for the
142 same base variable, with different places. We can't just
143 randomly chose one, hence we have to say that we don't know.
144 This only happens with optimization, and there var-tracking
145 will figure out the right thing. */
146 else if (DECL_RTL (var) != x)
147 SET_DECL_RTL (var, pc_rtx);
150 else
151 SET_DECL_RTL (t, x);
154 /* This structure holds data relevant to one variable that will be
155 placed in a stack slot. */
156 struct stack_var
158 /* The Variable. */
159 tree decl;
161 /* Initially, the size of the variable. Later, the size of the partition,
162 if this variable becomes it's partition's representative. */
163 HOST_WIDE_INT size;
165 /* The *byte* alignment required for this variable. Or as, with the
166 size, the alignment for this partition. */
167 unsigned int alignb;
169 /* The partition representative. */
170 size_t representative;
172 /* The next stack variable in the partition, or EOC. */
173 size_t next;
175 /* The numbers of conflicting stack variables. */
176 bitmap conflicts;
179 #define EOC ((size_t)-1)
181 /* We have an array of such objects while deciding allocation. */
182 static struct stack_var *stack_vars;
183 static size_t stack_vars_alloc;
184 static size_t stack_vars_num;
186 /* An array of indices such that stack_vars[stack_vars_sorted[i]].size
187 is non-decreasing. */
188 static size_t *stack_vars_sorted;
190 /* The phase of the stack frame. This is the known misalignment of
191 virtual_stack_vars_rtx from PREFERRED_STACK_BOUNDARY. That is,
192 (frame_offset+frame_phase) % PREFERRED_STACK_BOUNDARY == 0. */
193 static int frame_phase;
195 /* Used during expand_used_vars to remember if we saw any decls for
196 which we'd like to enable stack smashing protection. */
197 static bool has_protected_decls;
199 /* Used during expand_used_vars. Remember if we say a character buffer
200 smaller than our cutoff threshold. Used for -Wstack-protector. */
201 static bool has_short_buffer;
203 /* Compute the byte alignment to use for DECL. Ignore alignment
204 we can't do with expected alignment of the stack boundary. */
206 static unsigned int
207 align_local_variable (tree decl)
209 unsigned int align = LOCAL_DECL_ALIGNMENT (decl);
210 DECL_ALIGN (decl) = align;
211 return align / BITS_PER_UNIT;
214 /* Allocate SIZE bytes at byte alignment ALIGN from the stack frame.
215 Return the frame offset. */
217 static HOST_WIDE_INT
218 alloc_stack_frame_space (HOST_WIDE_INT size, unsigned HOST_WIDE_INT align)
220 HOST_WIDE_INT offset, new_frame_offset;
222 new_frame_offset = frame_offset;
223 if (FRAME_GROWS_DOWNWARD)
225 new_frame_offset -= size + frame_phase;
226 new_frame_offset &= -align;
227 new_frame_offset += frame_phase;
228 offset = new_frame_offset;
230 else
232 new_frame_offset -= frame_phase;
233 new_frame_offset += align - 1;
234 new_frame_offset &= -align;
235 new_frame_offset += frame_phase;
236 offset = new_frame_offset;
237 new_frame_offset += size;
239 frame_offset = new_frame_offset;
241 if (frame_offset_overflow (frame_offset, cfun->decl))
242 frame_offset = offset = 0;
244 return offset;
247 /* Accumulate DECL into STACK_VARS. */
249 static void
250 add_stack_var (tree decl)
252 struct stack_var *v;
254 if (stack_vars_num >= stack_vars_alloc)
256 if (stack_vars_alloc)
257 stack_vars_alloc = stack_vars_alloc * 3 / 2;
258 else
259 stack_vars_alloc = 32;
260 stack_vars
261 = XRESIZEVEC (struct stack_var, stack_vars, stack_vars_alloc);
263 v = &stack_vars[stack_vars_num];
265 v->decl = decl;
266 v->size = tree_low_cst (DECL_SIZE_UNIT (SSAVAR (decl)), 1);
267 /* Ensure that all variables have size, so that &a != &b for any two
268 variables that are simultaneously live. */
269 if (v->size == 0)
270 v->size = 1;
271 v->alignb = align_local_variable (SSAVAR (decl));
273 /* All variables are initially in their own partition. */
274 v->representative = stack_vars_num;
275 v->next = EOC;
277 /* All variables initially conflict with no other. */
278 v->conflicts = NULL;
280 /* Ensure that this decl doesn't get put onto the list twice. */
281 set_rtl (decl, pc_rtx);
283 stack_vars_num++;
286 /* Make the decls associated with luid's X and Y conflict. */
288 static void
289 add_stack_var_conflict (size_t x, size_t y)
291 struct stack_var *a = &stack_vars[x];
292 struct stack_var *b = &stack_vars[y];
293 if (!a->conflicts)
294 a->conflicts = BITMAP_ALLOC (NULL);
295 if (!b->conflicts)
296 b->conflicts = BITMAP_ALLOC (NULL);
297 bitmap_set_bit (a->conflicts, y);
298 bitmap_set_bit (b->conflicts, x);
301 /* Check whether the decls associated with luid's X and Y conflict. */
303 static bool
304 stack_var_conflict_p (size_t x, size_t y)
306 struct stack_var *a = &stack_vars[x];
307 struct stack_var *b = &stack_vars[y];
308 if (!a->conflicts || !b->conflicts)
309 return false;
310 return bitmap_bit_p (a->conflicts, y);
313 /* Returns true if TYPE is or contains a union type. */
315 static bool
316 aggregate_contains_union_type (tree type)
318 tree field;
320 if (TREE_CODE (type) == UNION_TYPE
321 || TREE_CODE (type) == QUAL_UNION_TYPE)
322 return true;
323 if (TREE_CODE (type) == ARRAY_TYPE)
324 return aggregate_contains_union_type (TREE_TYPE (type));
325 if (TREE_CODE (type) != RECORD_TYPE)
326 return false;
328 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
329 if (TREE_CODE (field) == FIELD_DECL)
330 if (aggregate_contains_union_type (TREE_TYPE (field)))
331 return true;
333 return false;
336 /* A subroutine of expand_used_vars. If two variables X and Y have alias
337 sets that do not conflict, then do add a conflict for these variables
338 in the interference graph. We also need to make sure to add conflicts
339 for union containing structures. Else RTL alias analysis comes along
340 and due to type based aliasing rules decides that for two overlapping
341 union temporaries { short s; int i; } accesses to the same mem through
342 different types may not alias and happily reorders stores across
343 life-time boundaries of the temporaries (See PR25654).
344 We also have to mind MEM_IN_STRUCT_P and MEM_SCALAR_P. */
346 static void
347 add_alias_set_conflicts (void)
349 size_t i, j, n = stack_vars_num;
351 for (i = 0; i < n; ++i)
353 tree type_i = TREE_TYPE (stack_vars[i].decl);
354 bool aggr_i = AGGREGATE_TYPE_P (type_i);
355 bool contains_union;
357 contains_union = aggregate_contains_union_type (type_i);
358 for (j = 0; j < i; ++j)
360 tree type_j = TREE_TYPE (stack_vars[j].decl);
361 bool aggr_j = AGGREGATE_TYPE_P (type_j);
362 if (aggr_i != aggr_j
363 /* Either the objects conflict by means of type based
364 aliasing rules, or we need to add a conflict. */
365 || !objects_must_conflict_p (type_i, type_j)
366 /* In case the types do not conflict ensure that access
367 to elements will conflict. In case of unions we have
368 to be careful as type based aliasing rules may say
369 access to the same memory does not conflict. So play
370 safe and add a conflict in this case when
371 -fstrict-aliasing is used. */
372 || (contains_union && flag_strict_aliasing))
373 add_stack_var_conflict (i, j);
378 /* A subroutine of partition_stack_vars. A comparison function for qsort,
379 sorting an array of indices by the properties of the object. */
381 static int
382 stack_var_cmp (const void *a, const void *b)
384 size_t ia = *(const size_t *)a;
385 size_t ib = *(const size_t *)b;
386 unsigned int aligna = stack_vars[ia].alignb;
387 unsigned int alignb = stack_vars[ib].alignb;
388 HOST_WIDE_INT sizea = stack_vars[ia].size;
389 HOST_WIDE_INT sizeb = stack_vars[ib].size;
390 tree decla = stack_vars[ia].decl;
391 tree declb = stack_vars[ib].decl;
392 bool largea, largeb;
393 unsigned int uida, uidb;
395 /* Primary compare on "large" alignment. Large comes first. */
396 largea = (aligna * BITS_PER_UNIT > MAX_SUPPORTED_STACK_ALIGNMENT);
397 largeb = (alignb * BITS_PER_UNIT > MAX_SUPPORTED_STACK_ALIGNMENT);
398 if (largea != largeb)
399 return (int)largeb - (int)largea;
401 /* Secondary compare on size, decreasing */
402 if (sizea > sizeb)
403 return -1;
404 if (sizea < sizeb)
405 return 1;
407 /* Tertiary compare on true alignment, decreasing. */
408 if (aligna < alignb)
409 return -1;
410 if (aligna > alignb)
411 return 1;
413 /* Final compare on ID for sort stability, increasing.
414 Two SSA names are compared by their version, SSA names come before
415 non-SSA names, and two normal decls are compared by their DECL_UID. */
416 if (TREE_CODE (decla) == SSA_NAME)
418 if (TREE_CODE (declb) == SSA_NAME)
419 uida = SSA_NAME_VERSION (decla), uidb = SSA_NAME_VERSION (declb);
420 else
421 return -1;
423 else if (TREE_CODE (declb) == SSA_NAME)
424 return 1;
425 else
426 uida = DECL_UID (decla), uidb = DECL_UID (declb);
427 if (uida < uidb)
428 return 1;
429 if (uida > uidb)
430 return -1;
431 return 0;
435 /* If the points-to solution *PI points to variables that are in a partition
436 together with other variables add all partition members to the pointed-to
437 variables bitmap. */
439 static void
440 add_partitioned_vars_to_ptset (struct pt_solution *pt,
441 struct pointer_map_t *decls_to_partitions,
442 struct pointer_set_t *visited, bitmap temp)
444 bitmap_iterator bi;
445 unsigned i;
446 bitmap *part;
448 if (pt->anything
449 || pt->vars == NULL
450 /* The pointed-to vars bitmap is shared, it is enough to
451 visit it once. */
452 || pointer_set_insert(visited, pt->vars))
453 return;
455 bitmap_clear (temp);
457 /* By using a temporary bitmap to store all members of the partitions
458 we have to add we make sure to visit each of the partitions only
459 once. */
460 EXECUTE_IF_SET_IN_BITMAP (pt->vars, 0, i, bi)
461 if ((!temp
462 || !bitmap_bit_p (temp, i))
463 && (part = (bitmap *) pointer_map_contains (decls_to_partitions,
464 (void *)(size_t) i)))
465 bitmap_ior_into (temp, *part);
466 if (!bitmap_empty_p (temp))
467 bitmap_ior_into (pt->vars, temp);
470 /* Update points-to sets based on partition info, so we can use them on RTL.
471 The bitmaps representing stack partitions will be saved until expand,
472 where partitioned decls used as bases in memory expressions will be
473 rewritten. */
475 static void
476 update_alias_info_with_stack_vars (void)
478 struct pointer_map_t *decls_to_partitions = NULL;
479 size_t i, j;
480 tree var = NULL_TREE;
482 for (i = 0; i < stack_vars_num; i++)
484 bitmap part = NULL;
485 tree name;
486 struct ptr_info_def *pi;
488 /* Not interested in partitions with single variable. */
489 if (stack_vars[i].representative != i
490 || stack_vars[i].next == EOC)
491 continue;
493 if (!decls_to_partitions)
495 decls_to_partitions = pointer_map_create ();
496 cfun->gimple_df->decls_to_pointers = pointer_map_create ();
499 /* Create an SSA_NAME that points to the partition for use
500 as base during alias-oracle queries on RTL for bases that
501 have been partitioned. */
502 if (var == NULL_TREE)
503 var = create_tmp_var (ptr_type_node, NULL);
504 name = make_ssa_name (var, NULL);
506 /* Create bitmaps representing partitions. They will be used for
507 points-to sets later, so use GGC alloc. */
508 part = BITMAP_GGC_ALLOC ();
509 for (j = i; j != EOC; j = stack_vars[j].next)
511 tree decl = stack_vars[j].decl;
512 unsigned int uid = DECL_PT_UID (decl);
513 /* We should never end up partitioning SSA names (though they
514 may end up on the stack). Neither should we allocate stack
515 space to something that is unused and thus unreferenced, except
516 for -O0 where we are preserving even unreferenced variables. */
517 gcc_assert (DECL_P (decl)
518 && (!optimize
519 || referenced_var_lookup (cfun, DECL_UID (decl))));
520 bitmap_set_bit (part, uid);
521 *((bitmap *) pointer_map_insert (decls_to_partitions,
522 (void *)(size_t) uid)) = part;
523 *((tree *) pointer_map_insert (cfun->gimple_df->decls_to_pointers,
524 decl)) = name;
527 /* Make the SSA name point to all partition members. */
528 pi = get_ptr_info (name);
529 pt_solution_set (&pi->pt, part, false, false);
532 /* Make all points-to sets that contain one member of a partition
533 contain all members of the partition. */
534 if (decls_to_partitions)
536 unsigned i;
537 struct pointer_set_t *visited = pointer_set_create ();
538 bitmap temp = BITMAP_ALLOC (NULL);
540 for (i = 1; i < num_ssa_names; i++)
542 tree name = ssa_name (i);
543 struct ptr_info_def *pi;
545 if (name
546 && POINTER_TYPE_P (TREE_TYPE (name))
547 && ((pi = SSA_NAME_PTR_INFO (name)) != NULL))
548 add_partitioned_vars_to_ptset (&pi->pt, decls_to_partitions,
549 visited, temp);
552 add_partitioned_vars_to_ptset (&cfun->gimple_df->escaped,
553 decls_to_partitions, visited, temp);
555 pointer_set_destroy (visited);
556 pointer_map_destroy (decls_to_partitions);
557 BITMAP_FREE (temp);
561 /* A subroutine of partition_stack_vars. The UNION portion of a UNION/FIND
562 partitioning algorithm. Partitions A and B are known to be non-conflicting.
563 Merge them into a single partition A. */
565 static void
566 union_stack_vars (size_t a, size_t b)
568 struct stack_var *vb = &stack_vars[b];
569 bitmap_iterator bi;
570 unsigned u;
572 gcc_assert (stack_vars[b].next == EOC);
573 /* Add B to A's partition. */
574 stack_vars[b].next = stack_vars[a].next;
575 stack_vars[b].representative = a;
576 stack_vars[a].next = b;
578 /* Update the required alignment of partition A to account for B. */
579 if (stack_vars[a].alignb < stack_vars[b].alignb)
580 stack_vars[a].alignb = stack_vars[b].alignb;
582 /* Update the interference graph and merge the conflicts. */
583 if (vb->conflicts)
585 EXECUTE_IF_SET_IN_BITMAP (vb->conflicts, 0, u, bi)
586 add_stack_var_conflict (a, stack_vars[u].representative);
587 BITMAP_FREE (vb->conflicts);
591 /* A subroutine of expand_used_vars. Binpack the variables into
592 partitions constrained by the interference graph. The overall
593 algorithm used is as follows:
595 Sort the objects by size in descending order.
596 For each object A {
597 S = size(A)
598 O = 0
599 loop {
600 Look for the largest non-conflicting object B with size <= S.
601 UNION (A, B)
606 static void
607 partition_stack_vars (void)
609 size_t si, sj, n = stack_vars_num;
611 stack_vars_sorted = XNEWVEC (size_t, stack_vars_num);
612 for (si = 0; si < n; ++si)
613 stack_vars_sorted[si] = si;
615 if (n == 1)
616 return;
618 qsort (stack_vars_sorted, n, sizeof (size_t), stack_var_cmp);
620 for (si = 0; si < n; ++si)
622 size_t i = stack_vars_sorted[si];
623 unsigned int ialign = stack_vars[i].alignb;
625 /* Ignore objects that aren't partition representatives. If we
626 see a var that is not a partition representative, it must
627 have been merged earlier. */
628 if (stack_vars[i].representative != i)
629 continue;
631 for (sj = si + 1; sj < n; ++sj)
633 size_t j = stack_vars_sorted[sj];
634 unsigned int jalign = stack_vars[j].alignb;
636 /* Ignore objects that aren't partition representatives. */
637 if (stack_vars[j].representative != j)
638 continue;
640 /* Ignore conflicting objects. */
641 if (stack_var_conflict_p (i, j))
642 continue;
644 /* Do not mix objects of "small" (supported) alignment
645 and "large" (unsupported) alignment. */
646 if ((ialign * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT)
647 != (jalign * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT))
648 continue;
650 /* UNION the objects, placing J at OFFSET. */
651 union_stack_vars (i, j);
655 update_alias_info_with_stack_vars ();
658 /* A debugging aid for expand_used_vars. Dump the generated partitions. */
660 static void
661 dump_stack_var_partition (void)
663 size_t si, i, j, n = stack_vars_num;
665 for (si = 0; si < n; ++si)
667 i = stack_vars_sorted[si];
669 /* Skip variables that aren't partition representatives, for now. */
670 if (stack_vars[i].representative != i)
671 continue;
673 fprintf (dump_file, "Partition %lu: size " HOST_WIDE_INT_PRINT_DEC
674 " align %u\n", (unsigned long) i, stack_vars[i].size,
675 stack_vars[i].alignb);
677 for (j = i; j != EOC; j = stack_vars[j].next)
679 fputc ('\t', dump_file);
680 print_generic_expr (dump_file, stack_vars[j].decl, dump_flags);
682 fputc ('\n', dump_file);
686 /* Assign rtl to DECL at BASE + OFFSET. */
688 static void
689 expand_one_stack_var_at (tree decl, rtx base, unsigned base_align,
690 HOST_WIDE_INT offset)
692 unsigned align;
693 rtx x;
695 /* If this fails, we've overflowed the stack frame. Error nicely? */
696 gcc_assert (offset == trunc_int_for_mode (offset, Pmode));
698 x = plus_constant (base, offset);
699 x = gen_rtx_MEM (DECL_MODE (SSAVAR (decl)), x);
701 if (TREE_CODE (decl) != SSA_NAME)
703 /* Set alignment we actually gave this decl if it isn't an SSA name.
704 If it is we generate stack slots only accidentally so it isn't as
705 important, we'll simply use the alignment that is already set. */
706 if (base == virtual_stack_vars_rtx)
707 offset -= frame_phase;
708 align = offset & -offset;
709 align *= BITS_PER_UNIT;
710 if (align == 0 || align > base_align)
711 align = base_align;
713 /* One would think that we could assert that we're not decreasing
714 alignment here, but (at least) the i386 port does exactly this
715 via the MINIMUM_ALIGNMENT hook. */
717 DECL_ALIGN (decl) = align;
718 DECL_USER_ALIGN (decl) = 0;
721 set_mem_attributes (x, SSAVAR (decl), true);
722 set_rtl (decl, x);
725 /* A subroutine of expand_used_vars. Give each partition representative
726 a unique location within the stack frame. Update each partition member
727 with that location. */
729 static void
730 expand_stack_vars (bool (*pred) (tree))
732 size_t si, i, j, n = stack_vars_num;
733 HOST_WIDE_INT large_size = 0, large_alloc = 0;
734 rtx large_base = NULL;
735 unsigned large_align = 0;
736 tree decl;
738 /* Determine if there are any variables requiring "large" alignment.
739 Since these are dynamically allocated, we only process these if
740 no predicate involved. */
741 large_align = stack_vars[stack_vars_sorted[0]].alignb * BITS_PER_UNIT;
742 if (pred == NULL && large_align > MAX_SUPPORTED_STACK_ALIGNMENT)
744 /* Find the total size of these variables. */
745 for (si = 0; si < n; ++si)
747 unsigned alignb;
749 i = stack_vars_sorted[si];
750 alignb = stack_vars[i].alignb;
752 /* Stop when we get to the first decl with "small" alignment. */
753 if (alignb * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT)
754 break;
756 /* Skip variables that aren't partition representatives. */
757 if (stack_vars[i].representative != i)
758 continue;
760 /* Skip variables that have already had rtl assigned. See also
761 add_stack_var where we perpetrate this pc_rtx hack. */
762 decl = stack_vars[i].decl;
763 if ((TREE_CODE (decl) == SSA_NAME
764 ? SA.partition_to_pseudo[var_to_partition (SA.map, decl)]
765 : DECL_RTL (decl)) != pc_rtx)
766 continue;
768 large_size += alignb - 1;
769 large_size &= -(HOST_WIDE_INT)alignb;
770 large_size += stack_vars[i].size;
773 /* If there were any, allocate space. */
774 if (large_size > 0)
775 large_base = allocate_dynamic_stack_space (GEN_INT (large_size), 0,
776 large_align, true);
779 for (si = 0; si < n; ++si)
781 rtx base;
782 unsigned base_align, alignb;
783 HOST_WIDE_INT offset;
785 i = stack_vars_sorted[si];
787 /* Skip variables that aren't partition representatives, for now. */
788 if (stack_vars[i].representative != i)
789 continue;
791 /* Skip variables that have already had rtl assigned. See also
792 add_stack_var where we perpetrate this pc_rtx hack. */
793 decl = stack_vars[i].decl;
794 if ((TREE_CODE (decl) == SSA_NAME
795 ? SA.partition_to_pseudo[var_to_partition (SA.map, decl)]
796 : DECL_RTL (decl)) != pc_rtx)
797 continue;
799 /* Check the predicate to see whether this variable should be
800 allocated in this pass. */
801 if (pred && !pred (decl))
802 continue;
804 alignb = stack_vars[i].alignb;
805 if (alignb * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT)
807 offset = alloc_stack_frame_space (stack_vars[i].size, alignb);
808 base = virtual_stack_vars_rtx;
809 base_align = crtl->max_used_stack_slot_alignment;
811 else
813 /* Large alignment is only processed in the last pass. */
814 if (pred)
815 continue;
816 gcc_assert (large_base != NULL);
818 large_alloc += alignb - 1;
819 large_alloc &= -(HOST_WIDE_INT)alignb;
820 offset = large_alloc;
821 large_alloc += stack_vars[i].size;
823 base = large_base;
824 base_align = large_align;
827 /* Create rtl for each variable based on their location within the
828 partition. */
829 for (j = i; j != EOC; j = stack_vars[j].next)
831 expand_one_stack_var_at (stack_vars[j].decl,
832 base, base_align,
833 offset);
837 gcc_assert (large_alloc == large_size);
840 /* Take into account all sizes of partitions and reset DECL_RTLs. */
841 static HOST_WIDE_INT
842 account_stack_vars (void)
844 size_t si, j, i, n = stack_vars_num;
845 HOST_WIDE_INT size = 0;
847 for (si = 0; si < n; ++si)
849 i = stack_vars_sorted[si];
851 /* Skip variables that aren't partition representatives, for now. */
852 if (stack_vars[i].representative != i)
853 continue;
855 size += stack_vars[i].size;
856 for (j = i; j != EOC; j = stack_vars[j].next)
857 set_rtl (stack_vars[j].decl, NULL);
859 return size;
862 /* A subroutine of expand_one_var. Called to immediately assign rtl
863 to a variable to be allocated in the stack frame. */
865 static void
866 expand_one_stack_var (tree var)
868 HOST_WIDE_INT size, offset;
869 unsigned byte_align;
871 size = tree_low_cst (DECL_SIZE_UNIT (SSAVAR (var)), 1);
872 byte_align = align_local_variable (SSAVAR (var));
874 /* We handle highly aligned variables in expand_stack_vars. */
875 gcc_assert (byte_align * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT);
877 offset = alloc_stack_frame_space (size, byte_align);
879 expand_one_stack_var_at (var, virtual_stack_vars_rtx,
880 crtl->max_used_stack_slot_alignment, offset);
883 /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL
884 that will reside in a hard register. */
886 static void
887 expand_one_hard_reg_var (tree var)
889 rest_of_decl_compilation (var, 0, 0);
892 /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL
893 that will reside in a pseudo register. */
895 static void
896 expand_one_register_var (tree var)
898 tree decl = SSAVAR (var);
899 tree type = TREE_TYPE (decl);
900 enum machine_mode reg_mode = promote_decl_mode (decl, NULL);
901 rtx x = gen_reg_rtx (reg_mode);
903 set_rtl (var, x);
905 /* Note if the object is a user variable. */
906 if (!DECL_ARTIFICIAL (decl))
907 mark_user_reg (x);
909 if (POINTER_TYPE_P (type))
910 mark_reg_pointer (x, TYPE_ALIGN (TREE_TYPE (type)));
913 /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL that
914 has some associated error, e.g. its type is error-mark. We just need
915 to pick something that won't crash the rest of the compiler. */
917 static void
918 expand_one_error_var (tree var)
920 enum machine_mode mode = DECL_MODE (var);
921 rtx x;
923 if (mode == BLKmode)
924 x = gen_rtx_MEM (BLKmode, const0_rtx);
925 else if (mode == VOIDmode)
926 x = const0_rtx;
927 else
928 x = gen_reg_rtx (mode);
930 SET_DECL_RTL (var, x);
933 /* A subroutine of expand_one_var. VAR is a variable that will be
934 allocated to the local stack frame. Return true if we wish to
935 add VAR to STACK_VARS so that it will be coalesced with other
936 variables. Return false to allocate VAR immediately.
938 This function is used to reduce the number of variables considered
939 for coalescing, which reduces the size of the quadratic problem. */
941 static bool
942 defer_stack_allocation (tree var, bool toplevel)
944 /* If stack protection is enabled, *all* stack variables must be deferred,
945 so that we can re-order the strings to the top of the frame. */
946 if (flag_stack_protect)
947 return true;
949 /* We handle "large" alignment via dynamic allocation. We want to handle
950 this extra complication in only one place, so defer them. */
951 if (DECL_ALIGN (var) > MAX_SUPPORTED_STACK_ALIGNMENT)
952 return true;
954 /* Variables in the outermost scope automatically conflict with
955 every other variable. The only reason to want to defer them
956 at all is that, after sorting, we can more efficiently pack
957 small variables in the stack frame. Continue to defer at -O2. */
958 if (toplevel && optimize < 2)
959 return false;
961 /* Without optimization, *most* variables are allocated from the
962 stack, which makes the quadratic problem large exactly when we
963 want compilation to proceed as quickly as possible. On the
964 other hand, we don't want the function's stack frame size to
965 get completely out of hand. So we avoid adding scalars and
966 "small" aggregates to the list at all. */
967 if (optimize == 0 && tree_low_cst (DECL_SIZE_UNIT (var), 1) < 32)
968 return false;
970 return true;
973 /* A subroutine of expand_used_vars. Expand one variable according to
974 its flavor. Variables to be placed on the stack are not actually
975 expanded yet, merely recorded.
976 When REALLY_EXPAND is false, only add stack values to be allocated.
977 Return stack usage this variable is supposed to take.
980 static HOST_WIDE_INT
981 expand_one_var (tree var, bool toplevel, bool really_expand)
983 unsigned int align = BITS_PER_UNIT;
984 tree origvar = var;
986 var = SSAVAR (var);
988 if (TREE_TYPE (var) != error_mark_node && TREE_CODE (var) == VAR_DECL)
990 /* Because we don't know if VAR will be in register or on stack,
991 we conservatively assume it will be on stack even if VAR is
992 eventually put into register after RA pass. For non-automatic
993 variables, which won't be on stack, we collect alignment of
994 type and ignore user specified alignment. */
995 if (TREE_STATIC (var) || DECL_EXTERNAL (var))
996 align = MINIMUM_ALIGNMENT (TREE_TYPE (var),
997 TYPE_MODE (TREE_TYPE (var)),
998 TYPE_ALIGN (TREE_TYPE (var)));
999 else if (DECL_HAS_VALUE_EXPR_P (var)
1000 || (DECL_RTL_SET_P (var) && MEM_P (DECL_RTL (var))))
1001 /* Don't consider debug only variables with DECL_HAS_VALUE_EXPR_P set
1002 or variables which were assigned a stack slot already by
1003 expand_one_stack_var_at - in the latter case DECL_ALIGN has been
1004 changed from the offset chosen to it. */
1005 align = crtl->stack_alignment_estimated;
1006 else
1007 align = MINIMUM_ALIGNMENT (var, DECL_MODE (var), DECL_ALIGN (var));
1009 /* If the variable alignment is very large we'll dynamicaly allocate
1010 it, which means that in-frame portion is just a pointer. */
1011 if (align > MAX_SUPPORTED_STACK_ALIGNMENT)
1012 align = POINTER_SIZE;
1015 if (SUPPORTS_STACK_ALIGNMENT
1016 && crtl->stack_alignment_estimated < align)
1018 /* stack_alignment_estimated shouldn't change after stack
1019 realign decision made */
1020 gcc_assert(!crtl->stack_realign_processed);
1021 crtl->stack_alignment_estimated = align;
1024 /* stack_alignment_needed > PREFERRED_STACK_BOUNDARY is permitted.
1025 So here we only make sure stack_alignment_needed >= align. */
1026 if (crtl->stack_alignment_needed < align)
1027 crtl->stack_alignment_needed = align;
1028 if (crtl->max_used_stack_slot_alignment < align)
1029 crtl->max_used_stack_slot_alignment = align;
1031 if (TREE_CODE (origvar) == SSA_NAME)
1033 gcc_assert (TREE_CODE (var) != VAR_DECL
1034 || (!DECL_EXTERNAL (var)
1035 && !DECL_HAS_VALUE_EXPR_P (var)
1036 && !TREE_STATIC (var)
1037 && TREE_TYPE (var) != error_mark_node
1038 && !DECL_HARD_REGISTER (var)
1039 && really_expand));
1041 if (TREE_CODE (var) != VAR_DECL && TREE_CODE (origvar) != SSA_NAME)
1043 else if (DECL_EXTERNAL (var))
1045 else if (DECL_HAS_VALUE_EXPR_P (var))
1047 else if (TREE_STATIC (var))
1049 else if (TREE_CODE (origvar) != SSA_NAME && DECL_RTL_SET_P (var))
1051 else if (TREE_TYPE (var) == error_mark_node)
1053 if (really_expand)
1054 expand_one_error_var (var);
1056 else if (TREE_CODE (var) == VAR_DECL && DECL_HARD_REGISTER (var))
1058 if (really_expand)
1059 expand_one_hard_reg_var (var);
1061 else if (use_register_for_decl (var))
1063 if (really_expand)
1064 expand_one_register_var (origvar);
1066 else if (!host_integerp (DECL_SIZE_UNIT (var), 1))
1068 if (really_expand)
1070 error ("size of variable %q+D is too large", var);
1071 expand_one_error_var (var);
1074 else if (defer_stack_allocation (var, toplevel))
1075 add_stack_var (origvar);
1076 else
1078 if (really_expand)
1079 expand_one_stack_var (origvar);
1080 return tree_low_cst (DECL_SIZE_UNIT (var), 1);
1082 return 0;
1085 /* A subroutine of expand_used_vars. Walk down through the BLOCK tree
1086 expanding variables. Those variables that can be put into registers
1087 are allocated pseudos; those that can't are put on the stack.
1089 TOPLEVEL is true if this is the outermost BLOCK. */
1091 static void
1092 expand_used_vars_for_block (tree block, bool toplevel)
1094 size_t i, j, old_sv_num, this_sv_num, new_sv_num;
1095 tree t;
1097 old_sv_num = toplevel ? 0 : stack_vars_num;
1099 /* Expand all variables at this level. */
1100 for (t = BLOCK_VARS (block); t ; t = DECL_CHAIN (t))
1101 if (TREE_USED (t)
1102 && ((TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != RESULT_DECL)
1103 || !DECL_NONSHAREABLE (t)))
1104 expand_one_var (t, toplevel, true);
1106 this_sv_num = stack_vars_num;
1108 /* Expand all variables at containing levels. */
1109 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
1110 expand_used_vars_for_block (t, false);
1112 /* Since we do not track exact variable lifetimes (which is not even
1113 possible for variables whose address escapes), we mirror the block
1114 tree in the interference graph. Here we cause all variables at this
1115 level, and all sublevels, to conflict. */
1116 if (old_sv_num < this_sv_num)
1118 new_sv_num = stack_vars_num;
1120 for (i = old_sv_num; i < new_sv_num; ++i)
1121 for (j = i < this_sv_num ? i : this_sv_num; j-- > old_sv_num ;)
1122 add_stack_var_conflict (i, j);
1126 /* A subroutine of expand_used_vars. Walk down through the BLOCK tree
1127 and clear TREE_USED on all local variables. */
1129 static void
1130 clear_tree_used (tree block)
1132 tree t;
1134 for (t = BLOCK_VARS (block); t ; t = DECL_CHAIN (t))
1135 /* if (!TREE_STATIC (t) && !DECL_EXTERNAL (t)) */
1136 if ((TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != RESULT_DECL)
1137 || !DECL_NONSHAREABLE (t))
1138 TREE_USED (t) = 0;
1140 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
1141 clear_tree_used (t);
1144 /* Examine TYPE and determine a bit mask of the following features. */
1146 #define SPCT_HAS_LARGE_CHAR_ARRAY 1
1147 #define SPCT_HAS_SMALL_CHAR_ARRAY 2
1148 #define SPCT_HAS_ARRAY 4
1149 #define SPCT_HAS_AGGREGATE 8
1151 static unsigned int
1152 stack_protect_classify_type (tree type)
1154 unsigned int ret = 0;
1155 tree t;
1157 switch (TREE_CODE (type))
1159 case ARRAY_TYPE:
1160 t = TYPE_MAIN_VARIANT (TREE_TYPE (type));
1161 if (t == char_type_node
1162 || t == signed_char_type_node
1163 || t == unsigned_char_type_node)
1165 unsigned HOST_WIDE_INT max = PARAM_VALUE (PARAM_SSP_BUFFER_SIZE);
1166 unsigned HOST_WIDE_INT len;
1168 if (!TYPE_SIZE_UNIT (type)
1169 || !host_integerp (TYPE_SIZE_UNIT (type), 1))
1170 len = max;
1171 else
1172 len = tree_low_cst (TYPE_SIZE_UNIT (type), 1);
1174 if (len < max)
1175 ret = SPCT_HAS_SMALL_CHAR_ARRAY | SPCT_HAS_ARRAY;
1176 else
1177 ret = SPCT_HAS_LARGE_CHAR_ARRAY | SPCT_HAS_ARRAY;
1179 else
1180 ret = SPCT_HAS_ARRAY;
1181 break;
1183 case UNION_TYPE:
1184 case QUAL_UNION_TYPE:
1185 case RECORD_TYPE:
1186 ret = SPCT_HAS_AGGREGATE;
1187 for (t = TYPE_FIELDS (type); t ; t = TREE_CHAIN (t))
1188 if (TREE_CODE (t) == FIELD_DECL)
1189 ret |= stack_protect_classify_type (TREE_TYPE (t));
1190 break;
1192 default:
1193 break;
1196 return ret;
1199 /* Return nonzero if DECL should be segregated into the "vulnerable" upper
1200 part of the local stack frame. Remember if we ever return nonzero for
1201 any variable in this function. The return value is the phase number in
1202 which the variable should be allocated. */
1204 static int
1205 stack_protect_decl_phase (tree decl)
1207 unsigned int bits = stack_protect_classify_type (TREE_TYPE (decl));
1208 int ret = 0;
1210 if (bits & SPCT_HAS_SMALL_CHAR_ARRAY)
1211 has_short_buffer = true;
1213 if (flag_stack_protect == 2)
1215 if ((bits & (SPCT_HAS_SMALL_CHAR_ARRAY | SPCT_HAS_LARGE_CHAR_ARRAY))
1216 && !(bits & SPCT_HAS_AGGREGATE))
1217 ret = 1;
1218 else if (bits & SPCT_HAS_ARRAY)
1219 ret = 2;
1221 else
1222 ret = (bits & SPCT_HAS_LARGE_CHAR_ARRAY) != 0;
1224 if (ret)
1225 has_protected_decls = true;
1227 return ret;
1230 /* Two helper routines that check for phase 1 and phase 2. These are used
1231 as callbacks for expand_stack_vars. */
1233 static bool
1234 stack_protect_decl_phase_1 (tree decl)
1236 return stack_protect_decl_phase (decl) == 1;
1239 static bool
1240 stack_protect_decl_phase_2 (tree decl)
1242 return stack_protect_decl_phase (decl) == 2;
1245 /* Ensure that variables in different stack protection phases conflict
1246 so that they are not merged and share the same stack slot. */
1248 static void
1249 add_stack_protection_conflicts (void)
1251 size_t i, j, n = stack_vars_num;
1252 unsigned char *phase;
1254 phase = XNEWVEC (unsigned char, n);
1255 for (i = 0; i < n; ++i)
1256 phase[i] = stack_protect_decl_phase (stack_vars[i].decl);
1258 for (i = 0; i < n; ++i)
1260 unsigned char ph_i = phase[i];
1261 for (j = 0; j < i; ++j)
1262 if (ph_i != phase[j])
1263 add_stack_var_conflict (i, j);
1266 XDELETEVEC (phase);
1269 /* Create a decl for the guard at the top of the stack frame. */
1271 static void
1272 create_stack_guard (void)
1274 tree guard = build_decl (DECL_SOURCE_LOCATION (current_function_decl),
1275 VAR_DECL, NULL, ptr_type_node);
1276 TREE_THIS_VOLATILE (guard) = 1;
1277 TREE_USED (guard) = 1;
1278 expand_one_stack_var (guard);
1279 crtl->stack_protect_guard = guard;
1282 /* Prepare for expanding variables. */
1283 static void
1284 init_vars_expansion (void)
1286 tree t;
1287 unsigned ix;
1288 /* Set TREE_USED on all variables in the local_decls. */
1289 FOR_EACH_LOCAL_DECL (cfun, ix, t)
1290 TREE_USED (t) = 1;
1292 /* Clear TREE_USED on all variables associated with a block scope. */
1293 clear_tree_used (DECL_INITIAL (current_function_decl));
1295 /* Initialize local stack smashing state. */
1296 has_protected_decls = false;
1297 has_short_buffer = false;
1300 /* Free up stack variable graph data. */
1301 static void
1302 fini_vars_expansion (void)
1304 size_t i, n = stack_vars_num;
1305 for (i = 0; i < n; i++)
1306 BITMAP_FREE (stack_vars[i].conflicts);
1307 XDELETEVEC (stack_vars);
1308 XDELETEVEC (stack_vars_sorted);
1309 stack_vars = NULL;
1310 stack_vars_alloc = stack_vars_num = 0;
1313 /* Make a fair guess for the size of the stack frame of the function
1314 in NODE. This doesn't have to be exact, the result is only used in
1315 the inline heuristics. So we don't want to run the full stack var
1316 packing algorithm (which is quadratic in the number of stack vars).
1317 Instead, we calculate the total size of all stack vars. This turns
1318 out to be a pretty fair estimate -- packing of stack vars doesn't
1319 happen very often. */
1321 HOST_WIDE_INT
1322 estimated_stack_frame_size (struct cgraph_node *node)
1324 HOST_WIDE_INT size = 0;
1325 size_t i;
1326 tree var;
1327 tree old_cur_fun_decl = current_function_decl;
1328 referenced_var_iterator rvi;
1329 struct function *fn = DECL_STRUCT_FUNCTION (node->decl);
1331 current_function_decl = node->decl;
1332 push_cfun (fn);
1334 gcc_checking_assert (gimple_referenced_vars (fn));
1335 FOR_EACH_REFERENCED_VAR (fn, var, rvi)
1336 size += expand_one_var (var, true, false);
1338 if (stack_vars_num > 0)
1340 /* Fake sorting the stack vars for account_stack_vars (). */
1341 stack_vars_sorted = XNEWVEC (size_t, stack_vars_num);
1342 for (i = 0; i < stack_vars_num; ++i)
1343 stack_vars_sorted[i] = i;
1344 size += account_stack_vars ();
1345 fini_vars_expansion ();
1347 pop_cfun ();
1348 current_function_decl = old_cur_fun_decl;
1349 return size;
1352 /* Expand all variables used in the function. */
1354 static void
1355 expand_used_vars (void)
1357 tree var, outer_block = DECL_INITIAL (current_function_decl);
1358 VEC(tree,heap) *maybe_local_decls = NULL;
1359 unsigned i;
1360 unsigned len;
1362 /* Compute the phase of the stack frame for this function. */
1364 int align = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
1365 int off = STARTING_FRAME_OFFSET % align;
1366 frame_phase = off ? align - off : 0;
1369 init_vars_expansion ();
1371 for (i = 0; i < SA.map->num_partitions; i++)
1373 tree var = partition_to_var (SA.map, i);
1375 gcc_assert (is_gimple_reg (var));
1376 if (TREE_CODE (SSA_NAME_VAR (var)) == VAR_DECL)
1377 expand_one_var (var, true, true);
1378 else
1380 /* This is a PARM_DECL or RESULT_DECL. For those partitions that
1381 contain the default def (representing the parm or result itself)
1382 we don't do anything here. But those which don't contain the
1383 default def (representing a temporary based on the parm/result)
1384 we need to allocate space just like for normal VAR_DECLs. */
1385 if (!bitmap_bit_p (SA.partition_has_default_def, i))
1387 expand_one_var (var, true, true);
1388 gcc_assert (SA.partition_to_pseudo[i]);
1393 /* At this point all variables on the local_decls with TREE_USED
1394 set are not associated with any block scope. Lay them out. */
1396 len = VEC_length (tree, cfun->local_decls);
1397 FOR_EACH_LOCAL_DECL (cfun, i, var)
1399 bool expand_now = false;
1401 /* Expanded above already. */
1402 if (is_gimple_reg (var))
1404 TREE_USED (var) = 0;
1405 goto next;
1407 /* We didn't set a block for static or extern because it's hard
1408 to tell the difference between a global variable (re)declared
1409 in a local scope, and one that's really declared there to
1410 begin with. And it doesn't really matter much, since we're
1411 not giving them stack space. Expand them now. */
1412 else if (TREE_STATIC (var) || DECL_EXTERNAL (var))
1413 expand_now = true;
1415 /* If the variable is not associated with any block, then it
1416 was created by the optimizers, and could be live anywhere
1417 in the function. */
1418 else if (TREE_USED (var))
1419 expand_now = true;
1421 /* Finally, mark all variables on the list as used. We'll use
1422 this in a moment when we expand those associated with scopes. */
1423 TREE_USED (var) = 1;
1425 if (expand_now)
1426 expand_one_var (var, true, true);
1428 next:
1429 if (DECL_ARTIFICIAL (var) && !DECL_IGNORED_P (var))
1431 rtx rtl = DECL_RTL_IF_SET (var);
1433 /* Keep artificial non-ignored vars in cfun->local_decls
1434 chain until instantiate_decls. */
1435 if (rtl && (MEM_P (rtl) || GET_CODE (rtl) == CONCAT))
1436 add_local_decl (cfun, var);
1437 else if (rtl == NULL_RTX)
1438 /* If rtl isn't set yet, which can happen e.g. with
1439 -fstack-protector, retry before returning from this
1440 function. */
1441 VEC_safe_push (tree, heap, maybe_local_decls, var);
1445 /* We duplicated some of the decls in CFUN->LOCAL_DECLS.
1447 +-----------------+-----------------+
1448 | ...processed... | ...duplicates...|
1449 +-----------------+-----------------+
1451 +-- LEN points here.
1453 We just want the duplicates, as those are the artificial
1454 non-ignored vars that we want to keep until instantiate_decls.
1455 Move them down and truncate the array. */
1456 if (!VEC_empty (tree, cfun->local_decls))
1457 VEC_block_remove (tree, cfun->local_decls, 0, len);
1459 /* At this point, all variables within the block tree with TREE_USED
1460 set are actually used by the optimized function. Lay them out. */
1461 expand_used_vars_for_block (outer_block, true);
1463 if (stack_vars_num > 0)
1465 /* Due to the way alias sets work, no variables with non-conflicting
1466 alias sets may be assigned the same address. Add conflicts to
1467 reflect this. */
1468 add_alias_set_conflicts ();
1470 /* If stack protection is enabled, we don't share space between
1471 vulnerable data and non-vulnerable data. */
1472 if (flag_stack_protect)
1473 add_stack_protection_conflicts ();
1475 /* Now that we have collected all stack variables, and have computed a
1476 minimal interference graph, attempt to save some stack space. */
1477 partition_stack_vars ();
1478 if (dump_file)
1479 dump_stack_var_partition ();
1482 /* There are several conditions under which we should create a
1483 stack guard: protect-all, alloca used, protected decls present. */
1484 if (flag_stack_protect == 2
1485 || (flag_stack_protect
1486 && (cfun->calls_alloca || has_protected_decls)))
1487 create_stack_guard ();
1489 /* Assign rtl to each variable based on these partitions. */
1490 if (stack_vars_num > 0)
1492 /* Reorder decls to be protected by iterating over the variables
1493 array multiple times, and allocating out of each phase in turn. */
1494 /* ??? We could probably integrate this into the qsort we did
1495 earlier, such that we naturally see these variables first,
1496 and thus naturally allocate things in the right order. */
1497 if (has_protected_decls)
1499 /* Phase 1 contains only character arrays. */
1500 expand_stack_vars (stack_protect_decl_phase_1);
1502 /* Phase 2 contains other kinds of arrays. */
1503 if (flag_stack_protect == 2)
1504 expand_stack_vars (stack_protect_decl_phase_2);
1507 expand_stack_vars (NULL);
1509 fini_vars_expansion ();
1512 /* If there were any artificial non-ignored vars without rtl
1513 found earlier, see if deferred stack allocation hasn't assigned
1514 rtl to them. */
1515 FOR_EACH_VEC_ELT_REVERSE (tree, maybe_local_decls, i, var)
1517 rtx rtl = DECL_RTL_IF_SET (var);
1519 /* Keep artificial non-ignored vars in cfun->local_decls
1520 chain until instantiate_decls. */
1521 if (rtl && (MEM_P (rtl) || GET_CODE (rtl) == CONCAT))
1522 add_local_decl (cfun, var);
1524 VEC_free (tree, heap, maybe_local_decls);
1526 /* If the target requires that FRAME_OFFSET be aligned, do it. */
1527 if (STACK_ALIGNMENT_NEEDED)
1529 HOST_WIDE_INT align = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
1530 if (!FRAME_GROWS_DOWNWARD)
1531 frame_offset += align - 1;
1532 frame_offset &= -align;
1537 /* If we need to produce a detailed dump, print the tree representation
1538 for STMT to the dump file. SINCE is the last RTX after which the RTL
1539 generated for STMT should have been appended. */
1541 static void
1542 maybe_dump_rtl_for_gimple_stmt (gimple stmt, rtx since)
1544 if (dump_file && (dump_flags & TDF_DETAILS))
1546 fprintf (dump_file, "\n;; ");
1547 print_gimple_stmt (dump_file, stmt, 0,
1548 TDF_SLIM | (dump_flags & TDF_LINENO));
1549 fprintf (dump_file, "\n");
1551 print_rtl (dump_file, since ? NEXT_INSN (since) : since);
1555 /* Maps the blocks that do not contain tree labels to rtx labels. */
1557 static struct pointer_map_t *lab_rtx_for_bb;
1559 /* Returns the label_rtx expression for a label starting basic block BB. */
1561 static rtx
1562 label_rtx_for_bb (basic_block bb ATTRIBUTE_UNUSED)
1564 gimple_stmt_iterator gsi;
1565 tree lab;
1566 gimple lab_stmt;
1567 void **elt;
1569 if (bb->flags & BB_RTL)
1570 return block_label (bb);
1572 elt = pointer_map_contains (lab_rtx_for_bb, bb);
1573 if (elt)
1574 return (rtx) *elt;
1576 /* Find the tree label if it is present. */
1578 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1580 lab_stmt = gsi_stmt (gsi);
1581 if (gimple_code (lab_stmt) != GIMPLE_LABEL)
1582 break;
1584 lab = gimple_label_label (lab_stmt);
1585 if (DECL_NONLOCAL (lab))
1586 break;
1588 return label_rtx (lab);
1591 elt = pointer_map_insert (lab_rtx_for_bb, bb);
1592 *elt = gen_label_rtx ();
1593 return (rtx) *elt;
1597 /* A subroutine of expand_gimple_cond. Given E, a fallthrough edge
1598 of a basic block where we just expanded the conditional at the end,
1599 possibly clean up the CFG and instruction sequence. LAST is the
1600 last instruction before the just emitted jump sequence. */
1602 static void
1603 maybe_cleanup_end_of_block (edge e, rtx last)
1605 /* Special case: when jumpif decides that the condition is
1606 trivial it emits an unconditional jump (and the necessary
1607 barrier). But we still have two edges, the fallthru one is
1608 wrong. purge_dead_edges would clean this up later. Unfortunately
1609 we have to insert insns (and split edges) before
1610 find_many_sub_basic_blocks and hence before purge_dead_edges.
1611 But splitting edges might create new blocks which depend on the
1612 fact that if there are two edges there's no barrier. So the
1613 barrier would get lost and verify_flow_info would ICE. Instead
1614 of auditing all edge splitters to care for the barrier (which
1615 normally isn't there in a cleaned CFG), fix it here. */
1616 if (BARRIER_P (get_last_insn ()))
1618 rtx insn;
1619 remove_edge (e);
1620 /* Now, we have a single successor block, if we have insns to
1621 insert on the remaining edge we potentially will insert
1622 it at the end of this block (if the dest block isn't feasible)
1623 in order to avoid splitting the edge. This insertion will take
1624 place in front of the last jump. But we might have emitted
1625 multiple jumps (conditional and one unconditional) to the
1626 same destination. Inserting in front of the last one then
1627 is a problem. See PR 40021. We fix this by deleting all
1628 jumps except the last unconditional one. */
1629 insn = PREV_INSN (get_last_insn ());
1630 /* Make sure we have an unconditional jump. Otherwise we're
1631 confused. */
1632 gcc_assert (JUMP_P (insn) && !any_condjump_p (insn));
1633 for (insn = PREV_INSN (insn); insn != last;)
1635 insn = PREV_INSN (insn);
1636 if (JUMP_P (NEXT_INSN (insn)))
1638 if (!any_condjump_p (NEXT_INSN (insn)))
1640 gcc_assert (BARRIER_P (NEXT_INSN (NEXT_INSN (insn))));
1641 delete_insn (NEXT_INSN (NEXT_INSN (insn)));
1643 delete_insn (NEXT_INSN (insn));
1649 /* A subroutine of expand_gimple_basic_block. Expand one GIMPLE_COND.
1650 Returns a new basic block if we've terminated the current basic
1651 block and created a new one. */
1653 static basic_block
1654 expand_gimple_cond (basic_block bb, gimple stmt)
1656 basic_block new_bb, dest;
1657 edge new_edge;
1658 edge true_edge;
1659 edge false_edge;
1660 rtx last2, last;
1661 enum tree_code code;
1662 tree op0, op1;
1664 code = gimple_cond_code (stmt);
1665 op0 = gimple_cond_lhs (stmt);
1666 op1 = gimple_cond_rhs (stmt);
1667 /* We're sometimes presented with such code:
1668 D.123_1 = x < y;
1669 if (D.123_1 != 0)
1671 This would expand to two comparisons which then later might
1672 be cleaned up by combine. But some pattern matchers like if-conversion
1673 work better when there's only one compare, so make up for this
1674 here as special exception if TER would have made the same change. */
1675 if (gimple_cond_single_var_p (stmt)
1676 && SA.values
1677 && TREE_CODE (op0) == SSA_NAME
1678 && bitmap_bit_p (SA.values, SSA_NAME_VERSION (op0)))
1680 gimple second = SSA_NAME_DEF_STMT (op0);
1681 if (gimple_code (second) == GIMPLE_ASSIGN)
1683 enum tree_code code2 = gimple_assign_rhs_code (second);
1684 if (TREE_CODE_CLASS (code2) == tcc_comparison)
1686 code = code2;
1687 op0 = gimple_assign_rhs1 (second);
1688 op1 = gimple_assign_rhs2 (second);
1690 /* If jumps are cheap turn some more codes into
1691 jumpy sequences. */
1692 else if (BRANCH_COST (optimize_insn_for_speed_p (), false) < 4)
1694 if ((code2 == BIT_AND_EXPR
1695 && TYPE_PRECISION (TREE_TYPE (op0)) == 1
1696 && TREE_CODE (gimple_assign_rhs2 (second)) != INTEGER_CST)
1697 || code2 == TRUTH_AND_EXPR)
1699 code = TRUTH_ANDIF_EXPR;
1700 op0 = gimple_assign_rhs1 (second);
1701 op1 = gimple_assign_rhs2 (second);
1703 else if (code2 == BIT_IOR_EXPR || code2 == TRUTH_OR_EXPR)
1705 code = TRUTH_ORIF_EXPR;
1706 op0 = gimple_assign_rhs1 (second);
1707 op1 = gimple_assign_rhs2 (second);
1713 last2 = last = get_last_insn ();
1715 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
1716 set_curr_insn_source_location (gimple_location (stmt));
1717 set_curr_insn_block (gimple_block (stmt));
1719 /* These flags have no purpose in RTL land. */
1720 true_edge->flags &= ~EDGE_TRUE_VALUE;
1721 false_edge->flags &= ~EDGE_FALSE_VALUE;
1723 /* We can either have a pure conditional jump with one fallthru edge or
1724 two-way jump that needs to be decomposed into two basic blocks. */
1725 if (false_edge->dest == bb->next_bb)
1727 jumpif_1 (code, op0, op1, label_rtx_for_bb (true_edge->dest),
1728 true_edge->probability);
1729 maybe_dump_rtl_for_gimple_stmt (stmt, last);
1730 if (true_edge->goto_locus)
1732 set_curr_insn_source_location (true_edge->goto_locus);
1733 set_curr_insn_block (true_edge->goto_block);
1734 true_edge->goto_locus = curr_insn_locator ();
1736 true_edge->goto_block = NULL;
1737 false_edge->flags |= EDGE_FALLTHRU;
1738 maybe_cleanup_end_of_block (false_edge, last);
1739 return NULL;
1741 if (true_edge->dest == bb->next_bb)
1743 jumpifnot_1 (code, op0, op1, label_rtx_for_bb (false_edge->dest),
1744 false_edge->probability);
1745 maybe_dump_rtl_for_gimple_stmt (stmt, last);
1746 if (false_edge->goto_locus)
1748 set_curr_insn_source_location (false_edge->goto_locus);
1749 set_curr_insn_block (false_edge->goto_block);
1750 false_edge->goto_locus = curr_insn_locator ();
1752 false_edge->goto_block = NULL;
1753 true_edge->flags |= EDGE_FALLTHRU;
1754 maybe_cleanup_end_of_block (true_edge, last);
1755 return NULL;
1758 jumpif_1 (code, op0, op1, label_rtx_for_bb (true_edge->dest),
1759 true_edge->probability);
1760 last = get_last_insn ();
1761 if (false_edge->goto_locus)
1763 set_curr_insn_source_location (false_edge->goto_locus);
1764 set_curr_insn_block (false_edge->goto_block);
1765 false_edge->goto_locus = curr_insn_locator ();
1767 false_edge->goto_block = NULL;
1768 emit_jump (label_rtx_for_bb (false_edge->dest));
1770 BB_END (bb) = last;
1771 if (BARRIER_P (BB_END (bb)))
1772 BB_END (bb) = PREV_INSN (BB_END (bb));
1773 update_bb_for_insn (bb);
1775 new_bb = create_basic_block (NEXT_INSN (last), get_last_insn (), bb);
1776 dest = false_edge->dest;
1777 redirect_edge_succ (false_edge, new_bb);
1778 false_edge->flags |= EDGE_FALLTHRU;
1779 new_bb->count = false_edge->count;
1780 new_bb->frequency = EDGE_FREQUENCY (false_edge);
1781 new_edge = make_edge (new_bb, dest, 0);
1782 new_edge->probability = REG_BR_PROB_BASE;
1783 new_edge->count = new_bb->count;
1784 if (BARRIER_P (BB_END (new_bb)))
1785 BB_END (new_bb) = PREV_INSN (BB_END (new_bb));
1786 update_bb_for_insn (new_bb);
1788 maybe_dump_rtl_for_gimple_stmt (stmt, last2);
1790 if (true_edge->goto_locus)
1792 set_curr_insn_source_location (true_edge->goto_locus);
1793 set_curr_insn_block (true_edge->goto_block);
1794 true_edge->goto_locus = curr_insn_locator ();
1796 true_edge->goto_block = NULL;
1798 return new_bb;
1801 /* A subroutine of expand_gimple_stmt_1, expanding one GIMPLE_CALL
1802 statement STMT. */
1804 static void
1805 expand_call_stmt (gimple stmt)
1807 tree exp, decl, lhs;
1808 bool builtin_p;
1809 size_t i;
1811 if (gimple_call_internal_p (stmt))
1813 expand_internal_call (stmt);
1814 return;
1817 exp = build_vl_exp (CALL_EXPR, gimple_call_num_args (stmt) + 3);
1819 CALL_EXPR_FN (exp) = gimple_call_fn (stmt);
1820 decl = gimple_call_fndecl (stmt);
1821 builtin_p = decl && DECL_BUILT_IN (decl);
1823 /* If this is not a builtin function, the function type through which the
1824 call is made may be different from the type of the function. */
1825 if (!builtin_p)
1826 CALL_EXPR_FN (exp)
1827 = fold_convert (build_pointer_type (gimple_call_fntype (stmt)),
1828 CALL_EXPR_FN (exp));
1830 TREE_TYPE (exp) = gimple_call_return_type (stmt);
1831 CALL_EXPR_STATIC_CHAIN (exp) = gimple_call_chain (stmt);
1833 for (i = 0; i < gimple_call_num_args (stmt); i++)
1835 tree arg = gimple_call_arg (stmt, i);
1836 gimple def;
1837 /* TER addresses into arguments of builtin functions so we have a
1838 chance to infer more correct alignment information. See PR39954. */
1839 if (builtin_p
1840 && TREE_CODE (arg) == SSA_NAME
1841 && (def = get_gimple_for_ssa_name (arg))
1842 && gimple_assign_rhs_code (def) == ADDR_EXPR)
1843 arg = gimple_assign_rhs1 (def);
1844 CALL_EXPR_ARG (exp, i) = arg;
1847 if (gimple_has_side_effects (stmt))
1848 TREE_SIDE_EFFECTS (exp) = 1;
1850 if (gimple_call_nothrow_p (stmt))
1851 TREE_NOTHROW (exp) = 1;
1853 CALL_EXPR_TAILCALL (exp) = gimple_call_tail_p (stmt);
1854 CALL_EXPR_RETURN_SLOT_OPT (exp) = gimple_call_return_slot_opt_p (stmt);
1855 if (decl
1856 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1857 && DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA)
1858 CALL_ALLOCA_FOR_VAR_P (exp) = gimple_call_alloca_for_var_p (stmt);
1859 else
1860 CALL_FROM_THUNK_P (exp) = gimple_call_from_thunk_p (stmt);
1861 CALL_CANNOT_INLINE_P (exp) = gimple_call_cannot_inline_p (stmt);
1862 CALL_EXPR_VA_ARG_PACK (exp) = gimple_call_va_arg_pack_p (stmt);
1863 SET_EXPR_LOCATION (exp, gimple_location (stmt));
1864 TREE_BLOCK (exp) = gimple_block (stmt);
1866 lhs = gimple_call_lhs (stmt);
1867 if (lhs)
1868 expand_assignment (lhs, exp, false);
1869 else
1870 expand_expr_real_1 (exp, const0_rtx, VOIDmode, EXPAND_NORMAL, NULL);
1873 /* A subroutine of expand_gimple_stmt, expanding one gimple statement
1874 STMT that doesn't require special handling for outgoing edges. That
1875 is no tailcalls and no GIMPLE_COND. */
1877 static void
1878 expand_gimple_stmt_1 (gimple stmt)
1880 tree op0;
1882 set_curr_insn_source_location (gimple_location (stmt));
1883 set_curr_insn_block (gimple_block (stmt));
1885 switch (gimple_code (stmt))
1887 case GIMPLE_GOTO:
1888 op0 = gimple_goto_dest (stmt);
1889 if (TREE_CODE (op0) == LABEL_DECL)
1890 expand_goto (op0);
1891 else
1892 expand_computed_goto (op0);
1893 break;
1894 case GIMPLE_LABEL:
1895 expand_label (gimple_label_label (stmt));
1896 break;
1897 case GIMPLE_NOP:
1898 case GIMPLE_PREDICT:
1899 break;
1900 case GIMPLE_SWITCH:
1901 expand_case (stmt);
1902 break;
1903 case GIMPLE_ASM:
1904 expand_asm_stmt (stmt);
1905 break;
1906 case GIMPLE_CALL:
1907 expand_call_stmt (stmt);
1908 break;
1910 case GIMPLE_RETURN:
1911 op0 = gimple_return_retval (stmt);
1913 if (op0 && op0 != error_mark_node)
1915 tree result = DECL_RESULT (current_function_decl);
1917 /* If we are not returning the current function's RESULT_DECL,
1918 build an assignment to it. */
1919 if (op0 != result)
1921 /* I believe that a function's RESULT_DECL is unique. */
1922 gcc_assert (TREE_CODE (op0) != RESULT_DECL);
1924 /* ??? We'd like to use simply expand_assignment here,
1925 but this fails if the value is of BLKmode but the return
1926 decl is a register. expand_return has special handling
1927 for this combination, which eventually should move
1928 to common code. See comments there. Until then, let's
1929 build a modify expression :-/ */
1930 op0 = build2 (MODIFY_EXPR, TREE_TYPE (result),
1931 result, op0);
1934 if (!op0)
1935 expand_null_return ();
1936 else
1937 expand_return (op0);
1938 break;
1940 case GIMPLE_ASSIGN:
1942 tree lhs = gimple_assign_lhs (stmt);
1944 /* Tree expand used to fiddle with |= and &= of two bitfield
1945 COMPONENT_REFs here. This can't happen with gimple, the LHS
1946 of binary assigns must be a gimple reg. */
1948 if (TREE_CODE (lhs) != SSA_NAME
1949 || get_gimple_rhs_class (gimple_expr_code (stmt))
1950 == GIMPLE_SINGLE_RHS)
1952 tree rhs = gimple_assign_rhs1 (stmt);
1953 gcc_assert (get_gimple_rhs_class (gimple_expr_code (stmt))
1954 == GIMPLE_SINGLE_RHS);
1955 if (gimple_has_location (stmt) && CAN_HAVE_LOCATION_P (rhs))
1956 SET_EXPR_LOCATION (rhs, gimple_location (stmt));
1957 expand_assignment (lhs, rhs,
1958 gimple_assign_nontemporal_move_p (stmt));
1960 else
1962 rtx target, temp;
1963 bool nontemporal = gimple_assign_nontemporal_move_p (stmt);
1964 struct separate_ops ops;
1965 bool promoted = false;
1967 target = expand_expr (lhs, NULL_RTX, VOIDmode, EXPAND_WRITE);
1968 if (GET_CODE (target) == SUBREG && SUBREG_PROMOTED_VAR_P (target))
1969 promoted = true;
1971 ops.code = gimple_assign_rhs_code (stmt);
1972 ops.type = TREE_TYPE (lhs);
1973 switch (get_gimple_rhs_class (gimple_expr_code (stmt)))
1975 case GIMPLE_TERNARY_RHS:
1976 ops.op2 = gimple_assign_rhs3 (stmt);
1977 /* Fallthru */
1978 case GIMPLE_BINARY_RHS:
1979 ops.op1 = gimple_assign_rhs2 (stmt);
1980 /* Fallthru */
1981 case GIMPLE_UNARY_RHS:
1982 ops.op0 = gimple_assign_rhs1 (stmt);
1983 break;
1984 default:
1985 gcc_unreachable ();
1987 ops.location = gimple_location (stmt);
1989 /* If we want to use a nontemporal store, force the value to
1990 register first. If we store into a promoted register,
1991 don't directly expand to target. */
1992 temp = nontemporal || promoted ? NULL_RTX : target;
1993 temp = expand_expr_real_2 (&ops, temp, GET_MODE (target),
1994 EXPAND_NORMAL);
1996 if (temp == target)
1998 else if (promoted)
2000 int unsignedp = SUBREG_PROMOTED_UNSIGNED_P (target);
2001 /* If TEMP is a VOIDmode constant, use convert_modes to make
2002 sure that we properly convert it. */
2003 if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode)
2005 temp = convert_modes (GET_MODE (target),
2006 TYPE_MODE (ops.type),
2007 temp, unsignedp);
2008 temp = convert_modes (GET_MODE (SUBREG_REG (target)),
2009 GET_MODE (target), temp, unsignedp);
2012 convert_move (SUBREG_REG (target), temp, unsignedp);
2014 else if (nontemporal && emit_storent_insn (target, temp))
2016 else
2018 temp = force_operand (temp, target);
2019 if (temp != target)
2020 emit_move_insn (target, temp);
2024 break;
2026 default:
2027 gcc_unreachable ();
2031 /* Expand one gimple statement STMT and return the last RTL instruction
2032 before any of the newly generated ones.
2034 In addition to generating the necessary RTL instructions this also
2035 sets REG_EH_REGION notes if necessary and sets the current source
2036 location for diagnostics. */
2038 static rtx
2039 expand_gimple_stmt (gimple stmt)
2041 location_t saved_location = input_location;
2042 rtx last = get_last_insn ();
2043 int lp_nr;
2045 gcc_assert (cfun);
2047 /* We need to save and restore the current source location so that errors
2048 discovered during expansion are emitted with the right location. But
2049 it would be better if the diagnostic routines used the source location
2050 embedded in the tree nodes rather than globals. */
2051 if (gimple_has_location (stmt))
2052 input_location = gimple_location (stmt);
2054 expand_gimple_stmt_1 (stmt);
2056 /* Free any temporaries used to evaluate this statement. */
2057 free_temp_slots ();
2059 input_location = saved_location;
2061 /* Mark all insns that may trap. */
2062 lp_nr = lookup_stmt_eh_lp (stmt);
2063 if (lp_nr)
2065 rtx insn;
2066 for (insn = next_real_insn (last); insn;
2067 insn = next_real_insn (insn))
2069 if (! find_reg_note (insn, REG_EH_REGION, NULL_RTX)
2070 /* If we want exceptions for non-call insns, any
2071 may_trap_p instruction may throw. */
2072 && GET_CODE (PATTERN (insn)) != CLOBBER
2073 && GET_CODE (PATTERN (insn)) != USE
2074 && insn_could_throw_p (insn))
2075 make_reg_eh_region_note (insn, 0, lp_nr);
2079 return last;
2082 /* A subroutine of expand_gimple_basic_block. Expand one GIMPLE_CALL
2083 that has CALL_EXPR_TAILCALL set. Returns non-null if we actually
2084 generated a tail call (something that might be denied by the ABI
2085 rules governing the call; see calls.c).
2087 Sets CAN_FALLTHRU if we generated a *conditional* tail call, and
2088 can still reach the rest of BB. The case here is __builtin_sqrt,
2089 where the NaN result goes through the external function (with a
2090 tailcall) and the normal result happens via a sqrt instruction. */
2092 static basic_block
2093 expand_gimple_tailcall (basic_block bb, gimple stmt, bool *can_fallthru)
2095 rtx last2, last;
2096 edge e;
2097 edge_iterator ei;
2098 int probability;
2099 gcov_type count;
2101 last2 = last = expand_gimple_stmt (stmt);
2103 for (last = NEXT_INSN (last); last; last = NEXT_INSN (last))
2104 if (CALL_P (last) && SIBLING_CALL_P (last))
2105 goto found;
2107 maybe_dump_rtl_for_gimple_stmt (stmt, last2);
2109 *can_fallthru = true;
2110 return NULL;
2112 found:
2113 /* ??? Wouldn't it be better to just reset any pending stack adjust?
2114 Any instructions emitted here are about to be deleted. */
2115 do_pending_stack_adjust ();
2117 /* Remove any non-eh, non-abnormal edges that don't go to exit. */
2118 /* ??? I.e. the fallthrough edge. HOWEVER! If there were to be
2119 EH or abnormal edges, we shouldn't have created a tail call in
2120 the first place. So it seems to me we should just be removing
2121 all edges here, or redirecting the existing fallthru edge to
2122 the exit block. */
2124 probability = 0;
2125 count = 0;
2127 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
2129 if (!(e->flags & (EDGE_ABNORMAL | EDGE_EH)))
2131 if (e->dest != EXIT_BLOCK_PTR)
2133 e->dest->count -= e->count;
2134 e->dest->frequency -= EDGE_FREQUENCY (e);
2135 if (e->dest->count < 0)
2136 e->dest->count = 0;
2137 if (e->dest->frequency < 0)
2138 e->dest->frequency = 0;
2140 count += e->count;
2141 probability += e->probability;
2142 remove_edge (e);
2144 else
2145 ei_next (&ei);
2148 /* This is somewhat ugly: the call_expr expander often emits instructions
2149 after the sibcall (to perform the function return). These confuse the
2150 find_many_sub_basic_blocks code, so we need to get rid of these. */
2151 last = NEXT_INSN (last);
2152 gcc_assert (BARRIER_P (last));
2154 *can_fallthru = false;
2155 while (NEXT_INSN (last))
2157 /* For instance an sqrt builtin expander expands if with
2158 sibcall in the then and label for `else`. */
2159 if (LABEL_P (NEXT_INSN (last)))
2161 *can_fallthru = true;
2162 break;
2164 delete_insn (NEXT_INSN (last));
2167 e = make_edge (bb, EXIT_BLOCK_PTR, EDGE_ABNORMAL | EDGE_SIBCALL);
2168 e->probability += probability;
2169 e->count += count;
2170 BB_END (bb) = last;
2171 update_bb_for_insn (bb);
2173 if (NEXT_INSN (last))
2175 bb = create_basic_block (NEXT_INSN (last), get_last_insn (), bb);
2177 last = BB_END (bb);
2178 if (BARRIER_P (last))
2179 BB_END (bb) = PREV_INSN (last);
2182 maybe_dump_rtl_for_gimple_stmt (stmt, last2);
2184 return bb;
2187 /* Return the difference between the floor and the truncated result of
2188 a signed division by OP1 with remainder MOD. */
2189 static rtx
2190 floor_sdiv_adjust (enum machine_mode mode, rtx mod, rtx op1)
2192 /* (mod != 0 ? (op1 / mod < 0 ? -1 : 0) : 0) */
2193 return gen_rtx_IF_THEN_ELSE
2194 (mode, gen_rtx_NE (BImode, mod, const0_rtx),
2195 gen_rtx_IF_THEN_ELSE
2196 (mode, gen_rtx_LT (BImode,
2197 gen_rtx_DIV (mode, op1, mod),
2198 const0_rtx),
2199 constm1_rtx, const0_rtx),
2200 const0_rtx);
2203 /* Return the difference between the ceil and the truncated result of
2204 a signed division by OP1 with remainder MOD. */
2205 static rtx
2206 ceil_sdiv_adjust (enum machine_mode mode, rtx mod, rtx op1)
2208 /* (mod != 0 ? (op1 / mod > 0 ? 1 : 0) : 0) */
2209 return gen_rtx_IF_THEN_ELSE
2210 (mode, gen_rtx_NE (BImode, mod, const0_rtx),
2211 gen_rtx_IF_THEN_ELSE
2212 (mode, gen_rtx_GT (BImode,
2213 gen_rtx_DIV (mode, op1, mod),
2214 const0_rtx),
2215 const1_rtx, const0_rtx),
2216 const0_rtx);
2219 /* Return the difference between the ceil and the truncated result of
2220 an unsigned division by OP1 with remainder MOD. */
2221 static rtx
2222 ceil_udiv_adjust (enum machine_mode mode, rtx mod, rtx op1 ATTRIBUTE_UNUSED)
2224 /* (mod != 0 ? 1 : 0) */
2225 return gen_rtx_IF_THEN_ELSE
2226 (mode, gen_rtx_NE (BImode, mod, const0_rtx),
2227 const1_rtx, const0_rtx);
2230 /* Return the difference between the rounded and the truncated result
2231 of a signed division by OP1 with remainder MOD. Halfway cases are
2232 rounded away from zero, rather than to the nearest even number. */
2233 static rtx
2234 round_sdiv_adjust (enum machine_mode mode, rtx mod, rtx op1)
2236 /* (abs (mod) >= abs (op1) - abs (mod)
2237 ? (op1 / mod > 0 ? 1 : -1)
2238 : 0) */
2239 return gen_rtx_IF_THEN_ELSE
2240 (mode, gen_rtx_GE (BImode, gen_rtx_ABS (mode, mod),
2241 gen_rtx_MINUS (mode,
2242 gen_rtx_ABS (mode, op1),
2243 gen_rtx_ABS (mode, mod))),
2244 gen_rtx_IF_THEN_ELSE
2245 (mode, gen_rtx_GT (BImode,
2246 gen_rtx_DIV (mode, op1, mod),
2247 const0_rtx),
2248 const1_rtx, constm1_rtx),
2249 const0_rtx);
2252 /* Return the difference between the rounded and the truncated result
2253 of a unsigned division by OP1 with remainder MOD. Halfway cases
2254 are rounded away from zero, rather than to the nearest even
2255 number. */
2256 static rtx
2257 round_udiv_adjust (enum machine_mode mode, rtx mod, rtx op1)
2259 /* (mod >= op1 - mod ? 1 : 0) */
2260 return gen_rtx_IF_THEN_ELSE
2261 (mode, gen_rtx_GE (BImode, mod,
2262 gen_rtx_MINUS (mode, op1, mod)),
2263 const1_rtx, const0_rtx);
2266 /* Convert X to MODE, that must be Pmode or ptr_mode, without emitting
2267 any rtl. */
2269 static rtx
2270 convert_debug_memory_address (enum machine_mode mode, rtx x,
2271 addr_space_t as)
2273 enum machine_mode xmode = GET_MODE (x);
2275 #ifndef POINTERS_EXTEND_UNSIGNED
2276 gcc_assert (mode == Pmode
2277 || mode == targetm.addr_space.address_mode (as));
2278 gcc_assert (xmode == mode || xmode == VOIDmode);
2279 #else
2280 rtx temp;
2281 enum machine_mode address_mode = targetm.addr_space.address_mode (as);
2282 enum machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
2284 gcc_assert (mode == address_mode || mode == pointer_mode);
2286 if (GET_MODE (x) == mode || GET_MODE (x) == VOIDmode)
2287 return x;
2289 if (GET_MODE_BITSIZE (mode) < GET_MODE_BITSIZE (xmode))
2290 x = simplify_gen_subreg (mode, x, xmode,
2291 subreg_lowpart_offset
2292 (mode, xmode));
2293 else if (POINTERS_EXTEND_UNSIGNED > 0)
2294 x = gen_rtx_ZERO_EXTEND (mode, x);
2295 else if (!POINTERS_EXTEND_UNSIGNED)
2296 x = gen_rtx_SIGN_EXTEND (mode, x);
2297 else
2299 switch (GET_CODE (x))
2301 case SUBREG:
2302 if ((SUBREG_PROMOTED_VAR_P (x)
2303 || (REG_P (SUBREG_REG (x)) && REG_POINTER (SUBREG_REG (x)))
2304 || (GET_CODE (SUBREG_REG (x)) == PLUS
2305 && REG_P (XEXP (SUBREG_REG (x), 0))
2306 && REG_POINTER (XEXP (SUBREG_REG (x), 0))
2307 && CONST_INT_P (XEXP (SUBREG_REG (x), 1))))
2308 && GET_MODE (SUBREG_REG (x)) == mode)
2309 return SUBREG_REG (x);
2310 break;
2311 case LABEL_REF:
2312 temp = gen_rtx_LABEL_REF (mode, XEXP (x, 0));
2313 LABEL_REF_NONLOCAL_P (temp) = LABEL_REF_NONLOCAL_P (x);
2314 return temp;
2315 case SYMBOL_REF:
2316 temp = shallow_copy_rtx (x);
2317 PUT_MODE (temp, mode);
2318 return temp;
2319 case CONST:
2320 temp = convert_debug_memory_address (mode, XEXP (x, 0), as);
2321 if (temp)
2322 temp = gen_rtx_CONST (mode, temp);
2323 return temp;
2324 case PLUS:
2325 case MINUS:
2326 if (CONST_INT_P (XEXP (x, 1)))
2328 temp = convert_debug_memory_address (mode, XEXP (x, 0), as);
2329 if (temp)
2330 return gen_rtx_fmt_ee (GET_CODE (x), mode, temp, XEXP (x, 1));
2332 break;
2333 default:
2334 break;
2336 /* Don't know how to express ptr_extend as operation in debug info. */
2337 return NULL;
2339 #endif /* POINTERS_EXTEND_UNSIGNED */
2341 return x;
2344 /* Return an RTX equivalent to the value of the tree expression
2345 EXP. */
2347 static rtx
2348 expand_debug_expr (tree exp)
2350 rtx op0 = NULL_RTX, op1 = NULL_RTX, op2 = NULL_RTX;
2351 enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
2352 enum machine_mode inner_mode = VOIDmode;
2353 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
2354 addr_space_t as;
2356 switch (TREE_CODE_CLASS (TREE_CODE (exp)))
2358 case tcc_expression:
2359 switch (TREE_CODE (exp))
2361 case COND_EXPR:
2362 case DOT_PROD_EXPR:
2363 case WIDEN_MULT_PLUS_EXPR:
2364 case WIDEN_MULT_MINUS_EXPR:
2365 case FMA_EXPR:
2366 goto ternary;
2368 case TRUTH_ANDIF_EXPR:
2369 case TRUTH_ORIF_EXPR:
2370 case TRUTH_AND_EXPR:
2371 case TRUTH_OR_EXPR:
2372 case TRUTH_XOR_EXPR:
2373 goto binary;
2375 case TRUTH_NOT_EXPR:
2376 goto unary;
2378 default:
2379 break;
2381 break;
2383 ternary:
2384 op2 = expand_debug_expr (TREE_OPERAND (exp, 2));
2385 if (!op2)
2386 return NULL_RTX;
2387 /* Fall through. */
2389 binary:
2390 case tcc_binary:
2391 case tcc_comparison:
2392 op1 = expand_debug_expr (TREE_OPERAND (exp, 1));
2393 if (!op1)
2394 return NULL_RTX;
2395 /* Fall through. */
2397 unary:
2398 case tcc_unary:
2399 inner_mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)));
2400 op0 = expand_debug_expr (TREE_OPERAND (exp, 0));
2401 if (!op0)
2402 return NULL_RTX;
2403 break;
2405 case tcc_type:
2406 case tcc_statement:
2407 gcc_unreachable ();
2409 case tcc_constant:
2410 case tcc_exceptional:
2411 case tcc_declaration:
2412 case tcc_reference:
2413 case tcc_vl_exp:
2414 break;
2417 switch (TREE_CODE (exp))
2419 case STRING_CST:
2420 if (!lookup_constant_def (exp))
2422 if (strlen (TREE_STRING_POINTER (exp)) + 1
2423 != (size_t) TREE_STRING_LENGTH (exp))
2424 return NULL_RTX;
2425 op0 = gen_rtx_CONST_STRING (Pmode, TREE_STRING_POINTER (exp));
2426 op0 = gen_rtx_MEM (BLKmode, op0);
2427 set_mem_attributes (op0, exp, 0);
2428 return op0;
2430 /* Fall through... */
2432 case INTEGER_CST:
2433 case REAL_CST:
2434 case FIXED_CST:
2435 op0 = expand_expr (exp, NULL_RTX, mode, EXPAND_INITIALIZER);
2436 return op0;
2438 case COMPLEX_CST:
2439 gcc_assert (COMPLEX_MODE_P (mode));
2440 op0 = expand_debug_expr (TREE_REALPART (exp));
2441 op1 = expand_debug_expr (TREE_IMAGPART (exp));
2442 return gen_rtx_CONCAT (mode, op0, op1);
2444 case DEBUG_EXPR_DECL:
2445 op0 = DECL_RTL_IF_SET (exp);
2447 if (op0)
2448 return op0;
2450 op0 = gen_rtx_DEBUG_EXPR (mode);
2451 DEBUG_EXPR_TREE_DECL (op0) = exp;
2452 SET_DECL_RTL (exp, op0);
2454 return op0;
2456 case VAR_DECL:
2457 case PARM_DECL:
2458 case FUNCTION_DECL:
2459 case LABEL_DECL:
2460 case CONST_DECL:
2461 case RESULT_DECL:
2462 op0 = DECL_RTL_IF_SET (exp);
2464 /* This decl was probably optimized away. */
2465 if (!op0)
2467 if (TREE_CODE (exp) != VAR_DECL
2468 || DECL_EXTERNAL (exp)
2469 || !TREE_STATIC (exp)
2470 || !DECL_NAME (exp)
2471 || DECL_HARD_REGISTER (exp)
2472 || DECL_IN_CONSTANT_POOL (exp)
2473 || mode == VOIDmode)
2474 return NULL;
2476 op0 = make_decl_rtl_for_debug (exp);
2477 if (!MEM_P (op0)
2478 || GET_CODE (XEXP (op0, 0)) != SYMBOL_REF
2479 || SYMBOL_REF_DECL (XEXP (op0, 0)) != exp)
2480 return NULL;
2482 else
2483 op0 = copy_rtx (op0);
2485 if (GET_MODE (op0) == BLKmode
2486 /* If op0 is not BLKmode, but BLKmode is, adjust_mode
2487 below would ICE. While it is likely a FE bug,
2488 try to be robust here. See PR43166. */
2489 || mode == BLKmode
2490 || (mode == VOIDmode && GET_MODE (op0) != VOIDmode))
2492 gcc_assert (MEM_P (op0));
2493 op0 = adjust_address_nv (op0, mode, 0);
2494 return op0;
2497 /* Fall through. */
2499 adjust_mode:
2500 case PAREN_EXPR:
2501 case NOP_EXPR:
2502 case CONVERT_EXPR:
2504 inner_mode = GET_MODE (op0);
2506 if (mode == inner_mode)
2507 return op0;
2509 if (inner_mode == VOIDmode)
2511 if (TREE_CODE (exp) == SSA_NAME)
2512 inner_mode = TYPE_MODE (TREE_TYPE (exp));
2513 else
2514 inner_mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)));
2515 if (mode == inner_mode)
2516 return op0;
2519 if (FLOAT_MODE_P (mode) && FLOAT_MODE_P (inner_mode))
2521 if (GET_MODE_BITSIZE (mode) == GET_MODE_BITSIZE (inner_mode))
2522 op0 = simplify_gen_subreg (mode, op0, inner_mode, 0);
2523 else if (GET_MODE_BITSIZE (mode) < GET_MODE_BITSIZE (inner_mode))
2524 op0 = simplify_gen_unary (FLOAT_TRUNCATE, mode, op0, inner_mode);
2525 else
2526 op0 = simplify_gen_unary (FLOAT_EXTEND, mode, op0, inner_mode);
2528 else if (FLOAT_MODE_P (mode))
2530 gcc_assert (TREE_CODE (exp) != SSA_NAME);
2531 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))))
2532 op0 = simplify_gen_unary (UNSIGNED_FLOAT, mode, op0, inner_mode);
2533 else
2534 op0 = simplify_gen_unary (FLOAT, mode, op0, inner_mode);
2536 else if (FLOAT_MODE_P (inner_mode))
2538 if (unsignedp)
2539 op0 = simplify_gen_unary (UNSIGNED_FIX, mode, op0, inner_mode);
2540 else
2541 op0 = simplify_gen_unary (FIX, mode, op0, inner_mode);
2543 else if (CONSTANT_P (op0)
2544 || GET_MODE_BITSIZE (mode) <= GET_MODE_BITSIZE (inner_mode))
2545 op0 = simplify_gen_subreg (mode, op0, inner_mode,
2546 subreg_lowpart_offset (mode,
2547 inner_mode));
2548 else if (TREE_CODE_CLASS (TREE_CODE (exp)) == tcc_unary
2549 ? TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0)))
2550 : unsignedp)
2551 op0 = simplify_gen_unary (ZERO_EXTEND, mode, op0, inner_mode);
2552 else
2553 op0 = simplify_gen_unary (SIGN_EXTEND, mode, op0, inner_mode);
2555 return op0;
2558 case MEM_REF:
2559 if (!is_gimple_mem_ref_addr (TREE_OPERAND (exp, 0)))
2561 tree newexp = fold_binary (MEM_REF, TREE_TYPE (exp),
2562 TREE_OPERAND (exp, 0),
2563 TREE_OPERAND (exp, 1));
2564 if (newexp)
2565 return expand_debug_expr (newexp);
2567 /* FALLTHROUGH */
2568 case INDIRECT_REF:
2569 op0 = expand_debug_expr (TREE_OPERAND (exp, 0));
2570 if (!op0)
2571 return NULL;
2573 if (TREE_CODE (exp) == MEM_REF)
2575 if (GET_CODE (op0) == DEBUG_IMPLICIT_PTR
2576 || (GET_CODE (op0) == PLUS
2577 && GET_CODE (XEXP (op0, 0)) == DEBUG_IMPLICIT_PTR))
2578 /* (mem (debug_implicit_ptr)) might confuse aliasing.
2579 Instead just use get_inner_reference. */
2580 goto component_ref;
2582 op1 = expand_debug_expr (TREE_OPERAND (exp, 1));
2583 if (!op1 || !CONST_INT_P (op1))
2584 return NULL;
2586 op0 = plus_constant (op0, INTVAL (op1));
2589 if (POINTER_TYPE_P (TREE_TYPE (exp)))
2590 as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)));
2591 else
2592 as = ADDR_SPACE_GENERIC;
2594 op0 = convert_debug_memory_address (targetm.addr_space.address_mode (as),
2595 op0, as);
2596 if (op0 == NULL_RTX)
2597 return NULL;
2599 op0 = gen_rtx_MEM (mode, op0);
2600 set_mem_attributes (op0, exp, 0);
2601 if (TREE_CODE (exp) == MEM_REF
2602 && !is_gimple_mem_ref_addr (TREE_OPERAND (exp, 0)))
2603 set_mem_expr (op0, NULL_TREE);
2604 set_mem_addr_space (op0, as);
2606 return op0;
2608 case TARGET_MEM_REF:
2609 if (TREE_CODE (TMR_BASE (exp)) == ADDR_EXPR
2610 && !DECL_RTL_SET_P (TREE_OPERAND (TMR_BASE (exp), 0)))
2611 return NULL;
2613 op0 = expand_debug_expr
2614 (tree_mem_ref_addr (build_pointer_type (TREE_TYPE (exp)), exp));
2615 if (!op0)
2616 return NULL;
2618 if (POINTER_TYPE_P (TREE_TYPE (exp)))
2619 as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)));
2620 else
2621 as = ADDR_SPACE_GENERIC;
2623 op0 = convert_debug_memory_address (targetm.addr_space.address_mode (as),
2624 op0, as);
2625 if (op0 == NULL_RTX)
2626 return NULL;
2628 op0 = gen_rtx_MEM (mode, op0);
2630 set_mem_attributes (op0, exp, 0);
2631 set_mem_addr_space (op0, as);
2633 return op0;
2635 component_ref:
2636 case ARRAY_REF:
2637 case ARRAY_RANGE_REF:
2638 case COMPONENT_REF:
2639 case BIT_FIELD_REF:
2640 case REALPART_EXPR:
2641 case IMAGPART_EXPR:
2642 case VIEW_CONVERT_EXPR:
2644 enum machine_mode mode1;
2645 HOST_WIDE_INT bitsize, bitpos;
2646 tree offset;
2647 int volatilep = 0;
2648 tree tem = get_inner_reference (exp, &bitsize, &bitpos, &offset,
2649 &mode1, &unsignedp, &volatilep, false);
2650 rtx orig_op0;
2652 if (bitsize == 0)
2653 return NULL;
2655 orig_op0 = op0 = expand_debug_expr (tem);
2657 if (!op0)
2658 return NULL;
2660 if (offset)
2662 enum machine_mode addrmode, offmode;
2664 if (!MEM_P (op0))
2665 return NULL;
2667 op0 = XEXP (op0, 0);
2668 addrmode = GET_MODE (op0);
2669 if (addrmode == VOIDmode)
2670 addrmode = Pmode;
2672 op1 = expand_debug_expr (offset);
2673 if (!op1)
2674 return NULL;
2676 offmode = GET_MODE (op1);
2677 if (offmode == VOIDmode)
2678 offmode = TYPE_MODE (TREE_TYPE (offset));
2680 if (addrmode != offmode)
2681 op1 = simplify_gen_subreg (addrmode, op1, offmode,
2682 subreg_lowpart_offset (addrmode,
2683 offmode));
2685 /* Don't use offset_address here, we don't need a
2686 recognizable address, and we don't want to generate
2687 code. */
2688 op0 = gen_rtx_MEM (mode, simplify_gen_binary (PLUS, addrmode,
2689 op0, op1));
2692 if (MEM_P (op0))
2694 if (mode1 == VOIDmode)
2695 /* Bitfield. */
2696 mode1 = smallest_mode_for_size (bitsize, MODE_INT);
2697 if (bitpos >= BITS_PER_UNIT)
2699 op0 = adjust_address_nv (op0, mode1, bitpos / BITS_PER_UNIT);
2700 bitpos %= BITS_PER_UNIT;
2702 else if (bitpos < 0)
2704 HOST_WIDE_INT units
2705 = (-bitpos + BITS_PER_UNIT - 1) / BITS_PER_UNIT;
2706 op0 = adjust_address_nv (op0, mode1, units);
2707 bitpos += units * BITS_PER_UNIT;
2709 else if (bitpos == 0 && bitsize == GET_MODE_BITSIZE (mode))
2710 op0 = adjust_address_nv (op0, mode, 0);
2711 else if (GET_MODE (op0) != mode1)
2712 op0 = adjust_address_nv (op0, mode1, 0);
2713 else
2714 op0 = copy_rtx (op0);
2715 if (op0 == orig_op0)
2716 op0 = shallow_copy_rtx (op0);
2717 set_mem_attributes (op0, exp, 0);
2720 if (bitpos == 0 && mode == GET_MODE (op0))
2721 return op0;
2723 if (bitpos < 0)
2724 return NULL;
2726 if (GET_MODE (op0) == BLKmode)
2727 return NULL;
2729 if ((bitpos % BITS_PER_UNIT) == 0
2730 && bitsize == GET_MODE_BITSIZE (mode1))
2732 enum machine_mode opmode = GET_MODE (op0);
2734 if (opmode == VOIDmode)
2735 opmode = TYPE_MODE (TREE_TYPE (tem));
2737 /* This condition may hold if we're expanding the address
2738 right past the end of an array that turned out not to
2739 be addressable (i.e., the address was only computed in
2740 debug stmts). The gen_subreg below would rightfully
2741 crash, and the address doesn't really exist, so just
2742 drop it. */
2743 if (bitpos >= GET_MODE_BITSIZE (opmode))
2744 return NULL;
2746 if ((bitpos % GET_MODE_BITSIZE (mode)) == 0)
2747 return simplify_gen_subreg (mode, op0, opmode,
2748 bitpos / BITS_PER_UNIT);
2751 return simplify_gen_ternary (SCALAR_INT_MODE_P (GET_MODE (op0))
2752 && TYPE_UNSIGNED (TREE_TYPE (exp))
2753 ? SIGN_EXTRACT
2754 : ZERO_EXTRACT, mode,
2755 GET_MODE (op0) != VOIDmode
2756 ? GET_MODE (op0)
2757 : TYPE_MODE (TREE_TYPE (tem)),
2758 op0, GEN_INT (bitsize), GEN_INT (bitpos));
2761 case ABS_EXPR:
2762 return simplify_gen_unary (ABS, mode, op0, mode);
2764 case NEGATE_EXPR:
2765 return simplify_gen_unary (NEG, mode, op0, mode);
2767 case BIT_NOT_EXPR:
2768 return simplify_gen_unary (NOT, mode, op0, mode);
2770 case FLOAT_EXPR:
2771 return simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
2772 0)))
2773 ? UNSIGNED_FLOAT : FLOAT, mode, op0,
2774 inner_mode);
2776 case FIX_TRUNC_EXPR:
2777 return simplify_gen_unary (unsignedp ? UNSIGNED_FIX : FIX, mode, op0,
2778 inner_mode);
2780 case POINTER_PLUS_EXPR:
2781 /* For the rare target where pointers are not the same size as
2782 size_t, we need to check for mis-matched modes and correct
2783 the addend. */
2784 if (op0 && op1
2785 && GET_MODE (op0) != VOIDmode && GET_MODE (op1) != VOIDmode
2786 && GET_MODE (op0) != GET_MODE (op1))
2788 if (GET_MODE_BITSIZE (GET_MODE (op0)) < GET_MODE_BITSIZE (GET_MODE (op1)))
2789 op1 = simplify_gen_unary (TRUNCATE, GET_MODE (op0), op1,
2790 GET_MODE (op1));
2791 else
2792 /* We always sign-extend, regardless of the signedness of
2793 the operand, because the operand is always unsigned
2794 here even if the original C expression is signed. */
2795 op1 = simplify_gen_unary (SIGN_EXTEND, GET_MODE (op0), op1,
2796 GET_MODE (op1));
2798 /* Fall through. */
2799 case PLUS_EXPR:
2800 return simplify_gen_binary (PLUS, mode, op0, op1);
2802 case MINUS_EXPR:
2803 return simplify_gen_binary (MINUS, mode, op0, op1);
2805 case MULT_EXPR:
2806 return simplify_gen_binary (MULT, mode, op0, op1);
2808 case RDIV_EXPR:
2809 case TRUNC_DIV_EXPR:
2810 case EXACT_DIV_EXPR:
2811 if (unsignedp)
2812 return simplify_gen_binary (UDIV, mode, op0, op1);
2813 else
2814 return simplify_gen_binary (DIV, mode, op0, op1);
2816 case TRUNC_MOD_EXPR:
2817 return simplify_gen_binary (unsignedp ? UMOD : MOD, mode, op0, op1);
2819 case FLOOR_DIV_EXPR:
2820 if (unsignedp)
2821 return simplify_gen_binary (UDIV, mode, op0, op1);
2822 else
2824 rtx div = simplify_gen_binary (DIV, mode, op0, op1);
2825 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
2826 rtx adj = floor_sdiv_adjust (mode, mod, op1);
2827 return simplify_gen_binary (PLUS, mode, div, adj);
2830 case FLOOR_MOD_EXPR:
2831 if (unsignedp)
2832 return simplify_gen_binary (UMOD, mode, op0, op1);
2833 else
2835 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
2836 rtx adj = floor_sdiv_adjust (mode, mod, op1);
2837 adj = simplify_gen_unary (NEG, mode,
2838 simplify_gen_binary (MULT, mode, adj, op1),
2839 mode);
2840 return simplify_gen_binary (PLUS, mode, mod, adj);
2843 case CEIL_DIV_EXPR:
2844 if (unsignedp)
2846 rtx div = simplify_gen_binary (UDIV, mode, op0, op1);
2847 rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
2848 rtx adj = ceil_udiv_adjust (mode, mod, op1);
2849 return simplify_gen_binary (PLUS, mode, div, adj);
2851 else
2853 rtx div = simplify_gen_binary (DIV, mode, op0, op1);
2854 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
2855 rtx adj = ceil_sdiv_adjust (mode, mod, op1);
2856 return simplify_gen_binary (PLUS, mode, div, adj);
2859 case CEIL_MOD_EXPR:
2860 if (unsignedp)
2862 rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
2863 rtx adj = ceil_udiv_adjust (mode, mod, op1);
2864 adj = simplify_gen_unary (NEG, mode,
2865 simplify_gen_binary (MULT, mode, adj, op1),
2866 mode);
2867 return simplify_gen_binary (PLUS, mode, mod, adj);
2869 else
2871 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
2872 rtx adj = ceil_sdiv_adjust (mode, mod, op1);
2873 adj = simplify_gen_unary (NEG, mode,
2874 simplify_gen_binary (MULT, mode, adj, op1),
2875 mode);
2876 return simplify_gen_binary (PLUS, mode, mod, adj);
2879 case ROUND_DIV_EXPR:
2880 if (unsignedp)
2882 rtx div = simplify_gen_binary (UDIV, mode, op0, op1);
2883 rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
2884 rtx adj = round_udiv_adjust (mode, mod, op1);
2885 return simplify_gen_binary (PLUS, mode, div, adj);
2887 else
2889 rtx div = simplify_gen_binary (DIV, mode, op0, op1);
2890 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
2891 rtx adj = round_sdiv_adjust (mode, mod, op1);
2892 return simplify_gen_binary (PLUS, mode, div, adj);
2895 case ROUND_MOD_EXPR:
2896 if (unsignedp)
2898 rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
2899 rtx adj = round_udiv_adjust (mode, mod, op1);
2900 adj = simplify_gen_unary (NEG, mode,
2901 simplify_gen_binary (MULT, mode, adj, op1),
2902 mode);
2903 return simplify_gen_binary (PLUS, mode, mod, adj);
2905 else
2907 rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
2908 rtx adj = round_sdiv_adjust (mode, mod, op1);
2909 adj = simplify_gen_unary (NEG, mode,
2910 simplify_gen_binary (MULT, mode, adj, op1),
2911 mode);
2912 return simplify_gen_binary (PLUS, mode, mod, adj);
2915 case LSHIFT_EXPR:
2916 return simplify_gen_binary (ASHIFT, mode, op0, op1);
2918 case RSHIFT_EXPR:
2919 if (unsignedp)
2920 return simplify_gen_binary (LSHIFTRT, mode, op0, op1);
2921 else
2922 return simplify_gen_binary (ASHIFTRT, mode, op0, op1);
2924 case LROTATE_EXPR:
2925 return simplify_gen_binary (ROTATE, mode, op0, op1);
2927 case RROTATE_EXPR:
2928 return simplify_gen_binary (ROTATERT, mode, op0, op1);
2930 case MIN_EXPR:
2931 return simplify_gen_binary (unsignedp ? UMIN : SMIN, mode, op0, op1);
2933 case MAX_EXPR:
2934 return simplify_gen_binary (unsignedp ? UMAX : SMAX, mode, op0, op1);
2936 case BIT_AND_EXPR:
2937 case TRUTH_AND_EXPR:
2938 return simplify_gen_binary (AND, mode, op0, op1);
2940 case BIT_IOR_EXPR:
2941 case TRUTH_OR_EXPR:
2942 return simplify_gen_binary (IOR, mode, op0, op1);
2944 case BIT_XOR_EXPR:
2945 case TRUTH_XOR_EXPR:
2946 return simplify_gen_binary (XOR, mode, op0, op1);
2948 case TRUTH_ANDIF_EXPR:
2949 return gen_rtx_IF_THEN_ELSE (mode, op0, op1, const0_rtx);
2951 case TRUTH_ORIF_EXPR:
2952 return gen_rtx_IF_THEN_ELSE (mode, op0, const_true_rtx, op1);
2954 case TRUTH_NOT_EXPR:
2955 return simplify_gen_relational (EQ, mode, inner_mode, op0, const0_rtx);
2957 case LT_EXPR:
2958 return simplify_gen_relational (unsignedp ? LTU : LT, mode, inner_mode,
2959 op0, op1);
2961 case LE_EXPR:
2962 return simplify_gen_relational (unsignedp ? LEU : LE, mode, inner_mode,
2963 op0, op1);
2965 case GT_EXPR:
2966 return simplify_gen_relational (unsignedp ? GTU : GT, mode, inner_mode,
2967 op0, op1);
2969 case GE_EXPR:
2970 return simplify_gen_relational (unsignedp ? GEU : GE, mode, inner_mode,
2971 op0, op1);
2973 case EQ_EXPR:
2974 return simplify_gen_relational (EQ, mode, inner_mode, op0, op1);
2976 case NE_EXPR:
2977 return simplify_gen_relational (NE, mode, inner_mode, op0, op1);
2979 case UNORDERED_EXPR:
2980 return simplify_gen_relational (UNORDERED, mode, inner_mode, op0, op1);
2982 case ORDERED_EXPR:
2983 return simplify_gen_relational (ORDERED, mode, inner_mode, op0, op1);
2985 case UNLT_EXPR:
2986 return simplify_gen_relational (UNLT, mode, inner_mode, op0, op1);
2988 case UNLE_EXPR:
2989 return simplify_gen_relational (UNLE, mode, inner_mode, op0, op1);
2991 case UNGT_EXPR:
2992 return simplify_gen_relational (UNGT, mode, inner_mode, op0, op1);
2994 case UNGE_EXPR:
2995 return simplify_gen_relational (UNGE, mode, inner_mode, op0, op1);
2997 case UNEQ_EXPR:
2998 return simplify_gen_relational (UNEQ, mode, inner_mode, op0, op1);
3000 case LTGT_EXPR:
3001 return simplify_gen_relational (LTGT, mode, inner_mode, op0, op1);
3003 case COND_EXPR:
3004 return gen_rtx_IF_THEN_ELSE (mode, op0, op1, op2);
3006 case COMPLEX_EXPR:
3007 gcc_assert (COMPLEX_MODE_P (mode));
3008 if (GET_MODE (op0) == VOIDmode)
3009 op0 = gen_rtx_CONST (GET_MODE_INNER (mode), op0);
3010 if (GET_MODE (op1) == VOIDmode)
3011 op1 = gen_rtx_CONST (GET_MODE_INNER (mode), op1);
3012 return gen_rtx_CONCAT (mode, op0, op1);
3014 case CONJ_EXPR:
3015 if (GET_CODE (op0) == CONCAT)
3016 return gen_rtx_CONCAT (mode, XEXP (op0, 0),
3017 simplify_gen_unary (NEG, GET_MODE_INNER (mode),
3018 XEXP (op0, 1),
3019 GET_MODE_INNER (mode)));
3020 else
3022 enum machine_mode imode = GET_MODE_INNER (mode);
3023 rtx re, im;
3025 if (MEM_P (op0))
3027 re = adjust_address_nv (op0, imode, 0);
3028 im = adjust_address_nv (op0, imode, GET_MODE_SIZE (imode));
3030 else
3032 enum machine_mode ifmode = int_mode_for_mode (mode);
3033 enum machine_mode ihmode = int_mode_for_mode (imode);
3034 rtx halfsize;
3035 if (ifmode == BLKmode || ihmode == BLKmode)
3036 return NULL;
3037 halfsize = GEN_INT (GET_MODE_BITSIZE (ihmode));
3038 re = op0;
3039 if (mode != ifmode)
3040 re = gen_rtx_SUBREG (ifmode, re, 0);
3041 re = gen_rtx_ZERO_EXTRACT (ihmode, re, halfsize, const0_rtx);
3042 if (imode != ihmode)
3043 re = gen_rtx_SUBREG (imode, re, 0);
3044 im = copy_rtx (op0);
3045 if (mode != ifmode)
3046 im = gen_rtx_SUBREG (ifmode, im, 0);
3047 im = gen_rtx_ZERO_EXTRACT (ihmode, im, halfsize, halfsize);
3048 if (imode != ihmode)
3049 im = gen_rtx_SUBREG (imode, im, 0);
3051 im = gen_rtx_NEG (imode, im);
3052 return gen_rtx_CONCAT (mode, re, im);
3055 case ADDR_EXPR:
3056 op0 = expand_debug_expr (TREE_OPERAND (exp, 0));
3057 if (!op0 || !MEM_P (op0))
3059 if ((TREE_CODE (TREE_OPERAND (exp, 0)) == VAR_DECL
3060 || TREE_CODE (TREE_OPERAND (exp, 0)) == PARM_DECL
3061 || TREE_CODE (TREE_OPERAND (exp, 0)) == RESULT_DECL)
3062 && !TREE_ADDRESSABLE (TREE_OPERAND (exp, 0)))
3063 return gen_rtx_DEBUG_IMPLICIT_PTR (mode, TREE_OPERAND (exp, 0));
3065 if (handled_component_p (TREE_OPERAND (exp, 0)))
3067 HOST_WIDE_INT bitoffset, bitsize, maxsize;
3068 tree decl
3069 = get_ref_base_and_extent (TREE_OPERAND (exp, 0),
3070 &bitoffset, &bitsize, &maxsize);
3071 if ((TREE_CODE (decl) == VAR_DECL
3072 || TREE_CODE (decl) == PARM_DECL
3073 || TREE_CODE (decl) == RESULT_DECL)
3074 && !TREE_ADDRESSABLE (decl)
3075 && (bitoffset % BITS_PER_UNIT) == 0
3076 && bitsize > 0
3077 && bitsize == maxsize)
3078 return plus_constant (gen_rtx_DEBUG_IMPLICIT_PTR (mode, decl),
3079 bitoffset / BITS_PER_UNIT);
3082 return NULL;
3085 as = TYPE_ADDR_SPACE (TREE_TYPE (exp));
3086 op0 = convert_debug_memory_address (mode, XEXP (op0, 0), as);
3088 return op0;
3090 case VECTOR_CST:
3091 exp = build_constructor_from_list (TREE_TYPE (exp),
3092 TREE_VECTOR_CST_ELTS (exp));
3093 /* Fall through. */
3095 case CONSTRUCTOR:
3096 if (TREE_CODE (TREE_TYPE (exp)) == VECTOR_TYPE)
3098 unsigned i;
3099 tree val;
3101 op0 = gen_rtx_CONCATN
3102 (mode, rtvec_alloc (TYPE_VECTOR_SUBPARTS (TREE_TYPE (exp))));
3104 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), i, val)
3106 op1 = expand_debug_expr (val);
3107 if (!op1)
3108 return NULL;
3109 XVECEXP (op0, 0, i) = op1;
3112 if (i < TYPE_VECTOR_SUBPARTS (TREE_TYPE (exp)))
3114 op1 = expand_debug_expr
3115 (build_zero_cst (TREE_TYPE (TREE_TYPE (exp))));
3117 if (!op1)
3118 return NULL;
3120 for (; i < TYPE_VECTOR_SUBPARTS (TREE_TYPE (exp)); i++)
3121 XVECEXP (op0, 0, i) = op1;
3124 return op0;
3126 else
3127 goto flag_unsupported;
3129 case CALL_EXPR:
3130 /* ??? Maybe handle some builtins? */
3131 return NULL;
3133 case SSA_NAME:
3135 gimple g = get_gimple_for_ssa_name (exp);
3136 if (g)
3138 op0 = expand_debug_expr (gimple_assign_rhs_to_tree (g));
3139 if (!op0)
3140 return NULL;
3142 else
3144 int part = var_to_partition (SA.map, exp);
3146 if (part == NO_PARTITION)
3148 /* If this is a reference to an incoming value of parameter
3149 that is never used in the code or where the incoming
3150 value is never used in the code, use PARM_DECL's
3151 DECL_RTL if set. */
3152 if (SSA_NAME_IS_DEFAULT_DEF (exp)
3153 && TREE_CODE (SSA_NAME_VAR (exp)) == PARM_DECL)
3155 rtx incoming = DECL_INCOMING_RTL (SSA_NAME_VAR (exp));
3156 if (incoming
3157 && GET_MODE (incoming) != BLKmode
3158 && ((REG_P (incoming) && HARD_REGISTER_P (incoming))
3159 || (MEM_P (incoming)
3160 && REG_P (XEXP (incoming, 0))
3161 && HARD_REGISTER_P (XEXP (incoming, 0)))))
3163 op0 = gen_rtx_ENTRY_VALUE (GET_MODE (incoming));
3164 ENTRY_VALUE_EXP (op0) = incoming;
3165 goto adjust_mode;
3167 if (incoming
3168 && MEM_P (incoming)
3169 && !TREE_ADDRESSABLE (SSA_NAME_VAR (exp))
3170 && GET_MODE (incoming) != BLKmode
3171 && (XEXP (incoming, 0) == virtual_incoming_args_rtx
3172 || (GET_CODE (XEXP (incoming, 0)) == PLUS
3173 && XEXP (XEXP (incoming, 0), 0)
3174 == virtual_incoming_args_rtx
3175 && CONST_INT_P (XEXP (XEXP (incoming, 0),
3176 1)))))
3178 op0 = incoming;
3179 goto adjust_mode;
3181 op0 = expand_debug_expr (SSA_NAME_VAR (exp));
3182 if (!op0)
3183 return NULL;
3184 goto adjust_mode;
3186 return NULL;
3189 gcc_assert (part >= 0 && (unsigned)part < SA.map->num_partitions);
3191 op0 = copy_rtx (SA.partition_to_pseudo[part]);
3193 goto adjust_mode;
3196 case ERROR_MARK:
3197 return NULL;
3199 /* Vector stuff. For most of the codes we don't have rtl codes. */
3200 case REALIGN_LOAD_EXPR:
3201 case REDUC_MAX_EXPR:
3202 case REDUC_MIN_EXPR:
3203 case REDUC_PLUS_EXPR:
3204 case VEC_COND_EXPR:
3205 case VEC_EXTRACT_EVEN_EXPR:
3206 case VEC_EXTRACT_ODD_EXPR:
3207 case VEC_INTERLEAVE_HIGH_EXPR:
3208 case VEC_INTERLEAVE_LOW_EXPR:
3209 case VEC_LSHIFT_EXPR:
3210 case VEC_PACK_FIX_TRUNC_EXPR:
3211 case VEC_PACK_SAT_EXPR:
3212 case VEC_PACK_TRUNC_EXPR:
3213 case VEC_RSHIFT_EXPR:
3214 case VEC_UNPACK_FLOAT_HI_EXPR:
3215 case VEC_UNPACK_FLOAT_LO_EXPR:
3216 case VEC_UNPACK_HI_EXPR:
3217 case VEC_UNPACK_LO_EXPR:
3218 case VEC_WIDEN_MULT_HI_EXPR:
3219 case VEC_WIDEN_MULT_LO_EXPR:
3220 return NULL;
3222 /* Misc codes. */
3223 case ADDR_SPACE_CONVERT_EXPR:
3224 case FIXED_CONVERT_EXPR:
3225 case OBJ_TYPE_REF:
3226 case WITH_SIZE_EXPR:
3227 return NULL;
3229 case DOT_PROD_EXPR:
3230 if (SCALAR_INT_MODE_P (GET_MODE (op0))
3231 && SCALAR_INT_MODE_P (mode))
3234 = simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
3235 0)))
3236 ? ZERO_EXTEND : SIGN_EXTEND, mode, op0,
3237 inner_mode);
3239 = simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
3240 1)))
3241 ? ZERO_EXTEND : SIGN_EXTEND, mode, op1,
3242 inner_mode);
3243 op0 = simplify_gen_binary (MULT, mode, op0, op1);
3244 return simplify_gen_binary (PLUS, mode, op0, op2);
3246 return NULL;
3248 case WIDEN_MULT_EXPR:
3249 case WIDEN_MULT_PLUS_EXPR:
3250 case WIDEN_MULT_MINUS_EXPR:
3251 if (SCALAR_INT_MODE_P (GET_MODE (op0))
3252 && SCALAR_INT_MODE_P (mode))
3254 inner_mode = GET_MODE (op0);
3255 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))))
3256 op0 = simplify_gen_unary (ZERO_EXTEND, mode, op0, inner_mode);
3257 else
3258 op0 = simplify_gen_unary (SIGN_EXTEND, mode, op0, inner_mode);
3259 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 1))))
3260 op1 = simplify_gen_unary (ZERO_EXTEND, mode, op1, inner_mode);
3261 else
3262 op1 = simplify_gen_unary (SIGN_EXTEND, mode, op1, inner_mode);
3263 op0 = simplify_gen_binary (MULT, mode, op0, op1);
3264 if (TREE_CODE (exp) == WIDEN_MULT_EXPR)
3265 return op0;
3266 else if (TREE_CODE (exp) == WIDEN_MULT_PLUS_EXPR)
3267 return simplify_gen_binary (PLUS, mode, op0, op2);
3268 else
3269 return simplify_gen_binary (MINUS, mode, op2, op0);
3271 return NULL;
3273 case WIDEN_SUM_EXPR:
3274 if (SCALAR_INT_MODE_P (GET_MODE (op0))
3275 && SCALAR_INT_MODE_P (mode))
3278 = simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
3279 0)))
3280 ? ZERO_EXTEND : SIGN_EXTEND, mode, op0,
3281 inner_mode);
3282 return simplify_gen_binary (PLUS, mode, op0, op1);
3284 return NULL;
3286 case FMA_EXPR:
3287 return simplify_gen_ternary (FMA, mode, inner_mode, op0, op1, op2);
3289 default:
3290 flag_unsupported:
3291 #ifdef ENABLE_CHECKING
3292 debug_tree (exp);
3293 gcc_unreachable ();
3294 #else
3295 return NULL;
3296 #endif
3300 /* Expand the _LOCs in debug insns. We run this after expanding all
3301 regular insns, so that any variables referenced in the function
3302 will have their DECL_RTLs set. */
3304 static void
3305 expand_debug_locations (void)
3307 rtx insn;
3308 rtx last = get_last_insn ();
3309 int save_strict_alias = flag_strict_aliasing;
3311 /* New alias sets while setting up memory attributes cause
3312 -fcompare-debug failures, even though it doesn't bring about any
3313 codegen changes. */
3314 flag_strict_aliasing = 0;
3316 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3317 if (DEBUG_INSN_P (insn))
3319 tree value = (tree)INSN_VAR_LOCATION_LOC (insn);
3320 rtx val;
3321 enum machine_mode mode;
3323 if (value == NULL_TREE)
3324 val = NULL_RTX;
3325 else
3327 val = expand_debug_expr (value);
3328 gcc_assert (last == get_last_insn ());
3331 if (!val)
3332 val = gen_rtx_UNKNOWN_VAR_LOC ();
3333 else
3335 mode = GET_MODE (INSN_VAR_LOCATION (insn));
3337 gcc_assert (mode == GET_MODE (val)
3338 || (GET_MODE (val) == VOIDmode
3339 && (CONST_INT_P (val)
3340 || GET_CODE (val) == CONST_FIXED
3341 || GET_CODE (val) == CONST_DOUBLE
3342 || GET_CODE (val) == LABEL_REF)));
3345 INSN_VAR_LOCATION_LOC (insn) = val;
3348 flag_strict_aliasing = save_strict_alias;
3351 /* Expand basic block BB from GIMPLE trees to RTL. */
3353 static basic_block
3354 expand_gimple_basic_block (basic_block bb)
3356 gimple_stmt_iterator gsi;
3357 gimple_seq stmts;
3358 gimple stmt = NULL;
3359 rtx note, last;
3360 edge e;
3361 edge_iterator ei;
3362 void **elt;
3364 if (dump_file)
3365 fprintf (dump_file, "\n;; Generating RTL for gimple basic block %d\n",
3366 bb->index);
3368 /* Note that since we are now transitioning from GIMPLE to RTL, we
3369 cannot use the gsi_*_bb() routines because they expect the basic
3370 block to be in GIMPLE, instead of RTL. Therefore, we need to
3371 access the BB sequence directly. */
3372 stmts = bb_seq (bb);
3373 bb->il.gimple = NULL;
3374 rtl_profile_for_bb (bb);
3375 init_rtl_bb_info (bb);
3376 bb->flags |= BB_RTL;
3378 /* Remove the RETURN_EXPR if we may fall though to the exit
3379 instead. */
3380 gsi = gsi_last (stmts);
3381 if (!gsi_end_p (gsi)
3382 && gimple_code (gsi_stmt (gsi)) == GIMPLE_RETURN)
3384 gimple ret_stmt = gsi_stmt (gsi);
3386 gcc_assert (single_succ_p (bb));
3387 gcc_assert (single_succ (bb) == EXIT_BLOCK_PTR);
3389 if (bb->next_bb == EXIT_BLOCK_PTR
3390 && !gimple_return_retval (ret_stmt))
3392 gsi_remove (&gsi, false);
3393 single_succ_edge (bb)->flags |= EDGE_FALLTHRU;
3397 gsi = gsi_start (stmts);
3398 if (!gsi_end_p (gsi))
3400 stmt = gsi_stmt (gsi);
3401 if (gimple_code (stmt) != GIMPLE_LABEL)
3402 stmt = NULL;
3405 elt = pointer_map_contains (lab_rtx_for_bb, bb);
3407 if (stmt || elt)
3409 last = get_last_insn ();
3411 if (stmt)
3413 expand_gimple_stmt (stmt);
3414 gsi_next (&gsi);
3417 if (elt)
3418 emit_label ((rtx) *elt);
3420 /* Java emits line number notes in the top of labels.
3421 ??? Make this go away once line number notes are obsoleted. */
3422 BB_HEAD (bb) = NEXT_INSN (last);
3423 if (NOTE_P (BB_HEAD (bb)))
3424 BB_HEAD (bb) = NEXT_INSN (BB_HEAD (bb));
3425 note = emit_note_after (NOTE_INSN_BASIC_BLOCK, BB_HEAD (bb));
3427 maybe_dump_rtl_for_gimple_stmt (stmt, last);
3429 else
3430 note = BB_HEAD (bb) = emit_note (NOTE_INSN_BASIC_BLOCK);
3432 NOTE_BASIC_BLOCK (note) = bb;
3434 for (; !gsi_end_p (gsi); gsi_next (&gsi))
3436 basic_block new_bb;
3438 stmt = gsi_stmt (gsi);
3440 /* If this statement is a non-debug one, and we generate debug
3441 insns, then this one might be the last real use of a TERed
3442 SSA_NAME, but where there are still some debug uses further
3443 down. Expanding the current SSA name in such further debug
3444 uses by their RHS might lead to wrong debug info, as coalescing
3445 might make the operands of such RHS be placed into the same
3446 pseudo as something else. Like so:
3447 a_1 = a_0 + 1; // Assume a_1 is TERed and a_0 is dead
3448 use(a_1);
3449 a_2 = ...
3450 #DEBUG ... => a_1
3451 As a_0 and a_2 don't overlap in lifetime, assume they are coalesced.
3452 If we now would expand a_1 by it's RHS (a_0 + 1) in the debug use,
3453 the write to a_2 would actually have clobbered the place which
3454 formerly held a_0.
3456 So, instead of that, we recognize the situation, and generate
3457 debug temporaries at the last real use of TERed SSA names:
3458 a_1 = a_0 + 1;
3459 #DEBUG #D1 => a_1
3460 use(a_1);
3461 a_2 = ...
3462 #DEBUG ... => #D1
3464 if (MAY_HAVE_DEBUG_INSNS
3465 && SA.values
3466 && !is_gimple_debug (stmt))
3468 ssa_op_iter iter;
3469 tree op;
3470 gimple def;
3472 location_t sloc = get_curr_insn_source_location ();
3473 tree sblock = get_curr_insn_block ();
3475 /* Look for SSA names that have their last use here (TERed
3476 names always have only one real use). */
3477 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
3478 if ((def = get_gimple_for_ssa_name (op)))
3480 imm_use_iterator imm_iter;
3481 use_operand_p use_p;
3482 bool have_debug_uses = false;
3484 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, op)
3486 if (gimple_debug_bind_p (USE_STMT (use_p)))
3488 have_debug_uses = true;
3489 break;
3493 if (have_debug_uses)
3495 /* OP is a TERed SSA name, with DEF it's defining
3496 statement, and where OP is used in further debug
3497 instructions. Generate a debug temporary, and
3498 replace all uses of OP in debug insns with that
3499 temporary. */
3500 gimple debugstmt;
3501 tree value = gimple_assign_rhs_to_tree (def);
3502 tree vexpr = make_node (DEBUG_EXPR_DECL);
3503 rtx val;
3504 enum machine_mode mode;
3506 set_curr_insn_source_location (gimple_location (def));
3507 set_curr_insn_block (gimple_block (def));
3509 DECL_ARTIFICIAL (vexpr) = 1;
3510 TREE_TYPE (vexpr) = TREE_TYPE (value);
3511 if (DECL_P (value))
3512 mode = DECL_MODE (value);
3513 else
3514 mode = TYPE_MODE (TREE_TYPE (value));
3515 DECL_MODE (vexpr) = mode;
3517 val = gen_rtx_VAR_LOCATION
3518 (mode, vexpr, (rtx)value, VAR_INIT_STATUS_INITIALIZED);
3520 emit_debug_insn (val);
3522 FOR_EACH_IMM_USE_STMT (debugstmt, imm_iter, op)
3524 if (!gimple_debug_bind_p (debugstmt))
3525 continue;
3527 FOR_EACH_IMM_USE_ON_STMT (use_p, imm_iter)
3528 SET_USE (use_p, vexpr);
3530 update_stmt (debugstmt);
3534 set_curr_insn_source_location (sloc);
3535 set_curr_insn_block (sblock);
3538 currently_expanding_gimple_stmt = stmt;
3540 /* Expand this statement, then evaluate the resulting RTL and
3541 fixup the CFG accordingly. */
3542 if (gimple_code (stmt) == GIMPLE_COND)
3544 new_bb = expand_gimple_cond (bb, stmt);
3545 if (new_bb)
3546 return new_bb;
3548 else if (gimple_debug_bind_p (stmt))
3550 location_t sloc = get_curr_insn_source_location ();
3551 tree sblock = get_curr_insn_block ();
3552 gimple_stmt_iterator nsi = gsi;
3554 for (;;)
3556 tree var = gimple_debug_bind_get_var (stmt);
3557 tree value;
3558 rtx val;
3559 enum machine_mode mode;
3561 if (gimple_debug_bind_has_value_p (stmt))
3562 value = gimple_debug_bind_get_value (stmt);
3563 else
3564 value = NULL_TREE;
3566 last = get_last_insn ();
3568 set_curr_insn_source_location (gimple_location (stmt));
3569 set_curr_insn_block (gimple_block (stmt));
3571 if (DECL_P (var))
3572 mode = DECL_MODE (var);
3573 else
3574 mode = TYPE_MODE (TREE_TYPE (var));
3576 val = gen_rtx_VAR_LOCATION
3577 (mode, var, (rtx)value, VAR_INIT_STATUS_INITIALIZED);
3579 emit_debug_insn (val);
3581 if (dump_file && (dump_flags & TDF_DETAILS))
3583 /* We can't dump the insn with a TREE where an RTX
3584 is expected. */
3585 PAT_VAR_LOCATION_LOC (val) = const0_rtx;
3586 maybe_dump_rtl_for_gimple_stmt (stmt, last);
3587 PAT_VAR_LOCATION_LOC (val) = (rtx)value;
3590 /* In order not to generate too many debug temporaries,
3591 we delink all uses of debug statements we already expanded.
3592 Therefore debug statements between definition and real
3593 use of TERed SSA names will continue to use the SSA name,
3594 and not be replaced with debug temps. */
3595 delink_stmt_imm_use (stmt);
3597 gsi = nsi;
3598 gsi_next (&nsi);
3599 if (gsi_end_p (nsi))
3600 break;
3601 stmt = gsi_stmt (nsi);
3602 if (!gimple_debug_bind_p (stmt))
3603 break;
3606 set_curr_insn_source_location (sloc);
3607 set_curr_insn_block (sblock);
3609 else
3611 if (is_gimple_call (stmt) && gimple_call_tail_p (stmt))
3613 bool can_fallthru;
3614 new_bb = expand_gimple_tailcall (bb, stmt, &can_fallthru);
3615 if (new_bb)
3617 if (can_fallthru)
3618 bb = new_bb;
3619 else
3620 return new_bb;
3623 else
3625 def_operand_p def_p;
3626 def_p = SINGLE_SSA_DEF_OPERAND (stmt, SSA_OP_DEF);
3628 if (def_p != NULL)
3630 /* Ignore this stmt if it is in the list of
3631 replaceable expressions. */
3632 if (SA.values
3633 && bitmap_bit_p (SA.values,
3634 SSA_NAME_VERSION (DEF_FROM_PTR (def_p))))
3635 continue;
3637 last = expand_gimple_stmt (stmt);
3638 maybe_dump_rtl_for_gimple_stmt (stmt, last);
3643 currently_expanding_gimple_stmt = NULL;
3645 /* Expand implicit goto and convert goto_locus. */
3646 FOR_EACH_EDGE (e, ei, bb->succs)
3648 if (e->goto_locus && e->goto_block)
3650 set_curr_insn_source_location (e->goto_locus);
3651 set_curr_insn_block (e->goto_block);
3652 e->goto_locus = curr_insn_locator ();
3654 e->goto_block = NULL;
3655 if ((e->flags & EDGE_FALLTHRU) && e->dest != bb->next_bb)
3657 emit_jump (label_rtx_for_bb (e->dest));
3658 e->flags &= ~EDGE_FALLTHRU;
3662 /* Expanded RTL can create a jump in the last instruction of block.
3663 This later might be assumed to be a jump to successor and break edge insertion.
3664 We need to insert dummy move to prevent this. PR41440. */
3665 if (single_succ_p (bb)
3666 && (single_succ_edge (bb)->flags & EDGE_FALLTHRU)
3667 && (last = get_last_insn ())
3668 && JUMP_P (last))
3670 rtx dummy = gen_reg_rtx (SImode);
3671 emit_insn_after_noloc (gen_move_insn (dummy, dummy), last, NULL);
3674 do_pending_stack_adjust ();
3676 /* Find the block tail. The last insn in the block is the insn
3677 before a barrier and/or table jump insn. */
3678 last = get_last_insn ();
3679 if (BARRIER_P (last))
3680 last = PREV_INSN (last);
3681 if (JUMP_TABLE_DATA_P (last))
3682 last = PREV_INSN (PREV_INSN (last));
3683 BB_END (bb) = last;
3685 update_bb_for_insn (bb);
3687 return bb;
3691 /* Create a basic block for initialization code. */
3693 static basic_block
3694 construct_init_block (void)
3696 basic_block init_block, first_block;
3697 edge e = NULL;
3698 int flags;
3700 /* Multiple entry points not supported yet. */
3701 gcc_assert (EDGE_COUNT (ENTRY_BLOCK_PTR->succs) == 1);
3702 init_rtl_bb_info (ENTRY_BLOCK_PTR);
3703 init_rtl_bb_info (EXIT_BLOCK_PTR);
3704 ENTRY_BLOCK_PTR->flags |= BB_RTL;
3705 EXIT_BLOCK_PTR->flags |= BB_RTL;
3707 e = EDGE_SUCC (ENTRY_BLOCK_PTR, 0);
3709 /* When entry edge points to first basic block, we don't need jump,
3710 otherwise we have to jump into proper target. */
3711 if (e && e->dest != ENTRY_BLOCK_PTR->next_bb)
3713 tree label = gimple_block_label (e->dest);
3715 emit_jump (label_rtx (label));
3716 flags = 0;
3718 else
3719 flags = EDGE_FALLTHRU;
3721 init_block = create_basic_block (NEXT_INSN (get_insns ()),
3722 get_last_insn (),
3723 ENTRY_BLOCK_PTR);
3724 init_block->frequency = ENTRY_BLOCK_PTR->frequency;
3725 init_block->count = ENTRY_BLOCK_PTR->count;
3726 if (e)
3728 first_block = e->dest;
3729 redirect_edge_succ (e, init_block);
3730 e = make_edge (init_block, first_block, flags);
3732 else
3733 e = make_edge (init_block, EXIT_BLOCK_PTR, EDGE_FALLTHRU);
3734 e->probability = REG_BR_PROB_BASE;
3735 e->count = ENTRY_BLOCK_PTR->count;
3737 update_bb_for_insn (init_block);
3738 return init_block;
3741 /* For each lexical block, set BLOCK_NUMBER to the depth at which it is
3742 found in the block tree. */
3744 static void
3745 set_block_levels (tree block, int level)
3747 while (block)
3749 BLOCK_NUMBER (block) = level;
3750 set_block_levels (BLOCK_SUBBLOCKS (block), level + 1);
3751 block = BLOCK_CHAIN (block);
3755 /* Create a block containing landing pads and similar stuff. */
3757 static void
3758 construct_exit_block (void)
3760 rtx head = get_last_insn ();
3761 rtx end;
3762 basic_block exit_block;
3763 edge e, e2;
3764 unsigned ix;
3765 edge_iterator ei;
3766 rtx orig_end = BB_END (EXIT_BLOCK_PTR->prev_bb);
3768 rtl_profile_for_bb (EXIT_BLOCK_PTR);
3770 /* Make sure the locus is set to the end of the function, so that
3771 epilogue line numbers and warnings are set properly. */
3772 if (cfun->function_end_locus != UNKNOWN_LOCATION)
3773 input_location = cfun->function_end_locus;
3775 /* The following insns belong to the top scope. */
3776 set_curr_insn_block (DECL_INITIAL (current_function_decl));
3778 /* Generate rtl for function exit. */
3779 expand_function_end ();
3781 end = get_last_insn ();
3782 if (head == end)
3783 return;
3784 /* While emitting the function end we could move end of the last basic block.
3786 BB_END (EXIT_BLOCK_PTR->prev_bb) = orig_end;
3787 while (NEXT_INSN (head) && NOTE_P (NEXT_INSN (head)))
3788 head = NEXT_INSN (head);
3789 exit_block = create_basic_block (NEXT_INSN (head), end,
3790 EXIT_BLOCK_PTR->prev_bb);
3791 exit_block->frequency = EXIT_BLOCK_PTR->frequency;
3792 exit_block->count = EXIT_BLOCK_PTR->count;
3794 ix = 0;
3795 while (ix < EDGE_COUNT (EXIT_BLOCK_PTR->preds))
3797 e = EDGE_PRED (EXIT_BLOCK_PTR, ix);
3798 if (!(e->flags & EDGE_ABNORMAL))
3799 redirect_edge_succ (e, exit_block);
3800 else
3801 ix++;
3804 e = make_edge (exit_block, EXIT_BLOCK_PTR, EDGE_FALLTHRU);
3805 e->probability = REG_BR_PROB_BASE;
3806 e->count = EXIT_BLOCK_PTR->count;
3807 FOR_EACH_EDGE (e2, ei, EXIT_BLOCK_PTR->preds)
3808 if (e2 != e)
3810 e->count -= e2->count;
3811 exit_block->count -= e2->count;
3812 exit_block->frequency -= EDGE_FREQUENCY (e2);
3814 if (e->count < 0)
3815 e->count = 0;
3816 if (exit_block->count < 0)
3817 exit_block->count = 0;
3818 if (exit_block->frequency < 0)
3819 exit_block->frequency = 0;
3820 update_bb_for_insn (exit_block);
3823 /* Helper function for discover_nonconstant_array_refs.
3824 Look for ARRAY_REF nodes with non-constant indexes and mark them
3825 addressable. */
3827 static tree
3828 discover_nonconstant_array_refs_r (tree * tp, int *walk_subtrees,
3829 void *data ATTRIBUTE_UNUSED)
3831 tree t = *tp;
3833 if (IS_TYPE_OR_DECL_P (t))
3834 *walk_subtrees = 0;
3835 else if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
3837 while (((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
3838 && is_gimple_min_invariant (TREE_OPERAND (t, 1))
3839 && (!TREE_OPERAND (t, 2)
3840 || is_gimple_min_invariant (TREE_OPERAND (t, 2))))
3841 || (TREE_CODE (t) == COMPONENT_REF
3842 && (!TREE_OPERAND (t,2)
3843 || is_gimple_min_invariant (TREE_OPERAND (t, 2))))
3844 || TREE_CODE (t) == BIT_FIELD_REF
3845 || TREE_CODE (t) == REALPART_EXPR
3846 || TREE_CODE (t) == IMAGPART_EXPR
3847 || TREE_CODE (t) == VIEW_CONVERT_EXPR
3848 || CONVERT_EXPR_P (t))
3849 t = TREE_OPERAND (t, 0);
3851 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
3853 t = get_base_address (t);
3854 if (t && DECL_P (t)
3855 && DECL_MODE (t) != BLKmode)
3856 TREE_ADDRESSABLE (t) = 1;
3859 *walk_subtrees = 0;
3862 return NULL_TREE;
3865 /* RTL expansion is not able to compile array references with variable
3866 offsets for arrays stored in single register. Discover such
3867 expressions and mark variables as addressable to avoid this
3868 scenario. */
3870 static void
3871 discover_nonconstant_array_refs (void)
3873 basic_block bb;
3874 gimple_stmt_iterator gsi;
3876 FOR_EACH_BB (bb)
3877 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3879 gimple stmt = gsi_stmt (gsi);
3880 if (!is_gimple_debug (stmt))
3881 walk_gimple_op (stmt, discover_nonconstant_array_refs_r, NULL);
3885 /* This function sets crtl->args.internal_arg_pointer to a virtual
3886 register if DRAP is needed. Local register allocator will replace
3887 virtual_incoming_args_rtx with the virtual register. */
3889 static void
3890 expand_stack_alignment (void)
3892 rtx drap_rtx;
3893 unsigned int preferred_stack_boundary;
3895 if (! SUPPORTS_STACK_ALIGNMENT)
3896 return;
3898 if (cfun->calls_alloca
3899 || cfun->has_nonlocal_label
3900 || crtl->has_nonlocal_goto)
3901 crtl->need_drap = true;
3903 /* Call update_stack_boundary here again to update incoming stack
3904 boundary. It may set incoming stack alignment to a different
3905 value after RTL expansion. TARGET_FUNCTION_OK_FOR_SIBCALL may
3906 use the minimum incoming stack alignment to check if it is OK
3907 to perform sibcall optimization since sibcall optimization will
3908 only align the outgoing stack to incoming stack boundary. */
3909 if (targetm.calls.update_stack_boundary)
3910 targetm.calls.update_stack_boundary ();
3912 /* The incoming stack frame has to be aligned at least at
3913 parm_stack_boundary. */
3914 gcc_assert (crtl->parm_stack_boundary <= INCOMING_STACK_BOUNDARY);
3916 /* Update crtl->stack_alignment_estimated and use it later to align
3917 stack. We check PREFERRED_STACK_BOUNDARY if there may be non-call
3918 exceptions since callgraph doesn't collect incoming stack alignment
3919 in this case. */
3920 if (cfun->can_throw_non_call_exceptions
3921 && PREFERRED_STACK_BOUNDARY > crtl->preferred_stack_boundary)
3922 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3923 else
3924 preferred_stack_boundary = crtl->preferred_stack_boundary;
3925 if (preferred_stack_boundary > crtl->stack_alignment_estimated)
3926 crtl->stack_alignment_estimated = preferred_stack_boundary;
3927 if (preferred_stack_boundary > crtl->stack_alignment_needed)
3928 crtl->stack_alignment_needed = preferred_stack_boundary;
3930 gcc_assert (crtl->stack_alignment_needed
3931 <= crtl->stack_alignment_estimated);
3933 crtl->stack_realign_needed
3934 = INCOMING_STACK_BOUNDARY < crtl->stack_alignment_estimated;
3935 crtl->stack_realign_tried = crtl->stack_realign_needed;
3937 crtl->stack_realign_processed = true;
3939 /* Target has to redefine TARGET_GET_DRAP_RTX to support stack
3940 alignment. */
3941 gcc_assert (targetm.calls.get_drap_rtx != NULL);
3942 drap_rtx = targetm.calls.get_drap_rtx ();
3944 /* stack_realign_drap and drap_rtx must match. */
3945 gcc_assert ((stack_realign_drap != 0) == (drap_rtx != NULL));
3947 /* Do nothing if NULL is returned, which means DRAP is not needed. */
3948 if (NULL != drap_rtx)
3950 crtl->args.internal_arg_pointer = drap_rtx;
3952 /* Call fixup_tail_calls to clean up REG_EQUIV note if DRAP is
3953 needed. */
3954 fixup_tail_calls ();
3958 /* Translate the intermediate representation contained in the CFG
3959 from GIMPLE trees to RTL.
3961 We do conversion per basic block and preserve/update the tree CFG.
3962 This implies we have to do some magic as the CFG can simultaneously
3963 consist of basic blocks containing RTL and GIMPLE trees. This can
3964 confuse the CFG hooks, so be careful to not manipulate CFG during
3965 the expansion. */
3967 static unsigned int
3968 gimple_expand_cfg (void)
3970 basic_block bb, init_block;
3971 sbitmap blocks;
3972 edge_iterator ei;
3973 edge e;
3974 rtx var_seq;
3975 unsigned i;
3977 timevar_push (TV_OUT_OF_SSA);
3978 rewrite_out_of_ssa (&SA);
3979 timevar_pop (TV_OUT_OF_SSA);
3980 SA.partition_to_pseudo = (rtx *)xcalloc (SA.map->num_partitions,
3981 sizeof (rtx));
3983 /* Some backends want to know that we are expanding to RTL. */
3984 currently_expanding_to_rtl = 1;
3986 rtl_profile_for_bb (ENTRY_BLOCK_PTR);
3988 insn_locators_alloc ();
3989 if (!DECL_IS_BUILTIN (current_function_decl))
3991 /* Eventually, all FEs should explicitly set function_start_locus. */
3992 if (cfun->function_start_locus == UNKNOWN_LOCATION)
3993 set_curr_insn_source_location
3994 (DECL_SOURCE_LOCATION (current_function_decl));
3995 else
3996 set_curr_insn_source_location (cfun->function_start_locus);
3998 else
3999 set_curr_insn_source_location (UNKNOWN_LOCATION);
4000 set_curr_insn_block (DECL_INITIAL (current_function_decl));
4001 prologue_locator = curr_insn_locator ();
4003 #ifdef INSN_SCHEDULING
4004 init_sched_attrs ();
4005 #endif
4007 /* Make sure first insn is a note even if we don't want linenums.
4008 This makes sure the first insn will never be deleted.
4009 Also, final expects a note to appear there. */
4010 emit_note (NOTE_INSN_DELETED);
4012 /* Mark arrays indexed with non-constant indices with TREE_ADDRESSABLE. */
4013 discover_nonconstant_array_refs ();
4015 targetm.expand_to_rtl_hook ();
4016 crtl->stack_alignment_needed = STACK_BOUNDARY;
4017 crtl->max_used_stack_slot_alignment = STACK_BOUNDARY;
4018 crtl->stack_alignment_estimated = 0;
4019 crtl->preferred_stack_boundary = STACK_BOUNDARY;
4020 cfun->cfg->max_jumptable_ents = 0;
4022 /* Resovle the function section. Some targets, like ARM EABI rely on knowledge
4023 of the function section at exapnsion time to predict distance of calls. */
4024 resolve_unique_section (current_function_decl, 0, flag_function_sections);
4026 /* Expand the variables recorded during gimple lowering. */
4027 timevar_push (TV_VAR_EXPAND);
4028 start_sequence ();
4030 expand_used_vars ();
4032 var_seq = get_insns ();
4033 end_sequence ();
4034 timevar_pop (TV_VAR_EXPAND);
4036 /* Honor stack protection warnings. */
4037 if (warn_stack_protect)
4039 if (cfun->calls_alloca)
4040 warning (OPT_Wstack_protector,
4041 "stack protector not protecting local variables: "
4042 "variable length buffer");
4043 if (has_short_buffer && !crtl->stack_protect_guard)
4044 warning (OPT_Wstack_protector,
4045 "stack protector not protecting function: "
4046 "all local arrays are less than %d bytes long",
4047 (int) PARAM_VALUE (PARAM_SSP_BUFFER_SIZE));
4050 /* Set up parameters and prepare for return, for the function. */
4051 expand_function_start (current_function_decl);
4053 /* If we emitted any instructions for setting up the variables,
4054 emit them before the FUNCTION_START note. */
4055 if (var_seq)
4057 emit_insn_before (var_seq, parm_birth_insn);
4059 /* In expand_function_end we'll insert the alloca save/restore
4060 before parm_birth_insn. We've just insertted an alloca call.
4061 Adjust the pointer to match. */
4062 parm_birth_insn = var_seq;
4065 /* Now that we also have the parameter RTXs, copy them over to our
4066 partitions. */
4067 for (i = 0; i < SA.map->num_partitions; i++)
4069 tree var = SSA_NAME_VAR (partition_to_var (SA.map, i));
4071 if (TREE_CODE (var) != VAR_DECL
4072 && !SA.partition_to_pseudo[i])
4073 SA.partition_to_pseudo[i] = DECL_RTL_IF_SET (var);
4074 gcc_assert (SA.partition_to_pseudo[i]);
4076 /* If this decl was marked as living in multiple places, reset
4077 this now to NULL. */
4078 if (DECL_RTL_IF_SET (var) == pc_rtx)
4079 SET_DECL_RTL (var, NULL);
4081 /* Some RTL parts really want to look at DECL_RTL(x) when x
4082 was a decl marked in REG_ATTR or MEM_ATTR. We could use
4083 SET_DECL_RTL here making this available, but that would mean
4084 to select one of the potentially many RTLs for one DECL. Instead
4085 of doing that we simply reset the MEM_EXPR of the RTL in question,
4086 then nobody can get at it and hence nobody can call DECL_RTL on it. */
4087 if (!DECL_RTL_SET_P (var))
4089 if (MEM_P (SA.partition_to_pseudo[i]))
4090 set_mem_expr (SA.partition_to_pseudo[i], NULL);
4094 /* If this function is `main', emit a call to `__main'
4095 to run global initializers, etc. */
4096 if (DECL_NAME (current_function_decl)
4097 && MAIN_NAME_P (DECL_NAME (current_function_decl))
4098 && DECL_FILE_SCOPE_P (current_function_decl))
4099 expand_main_function ();
4101 /* Initialize the stack_protect_guard field. This must happen after the
4102 call to __main (if any) so that the external decl is initialized. */
4103 if (crtl->stack_protect_guard)
4104 stack_protect_prologue ();
4106 expand_phi_nodes (&SA);
4108 /* Register rtl specific functions for cfg. */
4109 rtl_register_cfg_hooks ();
4111 init_block = construct_init_block ();
4113 /* Clear EDGE_EXECUTABLE on the entry edge(s). It is cleaned from the
4114 remaining edges later. */
4115 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
4116 e->flags &= ~EDGE_EXECUTABLE;
4118 lab_rtx_for_bb = pointer_map_create ();
4119 FOR_BB_BETWEEN (bb, init_block->next_bb, EXIT_BLOCK_PTR, next_bb)
4120 bb = expand_gimple_basic_block (bb);
4122 if (MAY_HAVE_DEBUG_INSNS)
4123 expand_debug_locations ();
4125 execute_free_datastructures ();
4126 timevar_push (TV_OUT_OF_SSA);
4127 finish_out_of_ssa (&SA);
4128 timevar_pop (TV_OUT_OF_SSA);
4130 timevar_push (TV_POST_EXPAND);
4131 /* We are no longer in SSA form. */
4132 cfun->gimple_df->in_ssa_p = false;
4134 /* Expansion is used by optimization passes too, set maybe_hot_insn_p
4135 conservatively to true until they are all profile aware. */
4136 pointer_map_destroy (lab_rtx_for_bb);
4137 free_histograms ();
4139 construct_exit_block ();
4140 set_curr_insn_block (DECL_INITIAL (current_function_decl));
4141 insn_locators_finalize ();
4143 /* Zap the tree EH table. */
4144 set_eh_throw_stmt_table (cfun, NULL);
4146 /* We need JUMP_LABEL be set in order to redirect jumps, and hence
4147 split edges which edge insertions might do. */
4148 rebuild_jump_labels (get_insns ());
4150 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, next_bb)
4152 edge e;
4153 edge_iterator ei;
4154 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
4156 if (e->insns.r)
4158 rebuild_jump_labels_chain (e->insns.r);
4159 /* Avoid putting insns before parm_birth_insn. */
4160 if (e->src == ENTRY_BLOCK_PTR
4161 && single_succ_p (ENTRY_BLOCK_PTR)
4162 && parm_birth_insn)
4164 rtx insns = e->insns.r;
4165 e->insns.r = NULL_RTX;
4166 emit_insn_after_noloc (insns, parm_birth_insn, e->dest);
4168 else
4169 commit_one_edge_insertion (e);
4171 else
4172 ei_next (&ei);
4176 /* We're done expanding trees to RTL. */
4177 currently_expanding_to_rtl = 0;
4179 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR->next_bb, EXIT_BLOCK_PTR, next_bb)
4181 edge e;
4182 edge_iterator ei;
4183 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
4185 /* Clear EDGE_EXECUTABLE. This flag is never used in the backend. */
4186 e->flags &= ~EDGE_EXECUTABLE;
4188 /* At the moment not all abnormal edges match the RTL
4189 representation. It is safe to remove them here as
4190 find_many_sub_basic_blocks will rediscover them.
4191 In the future we should get this fixed properly. */
4192 if ((e->flags & EDGE_ABNORMAL)
4193 && !(e->flags & EDGE_SIBCALL))
4194 remove_edge (e);
4195 else
4196 ei_next (&ei);
4200 blocks = sbitmap_alloc (last_basic_block);
4201 sbitmap_ones (blocks);
4202 find_many_sub_basic_blocks (blocks);
4203 sbitmap_free (blocks);
4204 purge_all_dead_edges ();
4206 compact_blocks ();
4208 expand_stack_alignment ();
4210 #ifdef ENABLE_CHECKING
4211 verify_flow_info ();
4212 #endif
4214 /* There's no need to defer outputting this function any more; we
4215 know we want to output it. */
4216 DECL_DEFER_OUTPUT (current_function_decl) = 0;
4218 /* Now that we're done expanding trees to RTL, we shouldn't have any
4219 more CONCATs anywhere. */
4220 generating_concat_p = 0;
4222 if (dump_file)
4224 fprintf (dump_file,
4225 "\n\n;;\n;; Full RTL generated for this function:\n;;\n");
4226 /* And the pass manager will dump RTL for us. */
4229 /* If we're emitting a nested function, make sure its parent gets
4230 emitted as well. Doing otherwise confuses debug info. */
4232 tree parent;
4233 for (parent = DECL_CONTEXT (current_function_decl);
4234 parent != NULL_TREE;
4235 parent = get_containing_scope (parent))
4236 if (TREE_CODE (parent) == FUNCTION_DECL)
4237 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (parent)) = 1;
4240 /* We are now committed to emitting code for this function. Do any
4241 preparation, such as emitting abstract debug info for the inline
4242 before it gets mangled by optimization. */
4243 if (cgraph_function_possibly_inlined_p (current_function_decl))
4244 (*debug_hooks->outlining_inline_function) (current_function_decl);
4246 TREE_ASM_WRITTEN (current_function_decl) = 1;
4248 /* After expanding, the return labels are no longer needed. */
4249 return_label = NULL;
4250 naked_return_label = NULL;
4251 /* Tag the blocks with a depth number so that change_scope can find
4252 the common parent easily. */
4253 set_block_levels (DECL_INITIAL (cfun->decl), 0);
4254 default_rtl_profile ();
4255 timevar_pop (TV_POST_EXPAND);
4256 return 0;
4259 struct rtl_opt_pass pass_expand =
4262 RTL_PASS,
4263 "expand", /* name */
4264 NULL, /* gate */
4265 gimple_expand_cfg, /* execute */
4266 NULL, /* sub */
4267 NULL, /* next */
4268 0, /* static_pass_number */
4269 TV_EXPAND, /* tv_id */
4270 PROP_ssa | PROP_gimple_leh | PROP_cfg
4271 | PROP_gimple_lcx, /* properties_required */
4272 PROP_rtl, /* properties_provided */
4273 PROP_ssa | PROP_trees, /* properties_destroyed */
4274 TODO_verify_ssa | TODO_verify_flow
4275 | TODO_verify_stmts, /* todo_flags_start */
4276 TODO_ggc_collect /* todo_flags_finish */