1 /* A pass for lowering trees to RTL.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
27 #include "basic-block.h"
30 #include "langhooks.h"
31 #include "tree-flow.h"
33 #include "tree-dump.h"
34 #include "tree-pass.h"
37 #include "diagnostic.h"
41 #include "tree-inline.h"
42 #include "value-prof.h"
45 /* Verify that there is exactly single jump instruction since last and attach
46 REG_BR_PROB note specifying probability.
47 ??? We really ought to pass the probability down to RTL expanders and let it
48 re-distribute it when the conditional expands into multiple conditionals.
49 This is however difficult to do. */
51 add_reg_br_prob_note (rtx last
, int probability
)
53 if (profile_status
== PROFILE_ABSENT
)
55 for (last
= NEXT_INSN (last
); last
&& NEXT_INSN (last
); last
= NEXT_INSN (last
))
58 /* It is common to emit condjump-around-jump sequence when we don't know
59 how to reverse the conditional. Special case this. */
60 if (!any_condjump_p (last
)
61 || !JUMP_P (NEXT_INSN (last
))
62 || !simplejump_p (NEXT_INSN (last
))
63 || !NEXT_INSN (NEXT_INSN (last
))
64 || !BARRIER_P (NEXT_INSN (NEXT_INSN (last
)))
65 || !NEXT_INSN (NEXT_INSN (NEXT_INSN (last
)))
66 || !LABEL_P (NEXT_INSN (NEXT_INSN (NEXT_INSN (last
))))
67 || NEXT_INSN (NEXT_INSN (NEXT_INSN (NEXT_INSN (last
)))))
69 gcc_assert (!find_reg_note (last
, REG_BR_PROB
, 0));
71 = gen_rtx_EXPR_LIST (REG_BR_PROB
,
72 GEN_INT (REG_BR_PROB_BASE
- probability
),
76 if (!last
|| !JUMP_P (last
) || !any_condjump_p (last
))
78 gcc_assert (!find_reg_note (last
, REG_BR_PROB
, 0));
80 = gen_rtx_EXPR_LIST (REG_BR_PROB
,
81 GEN_INT (probability
), REG_NOTES (last
));
85 fprintf (dump_file
, "Failed to add probability note\n");
89 #ifndef STACK_ALIGNMENT_NEEDED
90 #define STACK_ALIGNMENT_NEEDED 1
94 /* This structure holds data relevant to one variable that will be
95 placed in a stack slot. */
101 /* The offset of the variable. During partitioning, this is the
102 offset relative to the partition. After partitioning, this
103 is relative to the stack frame. */
104 HOST_WIDE_INT offset
;
106 /* Initially, the size of the variable. Later, the size of the partition,
107 if this variable becomes it's partition's representative. */
110 /* The *byte* alignment required for this variable. Or as, with the
111 size, the alignment for this partition. */
114 /* The partition representative. */
115 size_t representative
;
117 /* The next stack variable in the partition, or EOC. */
121 #define EOC ((size_t)-1)
123 /* We have an array of such objects while deciding allocation. */
124 static struct stack_var
*stack_vars
;
125 static size_t stack_vars_alloc
;
126 static size_t stack_vars_num
;
128 /* An array of indices such that stack_vars[stack_vars_sorted[i]].size
129 is non-decreasing. */
130 static size_t *stack_vars_sorted
;
132 /* We have an interference graph between such objects. This graph
133 is lower triangular. */
134 static bool *stack_vars_conflict
;
135 static size_t stack_vars_conflict_alloc
;
137 /* The phase of the stack frame. This is the known misalignment of
138 virtual_stack_vars_rtx from PREFERRED_STACK_BOUNDARY. That is,
139 (frame_offset+frame_phase) % PREFERRED_STACK_BOUNDARY == 0. */
140 static int frame_phase
;
142 /* Used during expand_used_vars to remember if we saw any decls for
143 which we'd like to enable stack smashing protection. */
144 static bool has_protected_decls
;
146 /* Used during expand_used_vars. Remember if we say a character buffer
147 smaller than our cutoff threshold. Used for -Wstack-protector. */
148 static bool has_short_buffer
;
150 /* Discover the byte alignment to use for DECL. Ignore alignment
151 we can't do with expected alignment of the stack boundary. */
154 get_decl_align_unit (tree decl
)
158 align
= DECL_ALIGN (decl
);
159 align
= LOCAL_ALIGNMENT (TREE_TYPE (decl
), align
);
160 if (align
> PREFERRED_STACK_BOUNDARY
)
161 align
= PREFERRED_STACK_BOUNDARY
;
162 if (crtl
->stack_alignment_needed
< align
)
163 crtl
->stack_alignment_needed
= align
;
165 return align
/ BITS_PER_UNIT
;
168 /* Allocate SIZE bytes at byte alignment ALIGN from the stack frame.
169 Return the frame offset. */
172 alloc_stack_frame_space (HOST_WIDE_INT size
, HOST_WIDE_INT align
)
174 HOST_WIDE_INT offset
, new_frame_offset
;
176 new_frame_offset
= frame_offset
;
177 if (FRAME_GROWS_DOWNWARD
)
179 new_frame_offset
-= size
+ frame_phase
;
180 new_frame_offset
&= -align
;
181 new_frame_offset
+= frame_phase
;
182 offset
= new_frame_offset
;
186 new_frame_offset
-= frame_phase
;
187 new_frame_offset
+= align
- 1;
188 new_frame_offset
&= -align
;
189 new_frame_offset
+= frame_phase
;
190 offset
= new_frame_offset
;
191 new_frame_offset
+= size
;
193 frame_offset
= new_frame_offset
;
195 if (frame_offset_overflow (frame_offset
, cfun
->decl
))
196 frame_offset
= offset
= 0;
201 /* Accumulate DECL into STACK_VARS. */
204 add_stack_var (tree decl
)
206 if (stack_vars_num
>= stack_vars_alloc
)
208 if (stack_vars_alloc
)
209 stack_vars_alloc
= stack_vars_alloc
* 3 / 2;
211 stack_vars_alloc
= 32;
213 = XRESIZEVEC (struct stack_var
, stack_vars
, stack_vars_alloc
);
215 stack_vars
[stack_vars_num
].decl
= decl
;
216 stack_vars
[stack_vars_num
].offset
= 0;
217 stack_vars
[stack_vars_num
].size
= tree_low_cst (DECL_SIZE_UNIT (decl
), 1);
218 stack_vars
[stack_vars_num
].alignb
= get_decl_align_unit (decl
);
220 /* All variables are initially in their own partition. */
221 stack_vars
[stack_vars_num
].representative
= stack_vars_num
;
222 stack_vars
[stack_vars_num
].next
= EOC
;
224 /* Ensure that this decl doesn't get put onto the list twice. */
225 SET_DECL_RTL (decl
, pc_rtx
);
230 /* Compute the linear index of a lower-triangular coordinate (I, J). */
233 triangular_index (size_t i
, size_t j
)
240 return (i
* (i
+ 1)) / 2 + j
;
243 /* Ensure that STACK_VARS_CONFLICT is large enough for N objects. */
246 resize_stack_vars_conflict (size_t n
)
248 size_t size
= triangular_index (n
-1, n
-1) + 1;
250 if (size
<= stack_vars_conflict_alloc
)
253 stack_vars_conflict
= XRESIZEVEC (bool, stack_vars_conflict
, size
);
254 memset (stack_vars_conflict
+ stack_vars_conflict_alloc
, 0,
255 (size
- stack_vars_conflict_alloc
) * sizeof (bool));
256 stack_vars_conflict_alloc
= size
;
259 /* Make the decls associated with luid's X and Y conflict. */
262 add_stack_var_conflict (size_t x
, size_t y
)
264 size_t index
= triangular_index (x
, y
);
265 gcc_assert (index
< stack_vars_conflict_alloc
);
266 stack_vars_conflict
[index
] = true;
269 /* Check whether the decls associated with luid's X and Y conflict. */
272 stack_var_conflict_p (size_t x
, size_t y
)
274 size_t index
= triangular_index (x
, y
);
275 gcc_assert (index
< stack_vars_conflict_alloc
);
276 return stack_vars_conflict
[index
];
279 /* Returns true if TYPE is or contains a union type. */
282 aggregate_contains_union_type (tree type
)
286 if (TREE_CODE (type
) == UNION_TYPE
287 || TREE_CODE (type
) == QUAL_UNION_TYPE
)
289 if (TREE_CODE (type
) == ARRAY_TYPE
)
290 return aggregate_contains_union_type (TREE_TYPE (type
));
291 if (TREE_CODE (type
) != RECORD_TYPE
)
294 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
295 if (TREE_CODE (field
) == FIELD_DECL
)
296 if (aggregate_contains_union_type (TREE_TYPE (field
)))
302 /* A subroutine of expand_used_vars. If two variables X and Y have alias
303 sets that do not conflict, then do add a conflict for these variables
304 in the interference graph. We also need to make sure to add conflicts
305 for union containing structures. Else RTL alias analysis comes along
306 and due to type based aliasing rules decides that for two overlapping
307 union temporaries { short s; int i; } accesses to the same mem through
308 different types may not alias and happily reorders stores across
309 life-time boundaries of the temporaries (See PR25654).
310 We also have to mind MEM_IN_STRUCT_P and MEM_SCALAR_P. */
313 add_alias_set_conflicts (void)
315 size_t i
, j
, n
= stack_vars_num
;
317 for (i
= 0; i
< n
; ++i
)
319 tree type_i
= TREE_TYPE (stack_vars
[i
].decl
);
320 bool aggr_i
= AGGREGATE_TYPE_P (type_i
);
323 contains_union
= aggregate_contains_union_type (type_i
);
324 for (j
= 0; j
< i
; ++j
)
326 tree type_j
= TREE_TYPE (stack_vars
[j
].decl
);
327 bool aggr_j
= AGGREGATE_TYPE_P (type_j
);
329 /* Either the objects conflict by means of type based
330 aliasing rules, or we need to add a conflict. */
331 || !objects_must_conflict_p (type_i
, type_j
)
332 /* In case the types do not conflict ensure that access
333 to elements will conflict. In case of unions we have
334 to be careful as type based aliasing rules may say
335 access to the same memory does not conflict. So play
336 safe and add a conflict in this case. */
338 add_stack_var_conflict (i
, j
);
343 /* A subroutine of partition_stack_vars. A comparison function for qsort,
344 sorting an array of indices by the size of the object. */
347 stack_var_size_cmp (const void *a
, const void *b
)
349 HOST_WIDE_INT sa
= stack_vars
[*(const size_t *)a
].size
;
350 HOST_WIDE_INT sb
= stack_vars
[*(const size_t *)b
].size
;
351 unsigned int uida
= DECL_UID (stack_vars
[*(const size_t *)a
].decl
);
352 unsigned int uidb
= DECL_UID (stack_vars
[*(const size_t *)b
].decl
);
358 /* For stack variables of the same size use the uid of the decl
359 to make the sort stable. */
367 /* A subroutine of partition_stack_vars. The UNION portion of a UNION/FIND
368 partitioning algorithm. Partitions A and B are known to be non-conflicting.
369 Merge them into a single partition A.
371 At the same time, add OFFSET to all variables in partition B. At the end
372 of the partitioning process we've have a nice block easy to lay out within
376 union_stack_vars (size_t a
, size_t b
, HOST_WIDE_INT offset
)
380 /* Update each element of partition B with the given offset,
381 and merge them into partition A. */
382 for (last
= i
= b
; i
!= EOC
; last
= i
, i
= stack_vars
[i
].next
)
384 stack_vars
[i
].offset
+= offset
;
385 stack_vars
[i
].representative
= a
;
387 stack_vars
[last
].next
= stack_vars
[a
].next
;
388 stack_vars
[a
].next
= b
;
390 /* Update the required alignment of partition A to account for B. */
391 if (stack_vars
[a
].alignb
< stack_vars
[b
].alignb
)
392 stack_vars
[a
].alignb
= stack_vars
[b
].alignb
;
394 /* Update the interference graph and merge the conflicts. */
395 for (last
= stack_vars_num
, i
= 0; i
< last
; ++i
)
396 if (stack_var_conflict_p (b
, i
))
397 add_stack_var_conflict (a
, i
);
400 /* A subroutine of expand_used_vars. Binpack the variables into
401 partitions constrained by the interference graph. The overall
402 algorithm used is as follows:
404 Sort the objects by size.
409 Look for the largest non-conflicting object B with size <= S.
419 partition_stack_vars (void)
421 size_t si
, sj
, n
= stack_vars_num
;
423 stack_vars_sorted
= XNEWVEC (size_t, stack_vars_num
);
424 for (si
= 0; si
< n
; ++si
)
425 stack_vars_sorted
[si
] = si
;
430 qsort (stack_vars_sorted
, n
, sizeof (size_t), stack_var_size_cmp
);
432 /* Special case: detect when all variables conflict, and thus we can't
433 do anything during the partitioning loop. It isn't uncommon (with
434 C code at least) to declare all variables at the top of the function,
435 and if we're not inlining, then all variables will be in the same scope.
436 Take advantage of very fast libc routines for this scan. */
437 gcc_assert (sizeof(bool) == sizeof(char));
438 if (memchr (stack_vars_conflict
, false, stack_vars_conflict_alloc
) == NULL
)
441 for (si
= 0; si
< n
; ++si
)
443 size_t i
= stack_vars_sorted
[si
];
444 HOST_WIDE_INT isize
= stack_vars
[i
].size
;
445 HOST_WIDE_INT offset
= 0;
447 for (sj
= si
; sj
-- > 0; )
449 size_t j
= stack_vars_sorted
[sj
];
450 HOST_WIDE_INT jsize
= stack_vars
[j
].size
;
451 unsigned int jalign
= stack_vars
[j
].alignb
;
453 /* Ignore objects that aren't partition representatives. */
454 if (stack_vars
[j
].representative
!= j
)
457 /* Ignore objects too large for the remaining space. */
461 /* Ignore conflicting objects. */
462 if (stack_var_conflict_p (i
, j
))
465 /* Refine the remaining space check to include alignment. */
466 if (offset
& (jalign
- 1))
468 HOST_WIDE_INT toff
= offset
;
470 toff
&= -(HOST_WIDE_INT
)jalign
;
471 if (isize
- (toff
- offset
) < jsize
)
474 isize
-= toff
- offset
;
478 /* UNION the objects, placing J at OFFSET. */
479 union_stack_vars (i
, j
, offset
);
488 /* A debugging aid for expand_used_vars. Dump the generated partitions. */
491 dump_stack_var_partition (void)
493 size_t si
, i
, j
, n
= stack_vars_num
;
495 for (si
= 0; si
< n
; ++si
)
497 i
= stack_vars_sorted
[si
];
499 /* Skip variables that aren't partition representatives, for now. */
500 if (stack_vars
[i
].representative
!= i
)
503 fprintf (dump_file
, "Partition %lu: size " HOST_WIDE_INT_PRINT_DEC
504 " align %u\n", (unsigned long) i
, stack_vars
[i
].size
,
505 stack_vars
[i
].alignb
);
507 for (j
= i
; j
!= EOC
; j
= stack_vars
[j
].next
)
509 fputc ('\t', dump_file
);
510 print_generic_expr (dump_file
, stack_vars
[j
].decl
, dump_flags
);
511 fprintf (dump_file
, ", offset " HOST_WIDE_INT_PRINT_DEC
"\n",
512 stack_vars
[j
].offset
);
517 /* Assign rtl to DECL at frame offset OFFSET. */
520 expand_one_stack_var_at (tree decl
, HOST_WIDE_INT offset
)
525 /* If this fails, we've overflowed the stack frame. Error nicely? */
526 gcc_assert (offset
== trunc_int_for_mode (offset
, Pmode
));
528 x
= plus_constant (virtual_stack_vars_rtx
, offset
);
529 x
= gen_rtx_MEM (DECL_MODE (decl
), x
);
531 /* Set alignment we actually gave this decl. */
532 offset
-= frame_phase
;
533 align
= offset
& -offset
;
534 align
*= BITS_PER_UNIT
;
535 if (align
> STACK_BOUNDARY
|| align
== 0)
536 align
= STACK_BOUNDARY
;
537 DECL_ALIGN (decl
) = align
;
538 DECL_USER_ALIGN (decl
) = 0;
540 set_mem_attributes (x
, decl
, true);
541 SET_DECL_RTL (decl
, x
);
544 /* A subroutine of expand_used_vars. Give each partition representative
545 a unique location within the stack frame. Update each partition member
546 with that location. */
549 expand_stack_vars (bool (*pred
) (tree
))
551 size_t si
, i
, j
, n
= stack_vars_num
;
553 for (si
= 0; si
< n
; ++si
)
555 HOST_WIDE_INT offset
;
557 i
= stack_vars_sorted
[si
];
559 /* Skip variables that aren't partition representatives, for now. */
560 if (stack_vars
[i
].representative
!= i
)
563 /* Skip variables that have already had rtl assigned. See also
564 add_stack_var where we perpetrate this pc_rtx hack. */
565 if (DECL_RTL (stack_vars
[i
].decl
) != pc_rtx
)
568 /* Check the predicate to see whether this variable should be
569 allocated in this pass. */
570 if (pred
&& !pred (stack_vars
[i
].decl
))
573 offset
= alloc_stack_frame_space (stack_vars
[i
].size
,
574 stack_vars
[i
].alignb
);
576 /* Create rtl for each variable based on their location within the
578 for (j
= i
; j
!= EOC
; j
= stack_vars
[j
].next
)
580 gcc_assert (stack_vars
[j
].offset
<= stack_vars
[i
].size
);
581 expand_one_stack_var_at (stack_vars
[j
].decl
,
582 stack_vars
[j
].offset
+ offset
);
587 /* Take into account all sizes of partitions and reset DECL_RTLs. */
589 account_stack_vars (void)
591 size_t si
, j
, i
, n
= stack_vars_num
;
592 HOST_WIDE_INT size
= 0;
594 for (si
= 0; si
< n
; ++si
)
596 i
= stack_vars_sorted
[si
];
598 /* Skip variables that aren't partition representatives, for now. */
599 if (stack_vars
[i
].representative
!= i
)
602 size
+= stack_vars
[i
].size
;
603 for (j
= i
; j
!= EOC
; j
= stack_vars
[j
].next
)
604 SET_DECL_RTL (stack_vars
[j
].decl
, NULL
);
609 /* A subroutine of expand_one_var. Called to immediately assign rtl
610 to a variable to be allocated in the stack frame. */
613 expand_one_stack_var (tree var
)
615 HOST_WIDE_INT size
, offset
, align
;
617 size
= tree_low_cst (DECL_SIZE_UNIT (var
), 1);
618 align
= get_decl_align_unit (var
);
619 offset
= alloc_stack_frame_space (size
, align
);
621 expand_one_stack_var_at (var
, offset
);
624 /* A subroutine of expand_one_var. Called to assign rtl
625 to a TREE_STATIC VAR_DECL. */
628 expand_one_static_var (tree var
)
630 /* In unit-at-a-time all the static variables are expanded at the end
631 of compilation process. */
632 if (flag_unit_at_a_time
)
634 /* If this is an inlined copy of a static local variable,
635 look up the original. */
636 var
= DECL_ORIGIN (var
);
638 /* If we've already processed this variable because of that, do nothing. */
639 if (TREE_ASM_WRITTEN (var
))
642 /* Otherwise, just emit the variable. */
643 rest_of_decl_compilation (var
, 0, 0);
646 /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL
647 that will reside in a hard register. */
650 expand_one_hard_reg_var (tree var
)
652 rest_of_decl_compilation (var
, 0, 0);
655 /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL
656 that will reside in a pseudo register. */
659 expand_one_register_var (tree var
)
661 tree type
= TREE_TYPE (var
);
662 int unsignedp
= TYPE_UNSIGNED (type
);
663 enum machine_mode reg_mode
664 = promote_mode (type
, DECL_MODE (var
), &unsignedp
, 0);
665 rtx x
= gen_reg_rtx (reg_mode
);
667 SET_DECL_RTL (var
, x
);
669 /* Note if the object is a user variable. */
670 if (!DECL_ARTIFICIAL (var
))
673 if (POINTER_TYPE_P (type
))
674 mark_reg_pointer (x
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (var
))));
677 /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL that
678 has some associated error, e.g. its type is error-mark. We just need
679 to pick something that won't crash the rest of the compiler. */
682 expand_one_error_var (tree var
)
684 enum machine_mode mode
= DECL_MODE (var
);
688 x
= gen_rtx_MEM (BLKmode
, const0_rtx
);
689 else if (mode
== VOIDmode
)
692 x
= gen_reg_rtx (mode
);
694 SET_DECL_RTL (var
, x
);
697 /* A subroutine of expand_one_var. VAR is a variable that will be
698 allocated to the local stack frame. Return true if we wish to
699 add VAR to STACK_VARS so that it will be coalesced with other
700 variables. Return false to allocate VAR immediately.
702 This function is used to reduce the number of variables considered
703 for coalescing, which reduces the size of the quadratic problem. */
706 defer_stack_allocation (tree var
, bool toplevel
)
708 /* If stack protection is enabled, *all* stack variables must be deferred,
709 so that we can re-order the strings to the top of the frame. */
710 if (flag_stack_protect
)
713 /* Variables in the outermost scope automatically conflict with
714 every other variable. The only reason to want to defer them
715 at all is that, after sorting, we can more efficiently pack
716 small variables in the stack frame. Continue to defer at -O2. */
717 if (toplevel
&& optimize
< 2)
720 /* Without optimization, *most* variables are allocated from the
721 stack, which makes the quadratic problem large exactly when we
722 want compilation to proceed as quickly as possible. On the
723 other hand, we don't want the function's stack frame size to
724 get completely out of hand. So we avoid adding scalars and
725 "small" aggregates to the list at all. */
726 if (optimize
== 0 && tree_low_cst (DECL_SIZE_UNIT (var
), 1) < 32)
732 /* A subroutine of expand_used_vars. Expand one variable according to
733 its flavor. Variables to be placed on the stack are not actually
734 expanded yet, merely recorded.
735 When REALLY_EXPAND is false, only add stack values to be allocated.
736 Return stack usage this variable is supposed to take.
740 expand_one_var (tree var
, bool toplevel
, bool really_expand
)
742 if (TREE_CODE (var
) != VAR_DECL
)
744 else if (DECL_EXTERNAL (var
))
746 else if (DECL_HAS_VALUE_EXPR_P (var
))
748 else if (TREE_STATIC (var
))
751 expand_one_static_var (var
);
753 else if (DECL_RTL_SET_P (var
))
755 else if (TREE_TYPE (var
) == error_mark_node
)
758 expand_one_error_var (var
);
760 else if (DECL_HARD_REGISTER (var
))
763 expand_one_hard_reg_var (var
);
765 else if (use_register_for_decl (var
))
768 expand_one_register_var (var
);
770 else if (defer_stack_allocation (var
, toplevel
))
775 expand_one_stack_var (var
);
776 return tree_low_cst (DECL_SIZE_UNIT (var
), 1);
781 /* A subroutine of expand_used_vars. Walk down through the BLOCK tree
782 expanding variables. Those variables that can be put into registers
783 are allocated pseudos; those that can't are put on the stack.
785 TOPLEVEL is true if this is the outermost BLOCK. */
788 expand_used_vars_for_block (tree block
, bool toplevel
)
790 size_t i
, j
, old_sv_num
, this_sv_num
, new_sv_num
;
793 old_sv_num
= toplevel
? 0 : stack_vars_num
;
795 /* Expand all variables at this level. */
796 for (t
= BLOCK_VARS (block
); t
; t
= TREE_CHAIN (t
))
798 /* Force local static variables to be output when marked by
799 used attribute. For unit-at-a-time, cgraph code already takes
801 || (!flag_unit_at_a_time
&& TREE_STATIC (t
)
802 && DECL_PRESERVE_P (t
)))
803 expand_one_var (t
, toplevel
, true);
805 this_sv_num
= stack_vars_num
;
807 /* Expand all variables at containing levels. */
808 for (t
= BLOCK_SUBBLOCKS (block
); t
; t
= BLOCK_CHAIN (t
))
809 expand_used_vars_for_block (t
, false);
811 /* Since we do not track exact variable lifetimes (which is not even
812 possible for variables whose address escapes), we mirror the block
813 tree in the interference graph. Here we cause all variables at this
814 level, and all sublevels, to conflict. Do make certain that a
815 variable conflicts with itself. */
816 if (old_sv_num
< this_sv_num
)
818 new_sv_num
= stack_vars_num
;
819 resize_stack_vars_conflict (new_sv_num
);
821 for (i
= old_sv_num
; i
< new_sv_num
; ++i
)
822 for (j
= i
< this_sv_num
? i
+1 : this_sv_num
; j
-- > old_sv_num
;)
823 add_stack_var_conflict (i
, j
);
827 /* A subroutine of expand_used_vars. Walk down through the BLOCK tree
828 and clear TREE_USED on all local variables. */
831 clear_tree_used (tree block
)
835 for (t
= BLOCK_VARS (block
); t
; t
= TREE_CHAIN (t
))
836 /* if (!TREE_STATIC (t) && !DECL_EXTERNAL (t)) */
839 for (t
= BLOCK_SUBBLOCKS (block
); t
; t
= BLOCK_CHAIN (t
))
843 /* Examine TYPE and determine a bit mask of the following features. */
845 #define SPCT_HAS_LARGE_CHAR_ARRAY 1
846 #define SPCT_HAS_SMALL_CHAR_ARRAY 2
847 #define SPCT_HAS_ARRAY 4
848 #define SPCT_HAS_AGGREGATE 8
851 stack_protect_classify_type (tree type
)
853 unsigned int ret
= 0;
856 switch (TREE_CODE (type
))
859 t
= TYPE_MAIN_VARIANT (TREE_TYPE (type
));
860 if (t
== char_type_node
861 || t
== signed_char_type_node
862 || t
== unsigned_char_type_node
)
864 unsigned HOST_WIDE_INT max
= PARAM_VALUE (PARAM_SSP_BUFFER_SIZE
);
865 unsigned HOST_WIDE_INT len
;
867 if (!TYPE_SIZE_UNIT (type
)
868 || !host_integerp (TYPE_SIZE_UNIT (type
), 1))
871 len
= tree_low_cst (TYPE_SIZE_UNIT (type
), 1);
874 ret
= SPCT_HAS_SMALL_CHAR_ARRAY
| SPCT_HAS_ARRAY
;
876 ret
= SPCT_HAS_LARGE_CHAR_ARRAY
| SPCT_HAS_ARRAY
;
879 ret
= SPCT_HAS_ARRAY
;
883 case QUAL_UNION_TYPE
:
885 ret
= SPCT_HAS_AGGREGATE
;
886 for (t
= TYPE_FIELDS (type
); t
; t
= TREE_CHAIN (t
))
887 if (TREE_CODE (t
) == FIELD_DECL
)
888 ret
|= stack_protect_classify_type (TREE_TYPE (t
));
898 /* Return nonzero if DECL should be segregated into the "vulnerable" upper
899 part of the local stack frame. Remember if we ever return nonzero for
900 any variable in this function. The return value is the phase number in
901 which the variable should be allocated. */
904 stack_protect_decl_phase (tree decl
)
906 unsigned int bits
= stack_protect_classify_type (TREE_TYPE (decl
));
909 if (bits
& SPCT_HAS_SMALL_CHAR_ARRAY
)
910 has_short_buffer
= true;
912 if (flag_stack_protect
== 2)
914 if ((bits
& (SPCT_HAS_SMALL_CHAR_ARRAY
| SPCT_HAS_LARGE_CHAR_ARRAY
))
915 && !(bits
& SPCT_HAS_AGGREGATE
))
917 else if (bits
& SPCT_HAS_ARRAY
)
921 ret
= (bits
& SPCT_HAS_LARGE_CHAR_ARRAY
) != 0;
924 has_protected_decls
= true;
929 /* Two helper routines that check for phase 1 and phase 2. These are used
930 as callbacks for expand_stack_vars. */
933 stack_protect_decl_phase_1 (tree decl
)
935 return stack_protect_decl_phase (decl
) == 1;
939 stack_protect_decl_phase_2 (tree decl
)
941 return stack_protect_decl_phase (decl
) == 2;
944 /* Ensure that variables in different stack protection phases conflict
945 so that they are not merged and share the same stack slot. */
948 add_stack_protection_conflicts (void)
950 size_t i
, j
, n
= stack_vars_num
;
951 unsigned char *phase
;
953 phase
= XNEWVEC (unsigned char, n
);
954 for (i
= 0; i
< n
; ++i
)
955 phase
[i
] = stack_protect_decl_phase (stack_vars
[i
].decl
);
957 for (i
= 0; i
< n
; ++i
)
959 unsigned char ph_i
= phase
[i
];
960 for (j
= 0; j
< i
; ++j
)
961 if (ph_i
!= phase
[j
])
962 add_stack_var_conflict (i
, j
);
968 /* Create a decl for the guard at the top of the stack frame. */
971 create_stack_guard (void)
973 tree guard
= build_decl (VAR_DECL
, NULL
, ptr_type_node
);
974 TREE_THIS_VOLATILE (guard
) = 1;
975 TREE_USED (guard
) = 1;
976 expand_one_stack_var (guard
);
977 crtl
->stack_protect_guard
= guard
;
980 /* A subroutine of expand_used_vars. Walk down through the BLOCK tree
981 expanding variables. Those variables that can be put into registers
982 are allocated pseudos; those that can't are put on the stack.
984 TOPLEVEL is true if this is the outermost BLOCK. */
987 account_used_vars_for_block (tree block
, bool toplevel
)
989 size_t i
, j
, old_sv_num
, this_sv_num
, new_sv_num
;
991 HOST_WIDE_INT size
= 0;
993 old_sv_num
= toplevel
? 0 : stack_vars_num
;
995 /* Expand all variables at this level. */
996 for (t
= BLOCK_VARS (block
); t
; t
= TREE_CHAIN (t
))
998 size
+= expand_one_var (t
, toplevel
, false);
1000 this_sv_num
= stack_vars_num
;
1002 /* Expand all variables at containing levels. */
1003 for (t
= BLOCK_SUBBLOCKS (block
); t
; t
= BLOCK_CHAIN (t
))
1004 size
+= account_used_vars_for_block (t
, false);
1006 /* Since we do not track exact variable lifetimes (which is not even
1007 possible for variables whose address escapes), we mirror the block
1008 tree in the interference graph. Here we cause all variables at this
1009 level, and all sublevels, to conflict. Do make certain that a
1010 variable conflicts with itself. */
1011 if (old_sv_num
< this_sv_num
)
1013 new_sv_num
= stack_vars_num
;
1014 resize_stack_vars_conflict (new_sv_num
);
1016 for (i
= old_sv_num
; i
< new_sv_num
; ++i
)
1017 for (j
= i
< this_sv_num
? i
+1 : this_sv_num
; j
-- > old_sv_num
;)
1018 add_stack_var_conflict (i
, j
);
1023 /* Prepare for expanding variables. */
1025 init_vars_expansion (void)
1028 /* Set TREE_USED on all variables in the local_decls. */
1029 for (t
= cfun
->local_decls
; t
; t
= TREE_CHAIN (t
))
1030 TREE_USED (TREE_VALUE (t
)) = 1;
1032 /* Clear TREE_USED on all variables associated with a block scope. */
1033 clear_tree_used (DECL_INITIAL (current_function_decl
));
1035 /* Initialize local stack smashing state. */
1036 has_protected_decls
= false;
1037 has_short_buffer
= false;
1040 /* Free up stack variable graph data. */
1042 fini_vars_expansion (void)
1044 XDELETEVEC (stack_vars
);
1045 XDELETEVEC (stack_vars_sorted
);
1046 XDELETEVEC (stack_vars_conflict
);
1048 stack_vars_alloc
= stack_vars_num
= 0;
1049 stack_vars_conflict
= NULL
;
1050 stack_vars_conflict_alloc
= 0;
1054 estimated_stack_frame_size (void)
1056 HOST_WIDE_INT size
= 0;
1057 tree t
, outer_block
= DECL_INITIAL (current_function_decl
);
1059 init_vars_expansion ();
1061 /* At this point all variables on the local_decls with TREE_USED
1062 set are not associated with any block scope. Lay them out. */
1063 for (t
= cfun
->local_decls
; t
; t
= TREE_CHAIN (t
))
1065 tree var
= TREE_VALUE (t
);
1067 if (TREE_USED (var
))
1068 size
+= expand_one_var (var
, true, false);
1069 TREE_USED (var
) = 1;
1071 size
+= account_used_vars_for_block (outer_block
, true);
1072 if (stack_vars_num
> 0)
1074 /* Due to the way alias sets work, no variables with non-conflicting
1075 alias sets may be assigned the same address. Add conflicts to
1077 add_alias_set_conflicts ();
1079 /* If stack protection is enabled, we don't share space between
1080 vulnerable data and non-vulnerable data. */
1081 if (flag_stack_protect
)
1082 add_stack_protection_conflicts ();
1084 /* Now that we have collected all stack variables, and have computed a
1085 minimal interference graph, attempt to save some stack space. */
1086 partition_stack_vars ();
1088 dump_stack_var_partition ();
1090 size
+= account_stack_vars ();
1091 fini_vars_expansion ();
1096 /* Expand all variables used in the function. */
1099 expand_used_vars (void)
1101 tree t
, outer_block
= DECL_INITIAL (current_function_decl
);
1103 /* Compute the phase of the stack frame for this function. */
1105 int align
= PREFERRED_STACK_BOUNDARY
/ BITS_PER_UNIT
;
1106 int off
= STARTING_FRAME_OFFSET
% align
;
1107 frame_phase
= off
? align
- off
: 0;
1110 init_vars_expansion ();
1112 /* At this point all variables on the local_decls with TREE_USED
1113 set are not associated with any block scope. Lay them out. */
1114 for (t
= cfun
->local_decls
; t
; t
= TREE_CHAIN (t
))
1116 tree var
= TREE_VALUE (t
);
1117 bool expand_now
= false;
1119 /* We didn't set a block for static or extern because it's hard
1120 to tell the difference between a global variable (re)declared
1121 in a local scope, and one that's really declared there to
1122 begin with. And it doesn't really matter much, since we're
1123 not giving them stack space. Expand them now. */
1124 if (TREE_STATIC (var
) || DECL_EXTERNAL (var
))
1127 /* Any variable that could have been hoisted into an SSA_NAME
1128 will have been propagated anywhere the optimizers chose,
1129 i.e. not confined to their original block. Allocate them
1130 as if they were defined in the outermost scope. */
1131 else if (is_gimple_reg (var
))
1134 /* If the variable is not associated with any block, then it
1135 was created by the optimizers, and could be live anywhere
1137 else if (TREE_USED (var
))
1140 /* Finally, mark all variables on the list as used. We'll use
1141 this in a moment when we expand those associated with scopes. */
1142 TREE_USED (var
) = 1;
1145 expand_one_var (var
, true, true);
1147 cfun
->local_decls
= NULL_TREE
;
1149 /* At this point, all variables within the block tree with TREE_USED
1150 set are actually used by the optimized function. Lay them out. */
1151 expand_used_vars_for_block (outer_block
, true);
1153 if (stack_vars_num
> 0)
1155 /* Due to the way alias sets work, no variables with non-conflicting
1156 alias sets may be assigned the same address. Add conflicts to
1158 add_alias_set_conflicts ();
1160 /* If stack protection is enabled, we don't share space between
1161 vulnerable data and non-vulnerable data. */
1162 if (flag_stack_protect
)
1163 add_stack_protection_conflicts ();
1165 /* Now that we have collected all stack variables, and have computed a
1166 minimal interference graph, attempt to save some stack space. */
1167 partition_stack_vars ();
1169 dump_stack_var_partition ();
1172 /* There are several conditions under which we should create a
1173 stack guard: protect-all, alloca used, protected decls present. */
1174 if (flag_stack_protect
== 2
1175 || (flag_stack_protect
1176 && (cfun
->calls_alloca
|| has_protected_decls
)))
1177 create_stack_guard ();
1179 /* Assign rtl to each variable based on these partitions. */
1180 if (stack_vars_num
> 0)
1182 /* Reorder decls to be protected by iterating over the variables
1183 array multiple times, and allocating out of each phase in turn. */
1184 /* ??? We could probably integrate this into the qsort we did
1185 earlier, such that we naturally see these variables first,
1186 and thus naturally allocate things in the right order. */
1187 if (has_protected_decls
)
1189 /* Phase 1 contains only character arrays. */
1190 expand_stack_vars (stack_protect_decl_phase_1
);
1192 /* Phase 2 contains other kinds of arrays. */
1193 if (flag_stack_protect
== 2)
1194 expand_stack_vars (stack_protect_decl_phase_2
);
1197 expand_stack_vars (NULL
);
1199 fini_vars_expansion ();
1202 /* If the target requires that FRAME_OFFSET be aligned, do it. */
1203 if (STACK_ALIGNMENT_NEEDED
)
1205 HOST_WIDE_INT align
= PREFERRED_STACK_BOUNDARY
/ BITS_PER_UNIT
;
1206 if (!FRAME_GROWS_DOWNWARD
)
1207 frame_offset
+= align
- 1;
1208 frame_offset
&= -align
;
1213 /* If we need to produce a detailed dump, print the tree representation
1214 for STMT to the dump file. SINCE is the last RTX after which the RTL
1215 generated for STMT should have been appended. */
1218 maybe_dump_rtl_for_tree_stmt (tree stmt
, rtx since
)
1220 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1222 fprintf (dump_file
, "\n;; ");
1223 print_generic_expr (dump_file
, stmt
, TDF_SLIM
);
1224 fprintf (dump_file
, "\n");
1226 print_rtl (dump_file
, since
? NEXT_INSN (since
) : since
);
1230 /* Maps the blocks that do not contain tree labels to rtx labels. */
1232 static struct pointer_map_t
*lab_rtx_for_bb
;
1234 /* Returns the label_rtx expression for a label starting basic block BB. */
1237 label_rtx_for_bb (basic_block bb
)
1239 tree_stmt_iterator tsi
;
1243 if (bb
->flags
& BB_RTL
)
1244 return block_label (bb
);
1246 elt
= pointer_map_contains (lab_rtx_for_bb
, bb
);
1250 /* Find the tree label if it is present. */
1252 for (tsi
= tsi_start (bb_stmt_list (bb
)); !tsi_end_p (tsi
); tsi_next (&tsi
))
1254 lab_stmt
= tsi_stmt (tsi
);
1255 if (TREE_CODE (lab_stmt
) != LABEL_EXPR
)
1258 lab
= LABEL_EXPR_LABEL (lab_stmt
);
1259 if (DECL_NONLOCAL (lab
))
1262 return label_rtx (lab
);
1265 elt
= pointer_map_insert (lab_rtx_for_bb
, bb
);
1266 *elt
= gen_label_rtx ();
1270 /* A subroutine of expand_gimple_basic_block. Expand one COND_EXPR.
1271 Returns a new basic block if we've terminated the current basic
1272 block and created a new one. */
1275 expand_gimple_cond_expr (basic_block bb
, tree stmt
)
1277 basic_block new_bb
, dest
;
1281 tree pred
= COND_EXPR_COND (stmt
);
1284 gcc_assert (COND_EXPR_THEN (stmt
) == NULL_TREE
);
1285 gcc_assert (COND_EXPR_ELSE (stmt
) == NULL_TREE
);
1286 last2
= last
= get_last_insn ();
1288 extract_true_false_edges_from_block (bb
, &true_edge
, &false_edge
);
1289 if (EXPR_LOCUS (stmt
))
1291 set_curr_insn_source_location (*(EXPR_LOCUS (stmt
)));
1292 set_curr_insn_block (TREE_BLOCK (stmt
));
1295 /* These flags have no purpose in RTL land. */
1296 true_edge
->flags
&= ~EDGE_TRUE_VALUE
;
1297 false_edge
->flags
&= ~EDGE_FALSE_VALUE
;
1299 /* We can either have a pure conditional jump with one fallthru edge or
1300 two-way jump that needs to be decomposed into two basic blocks. */
1301 if (false_edge
->dest
== bb
->next_bb
)
1303 jumpif (pred
, label_rtx_for_bb (true_edge
->dest
));
1304 add_reg_br_prob_note (last
, true_edge
->probability
);
1305 maybe_dump_rtl_for_tree_stmt (stmt
, last
);
1306 if (true_edge
->goto_locus
)
1307 set_curr_insn_source_location (true_edge
->goto_locus
);
1308 false_edge
->flags
|= EDGE_FALLTHRU
;
1311 if (true_edge
->dest
== bb
->next_bb
)
1313 jumpifnot (pred
, label_rtx_for_bb (false_edge
->dest
));
1314 add_reg_br_prob_note (last
, false_edge
->probability
);
1315 maybe_dump_rtl_for_tree_stmt (stmt
, last
);
1316 if (false_edge
->goto_locus
)
1317 set_curr_insn_source_location (false_edge
->goto_locus
);
1318 true_edge
->flags
|= EDGE_FALLTHRU
;
1322 jumpif (pred
, label_rtx_for_bb (true_edge
->dest
));
1323 add_reg_br_prob_note (last
, true_edge
->probability
);
1324 last
= get_last_insn ();
1325 emit_jump (label_rtx_for_bb (false_edge
->dest
));
1328 if (BARRIER_P (BB_END (bb
)))
1329 BB_END (bb
) = PREV_INSN (BB_END (bb
));
1330 update_bb_for_insn (bb
);
1332 new_bb
= create_basic_block (NEXT_INSN (last
), get_last_insn (), bb
);
1333 dest
= false_edge
->dest
;
1334 redirect_edge_succ (false_edge
, new_bb
);
1335 false_edge
->flags
|= EDGE_FALLTHRU
;
1336 new_bb
->count
= false_edge
->count
;
1337 new_bb
->frequency
= EDGE_FREQUENCY (false_edge
);
1338 new_edge
= make_edge (new_bb
, dest
, 0);
1339 new_edge
->probability
= REG_BR_PROB_BASE
;
1340 new_edge
->count
= new_bb
->count
;
1341 if (BARRIER_P (BB_END (new_bb
)))
1342 BB_END (new_bb
) = PREV_INSN (BB_END (new_bb
));
1343 update_bb_for_insn (new_bb
);
1345 maybe_dump_rtl_for_tree_stmt (stmt
, last2
);
1347 if (false_edge
->goto_locus
)
1348 set_curr_insn_source_location (false_edge
->goto_locus
);
1353 /* A subroutine of expand_gimple_basic_block. Expand one CALL_EXPR
1354 that has CALL_EXPR_TAILCALL set. Returns non-null if we actually
1355 generated a tail call (something that might be denied by the ABI
1356 rules governing the call; see calls.c).
1358 Sets CAN_FALLTHRU if we generated a *conditional* tail call, and
1359 can still reach the rest of BB. The case here is __builtin_sqrt,
1360 where the NaN result goes through the external function (with a
1361 tailcall) and the normal result happens via a sqrt instruction. */
1364 expand_gimple_tailcall (basic_block bb
, tree stmt
, bool *can_fallthru
)
1372 last2
= last
= get_last_insn ();
1374 expand_expr_stmt (stmt
);
1376 for (last
= NEXT_INSN (last
); last
; last
= NEXT_INSN (last
))
1377 if (CALL_P (last
) && SIBLING_CALL_P (last
))
1380 maybe_dump_rtl_for_tree_stmt (stmt
, last2
);
1382 *can_fallthru
= true;
1386 /* ??? Wouldn't it be better to just reset any pending stack adjust?
1387 Any instructions emitted here are about to be deleted. */
1388 do_pending_stack_adjust ();
1390 /* Remove any non-eh, non-abnormal edges that don't go to exit. */
1391 /* ??? I.e. the fallthrough edge. HOWEVER! If there were to be
1392 EH or abnormal edges, we shouldn't have created a tail call in
1393 the first place. So it seems to me we should just be removing
1394 all edges here, or redirecting the existing fallthru edge to
1400 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
1402 if (!(e
->flags
& (EDGE_ABNORMAL
| EDGE_EH
)))
1404 if (e
->dest
!= EXIT_BLOCK_PTR
)
1406 e
->dest
->count
-= e
->count
;
1407 e
->dest
->frequency
-= EDGE_FREQUENCY (e
);
1408 if (e
->dest
->count
< 0)
1410 if (e
->dest
->frequency
< 0)
1411 e
->dest
->frequency
= 0;
1414 probability
+= e
->probability
;
1421 /* This is somewhat ugly: the call_expr expander often emits instructions
1422 after the sibcall (to perform the function return). These confuse the
1423 find_many_sub_basic_blocks code, so we need to get rid of these. */
1424 last
= NEXT_INSN (last
);
1425 gcc_assert (BARRIER_P (last
));
1427 *can_fallthru
= false;
1428 while (NEXT_INSN (last
))
1430 /* For instance an sqrt builtin expander expands if with
1431 sibcall in the then and label for `else`. */
1432 if (LABEL_P (NEXT_INSN (last
)))
1434 *can_fallthru
= true;
1437 delete_insn (NEXT_INSN (last
));
1440 e
= make_edge (bb
, EXIT_BLOCK_PTR
, EDGE_ABNORMAL
| EDGE_SIBCALL
);
1441 e
->probability
+= probability
;
1444 update_bb_for_insn (bb
);
1446 if (NEXT_INSN (last
))
1448 bb
= create_basic_block (NEXT_INSN (last
), get_last_insn (), bb
);
1451 if (BARRIER_P (last
))
1452 BB_END (bb
) = PREV_INSN (last
);
1455 maybe_dump_rtl_for_tree_stmt (stmt
, last2
);
1460 /* Expand basic block BB from GIMPLE trees to RTL. */
1463 expand_gimple_basic_block (basic_block bb
)
1465 tree_stmt_iterator tsi
;
1466 tree stmts
= bb_stmt_list (bb
);
1476 "\n;; Generating RTL for tree basic block %d\n",
1481 init_rtl_bb_info (bb
);
1482 bb
->flags
|= BB_RTL
;
1484 /* Remove the RETURN_EXPR if we may fall though to the exit
1486 tsi
= tsi_last (stmts
);
1487 if (!tsi_end_p (tsi
)
1488 && TREE_CODE (tsi_stmt (tsi
)) == RETURN_EXPR
)
1490 tree ret_stmt
= tsi_stmt (tsi
);
1492 gcc_assert (single_succ_p (bb
));
1493 gcc_assert (single_succ (bb
) == EXIT_BLOCK_PTR
);
1495 if (bb
->next_bb
== EXIT_BLOCK_PTR
1496 && !TREE_OPERAND (ret_stmt
, 0))
1499 single_succ_edge (bb
)->flags
|= EDGE_FALLTHRU
;
1503 tsi
= tsi_start (stmts
);
1504 if (!tsi_end_p (tsi
))
1506 stmt
= tsi_stmt (tsi
);
1507 if (TREE_CODE (stmt
) != LABEL_EXPR
)
1511 elt
= pointer_map_contains (lab_rtx_for_bb
, bb
);
1515 last
= get_last_insn ();
1519 expand_expr_stmt (stmt
);
1524 emit_label ((rtx
) *elt
);
1526 /* Java emits line number notes in the top of labels.
1527 ??? Make this go away once line number notes are obsoleted. */
1528 BB_HEAD (bb
) = NEXT_INSN (last
);
1529 if (NOTE_P (BB_HEAD (bb
)))
1530 BB_HEAD (bb
) = NEXT_INSN (BB_HEAD (bb
));
1531 note
= emit_note_after (NOTE_INSN_BASIC_BLOCK
, BB_HEAD (bb
));
1533 maybe_dump_rtl_for_tree_stmt (stmt
, last
);
1536 note
= BB_HEAD (bb
) = emit_note (NOTE_INSN_BASIC_BLOCK
);
1538 NOTE_BASIC_BLOCK (note
) = bb
;
1540 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
1542 /* Clear EDGE_EXECUTABLE. This flag is never used in the backend. */
1543 e
->flags
&= ~EDGE_EXECUTABLE
;
1545 /* At the moment not all abnormal edges match the RTL representation.
1546 It is safe to remove them here as find_many_sub_basic_blocks will
1547 rediscover them. In the future we should get this fixed properly. */
1548 if (e
->flags
& EDGE_ABNORMAL
)
1554 for (; !tsi_end_p (tsi
); tsi_next (&tsi
))
1556 tree stmt
= tsi_stmt (tsi
);
1562 /* Expand this statement, then evaluate the resulting RTL and
1563 fixup the CFG accordingly. */
1564 if (TREE_CODE (stmt
) == COND_EXPR
)
1566 new_bb
= expand_gimple_cond_expr (bb
, stmt
);
1572 tree call
= get_call_expr_in (stmt
);
1574 /* For the benefit of calls.c, converting all this to rtl,
1575 we need to record the call expression, not just the outer
1576 modify statement. */
1577 if (call
&& call
!= stmt
)
1579 if ((region
= lookup_stmt_eh_region (stmt
)) > 0)
1580 add_stmt_to_eh_region (call
, region
);
1581 gimple_duplicate_stmt_histograms (cfun
, call
, cfun
, stmt
);
1583 if (call
&& CALL_EXPR_TAILCALL (call
))
1586 new_bb
= expand_gimple_tailcall (bb
, stmt
, &can_fallthru
);
1597 last
= get_last_insn ();
1598 expand_expr_stmt (stmt
);
1599 maybe_dump_rtl_for_tree_stmt (stmt
, last
);
1604 /* Expand implicit goto. */
1605 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1607 if (e
->flags
& EDGE_FALLTHRU
)
1611 if (e
&& e
->dest
!= bb
->next_bb
)
1613 emit_jump (label_rtx_for_bb (e
->dest
));
1615 set_curr_insn_source_location (e
->goto_locus
);
1616 e
->flags
&= ~EDGE_FALLTHRU
;
1619 do_pending_stack_adjust ();
1621 /* Find the block tail. The last insn in the block is the insn
1622 before a barrier and/or table jump insn. */
1623 last
= get_last_insn ();
1624 if (BARRIER_P (last
))
1625 last
= PREV_INSN (last
);
1626 if (JUMP_TABLE_DATA_P (last
))
1627 last
= PREV_INSN (PREV_INSN (last
));
1630 update_bb_for_insn (bb
);
1636 /* Create a basic block for initialization code. */
1639 construct_init_block (void)
1641 basic_block init_block
, first_block
;
1645 /* Multiple entry points not supported yet. */
1646 gcc_assert (EDGE_COUNT (ENTRY_BLOCK_PTR
->succs
) == 1);
1647 init_rtl_bb_info (ENTRY_BLOCK_PTR
);
1648 init_rtl_bb_info (EXIT_BLOCK_PTR
);
1649 ENTRY_BLOCK_PTR
->flags
|= BB_RTL
;
1650 EXIT_BLOCK_PTR
->flags
|= BB_RTL
;
1652 e
= EDGE_SUCC (ENTRY_BLOCK_PTR
, 0);
1654 /* When entry edge points to first basic block, we don't need jump,
1655 otherwise we have to jump into proper target. */
1656 if (e
&& e
->dest
!= ENTRY_BLOCK_PTR
->next_bb
)
1658 tree label
= tree_block_label (e
->dest
);
1660 emit_jump (label_rtx (label
));
1664 flags
= EDGE_FALLTHRU
;
1666 init_block
= create_basic_block (NEXT_INSN (get_insns ()),
1669 init_block
->frequency
= ENTRY_BLOCK_PTR
->frequency
;
1670 init_block
->count
= ENTRY_BLOCK_PTR
->count
;
1673 first_block
= e
->dest
;
1674 redirect_edge_succ (e
, init_block
);
1675 e
= make_edge (init_block
, first_block
, flags
);
1678 e
= make_edge (init_block
, EXIT_BLOCK_PTR
, EDGE_FALLTHRU
);
1679 e
->probability
= REG_BR_PROB_BASE
;
1680 e
->count
= ENTRY_BLOCK_PTR
->count
;
1682 update_bb_for_insn (init_block
);
1686 /* For each lexical block, set BLOCK_NUMBER to the depth at which it is
1687 found in the block tree. */
1690 set_block_levels (tree block
, int level
)
1694 BLOCK_NUMBER (block
) = level
;
1695 set_block_levels (BLOCK_SUBBLOCKS (block
), level
+ 1);
1696 block
= BLOCK_CHAIN (block
);
1700 /* Create a block containing landing pads and similar stuff. */
1703 construct_exit_block (void)
1705 rtx head
= get_last_insn ();
1707 basic_block exit_block
;
1711 rtx orig_end
= BB_END (EXIT_BLOCK_PTR
->prev_bb
);
1713 /* Make sure the locus is set to the end of the function, so that
1714 epilogue line numbers and warnings are set properly. */
1715 if (cfun
->function_end_locus
!= UNKNOWN_LOCATION
)
1716 input_location
= cfun
->function_end_locus
;
1718 /* The following insns belong to the top scope. */
1719 set_curr_insn_block (DECL_INITIAL (current_function_decl
));
1721 /* Generate rtl for function exit. */
1722 expand_function_end ();
1724 end
= get_last_insn ();
1727 /* While emitting the function end we could move end of the last basic block.
1729 BB_END (EXIT_BLOCK_PTR
->prev_bb
) = orig_end
;
1730 while (NEXT_INSN (head
) && NOTE_P (NEXT_INSN (head
)))
1731 head
= NEXT_INSN (head
);
1732 exit_block
= create_basic_block (NEXT_INSN (head
), end
,
1733 EXIT_BLOCK_PTR
->prev_bb
);
1734 exit_block
->frequency
= EXIT_BLOCK_PTR
->frequency
;
1735 exit_block
->count
= EXIT_BLOCK_PTR
->count
;
1738 while (ix
< EDGE_COUNT (EXIT_BLOCK_PTR
->preds
))
1740 e
= EDGE_PRED (EXIT_BLOCK_PTR
, ix
);
1741 if (!(e
->flags
& EDGE_ABNORMAL
))
1742 redirect_edge_succ (e
, exit_block
);
1747 e
= make_edge (exit_block
, EXIT_BLOCK_PTR
, EDGE_FALLTHRU
);
1748 e
->probability
= REG_BR_PROB_BASE
;
1749 e
->count
= EXIT_BLOCK_PTR
->count
;
1750 FOR_EACH_EDGE (e2
, ei
, EXIT_BLOCK_PTR
->preds
)
1753 e
->count
-= e2
->count
;
1754 exit_block
->count
-= e2
->count
;
1755 exit_block
->frequency
-= EDGE_FREQUENCY (e2
);
1759 if (exit_block
->count
< 0)
1760 exit_block
->count
= 0;
1761 if (exit_block
->frequency
< 0)
1762 exit_block
->frequency
= 0;
1763 update_bb_for_insn (exit_block
);
1766 /* Helper function for discover_nonconstant_array_refs.
1767 Look for ARRAY_REF nodes with non-constant indexes and mark them
1771 discover_nonconstant_array_refs_r (tree
* tp
, int *walk_subtrees
,
1772 void *data ATTRIBUTE_UNUSED
)
1776 if (IS_TYPE_OR_DECL_P (t
))
1778 else if (TREE_CODE (t
) == ARRAY_REF
|| TREE_CODE (t
) == ARRAY_RANGE_REF
)
1780 while (((TREE_CODE (t
) == ARRAY_REF
|| TREE_CODE (t
) == ARRAY_RANGE_REF
)
1781 && is_gimple_min_invariant (TREE_OPERAND (t
, 1))
1782 && (!TREE_OPERAND (t
, 2)
1783 || is_gimple_min_invariant (TREE_OPERAND (t
, 2))))
1784 || (TREE_CODE (t
) == COMPONENT_REF
1785 && (!TREE_OPERAND (t
,2)
1786 || is_gimple_min_invariant (TREE_OPERAND (t
, 2))))
1787 || TREE_CODE (t
) == BIT_FIELD_REF
1788 || TREE_CODE (t
) == REALPART_EXPR
1789 || TREE_CODE (t
) == IMAGPART_EXPR
1790 || TREE_CODE (t
) == VIEW_CONVERT_EXPR
1791 || CONVERT_EXPR_P (t
))
1792 t
= TREE_OPERAND (t
, 0);
1794 if (TREE_CODE (t
) == ARRAY_REF
|| TREE_CODE (t
) == ARRAY_RANGE_REF
)
1796 t
= get_base_address (t
);
1797 if (t
&& DECL_P (t
))
1798 TREE_ADDRESSABLE (t
) = 1;
1807 /* RTL expansion is not able to compile array references with variable
1808 offsets for arrays stored in single register. Discover such
1809 expressions and mark variables as addressable to avoid this
1813 discover_nonconstant_array_refs (void)
1816 block_stmt_iterator bsi
;
1820 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
1821 walk_tree (bsi_stmt_ptr (bsi
), discover_nonconstant_array_refs_r
,
1826 /* Translate the intermediate representation contained in the CFG
1827 from GIMPLE trees to RTL.
1829 We do conversion per basic block and preserve/update the tree CFG.
1830 This implies we have to do some magic as the CFG can simultaneously
1831 consist of basic blocks containing RTL and GIMPLE trees. This can
1832 confuse the CFG hooks, so be careful to not manipulate CFG during
1836 tree_expand_cfg (void)
1838 basic_block bb
, init_block
;
1843 /* Some backends want to know that we are expanding to RTL. */
1844 currently_expanding_to_rtl
= 1;
1846 insn_locators_alloc ();
1847 if (!DECL_BUILT_IN (current_function_decl
))
1848 set_curr_insn_source_location (DECL_SOURCE_LOCATION (current_function_decl
));
1849 set_curr_insn_block (DECL_INITIAL (current_function_decl
));
1850 prologue_locator
= curr_insn_locator ();
1852 /* Make sure first insn is a note even if we don't want linenums.
1853 This makes sure the first insn will never be deleted.
1854 Also, final expects a note to appear there. */
1855 emit_note (NOTE_INSN_DELETED
);
1857 /* Mark arrays indexed with non-constant indices with TREE_ADDRESSABLE. */
1858 discover_nonconstant_array_refs ();
1860 targetm
.expand_to_rtl_hook ();
1861 crtl
->stack_alignment_needed
= STACK_BOUNDARY
;
1862 crtl
->preferred_stack_boundary
= STACK_BOUNDARY
;
1863 cfun
->cfg
->max_jumptable_ents
= 0;
1866 /* Expand the variables recorded during gimple lowering. */
1867 expand_used_vars ();
1869 /* Honor stack protection warnings. */
1870 if (warn_stack_protect
)
1872 if (cfun
->calls_alloca
)
1873 warning (OPT_Wstack_protector
,
1874 "not protecting local variables: variable length buffer");
1875 if (has_short_buffer
&& !crtl
->stack_protect_guard
)
1876 warning (OPT_Wstack_protector
,
1877 "not protecting function: no buffer at least %d bytes long",
1878 (int) PARAM_VALUE (PARAM_SSP_BUFFER_SIZE
));
1881 /* Set up parameters and prepare for return, for the function. */
1882 expand_function_start (current_function_decl
);
1884 /* If this function is `main', emit a call to `__main'
1885 to run global initializers, etc. */
1886 if (DECL_NAME (current_function_decl
)
1887 && MAIN_NAME_P (DECL_NAME (current_function_decl
))
1888 && DECL_FILE_SCOPE_P (current_function_decl
))
1889 expand_main_function ();
1891 /* Initialize the stack_protect_guard field. This must happen after the
1892 call to __main (if any) so that the external decl is initialized. */
1893 if (crtl
->stack_protect_guard
)
1894 stack_protect_prologue ();
1896 /* Register rtl specific functions for cfg. */
1897 rtl_register_cfg_hooks ();
1899 init_block
= construct_init_block ();
1901 /* Clear EDGE_EXECUTABLE on the entry edge(s). It is cleaned from the
1902 remaining edges in expand_gimple_basic_block. */
1903 FOR_EACH_EDGE (e
, ei
, ENTRY_BLOCK_PTR
->succs
)
1904 e
->flags
&= ~EDGE_EXECUTABLE
;
1906 lab_rtx_for_bb
= pointer_map_create ();
1907 FOR_BB_BETWEEN (bb
, init_block
->next_bb
, EXIT_BLOCK_PTR
, next_bb
)
1908 bb
= expand_gimple_basic_block (bb
);
1909 pointer_map_destroy (lab_rtx_for_bb
);
1912 construct_exit_block ();
1913 set_curr_insn_block (DECL_INITIAL (current_function_decl
));
1914 insn_locators_finalize ();
1916 /* We're done expanding trees to RTL. */
1917 currently_expanding_to_rtl
= 0;
1919 /* Convert tree EH labels to RTL EH labels and zap the tree EH table. */
1920 convert_from_eh_region_ranges ();
1921 set_eh_throw_stmt_table (cfun
, NULL
);
1923 rebuild_jump_labels (get_insns ());
1924 find_exception_handler_labels ();
1926 blocks
= sbitmap_alloc (last_basic_block
);
1927 sbitmap_ones (blocks
);
1928 find_many_sub_basic_blocks (blocks
);
1929 purge_all_dead_edges ();
1930 sbitmap_free (blocks
);
1933 #ifdef ENABLE_CHECKING
1934 verify_flow_info ();
1937 /* There's no need to defer outputting this function any more; we
1938 know we want to output it. */
1939 DECL_DEFER_OUTPUT (current_function_decl
) = 0;
1941 /* Now that we're done expanding trees to RTL, we shouldn't have any
1942 more CONCATs anywhere. */
1943 generating_concat_p
= 0;
1948 "\n\n;;\n;; Full RTL generated for this function:\n;;\n");
1949 /* And the pass manager will dump RTL for us. */
1952 /* If we're emitting a nested function, make sure its parent gets
1953 emitted as well. Doing otherwise confuses debug info. */
1956 for (parent
= DECL_CONTEXT (current_function_decl
);
1957 parent
!= NULL_TREE
;
1958 parent
= get_containing_scope (parent
))
1959 if (TREE_CODE (parent
) == FUNCTION_DECL
)
1960 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (parent
)) = 1;
1963 /* We are now committed to emitting code for this function. Do any
1964 preparation, such as emitting abstract debug info for the inline
1965 before it gets mangled by optimization. */
1966 if (cgraph_function_possibly_inlined_p (current_function_decl
))
1967 (*debug_hooks
->outlining_inline_function
) (current_function_decl
);
1969 TREE_ASM_WRITTEN (current_function_decl
) = 1;
1971 /* After expanding, the return labels are no longer needed. */
1972 return_label
= NULL
;
1973 naked_return_label
= NULL
;
1974 /* Tag the blocks with a depth number so that change_scope can find
1975 the common parent easily. */
1976 set_block_levels (DECL_INITIAL (cfun
->decl
), 0);
1980 struct rtl_opt_pass pass_expand
=
1984 "expand", /* name */
1986 tree_expand_cfg
, /* execute */
1989 0, /* static_pass_number */
1990 TV_EXPAND
, /* tv_id */
1991 /* ??? If TER is enabled, we actually receive GENERIC. */
1992 PROP_gimple_leh
| PROP_cfg
, /* properties_required */
1993 PROP_rtl
, /* properties_provided */
1994 PROP_trees
, /* properties_destroyed */
1995 0, /* todo_flags_start */
1996 TODO_dump_func
, /* todo_flags_finish */