OSDN Git Service

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