OSDN Git Service

* cfgcleanup.c (try_crossjump_to_edge): Only skip past
[pf3gnuchains/gcc-fork.git] / gcc / function.c
1 /* Expands front end tree to back end RTL for GCC.
2    Copyright (C) 1987, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3    1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4    Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22 /* This file handles the generation of rtl code from tree structure
23    at the level of the function as a whole.
24    It creates the rtl expressions for parameters and auto variables
25    and has full responsibility for allocating stack slots.
26
27    `expand_function_start' is called at the beginning of a function,
28    before the function body is parsed, and `expand_function_end' is
29    called after parsing the body.
30
31    Call `assign_stack_local' to allocate a stack slot for a local variable.
32    This is usually done during the RTL generation for the function body,
33    but it can also be done in the reload pass when a pseudo-register does
34    not get a hard register.  */
35
36 #include "config.h"
37 #include "system.h"
38 #include "coretypes.h"
39 #include "tm.h"
40 #include "rtl.h"
41 #include "tree.h"
42 #include "flags.h"
43 #include "except.h"
44 #include "function.h"
45 #include "expr.h"
46 #include "optabs.h"
47 #include "libfuncs.h"
48 #include "regs.h"
49 #include "hard-reg-set.h"
50 #include "insn-config.h"
51 #include "recog.h"
52 #include "output.h"
53 #include "basic-block.h"
54 #include "toplev.h"
55 #include "hashtab.h"
56 #include "ggc.h"
57 #include "tm_p.h"
58 #include "integrate.h"
59 #include "langhooks.h"
60 #include "target.h"
61 #include "cfglayout.h"
62 #include "gimple.h"
63 #include "tree-pass.h"
64 #include "predict.h"
65 #include "df.h"
66 #include "timevar.h"
67 #include "vecprim.h"
68
69 /* So we can assign to cfun in this file.  */
70 #undef cfun
71
72 #ifndef STACK_ALIGNMENT_NEEDED
73 #define STACK_ALIGNMENT_NEEDED 1
74 #endif
75
76 #define STACK_BYTES (STACK_BOUNDARY / BITS_PER_UNIT)
77
78 /* Some systems use __main in a way incompatible with its use in gcc, in these
79    cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
80    give the same symbol without quotes for an alternative entry point.  You
81    must define both, or neither.  */
82 #ifndef NAME__MAIN
83 #define NAME__MAIN "__main"
84 #endif
85
86 /* Round a value to the lowest integer less than it that is a multiple of
87    the required alignment.  Avoid using division in case the value is
88    negative.  Assume the alignment is a power of two.  */
89 #define FLOOR_ROUND(VALUE,ALIGN) ((VALUE) & ~((ALIGN) - 1))
90
91 /* Similar, but round to the next highest integer that meets the
92    alignment.  */
93 #define CEIL_ROUND(VALUE,ALIGN) (((VALUE) + (ALIGN) - 1) & ~((ALIGN)- 1))
94
95 /* Nonzero if function being compiled doesn't contain any calls
96    (ignoring the prologue and epilogue).  This is set prior to
97    local register allocation and is valid for the remaining
98    compiler passes.  */
99 int current_function_is_leaf;
100
101 /* Nonzero if function being compiled doesn't modify the stack pointer
102    (ignoring the prologue and epilogue).  This is only valid after
103    pass_stack_ptr_mod has run.  */
104 int current_function_sp_is_unchanging;
105
106 /* Nonzero if the function being compiled is a leaf function which only
107    uses leaf registers.  This is valid after reload (specifically after
108    sched2) and is useful only if the port defines LEAF_REGISTERS.  */
109 int current_function_uses_only_leaf_regs;
110
111 /* Nonzero once virtual register instantiation has been done.
112    assign_stack_local uses frame_pointer_rtx when this is nonzero.
113    calls.c:emit_library_call_value_1 uses it to set up
114    post-instantiation libcalls.  */
115 int virtuals_instantiated;
116
117 /* Assign unique numbers to labels generated for profiling, debugging, etc.  */
118 static GTY(()) int funcdef_no;
119
120 /* These variables hold pointers to functions to create and destroy
121    target specific, per-function data structures.  */
122 struct machine_function * (*init_machine_status) (void);
123
124 /* The currently compiled function.  */
125 struct function *cfun = 0;
126
127 /* These hashes record the prologue and epilogue insns.  */
128 static GTY((if_marked ("ggc_marked_p"), param_is (struct rtx_def)))
129   htab_t prologue_insn_hash;
130 static GTY((if_marked ("ggc_marked_p"), param_is (struct rtx_def)))
131   htab_t epilogue_insn_hash;
132 \f
133 /* Forward declarations.  */
134
135 static struct temp_slot *find_temp_slot_from_address (rtx);
136 static void pad_to_arg_alignment (struct args_size *, int, struct args_size *);
137 static void pad_below (struct args_size *, enum machine_mode, tree);
138 static void reorder_blocks_1 (rtx, tree, VEC(tree,heap) **);
139 static int all_blocks (tree, tree *);
140 static tree *get_block_vector (tree, int *);
141 extern tree debug_find_var_in_block_tree (tree, tree);
142 /* We always define `record_insns' even if it's not used so that we
143    can always export `prologue_epilogue_contains'.  */
144 static void record_insns (rtx, rtx, htab_t *) ATTRIBUTE_UNUSED;
145 static bool contains (const_rtx, htab_t);
146 #ifdef HAVE_return
147 static void emit_return_into_block (basic_block);
148 #endif
149 static void prepare_function_start (void);
150 static void do_clobber_return_reg (rtx, void *);
151 static void do_use_return_reg (rtx, void *);
152 static void set_insn_locators (rtx, int) ATTRIBUTE_UNUSED;
153 \f
154 /* Stack of nested functions.  */
155 /* Keep track of the cfun stack.  */
156
157 typedef struct function *function_p;
158
159 DEF_VEC_P(function_p);
160 DEF_VEC_ALLOC_P(function_p,heap);
161 static VEC(function_p,heap) *function_context_stack;
162
163 /* Save the current context for compilation of a nested function.
164    This is called from language-specific code.  */
165
166 void
167 push_function_context (void)
168 {
169   if (cfun == 0)
170     allocate_struct_function (NULL, false);
171
172   VEC_safe_push (function_p, heap, function_context_stack, cfun);
173   set_cfun (NULL);
174 }
175
176 /* Restore the last saved context, at the end of a nested function.
177    This function is called from language-specific code.  */
178
179 void
180 pop_function_context (void)
181 {
182   struct function *p = VEC_pop (function_p, function_context_stack);
183   set_cfun (p);
184   current_function_decl = p->decl;
185
186   /* Reset variables that have known state during rtx generation.  */
187   virtuals_instantiated = 0;
188   generating_concat_p = 1;
189 }
190
191 /* Clear out all parts of the state in F that can safely be discarded
192    after the function has been parsed, but not compiled, to let
193    garbage collection reclaim the memory.  */
194
195 void
196 free_after_parsing (struct function *f)
197 {
198   f->language = 0;
199 }
200
201 /* Clear out all parts of the state in F that can safely be discarded
202    after the function has been compiled, to let garbage collection
203    reclaim the memory.  */
204
205 void
206 free_after_compilation (struct function *f)
207 {
208   prologue_insn_hash = NULL;
209   epilogue_insn_hash = NULL;
210
211   if (crtl->emit.regno_pointer_align)
212     free (crtl->emit.regno_pointer_align);
213
214   memset (crtl, 0, sizeof (struct rtl_data));
215   f->eh = NULL;
216   f->machine = NULL;
217   f->cfg = NULL;
218
219   regno_reg_rtx = NULL;
220   insn_locators_free ();
221 }
222 \f
223 /* Return size needed for stack frame based on slots so far allocated.
224    This size counts from zero.  It is not rounded to PREFERRED_STACK_BOUNDARY;
225    the caller may have to do that.  */
226
227 HOST_WIDE_INT
228 get_frame_size (void)
229 {
230   if (FRAME_GROWS_DOWNWARD)
231     return -frame_offset;
232   else
233     return frame_offset;
234 }
235
236 /* Issue an error message and return TRUE if frame OFFSET overflows in
237    the signed target pointer arithmetics for function FUNC.  Otherwise
238    return FALSE.  */
239
240 bool
241 frame_offset_overflow (HOST_WIDE_INT offset, tree func)
242 {  
243   unsigned HOST_WIDE_INT size = FRAME_GROWS_DOWNWARD ? -offset : offset;
244
245   if (size > ((unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (Pmode) - 1))
246                /* Leave room for the fixed part of the frame.  */
247                - 64 * UNITS_PER_WORD)
248     {
249       error ("%Jtotal size of local objects too large", func);
250       return TRUE;
251     }
252
253   return FALSE;
254 }
255
256 /* Return stack slot alignment in bits for TYPE and MODE.  */
257
258 static unsigned int
259 get_stack_local_alignment (tree type, enum machine_mode mode)
260 {
261   unsigned int alignment;
262
263   if (mode == BLKmode)
264     alignment = BIGGEST_ALIGNMENT;
265   else
266     alignment = GET_MODE_ALIGNMENT (mode);
267
268   /* Allow the frond-end to (possibly) increase the alignment of this
269      stack slot.  */
270   if (! type)
271     type = lang_hooks.types.type_for_mode (mode, 0);
272
273   return STACK_SLOT_ALIGNMENT (type, mode, alignment);
274 }
275
276 /* Allocate a stack slot of SIZE bytes and return a MEM rtx for it
277    with machine mode MODE.
278
279    ALIGN controls the amount of alignment for the address of the slot:
280    0 means according to MODE,
281    -1 means use BIGGEST_ALIGNMENT and round size to multiple of that,
282    -2 means use BITS_PER_UNIT,
283    positive specifies alignment boundary in bits.
284
285    If REDUCE_ALIGNMENT_OK is true, it is OK to reduce alignment.
286
287    We do not round to stack_boundary here.  */
288
289 rtx
290 assign_stack_local_1 (enum machine_mode mode, HOST_WIDE_INT size,
291                       int align,
292                       bool reduce_alignment_ok ATTRIBUTE_UNUSED)
293 {
294   rtx x, addr;
295   int bigend_correction = 0;
296   unsigned int alignment, alignment_in_bits;
297   int frame_off, frame_alignment, frame_phase;
298
299   if (align == 0)
300     {
301       alignment = get_stack_local_alignment (NULL, mode);
302       alignment /= BITS_PER_UNIT;
303     }
304   else if (align == -1)
305     {
306       alignment = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
307       size = CEIL_ROUND (size, alignment);
308     }
309   else if (align == -2)
310     alignment = 1; /* BITS_PER_UNIT / BITS_PER_UNIT */
311   else
312     alignment = align / BITS_PER_UNIT;
313
314   alignment_in_bits = alignment * BITS_PER_UNIT;
315
316   if (FRAME_GROWS_DOWNWARD)
317     frame_offset -= size;
318
319   /* Ignore alignment if it exceeds MAX_SUPPORTED_STACK_ALIGNMENT.  */
320   if (alignment_in_bits > MAX_SUPPORTED_STACK_ALIGNMENT)
321     {
322       alignment_in_bits = MAX_SUPPORTED_STACK_ALIGNMENT;
323       alignment = alignment_in_bits / BITS_PER_UNIT;
324     }
325
326   if (SUPPORTS_STACK_ALIGNMENT)
327     {
328       if (crtl->stack_alignment_estimated < alignment_in_bits)
329         {
330           if (!crtl->stack_realign_processed)
331             crtl->stack_alignment_estimated = alignment_in_bits;
332           else
333             {
334               /* If stack is realigned and stack alignment value
335                  hasn't been finalized, it is OK not to increase
336                  stack_alignment_estimated.  The bigger alignment
337                  requirement is recorded in stack_alignment_needed
338                  below.  */
339               gcc_assert (!crtl->stack_realign_finalized);
340               if (!crtl->stack_realign_needed)
341                 {
342                   /* It is OK to reduce the alignment as long as the
343                      requested size is 0 or the estimated stack
344                      alignment >= mode alignment.  */
345                   gcc_assert (reduce_alignment_ok
346                               || size == 0
347                               || (crtl->stack_alignment_estimated
348                                   >= GET_MODE_ALIGNMENT (mode)));
349                   alignment_in_bits = crtl->stack_alignment_estimated;
350                   alignment = alignment_in_bits / BITS_PER_UNIT;
351                 }
352             }
353         }
354     }
355
356   if (crtl->stack_alignment_needed < alignment_in_bits)
357     crtl->stack_alignment_needed = alignment_in_bits;
358   if (crtl->max_used_stack_slot_alignment < crtl->stack_alignment_needed)
359     crtl->max_used_stack_slot_alignment = crtl->stack_alignment_needed;
360
361   /* Calculate how many bytes the start of local variables is off from
362      stack alignment.  */
363   frame_alignment = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
364   frame_off = STARTING_FRAME_OFFSET % frame_alignment;
365   frame_phase = frame_off ? frame_alignment - frame_off : 0;
366
367   /* Round the frame offset to the specified alignment.  The default is
368      to always honor requests to align the stack but a port may choose to
369      do its own stack alignment by defining STACK_ALIGNMENT_NEEDED.  */
370   if (STACK_ALIGNMENT_NEEDED
371       || mode != BLKmode
372       || size != 0)
373     {
374       /*  We must be careful here, since FRAME_OFFSET might be negative and
375           division with a negative dividend isn't as well defined as we might
376           like.  So we instead assume that ALIGNMENT is a power of two and
377           use logical operations which are unambiguous.  */
378       if (FRAME_GROWS_DOWNWARD)
379         frame_offset
380           = (FLOOR_ROUND (frame_offset - frame_phase,
381                           (unsigned HOST_WIDE_INT) alignment)
382              + frame_phase);
383       else
384         frame_offset
385           = (CEIL_ROUND (frame_offset - frame_phase,
386                          (unsigned HOST_WIDE_INT) alignment)
387              + frame_phase);
388     }
389
390   /* On a big-endian machine, if we are allocating more space than we will use,
391      use the least significant bytes of those that are allocated.  */
392   if (BYTES_BIG_ENDIAN && mode != BLKmode && GET_MODE_SIZE (mode) < size)
393     bigend_correction = size - GET_MODE_SIZE (mode);
394
395   /* If we have already instantiated virtual registers, return the actual
396      address relative to the frame pointer.  */
397   if (virtuals_instantiated)
398     addr = plus_constant (frame_pointer_rtx,
399                           trunc_int_for_mode
400                           (frame_offset + bigend_correction
401                            + STARTING_FRAME_OFFSET, Pmode));
402   else
403     addr = plus_constant (virtual_stack_vars_rtx,
404                           trunc_int_for_mode
405                           (frame_offset + bigend_correction,
406                            Pmode));
407
408   if (!FRAME_GROWS_DOWNWARD)
409     frame_offset += size;
410
411   x = gen_rtx_MEM (mode, addr);
412   set_mem_align (x, alignment_in_bits);
413   MEM_NOTRAP_P (x) = 1;
414
415   stack_slot_list
416     = gen_rtx_EXPR_LIST (VOIDmode, x, stack_slot_list);
417
418   if (frame_offset_overflow (frame_offset, current_function_decl))
419     frame_offset = 0;
420
421   return x;
422 }
423
424 /* Wrap up assign_stack_local_1 with last parameter as false.  */
425
426 rtx
427 assign_stack_local (enum machine_mode mode, HOST_WIDE_INT size, int align)
428 {
429   return assign_stack_local_1 (mode, size, align, false);
430 }
431 \f
432 \f
433 /* In order to evaluate some expressions, such as function calls returning
434    structures in memory, we need to temporarily allocate stack locations.
435    We record each allocated temporary in the following structure.
436
437    Associated with each temporary slot is a nesting level.  When we pop up
438    one level, all temporaries associated with the previous level are freed.
439    Normally, all temporaries are freed after the execution of the statement
440    in which they were created.  However, if we are inside a ({...}) grouping,
441    the result may be in a temporary and hence must be preserved.  If the
442    result could be in a temporary, we preserve it if we can determine which
443    one it is in.  If we cannot determine which temporary may contain the
444    result, all temporaries are preserved.  A temporary is preserved by
445    pretending it was allocated at the previous nesting level.
446
447    Automatic variables are also assigned temporary slots, at the nesting
448    level where they are defined.  They are marked a "kept" so that
449    free_temp_slots will not free them.  */
450
451 struct GTY(()) temp_slot {
452   /* Points to next temporary slot.  */
453   struct temp_slot *next;
454   /* Points to previous temporary slot.  */
455   struct temp_slot *prev;
456   /* The rtx to used to reference the slot.  */
457   rtx slot;
458   /* The size, in units, of the slot.  */
459   HOST_WIDE_INT size;
460   /* The type of the object in the slot, or zero if it doesn't correspond
461      to a type.  We use this to determine whether a slot can be reused.
462      It can be reused if objects of the type of the new slot will always
463      conflict with objects of the type of the old slot.  */
464   tree type;
465   /* The alignment (in bits) of the slot.  */
466   unsigned int align;
467   /* Nonzero if this temporary is currently in use.  */
468   char in_use;
469   /* Nonzero if this temporary has its address taken.  */
470   char addr_taken;
471   /* Nesting level at which this slot is being used.  */
472   int level;
473   /* Nonzero if this should survive a call to free_temp_slots.  */
474   int keep;
475   /* The offset of the slot from the frame_pointer, including extra space
476      for alignment.  This info is for combine_temp_slots.  */
477   HOST_WIDE_INT base_offset;
478   /* The size of the slot, including extra space for alignment.  This
479      info is for combine_temp_slots.  */
480   HOST_WIDE_INT full_size;
481 };
482
483 /* A table of addresses that represent a stack slot.  The table is a mapping
484    from address RTXen to a temp slot.  */
485 static GTY((param_is(struct temp_slot_address_entry))) htab_t temp_slot_address_table;
486
487 /* Entry for the above hash table.  */
488 struct GTY(()) temp_slot_address_entry {
489   hashval_t hash;
490   rtx address;
491   struct temp_slot *temp_slot;
492 };
493
494 /* Removes temporary slot TEMP from LIST.  */
495
496 static void
497 cut_slot_from_list (struct temp_slot *temp, struct temp_slot **list)
498 {
499   if (temp->next)
500     temp->next->prev = temp->prev;
501   if (temp->prev)
502     temp->prev->next = temp->next;
503   else
504     *list = temp->next;
505
506   temp->prev = temp->next = NULL;
507 }
508
509 /* Inserts temporary slot TEMP to LIST.  */
510
511 static void
512 insert_slot_to_list (struct temp_slot *temp, struct temp_slot **list)
513 {
514   temp->next = *list;
515   if (*list)
516     (*list)->prev = temp;
517   temp->prev = NULL;
518   *list = temp;
519 }
520
521 /* Returns the list of used temp slots at LEVEL.  */
522
523 static struct temp_slot **
524 temp_slots_at_level (int level)
525 {
526   if (level >= (int) VEC_length (temp_slot_p, used_temp_slots))
527     VEC_safe_grow_cleared (temp_slot_p, gc, used_temp_slots, level + 1);
528
529   return &(VEC_address (temp_slot_p, used_temp_slots)[level]);
530 }
531
532 /* Returns the maximal temporary slot level.  */
533
534 static int
535 max_slot_level (void)
536 {
537   if (!used_temp_slots)
538     return -1;
539
540   return VEC_length (temp_slot_p, used_temp_slots) - 1;
541 }
542
543 /* Moves temporary slot TEMP to LEVEL.  */
544
545 static void
546 move_slot_to_level (struct temp_slot *temp, int level)
547 {
548   cut_slot_from_list (temp, temp_slots_at_level (temp->level));
549   insert_slot_to_list (temp, temp_slots_at_level (level));
550   temp->level = level;
551 }
552
553 /* Make temporary slot TEMP available.  */
554
555 static void
556 make_slot_available (struct temp_slot *temp)
557 {
558   cut_slot_from_list (temp, temp_slots_at_level (temp->level));
559   insert_slot_to_list (temp, &avail_temp_slots);
560   temp->in_use = 0;
561   temp->level = -1;
562 }
563
564 /* Compute the hash value for an address -> temp slot mapping.
565    The value is cached on the mapping entry.  */
566 static hashval_t
567 temp_slot_address_compute_hash (struct temp_slot_address_entry *t)
568 {
569   int do_not_record = 0;
570   return hash_rtx (t->address, GET_MODE (t->address),
571                    &do_not_record, NULL, false);
572 }
573
574 /* Return the hash value for an address -> temp slot mapping.  */
575 static hashval_t
576 temp_slot_address_hash (const void *p)
577 {
578   const struct temp_slot_address_entry *t;
579   t = (const struct temp_slot_address_entry *) p;
580   return t->hash;
581 }
582
583 /* Compare two address -> temp slot mapping entries.  */
584 static int
585 temp_slot_address_eq (const void *p1, const void *p2)
586 {
587   const struct temp_slot_address_entry *t1, *t2;
588   t1 = (const struct temp_slot_address_entry *) p1;
589   t2 = (const struct temp_slot_address_entry *) p2;
590   return exp_equiv_p (t1->address, t2->address, 0, true);
591 }
592
593 /* Add ADDRESS as an alias of TEMP_SLOT to the addess -> temp slot mapping.  */
594 static void
595 insert_temp_slot_address (rtx address, struct temp_slot *temp_slot)
596 {
597   void **slot;
598   struct temp_slot_address_entry *t = GGC_NEW (struct temp_slot_address_entry);
599   t->address = address;
600   t->temp_slot = temp_slot;
601   t->hash = temp_slot_address_compute_hash (t);
602   slot = htab_find_slot_with_hash (temp_slot_address_table, t, t->hash, INSERT);
603   *slot = t;
604 }
605
606 /* Remove an address -> temp slot mapping entry if the temp slot is
607    not in use anymore.  Callback for remove_unused_temp_slot_addresses.  */
608 static int
609 remove_unused_temp_slot_addresses_1 (void **slot, void *data ATTRIBUTE_UNUSED)
610 {
611   const struct temp_slot_address_entry *t;
612   t = (const struct temp_slot_address_entry *) *slot;
613   if (! t->temp_slot->in_use)
614     *slot = NULL;
615   return 1;
616 }
617
618 /* Remove all mappings of addresses to unused temp slots.  */
619 static void
620 remove_unused_temp_slot_addresses (void)
621 {
622   htab_traverse (temp_slot_address_table,
623                  remove_unused_temp_slot_addresses_1,
624                  NULL);
625 }
626
627 /* Find the temp slot corresponding to the object at address X.  */
628
629 static struct temp_slot *
630 find_temp_slot_from_address (rtx x)
631 {
632   struct temp_slot *p;
633   struct temp_slot_address_entry tmp, *t;
634
635   /* First try the easy way:
636      See if X exists in the address -> temp slot mapping.  */
637   tmp.address = x;
638   tmp.temp_slot = NULL;
639   tmp.hash = temp_slot_address_compute_hash (&tmp);
640   t = (struct temp_slot_address_entry *)
641     htab_find_with_hash (temp_slot_address_table, &tmp, tmp.hash);
642   if (t)
643     return t->temp_slot;
644
645   /* If we have a sum involving a register, see if it points to a temp
646      slot.  */
647   if (GET_CODE (x) == PLUS && REG_P (XEXP (x, 0))
648       && (p = find_temp_slot_from_address (XEXP (x, 0))) != 0)
649     return p;
650   else if (GET_CODE (x) == PLUS && REG_P (XEXP (x, 1))
651            && (p = find_temp_slot_from_address (XEXP (x, 1))) != 0)
652     return p;
653
654   /* Last resort: Address is a virtual stack var address.  */
655   if (GET_CODE (x) == PLUS
656       && XEXP (x, 0) == virtual_stack_vars_rtx
657       && GET_CODE (XEXP (x, 1)) == CONST_INT)
658     {
659       int i;
660       for (i = max_slot_level (); i >= 0; i--)
661         for (p = *temp_slots_at_level (i); p; p = p->next)
662           {
663             if (INTVAL (XEXP (x, 1)) >= p->base_offset
664                 && INTVAL (XEXP (x, 1)) < p->base_offset + p->full_size)
665               return p;
666           }
667     }
668
669   return NULL;
670 }
671 \f
672 /* Allocate a temporary stack slot and record it for possible later
673    reuse.
674
675    MODE is the machine mode to be given to the returned rtx.
676
677    SIZE is the size in units of the space required.  We do no rounding here
678    since assign_stack_local will do any required rounding.
679
680    KEEP is 1 if this slot is to be retained after a call to
681    free_temp_slots.  Automatic variables for a block are allocated
682    with this flag.  KEEP values of 2 or 3 were needed respectively
683    for variables whose lifetime is controlled by CLEANUP_POINT_EXPRs
684    or for SAVE_EXPRs, but they are now unused.
685
686    TYPE is the type that will be used for the stack slot.  */
687
688 rtx
689 assign_stack_temp_for_type (enum machine_mode mode, HOST_WIDE_INT size,
690                             int keep, tree type)
691 {
692   unsigned int align;
693   struct temp_slot *p, *best_p = 0, *selected = NULL, **pp;
694   rtx slot;
695
696   /* If SIZE is -1 it means that somebody tried to allocate a temporary
697      of a variable size.  */
698   gcc_assert (size != -1);
699
700   /* These are now unused.  */
701   gcc_assert (keep <= 1);
702
703   align = get_stack_local_alignment (type, mode);
704
705   /* Try to find an available, already-allocated temporary of the proper
706      mode which meets the size and alignment requirements.  Choose the
707      smallest one with the closest alignment.
708    
709      If assign_stack_temp is called outside of the tree->rtl expansion,
710      we cannot reuse the stack slots (that may still refer to
711      VIRTUAL_STACK_VARS_REGNUM).  */
712   if (!virtuals_instantiated)
713     {
714       for (p = avail_temp_slots; p; p = p->next)
715         {
716           if (p->align >= align && p->size >= size
717               && GET_MODE (p->slot) == mode
718               && objects_must_conflict_p (p->type, type)
719               && (best_p == 0 || best_p->size > p->size
720                   || (best_p->size == p->size && best_p->align > p->align)))
721             {
722               if (p->align == align && p->size == size)
723                 {
724                   selected = p;
725                   cut_slot_from_list (selected, &avail_temp_slots);
726                   best_p = 0;
727                   break;
728                 }
729               best_p = p;
730             }
731         }
732     }
733
734   /* Make our best, if any, the one to use.  */
735   if (best_p)
736     {
737       selected = best_p;
738       cut_slot_from_list (selected, &avail_temp_slots);
739
740       /* If there are enough aligned bytes left over, make them into a new
741          temp_slot so that the extra bytes don't get wasted.  Do this only
742          for BLKmode slots, so that we can be sure of the alignment.  */
743       if (GET_MODE (best_p->slot) == BLKmode)
744         {
745           int alignment = best_p->align / BITS_PER_UNIT;
746           HOST_WIDE_INT rounded_size = CEIL_ROUND (size, alignment);
747
748           if (best_p->size - rounded_size >= alignment)
749             {
750               p = GGC_NEW (struct temp_slot);
751               p->in_use = p->addr_taken = 0;
752               p->size = best_p->size - rounded_size;
753               p->base_offset = best_p->base_offset + rounded_size;
754               p->full_size = best_p->full_size - rounded_size;
755               p->slot = adjust_address_nv (best_p->slot, BLKmode, rounded_size);
756               p->align = best_p->align;
757               p->type = best_p->type;
758               insert_slot_to_list (p, &avail_temp_slots);
759
760               stack_slot_list = gen_rtx_EXPR_LIST (VOIDmode, p->slot,
761                                                    stack_slot_list);
762
763               best_p->size = rounded_size;
764               best_p->full_size = rounded_size;
765             }
766         }
767     }
768
769   /* If we still didn't find one, make a new temporary.  */
770   if (selected == 0)
771     {
772       HOST_WIDE_INT frame_offset_old = frame_offset;
773
774       p = GGC_NEW (struct temp_slot);
775
776       /* We are passing an explicit alignment request to assign_stack_local.
777          One side effect of that is assign_stack_local will not round SIZE
778          to ensure the frame offset remains suitably aligned.
779
780          So for requests which depended on the rounding of SIZE, we go ahead
781          and round it now.  We also make sure ALIGNMENT is at least
782          BIGGEST_ALIGNMENT.  */
783       gcc_assert (mode != BLKmode || align == BIGGEST_ALIGNMENT);
784       p->slot = assign_stack_local (mode,
785                                     (mode == BLKmode
786                                      ? CEIL_ROUND (size, (int) align / BITS_PER_UNIT)
787                                      : size),
788                                     align);
789
790       p->align = align;
791
792       /* The following slot size computation is necessary because we don't
793          know the actual size of the temporary slot until assign_stack_local
794          has performed all the frame alignment and size rounding for the
795          requested temporary.  Note that extra space added for alignment
796          can be either above or below this stack slot depending on which
797          way the frame grows.  We include the extra space if and only if it
798          is above this slot.  */
799       if (FRAME_GROWS_DOWNWARD)
800         p->size = frame_offset_old - frame_offset;
801       else
802         p->size = size;
803
804       /* Now define the fields used by combine_temp_slots.  */
805       if (FRAME_GROWS_DOWNWARD)
806         {
807           p->base_offset = frame_offset;
808           p->full_size = frame_offset_old - frame_offset;
809         }
810       else
811         {
812           p->base_offset = frame_offset_old;
813           p->full_size = frame_offset - frame_offset_old;
814         }
815
816       selected = p;
817     }
818
819   p = selected;
820   p->in_use = 1;
821   p->addr_taken = 0;
822   p->type = type;
823   p->level = temp_slot_level;
824   p->keep = keep;
825
826   pp = temp_slots_at_level (p->level);
827   insert_slot_to_list (p, pp);
828   insert_temp_slot_address (XEXP (p->slot, 0), p);
829
830   /* Create a new MEM rtx to avoid clobbering MEM flags of old slots.  */
831   slot = gen_rtx_MEM (mode, XEXP (p->slot, 0));
832   stack_slot_list = gen_rtx_EXPR_LIST (VOIDmode, slot, stack_slot_list);
833
834   /* If we know the alias set for the memory that will be used, use
835      it.  If there's no TYPE, then we don't know anything about the
836      alias set for the memory.  */
837   set_mem_alias_set (slot, type ? get_alias_set (type) : 0);
838   set_mem_align (slot, align);
839
840   /* If a type is specified, set the relevant flags.  */
841   if (type != 0)
842     {
843       MEM_VOLATILE_P (slot) = TYPE_VOLATILE (type);
844       MEM_SET_IN_STRUCT_P (slot, (AGGREGATE_TYPE_P (type)
845                                   || TREE_CODE (type) == COMPLEX_TYPE));
846     }
847   MEM_NOTRAP_P (slot) = 1;
848
849   return slot;
850 }
851
852 /* Allocate a temporary stack slot and record it for possible later
853    reuse.  First three arguments are same as in preceding function.  */
854
855 rtx
856 assign_stack_temp (enum machine_mode mode, HOST_WIDE_INT size, int keep)
857 {
858   return assign_stack_temp_for_type (mode, size, keep, NULL_TREE);
859 }
860 \f
861 /* Assign a temporary.
862    If TYPE_OR_DECL is a decl, then we are doing it on behalf of the decl
863    and so that should be used in error messages.  In either case, we
864    allocate of the given type.
865    KEEP is as for assign_stack_temp.
866    MEMORY_REQUIRED is 1 if the result must be addressable stack memory;
867    it is 0 if a register is OK.
868    DONT_PROMOTE is 1 if we should not promote values in register
869    to wider modes.  */
870
871 rtx
872 assign_temp (tree type_or_decl, int keep, int memory_required,
873              int dont_promote ATTRIBUTE_UNUSED)
874 {
875   tree type, decl;
876   enum machine_mode mode;
877 #ifdef PROMOTE_MODE
878   int unsignedp;
879 #endif
880
881   if (DECL_P (type_or_decl))
882     decl = type_or_decl, type = TREE_TYPE (decl);
883   else
884     decl = NULL, type = type_or_decl;
885
886   mode = TYPE_MODE (type);
887 #ifdef PROMOTE_MODE
888   unsignedp = TYPE_UNSIGNED (type);
889 #endif
890
891   if (mode == BLKmode || memory_required)
892     {
893       HOST_WIDE_INT size = int_size_in_bytes (type);
894       rtx tmp;
895
896       /* Zero sized arrays are GNU C extension.  Set size to 1 to avoid
897          problems with allocating the stack space.  */
898       if (size == 0)
899         size = 1;
900
901       /* Unfortunately, we don't yet know how to allocate variable-sized
902          temporaries.  However, sometimes we can find a fixed upper limit on
903          the size, so try that instead.  */
904       else if (size == -1)
905         size = max_int_size_in_bytes (type);
906
907       /* The size of the temporary may be too large to fit into an integer.  */
908       /* ??? Not sure this should happen except for user silliness, so limit
909          this to things that aren't compiler-generated temporaries.  The
910          rest of the time we'll die in assign_stack_temp_for_type.  */
911       if (decl && size == -1
912           && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST)
913         {
914           error ("size of variable %q+D is too large", decl);
915           size = 1;
916         }
917
918       tmp = assign_stack_temp_for_type (mode, size, keep, type);
919       return tmp;
920     }
921
922 #ifdef PROMOTE_MODE
923   if (! dont_promote)
924     mode = promote_mode (type, mode, &unsignedp, 0);
925 #endif
926
927   return gen_reg_rtx (mode);
928 }
929 \f
930 /* Combine temporary stack slots which are adjacent on the stack.
931
932    This allows for better use of already allocated stack space.  This is only
933    done for BLKmode slots because we can be sure that we won't have alignment
934    problems in this case.  */
935
936 static void
937 combine_temp_slots (void)
938 {
939   struct temp_slot *p, *q, *next, *next_q;
940   int num_slots;
941
942   /* We can't combine slots, because the information about which slot
943      is in which alias set will be lost.  */
944   if (flag_strict_aliasing)
945     return;
946
947   /* If there are a lot of temp slots, don't do anything unless
948      high levels of optimization.  */
949   if (! flag_expensive_optimizations)
950     for (p = avail_temp_slots, num_slots = 0; p; p = p->next, num_slots++)
951       if (num_slots > 100 || (num_slots > 10 && optimize == 0))
952         return;
953
954   for (p = avail_temp_slots; p; p = next)
955     {
956       int delete_p = 0;
957
958       next = p->next;
959
960       if (GET_MODE (p->slot) != BLKmode)
961         continue;
962
963       for (q = p->next; q; q = next_q)
964         {
965           int delete_q = 0;
966
967           next_q = q->next;
968
969           if (GET_MODE (q->slot) != BLKmode)
970             continue;
971
972           if (p->base_offset + p->full_size == q->base_offset)
973             {
974               /* Q comes after P; combine Q into P.  */
975               p->size += q->size;
976               p->full_size += q->full_size;
977               delete_q = 1;
978             }
979           else if (q->base_offset + q->full_size == p->base_offset)
980             {
981               /* P comes after Q; combine P into Q.  */
982               q->size += p->size;
983               q->full_size += p->full_size;
984               delete_p = 1;
985               break;
986             }
987           if (delete_q)
988             cut_slot_from_list (q, &avail_temp_slots);
989         }
990
991       /* Either delete P or advance past it.  */
992       if (delete_p)
993         cut_slot_from_list (p, &avail_temp_slots);
994     }
995 }
996 \f
997 /* Indicate that NEW_RTX is an alternate way of referring to the temp
998    slot that previously was known by OLD_RTX.  */
999
1000 void
1001 update_temp_slot_address (rtx old_rtx, rtx new_rtx)
1002 {
1003   struct temp_slot *p;
1004
1005   if (rtx_equal_p (old_rtx, new_rtx))
1006     return;
1007
1008   p = find_temp_slot_from_address (old_rtx);
1009
1010   /* If we didn't find one, see if both OLD_RTX is a PLUS.  If so, and
1011      NEW_RTX is a register, see if one operand of the PLUS is a
1012      temporary location.  If so, NEW_RTX points into it.  Otherwise,
1013      if both OLD_RTX and NEW_RTX are a PLUS and if there is a register
1014      in common between them.  If so, try a recursive call on those
1015      values.  */
1016   if (p == 0)
1017     {
1018       if (GET_CODE (old_rtx) != PLUS)
1019         return;
1020
1021       if (REG_P (new_rtx))
1022         {
1023           update_temp_slot_address (XEXP (old_rtx, 0), new_rtx);
1024           update_temp_slot_address (XEXP (old_rtx, 1), new_rtx);
1025           return;
1026         }
1027       else if (GET_CODE (new_rtx) != PLUS)
1028         return;
1029
1030       if (rtx_equal_p (XEXP (old_rtx, 0), XEXP (new_rtx, 0)))
1031         update_temp_slot_address (XEXP (old_rtx, 1), XEXP (new_rtx, 1));
1032       else if (rtx_equal_p (XEXP (old_rtx, 1), XEXP (new_rtx, 0)))
1033         update_temp_slot_address (XEXP (old_rtx, 0), XEXP (new_rtx, 1));
1034       else if (rtx_equal_p (XEXP (old_rtx, 0), XEXP (new_rtx, 1)))
1035         update_temp_slot_address (XEXP (old_rtx, 1), XEXP (new_rtx, 0));
1036       else if (rtx_equal_p (XEXP (old_rtx, 1), XEXP (new_rtx, 1)))
1037         update_temp_slot_address (XEXP (old_rtx, 0), XEXP (new_rtx, 0));
1038
1039       return;
1040     }
1041
1042   /* Otherwise add an alias for the temp's address.  */
1043   insert_temp_slot_address (new_rtx, p);
1044 }
1045
1046 /* If X could be a reference to a temporary slot, mark the fact that its
1047    address was taken.  */
1048
1049 void
1050 mark_temp_addr_taken (rtx x)
1051 {
1052   struct temp_slot *p;
1053
1054   if (x == 0)
1055     return;
1056
1057   /* If X is not in memory or is at a constant address, it cannot be in
1058      a temporary slot.  */
1059   if (!MEM_P (x) || CONSTANT_P (XEXP (x, 0)))
1060     return;
1061
1062   p = find_temp_slot_from_address (XEXP (x, 0));
1063   if (p != 0)
1064     p->addr_taken = 1;
1065 }
1066
1067 /* If X could be a reference to a temporary slot, mark that slot as
1068    belonging to the to one level higher than the current level.  If X
1069    matched one of our slots, just mark that one.  Otherwise, we can't
1070    easily predict which it is, so upgrade all of them.  Kept slots
1071    need not be touched.
1072
1073    This is called when an ({...}) construct occurs and a statement
1074    returns a value in memory.  */
1075
1076 void
1077 preserve_temp_slots (rtx x)
1078 {
1079   struct temp_slot *p = 0, *next;
1080
1081   /* If there is no result, we still might have some objects whose address
1082      were taken, so we need to make sure they stay around.  */
1083   if (x == 0)
1084     {
1085       for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1086         {
1087           next = p->next;
1088
1089           if (p->addr_taken)
1090             move_slot_to_level (p, temp_slot_level - 1);
1091         }
1092
1093       return;
1094     }
1095
1096   /* If X is a register that is being used as a pointer, see if we have
1097      a temporary slot we know it points to.  To be consistent with
1098      the code below, we really should preserve all non-kept slots
1099      if we can't find a match, but that seems to be much too costly.  */
1100   if (REG_P (x) && REG_POINTER (x))
1101     p = find_temp_slot_from_address (x);
1102
1103   /* If X is not in memory or is at a constant address, it cannot be in
1104      a temporary slot, but it can contain something whose address was
1105      taken.  */
1106   if (p == 0 && (!MEM_P (x) || CONSTANT_P (XEXP (x, 0))))
1107     {
1108       for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1109         {
1110           next = p->next;
1111
1112           if (p->addr_taken)
1113             move_slot_to_level (p, temp_slot_level - 1);
1114         }
1115
1116       return;
1117     }
1118
1119   /* First see if we can find a match.  */
1120   if (p == 0)
1121     p = find_temp_slot_from_address (XEXP (x, 0));
1122
1123   if (p != 0)
1124     {
1125       /* Move everything at our level whose address was taken to our new
1126          level in case we used its address.  */
1127       struct temp_slot *q;
1128
1129       if (p->level == temp_slot_level)
1130         {
1131           for (q = *temp_slots_at_level (temp_slot_level); q; q = next)
1132             {
1133               next = q->next;
1134
1135               if (p != q && q->addr_taken)
1136                 move_slot_to_level (q, temp_slot_level - 1);
1137             }
1138
1139           move_slot_to_level (p, temp_slot_level - 1);
1140           p->addr_taken = 0;
1141         }
1142       return;
1143     }
1144
1145   /* Otherwise, preserve all non-kept slots at this level.  */
1146   for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1147     {
1148       next = p->next;
1149
1150       if (!p->keep)
1151         move_slot_to_level (p, temp_slot_level - 1);
1152     }
1153 }
1154
1155 /* Free all temporaries used so far.  This is normally called at the
1156    end of generating code for a statement.  */
1157
1158 void
1159 free_temp_slots (void)
1160 {
1161   struct temp_slot *p, *next;
1162
1163   for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1164     {
1165       next = p->next;
1166
1167       if (!p->keep)
1168         make_slot_available (p);
1169     }
1170
1171   remove_unused_temp_slot_addresses ();
1172   combine_temp_slots ();
1173 }
1174
1175 /* Push deeper into the nesting level for stack temporaries.  */
1176
1177 void
1178 push_temp_slots (void)
1179 {
1180   temp_slot_level++;
1181 }
1182
1183 /* Pop a temporary nesting level.  All slots in use in the current level
1184    are freed.  */
1185
1186 void
1187 pop_temp_slots (void)
1188 {
1189   struct temp_slot *p, *next;
1190
1191   for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1192     {
1193       next = p->next;
1194       make_slot_available (p);
1195     }
1196
1197   remove_unused_temp_slot_addresses ();
1198   combine_temp_slots ();
1199
1200   temp_slot_level--;
1201 }
1202
1203 /* Initialize temporary slots.  */
1204
1205 void
1206 init_temp_slots (void)
1207 {
1208   /* We have not allocated any temporaries yet.  */
1209   avail_temp_slots = 0;
1210   used_temp_slots = 0;
1211   temp_slot_level = 0;
1212
1213   /* Set up the table to map addresses to temp slots.  */
1214   if (! temp_slot_address_table)
1215     temp_slot_address_table = htab_create_ggc (32,
1216                                                temp_slot_address_hash,
1217                                                temp_slot_address_eq,
1218                                                NULL);
1219   else
1220     htab_empty (temp_slot_address_table);
1221 }
1222 \f
1223 /* These routines are responsible for converting virtual register references
1224    to the actual hard register references once RTL generation is complete.
1225
1226    The following four variables are used for communication between the
1227    routines.  They contain the offsets of the virtual registers from their
1228    respective hard registers.  */
1229
1230 static int in_arg_offset;
1231 static int var_offset;
1232 static int dynamic_offset;
1233 static int out_arg_offset;
1234 static int cfa_offset;
1235
1236 /* In most machines, the stack pointer register is equivalent to the bottom
1237    of the stack.  */
1238
1239 #ifndef STACK_POINTER_OFFSET
1240 #define STACK_POINTER_OFFSET    0
1241 #endif
1242
1243 /* If not defined, pick an appropriate default for the offset of dynamically
1244    allocated memory depending on the value of ACCUMULATE_OUTGOING_ARGS,
1245    REG_PARM_STACK_SPACE, and OUTGOING_REG_PARM_STACK_SPACE.  */
1246
1247 #ifndef STACK_DYNAMIC_OFFSET
1248
1249 /* The bottom of the stack points to the actual arguments.  If
1250    REG_PARM_STACK_SPACE is defined, this includes the space for the register
1251    parameters.  However, if OUTGOING_REG_PARM_STACK space is not defined,
1252    stack space for register parameters is not pushed by the caller, but
1253    rather part of the fixed stack areas and hence not included in
1254    `crtl->outgoing_args_size'.  Nevertheless, we must allow
1255    for it when allocating stack dynamic objects.  */
1256
1257 #if defined(REG_PARM_STACK_SPACE)
1258 #define STACK_DYNAMIC_OFFSET(FNDECL)    \
1259 ((ACCUMULATE_OUTGOING_ARGS                                                    \
1260   ? (crtl->outgoing_args_size                                 \
1261      + (OUTGOING_REG_PARM_STACK_SPACE ((!(FNDECL) ? NULL_TREE : TREE_TYPE (FNDECL))) ? 0 \
1262                                                : REG_PARM_STACK_SPACE (FNDECL))) \
1263   : 0) + (STACK_POINTER_OFFSET))
1264 #else
1265 #define STACK_DYNAMIC_OFFSET(FNDECL)    \
1266 ((ACCUMULATE_OUTGOING_ARGS ? crtl->outgoing_args_size : 0)            \
1267  + (STACK_POINTER_OFFSET))
1268 #endif
1269 #endif
1270
1271 \f
1272 /* Given a piece of RTX and a pointer to a HOST_WIDE_INT, if the RTX
1273    is a virtual register, return the equivalent hard register and set the
1274    offset indirectly through the pointer.  Otherwise, return 0.  */
1275
1276 static rtx
1277 instantiate_new_reg (rtx x, HOST_WIDE_INT *poffset)
1278 {
1279   rtx new_rtx;
1280   HOST_WIDE_INT offset;
1281
1282   if (x == virtual_incoming_args_rtx)
1283     {
1284       if (stack_realign_drap)
1285         {
1286           /* Replace virtual_incoming_args_rtx with internal arg
1287              pointer if DRAP is used to realign stack.  */
1288           new_rtx = crtl->args.internal_arg_pointer;
1289           offset = 0;
1290         }
1291       else
1292         new_rtx = arg_pointer_rtx, offset = in_arg_offset;
1293     }
1294   else if (x == virtual_stack_vars_rtx)
1295     new_rtx = frame_pointer_rtx, offset = var_offset;
1296   else if (x == virtual_stack_dynamic_rtx)
1297     new_rtx = stack_pointer_rtx, offset = dynamic_offset;
1298   else if (x == virtual_outgoing_args_rtx)
1299     new_rtx = stack_pointer_rtx, offset = out_arg_offset;
1300   else if (x == virtual_cfa_rtx)
1301     {
1302 #ifdef FRAME_POINTER_CFA_OFFSET
1303       new_rtx = frame_pointer_rtx;
1304 #else
1305       new_rtx = arg_pointer_rtx;
1306 #endif
1307       offset = cfa_offset;
1308     }
1309   else
1310     return NULL_RTX;
1311
1312   *poffset = offset;
1313   return new_rtx;
1314 }
1315
1316 /* A subroutine of instantiate_virtual_regs, called via for_each_rtx.
1317    Instantiate any virtual registers present inside of *LOC.  The expression
1318    is simplified, as much as possible, but is not to be considered "valid"
1319    in any sense implied by the target.  If any change is made, set CHANGED
1320    to true.  */
1321
1322 static int
1323 instantiate_virtual_regs_in_rtx (rtx *loc, void *data)
1324 {
1325   HOST_WIDE_INT offset;
1326   bool *changed = (bool *) data;
1327   rtx x, new_rtx;
1328
1329   x = *loc;
1330   if (x == 0)
1331     return 0;
1332
1333   switch (GET_CODE (x))
1334     {
1335     case REG:
1336       new_rtx = instantiate_new_reg (x, &offset);
1337       if (new_rtx)
1338         {
1339           *loc = plus_constant (new_rtx, offset);
1340           if (changed)
1341             *changed = true;
1342         }
1343       return -1;
1344
1345     case PLUS:
1346       new_rtx = instantiate_new_reg (XEXP (x, 0), &offset);
1347       if (new_rtx)
1348         {
1349           new_rtx = plus_constant (new_rtx, offset);
1350           *loc = simplify_gen_binary (PLUS, GET_MODE (x), new_rtx, XEXP (x, 1));
1351           if (changed)
1352             *changed = true;
1353           return -1;
1354         }
1355
1356       /* FIXME -- from old code */
1357           /* If we have (plus (subreg (virtual-reg)) (const_int)), we know
1358              we can commute the PLUS and SUBREG because pointers into the
1359              frame are well-behaved.  */
1360       break;
1361
1362     default:
1363       break;
1364     }
1365
1366   return 0;
1367 }
1368
1369 /* A subroutine of instantiate_virtual_regs_in_insn.  Return true if X
1370    matches the predicate for insn CODE operand OPERAND.  */
1371
1372 static int
1373 safe_insn_predicate (int code, int operand, rtx x)
1374 {
1375   const struct insn_operand_data *op_data;
1376
1377   if (code < 0)
1378     return true;
1379
1380   op_data = &insn_data[code].operand[operand];
1381   if (op_data->predicate == NULL)
1382     return true;
1383
1384   return op_data->predicate (x, op_data->mode);
1385 }
1386
1387 /* A subroutine of instantiate_virtual_regs.  Instantiate any virtual
1388    registers present inside of insn.  The result will be a valid insn.  */
1389
1390 static void
1391 instantiate_virtual_regs_in_insn (rtx insn)
1392 {
1393   HOST_WIDE_INT offset;
1394   int insn_code, i;
1395   bool any_change = false;
1396   rtx set, new_rtx, x, seq;
1397
1398   /* There are some special cases to be handled first.  */
1399   set = single_set (insn);
1400   if (set)
1401     {
1402       /* We're allowed to assign to a virtual register.  This is interpreted
1403          to mean that the underlying register gets assigned the inverse
1404          transformation.  This is used, for example, in the handling of
1405          non-local gotos.  */
1406       new_rtx = instantiate_new_reg (SET_DEST (set), &offset);
1407       if (new_rtx)
1408         {
1409           start_sequence ();
1410
1411           for_each_rtx (&SET_SRC (set), instantiate_virtual_regs_in_rtx, NULL);
1412           x = simplify_gen_binary (PLUS, GET_MODE (new_rtx), SET_SRC (set),
1413                                    GEN_INT (-offset));
1414           x = force_operand (x, new_rtx);
1415           if (x != new_rtx)
1416             emit_move_insn (new_rtx, x);
1417
1418           seq = get_insns ();
1419           end_sequence ();
1420
1421           emit_insn_before (seq, insn);
1422           delete_insn (insn);
1423           return;
1424         }
1425
1426       /* Handle a straight copy from a virtual register by generating a
1427          new add insn.  The difference between this and falling through
1428          to the generic case is avoiding a new pseudo and eliminating a
1429          move insn in the initial rtl stream.  */
1430       new_rtx = instantiate_new_reg (SET_SRC (set), &offset);
1431       if (new_rtx && offset != 0
1432           && REG_P (SET_DEST (set))
1433           && REGNO (SET_DEST (set)) > LAST_VIRTUAL_REGISTER)
1434         {
1435           start_sequence ();
1436
1437           x = expand_simple_binop (GET_MODE (SET_DEST (set)), PLUS,
1438                                    new_rtx, GEN_INT (offset), SET_DEST (set),
1439                                    1, OPTAB_LIB_WIDEN);
1440           if (x != SET_DEST (set))
1441             emit_move_insn (SET_DEST (set), x);
1442
1443           seq = get_insns ();
1444           end_sequence ();
1445
1446           emit_insn_before (seq, insn);
1447           delete_insn (insn);
1448           return;
1449         }
1450
1451       extract_insn (insn);
1452       insn_code = INSN_CODE (insn);
1453
1454       /* Handle a plus involving a virtual register by determining if the
1455          operands remain valid if they're modified in place.  */
1456       if (GET_CODE (SET_SRC (set)) == PLUS
1457           && recog_data.n_operands >= 3
1458           && recog_data.operand_loc[1] == &XEXP (SET_SRC (set), 0)
1459           && recog_data.operand_loc[2] == &XEXP (SET_SRC (set), 1)
1460           && GET_CODE (recog_data.operand[2]) == CONST_INT
1461           && (new_rtx = instantiate_new_reg (recog_data.operand[1], &offset)))
1462         {
1463           offset += INTVAL (recog_data.operand[2]);
1464
1465           /* If the sum is zero, then replace with a plain move.  */
1466           if (offset == 0
1467               && REG_P (SET_DEST (set))
1468               && REGNO (SET_DEST (set)) > LAST_VIRTUAL_REGISTER)
1469             {
1470               start_sequence ();
1471               emit_move_insn (SET_DEST (set), new_rtx);
1472               seq = get_insns ();
1473               end_sequence ();
1474
1475               emit_insn_before (seq, insn);
1476               delete_insn (insn);
1477               return;
1478             }
1479
1480           x = gen_int_mode (offset, recog_data.operand_mode[2]);
1481
1482           /* Using validate_change and apply_change_group here leaves
1483              recog_data in an invalid state.  Since we know exactly what
1484              we want to check, do those two by hand.  */
1485           if (safe_insn_predicate (insn_code, 1, new_rtx)
1486               && safe_insn_predicate (insn_code, 2, x))
1487             {
1488               *recog_data.operand_loc[1] = recog_data.operand[1] = new_rtx;
1489               *recog_data.operand_loc[2] = recog_data.operand[2] = x;
1490               any_change = true;
1491
1492               /* Fall through into the regular operand fixup loop in
1493                  order to take care of operands other than 1 and 2.  */
1494             }
1495         }
1496     }
1497   else
1498     {
1499       extract_insn (insn);
1500       insn_code = INSN_CODE (insn);
1501     }
1502
1503   /* In the general case, we expect virtual registers to appear only in
1504      operands, and then only as either bare registers or inside memories.  */
1505   for (i = 0; i < recog_data.n_operands; ++i)
1506     {
1507       x = recog_data.operand[i];
1508       switch (GET_CODE (x))
1509         {
1510         case MEM:
1511           {
1512             rtx addr = XEXP (x, 0);
1513             bool changed = false;
1514
1515             for_each_rtx (&addr, instantiate_virtual_regs_in_rtx, &changed);
1516             if (!changed)
1517               continue;
1518
1519             start_sequence ();
1520             x = replace_equiv_address (x, addr);
1521             /* It may happen that the address with the virtual reg
1522                was valid (e.g. based on the virtual stack reg, which might
1523                be acceptable to the predicates with all offsets), whereas
1524                the address now isn't anymore, for instance when the address
1525                is still offsetted, but the base reg isn't virtual-stack-reg
1526                anymore.  Below we would do a force_reg on the whole operand,
1527                but this insn might actually only accept memory.  Hence,
1528                before doing that last resort, try to reload the address into
1529                a register, so this operand stays a MEM.  */
1530             if (!safe_insn_predicate (insn_code, i, x))
1531               {
1532                 addr = force_reg (GET_MODE (addr), addr);
1533                 x = replace_equiv_address (x, addr);
1534               }
1535             seq = get_insns ();
1536             end_sequence ();
1537             if (seq)
1538               emit_insn_before (seq, insn);
1539           }
1540           break;
1541
1542         case REG:
1543           new_rtx = instantiate_new_reg (x, &offset);
1544           if (new_rtx == NULL)
1545             continue;
1546           if (offset == 0)
1547             x = new_rtx;
1548           else
1549             {
1550               start_sequence ();
1551
1552               /* Careful, special mode predicates may have stuff in
1553                  insn_data[insn_code].operand[i].mode that isn't useful
1554                  to us for computing a new value.  */
1555               /* ??? Recognize address_operand and/or "p" constraints
1556                  to see if (plus new offset) is a valid before we put
1557                  this through expand_simple_binop.  */
1558               x = expand_simple_binop (GET_MODE (x), PLUS, new_rtx,
1559                                        GEN_INT (offset), NULL_RTX,
1560                                        1, OPTAB_LIB_WIDEN);
1561               seq = get_insns ();
1562               end_sequence ();
1563               emit_insn_before (seq, insn);
1564             }
1565           break;
1566
1567         case SUBREG:
1568           new_rtx = instantiate_new_reg (SUBREG_REG (x), &offset);
1569           if (new_rtx == NULL)
1570             continue;
1571           if (offset != 0)
1572             {
1573               start_sequence ();
1574               new_rtx = expand_simple_binop (GET_MODE (new_rtx), PLUS, new_rtx,
1575                                          GEN_INT (offset), NULL_RTX,
1576                                          1, OPTAB_LIB_WIDEN);
1577               seq = get_insns ();
1578               end_sequence ();
1579               emit_insn_before (seq, insn);
1580             }
1581           x = simplify_gen_subreg (recog_data.operand_mode[i], new_rtx,
1582                                    GET_MODE (new_rtx), SUBREG_BYTE (x));
1583           gcc_assert (x);
1584           break;
1585
1586         default:
1587           continue;
1588         }
1589
1590       /* At this point, X contains the new value for the operand.
1591          Validate the new value vs the insn predicate.  Note that
1592          asm insns will have insn_code -1 here.  */
1593       if (!safe_insn_predicate (insn_code, i, x))
1594         {
1595           start_sequence ();
1596           x = force_reg (insn_data[insn_code].operand[i].mode, x);
1597           seq = get_insns ();
1598           end_sequence ();
1599           if (seq)
1600             emit_insn_before (seq, insn);
1601         }
1602
1603       *recog_data.operand_loc[i] = recog_data.operand[i] = x;
1604       any_change = true;
1605     }
1606
1607   if (any_change)
1608     {
1609       /* Propagate operand changes into the duplicates.  */
1610       for (i = 0; i < recog_data.n_dups; ++i)
1611         *recog_data.dup_loc[i]
1612           = copy_rtx (recog_data.operand[(unsigned)recog_data.dup_num[i]]);
1613
1614       /* Force re-recognition of the instruction for validation.  */
1615       INSN_CODE (insn) = -1;
1616     }
1617
1618   if (asm_noperands (PATTERN (insn)) >= 0)
1619     {
1620       if (!check_asm_operands (PATTERN (insn)))
1621         {
1622           error_for_asm (insn, "impossible constraint in %<asm%>");
1623           delete_insn (insn);
1624         }
1625     }
1626   else
1627     {
1628       if (recog_memoized (insn) < 0)
1629         fatal_insn_not_found (insn);
1630     }
1631 }
1632
1633 /* Subroutine of instantiate_decls.  Given RTL representing a decl,
1634    do any instantiation required.  */
1635
1636 void
1637 instantiate_decl_rtl (rtx x)
1638 {
1639   rtx addr;
1640
1641   if (x == 0)
1642     return;
1643
1644   /* If this is a CONCAT, recurse for the pieces.  */
1645   if (GET_CODE (x) == CONCAT)
1646     {
1647       instantiate_decl_rtl (XEXP (x, 0));
1648       instantiate_decl_rtl (XEXP (x, 1));
1649       return;
1650     }
1651
1652   /* If this is not a MEM, no need to do anything.  Similarly if the
1653      address is a constant or a register that is not a virtual register.  */
1654   if (!MEM_P (x))
1655     return;
1656
1657   addr = XEXP (x, 0);
1658   if (CONSTANT_P (addr)
1659       || (REG_P (addr)
1660           && (REGNO (addr) < FIRST_VIRTUAL_REGISTER
1661               || REGNO (addr) > LAST_VIRTUAL_REGISTER)))
1662     return;
1663
1664   for_each_rtx (&XEXP (x, 0), instantiate_virtual_regs_in_rtx, NULL);
1665 }
1666
1667 /* Helper for instantiate_decls called via walk_tree: Process all decls
1668    in the given DECL_VALUE_EXPR.  */
1669
1670 static tree
1671 instantiate_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1672 {
1673   tree t = *tp;
1674   if (! EXPR_P (t))
1675     {
1676       *walk_subtrees = 0;
1677       if (DECL_P (t) && DECL_RTL_SET_P (t))
1678         instantiate_decl_rtl (DECL_RTL (t));
1679     }
1680   return NULL;
1681 }
1682
1683 /* Subroutine of instantiate_decls: Process all decls in the given
1684    BLOCK node and all its subblocks.  */
1685
1686 static void
1687 instantiate_decls_1 (tree let)
1688 {
1689   tree t;
1690
1691   for (t = BLOCK_VARS (let); t; t = TREE_CHAIN (t))
1692     {
1693       if (DECL_RTL_SET_P (t))
1694         instantiate_decl_rtl (DECL_RTL (t));
1695       if (TREE_CODE (t) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (t))
1696         {
1697           tree v = DECL_VALUE_EXPR (t);
1698           walk_tree (&v, instantiate_expr, NULL, NULL);
1699         }
1700     }
1701
1702   /* Process all subblocks.  */
1703   for (t = BLOCK_SUBBLOCKS (let); t; t = BLOCK_CHAIN (t))
1704     instantiate_decls_1 (t);
1705 }
1706
1707 /* Scan all decls in FNDECL (both variables and parameters) and instantiate
1708    all virtual registers in their DECL_RTL's.  */
1709
1710 static void
1711 instantiate_decls (tree fndecl)
1712 {
1713   tree decl, t, next;
1714
1715   /* Process all parameters of the function.  */
1716   for (decl = DECL_ARGUMENTS (fndecl); decl; decl = TREE_CHAIN (decl))
1717     {
1718       instantiate_decl_rtl (DECL_RTL (decl));
1719       instantiate_decl_rtl (DECL_INCOMING_RTL (decl));
1720       if (DECL_HAS_VALUE_EXPR_P (decl))
1721         {
1722           tree v = DECL_VALUE_EXPR (decl);
1723           walk_tree (&v, instantiate_expr, NULL, NULL);
1724         }
1725     }
1726
1727   /* Now process all variables defined in the function or its subblocks.  */
1728   instantiate_decls_1 (DECL_INITIAL (fndecl));
1729
1730   t = cfun->local_decls;
1731   cfun->local_decls = NULL_TREE;
1732   for (; t; t = next)
1733     {
1734       next = TREE_CHAIN (t);
1735       decl = TREE_VALUE (t);
1736       if (DECL_RTL_SET_P (decl))
1737         instantiate_decl_rtl (DECL_RTL (decl));
1738       ggc_free (t);
1739     }
1740 }
1741
1742 /* Pass through the INSNS of function FNDECL and convert virtual register
1743    references to hard register references.  */
1744
1745 static unsigned int
1746 instantiate_virtual_regs (void)
1747 {
1748   rtx insn;
1749
1750   /* Compute the offsets to use for this function.  */
1751   in_arg_offset = FIRST_PARM_OFFSET (current_function_decl);
1752   var_offset = STARTING_FRAME_OFFSET;
1753   dynamic_offset = STACK_DYNAMIC_OFFSET (current_function_decl);
1754   out_arg_offset = STACK_POINTER_OFFSET;
1755 #ifdef FRAME_POINTER_CFA_OFFSET
1756   cfa_offset = FRAME_POINTER_CFA_OFFSET (current_function_decl);
1757 #else
1758   cfa_offset = ARG_POINTER_CFA_OFFSET (current_function_decl);
1759 #endif
1760
1761   /* Initialize recognition, indicating that volatile is OK.  */
1762   init_recog ();
1763
1764   /* Scan through all the insns, instantiating every virtual register still
1765      present.  */
1766   for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
1767     if (INSN_P (insn))
1768       {
1769         /* These patterns in the instruction stream can never be recognized.
1770            Fortunately, they shouldn't contain virtual registers either.  */
1771         if (GET_CODE (PATTERN (insn)) == USE
1772             || GET_CODE (PATTERN (insn)) == CLOBBER
1773             || GET_CODE (PATTERN (insn)) == ADDR_VEC
1774             || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC
1775             || GET_CODE (PATTERN (insn)) == ASM_INPUT)
1776           continue;
1777
1778         instantiate_virtual_regs_in_insn (insn);
1779
1780         if (INSN_DELETED_P (insn))
1781           continue;
1782
1783         for_each_rtx (&REG_NOTES (insn), instantiate_virtual_regs_in_rtx, NULL);
1784
1785         /* Instantiate any virtual registers in CALL_INSN_FUNCTION_USAGE.  */
1786         if (GET_CODE (insn) == CALL_INSN)
1787           for_each_rtx (&CALL_INSN_FUNCTION_USAGE (insn),
1788                         instantiate_virtual_regs_in_rtx, NULL);
1789       }
1790
1791   /* Instantiate the virtual registers in the DECLs for debugging purposes.  */
1792   instantiate_decls (current_function_decl);
1793
1794   targetm.instantiate_decls ();
1795
1796   /* Indicate that, from now on, assign_stack_local should use
1797      frame_pointer_rtx.  */
1798   virtuals_instantiated = 1;
1799   return 0;
1800 }
1801
1802 struct rtl_opt_pass pass_instantiate_virtual_regs =
1803 {
1804  {
1805   RTL_PASS,
1806   "vregs",                              /* name */
1807   NULL,                                 /* gate */
1808   instantiate_virtual_regs,             /* execute */
1809   NULL,                                 /* sub */
1810   NULL,                                 /* next */
1811   0,                                    /* static_pass_number */
1812   TV_NONE,                              /* tv_id */
1813   0,                                    /* properties_required */
1814   0,                                    /* properties_provided */
1815   0,                                    /* properties_destroyed */
1816   0,                                    /* todo_flags_start */
1817   TODO_dump_func                        /* todo_flags_finish */
1818  }
1819 };
1820
1821 \f
1822 /* Return 1 if EXP is an aggregate type (or a value with aggregate type).
1823    This means a type for which function calls must pass an address to the
1824    function or get an address back from the function.
1825    EXP may be a type node or an expression (whose type is tested).  */
1826
1827 int
1828 aggregate_value_p (const_tree exp, const_tree fntype)
1829 {
1830   int i, regno, nregs;
1831   rtx reg;
1832
1833   const_tree type = (TYPE_P (exp)) ? exp : TREE_TYPE (exp);
1834
1835   /* DECL node associated with FNTYPE when relevant, which we might need to
1836      check for by-invisible-reference returns, typically for CALL_EXPR input
1837      EXPressions.  */
1838   const_tree fndecl = NULL_TREE;
1839   
1840   if (fntype)
1841     switch (TREE_CODE (fntype))
1842       {
1843       case CALL_EXPR:
1844         fndecl = get_callee_fndecl (fntype);
1845         fntype = (fndecl
1846                   ? TREE_TYPE (fndecl)
1847                   : TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (fntype))));
1848         break;
1849       case FUNCTION_DECL:
1850         fndecl = fntype;
1851         fntype = TREE_TYPE (fndecl);
1852         break;
1853       case FUNCTION_TYPE:
1854       case METHOD_TYPE:
1855         break;
1856       case IDENTIFIER_NODE:
1857         fntype = 0;
1858         break;
1859       default:
1860         /* We don't expect other rtl types here.  */
1861         gcc_unreachable ();
1862       }
1863
1864   if (TREE_CODE (type) == VOID_TYPE)
1865     return 0;
1866
1867   /* If the front end has decided that this needs to be passed by
1868      reference, do so.  */
1869   if ((TREE_CODE (exp) == PARM_DECL || TREE_CODE (exp) == RESULT_DECL)
1870       && DECL_BY_REFERENCE (exp))
1871     return 1;
1872
1873   /* If the EXPression is a CALL_EXPR, honor DECL_BY_REFERENCE set on the
1874      called function RESULT_DECL, meaning the function returns in memory by
1875      invisible reference.  This check lets front-ends not set TREE_ADDRESSABLE
1876      on the function type, which used to be the way to request such a return
1877      mechanism but might now be causing troubles at gimplification time if
1878      temporaries with the function type need to be created.  */
1879   if (TREE_CODE (exp) == CALL_EXPR && fndecl && DECL_RESULT (fndecl)
1880       && DECL_BY_REFERENCE (DECL_RESULT (fndecl)))
1881     return 1;
1882       
1883   if (targetm.calls.return_in_memory (type, fntype))
1884     return 1;
1885   /* Types that are TREE_ADDRESSABLE must be constructed in memory,
1886      and thus can't be returned in registers.  */
1887   if (TREE_ADDRESSABLE (type))
1888     return 1;
1889   if (flag_pcc_struct_return && AGGREGATE_TYPE_P (type))
1890     return 1;
1891   /* Make sure we have suitable call-clobbered regs to return
1892      the value in; if not, we must return it in memory.  */
1893   reg = hard_function_value (type, 0, fntype, 0);
1894
1895   /* If we have something other than a REG (e.g. a PARALLEL), then assume
1896      it is OK.  */
1897   if (!REG_P (reg))
1898     return 0;
1899
1900   regno = REGNO (reg);
1901   nregs = hard_regno_nregs[regno][TYPE_MODE (type)];
1902   for (i = 0; i < nregs; i++)
1903     if (! call_used_regs[regno + i])
1904       return 1;
1905   return 0;
1906 }
1907 \f
1908 /* Return true if we should assign DECL a pseudo register; false if it
1909    should live on the local stack.  */
1910
1911 bool
1912 use_register_for_decl (const_tree decl)
1913 {
1914   if (!targetm.calls.allocate_stack_slots_for_args())
1915     return true;
1916   
1917   /* Honor volatile.  */
1918   if (TREE_SIDE_EFFECTS (decl))
1919     return false;
1920
1921   /* Honor addressability.  */
1922   if (TREE_ADDRESSABLE (decl))
1923     return false;
1924
1925   /* Only register-like things go in registers.  */
1926   if (DECL_MODE (decl) == BLKmode)
1927     return false;
1928
1929   /* If -ffloat-store specified, don't put explicit float variables
1930      into registers.  */
1931   /* ??? This should be checked after DECL_ARTIFICIAL, but tree-ssa
1932      propagates values across these stores, and it probably shouldn't.  */
1933   if (flag_float_store && FLOAT_TYPE_P (TREE_TYPE (decl)))
1934     return false;
1935
1936   /* If we're not interested in tracking debugging information for
1937      this decl, then we can certainly put it in a register.  */
1938   if (DECL_IGNORED_P (decl))
1939     return true;
1940
1941   if (optimize)
1942     return true;
1943
1944   if (!DECL_REGISTER (decl))
1945     return false;
1946
1947   switch (TREE_CODE (TREE_TYPE (decl)))
1948     {
1949     case RECORD_TYPE:
1950     case UNION_TYPE:
1951     case QUAL_UNION_TYPE:
1952       /* When not optimizing, disregard register keyword for variables with
1953          types containing methods, otherwise the methods won't be callable
1954          from the debugger.  */
1955       if (TYPE_METHODS (TREE_TYPE (decl)))
1956         return false;
1957       break;
1958     default:
1959       break;
1960     }
1961
1962   return true;
1963 }
1964
1965 /* Return true if TYPE should be passed by invisible reference.  */
1966
1967 bool
1968 pass_by_reference (CUMULATIVE_ARGS *ca, enum machine_mode mode,
1969                    tree type, bool named_arg)
1970 {
1971   if (type)
1972     {
1973       /* If this type contains non-trivial constructors, then it is
1974          forbidden for the middle-end to create any new copies.  */
1975       if (TREE_ADDRESSABLE (type))
1976         return true;
1977
1978       /* GCC post 3.4 passes *all* variable sized types by reference.  */
1979       if (!TYPE_SIZE (type) || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
1980         return true;
1981     }
1982
1983   return targetm.calls.pass_by_reference (ca, mode, type, named_arg);
1984 }
1985
1986 /* Return true if TYPE, which is passed by reference, should be callee
1987    copied instead of caller copied.  */
1988
1989 bool
1990 reference_callee_copied (CUMULATIVE_ARGS *ca, enum machine_mode mode,
1991                          tree type, bool named_arg)
1992 {
1993   if (type && TREE_ADDRESSABLE (type))
1994     return false;
1995   return targetm.calls.callee_copies (ca, mode, type, named_arg);
1996 }
1997
1998 /* Structures to communicate between the subroutines of assign_parms.
1999    The first holds data persistent across all parameters, the second
2000    is cleared out for each parameter.  */
2001
2002 struct assign_parm_data_all
2003 {
2004   CUMULATIVE_ARGS args_so_far;
2005   struct args_size stack_args_size;
2006   tree function_result_decl;
2007   tree orig_fnargs;
2008   rtx first_conversion_insn;
2009   rtx last_conversion_insn;
2010   HOST_WIDE_INT pretend_args_size;
2011   HOST_WIDE_INT extra_pretend_bytes;
2012   int reg_parm_stack_space;
2013 };
2014
2015 struct assign_parm_data_one
2016 {
2017   tree nominal_type;
2018   tree passed_type;
2019   rtx entry_parm;
2020   rtx stack_parm;
2021   enum machine_mode nominal_mode;
2022   enum machine_mode passed_mode;
2023   enum machine_mode promoted_mode;
2024   struct locate_and_pad_arg_data locate;
2025   int partial;
2026   BOOL_BITFIELD named_arg : 1;
2027   BOOL_BITFIELD passed_pointer : 1;
2028   BOOL_BITFIELD on_stack : 1;
2029   BOOL_BITFIELD loaded_in_reg : 1;
2030 };
2031
2032 /* A subroutine of assign_parms.  Initialize ALL.  */
2033
2034 static void
2035 assign_parms_initialize_all (struct assign_parm_data_all *all)
2036 {
2037   tree fntype;
2038
2039   memset (all, 0, sizeof (*all));
2040
2041   fntype = TREE_TYPE (current_function_decl);
2042
2043 #ifdef INIT_CUMULATIVE_INCOMING_ARGS
2044   INIT_CUMULATIVE_INCOMING_ARGS (all->args_so_far, fntype, NULL_RTX);
2045 #else
2046   INIT_CUMULATIVE_ARGS (all->args_so_far, fntype, NULL_RTX,
2047                         current_function_decl, -1);
2048 #endif
2049
2050 #ifdef REG_PARM_STACK_SPACE
2051   all->reg_parm_stack_space = REG_PARM_STACK_SPACE (current_function_decl);
2052 #endif
2053 }
2054
2055 /* If ARGS contains entries with complex types, split the entry into two
2056    entries of the component type.  Return a new list of substitutions are
2057    needed, else the old list.  */
2058
2059 static tree
2060 split_complex_args (tree args)
2061 {
2062   tree p;
2063
2064   /* Before allocating memory, check for the common case of no complex.  */
2065   for (p = args; p; p = TREE_CHAIN (p))
2066     {
2067       tree type = TREE_TYPE (p);
2068       if (TREE_CODE (type) == COMPLEX_TYPE
2069           && targetm.calls.split_complex_arg (type))
2070         goto found;
2071     }
2072   return args;
2073
2074  found:
2075   args = copy_list (args);
2076
2077   for (p = args; p; p = TREE_CHAIN (p))
2078     {
2079       tree type = TREE_TYPE (p);
2080       if (TREE_CODE (type) == COMPLEX_TYPE
2081           && targetm.calls.split_complex_arg (type))
2082         {
2083           tree decl;
2084           tree subtype = TREE_TYPE (type);
2085           bool addressable = TREE_ADDRESSABLE (p);
2086
2087           /* Rewrite the PARM_DECL's type with its component.  */
2088           TREE_TYPE (p) = subtype;
2089           DECL_ARG_TYPE (p) = TREE_TYPE (DECL_ARG_TYPE (p));
2090           DECL_MODE (p) = VOIDmode;
2091           DECL_SIZE (p) = NULL;
2092           DECL_SIZE_UNIT (p) = NULL;
2093           /* If this arg must go in memory, put it in a pseudo here.
2094              We can't allow it to go in memory as per normal parms,
2095              because the usual place might not have the imag part
2096              adjacent to the real part.  */
2097           DECL_ARTIFICIAL (p) = addressable;
2098           DECL_IGNORED_P (p) = addressable;
2099           TREE_ADDRESSABLE (p) = 0;
2100           layout_decl (p, 0);
2101
2102           /* Build a second synthetic decl.  */
2103           decl = build_decl (PARM_DECL, NULL_TREE, subtype);
2104           DECL_ARG_TYPE (decl) = DECL_ARG_TYPE (p);
2105           DECL_ARTIFICIAL (decl) = addressable;
2106           DECL_IGNORED_P (decl) = addressable;
2107           layout_decl (decl, 0);
2108
2109           /* Splice it in; skip the new decl.  */
2110           TREE_CHAIN (decl) = TREE_CHAIN (p);
2111           TREE_CHAIN (p) = decl;
2112           p = decl;
2113         }
2114     }
2115
2116   return args;
2117 }
2118
2119 /* A subroutine of assign_parms.  Adjust the parameter list to incorporate
2120    the hidden struct return argument, and (abi willing) complex args.
2121    Return the new parameter list.  */
2122
2123 static tree
2124 assign_parms_augmented_arg_list (struct assign_parm_data_all *all)
2125 {
2126   tree fndecl = current_function_decl;
2127   tree fntype = TREE_TYPE (fndecl);
2128   tree fnargs = DECL_ARGUMENTS (fndecl);
2129
2130   /* If struct value address is treated as the first argument, make it so.  */
2131   if (aggregate_value_p (DECL_RESULT (fndecl), fndecl)
2132       && ! cfun->returns_pcc_struct
2133       && targetm.calls.struct_value_rtx (TREE_TYPE (fndecl), 1) == 0)
2134     {
2135       tree type = build_pointer_type (TREE_TYPE (fntype));
2136       tree decl;
2137
2138       decl = build_decl (PARM_DECL, NULL_TREE, type);
2139       DECL_ARG_TYPE (decl) = type;
2140       DECL_ARTIFICIAL (decl) = 1;
2141       DECL_IGNORED_P (decl) = 1;
2142
2143       TREE_CHAIN (decl) = fnargs;
2144       fnargs = decl;
2145       all->function_result_decl = decl;
2146     }
2147
2148   all->orig_fnargs = fnargs;
2149
2150   /* If the target wants to split complex arguments into scalars, do so.  */
2151   if (targetm.calls.split_complex_arg)
2152     fnargs = split_complex_args (fnargs);
2153
2154   return fnargs;
2155 }
2156
2157 /* A subroutine of assign_parms.  Examine PARM and pull out type and mode
2158    data for the parameter.  Incorporate ABI specifics such as pass-by-
2159    reference and type promotion.  */
2160
2161 static void
2162 assign_parm_find_data_types (struct assign_parm_data_all *all, tree parm,
2163                              struct assign_parm_data_one *data)
2164 {
2165   tree nominal_type, passed_type;
2166   enum machine_mode nominal_mode, passed_mode, promoted_mode;
2167
2168   memset (data, 0, sizeof (*data));
2169
2170   /* NAMED_ARG is a misnomer.  We really mean 'non-variadic'. */
2171   if (!cfun->stdarg)
2172     data->named_arg = 1;  /* No variadic parms.  */
2173   else if (TREE_CHAIN (parm))
2174     data->named_arg = 1;  /* Not the last non-variadic parm. */
2175   else if (targetm.calls.strict_argument_naming (&all->args_so_far))
2176     data->named_arg = 1;  /* Only variadic ones are unnamed.  */
2177   else
2178     data->named_arg = 0;  /* Treat as variadic.  */
2179
2180   nominal_type = TREE_TYPE (parm);
2181   passed_type = DECL_ARG_TYPE (parm);
2182
2183   /* Look out for errors propagating this far.  Also, if the parameter's
2184      type is void then its value doesn't matter.  */
2185   if (TREE_TYPE (parm) == error_mark_node
2186       /* This can happen after weird syntax errors
2187          or if an enum type is defined among the parms.  */
2188       || TREE_CODE (parm) != PARM_DECL
2189       || passed_type == NULL
2190       || VOID_TYPE_P (nominal_type))
2191     {
2192       nominal_type = passed_type = void_type_node;
2193       nominal_mode = passed_mode = promoted_mode = VOIDmode;
2194       goto egress;
2195     }
2196
2197   /* Find mode of arg as it is passed, and mode of arg as it should be
2198      during execution of this function.  */
2199   passed_mode = TYPE_MODE (passed_type);
2200   nominal_mode = TYPE_MODE (nominal_type);
2201
2202   /* If the parm is to be passed as a transparent union, use the type of
2203      the first field for the tests below.  We have already verified that
2204      the modes are the same.  */
2205   if (TREE_CODE (passed_type) == UNION_TYPE
2206       && TYPE_TRANSPARENT_UNION (passed_type))
2207     passed_type = TREE_TYPE (TYPE_FIELDS (passed_type));
2208
2209   /* See if this arg was passed by invisible reference.  */
2210   if (pass_by_reference (&all->args_so_far, passed_mode,
2211                          passed_type, data->named_arg))
2212     {
2213       passed_type = nominal_type = build_pointer_type (passed_type);
2214       data->passed_pointer = true;
2215       passed_mode = nominal_mode = Pmode;
2216     }
2217
2218   /* Find mode as it is passed by the ABI.  */
2219   promoted_mode = passed_mode;
2220   if (targetm.calls.promote_function_args (TREE_TYPE (current_function_decl)))
2221     {
2222       int unsignedp = TYPE_UNSIGNED (passed_type);
2223       promoted_mode = promote_mode (passed_type, promoted_mode,
2224                                     &unsignedp, 1);
2225     }
2226
2227  egress:
2228   data->nominal_type = nominal_type;
2229   data->passed_type = passed_type;
2230   data->nominal_mode = nominal_mode;
2231   data->passed_mode = passed_mode;
2232   data->promoted_mode = promoted_mode;
2233 }
2234
2235 /* A subroutine of assign_parms.  Invoke setup_incoming_varargs.  */
2236
2237 static void
2238 assign_parms_setup_varargs (struct assign_parm_data_all *all,
2239                             struct assign_parm_data_one *data, bool no_rtl)
2240 {
2241   int varargs_pretend_bytes = 0;
2242
2243   targetm.calls.setup_incoming_varargs (&all->args_so_far,
2244                                         data->promoted_mode,
2245                                         data->passed_type,
2246                                         &varargs_pretend_bytes, no_rtl);
2247
2248   /* If the back-end has requested extra stack space, record how much is
2249      needed.  Do not change pretend_args_size otherwise since it may be
2250      nonzero from an earlier partial argument.  */
2251   if (varargs_pretend_bytes > 0)
2252     all->pretend_args_size = varargs_pretend_bytes;
2253 }
2254
2255 /* A subroutine of assign_parms.  Set DATA->ENTRY_PARM corresponding to
2256    the incoming location of the current parameter.  */
2257
2258 static void
2259 assign_parm_find_entry_rtl (struct assign_parm_data_all *all,
2260                             struct assign_parm_data_one *data)
2261 {
2262   HOST_WIDE_INT pretend_bytes = 0;
2263   rtx entry_parm;
2264   bool in_regs;
2265
2266   if (data->promoted_mode == VOIDmode)
2267     {
2268       data->entry_parm = data->stack_parm = const0_rtx;
2269       return;
2270     }
2271
2272 #ifdef FUNCTION_INCOMING_ARG
2273   entry_parm = FUNCTION_INCOMING_ARG (all->args_so_far, data->promoted_mode,
2274                                       data->passed_type, data->named_arg);
2275 #else
2276   entry_parm = FUNCTION_ARG (all->args_so_far, data->promoted_mode,
2277                              data->passed_type, data->named_arg);
2278 #endif
2279
2280   if (entry_parm == 0)
2281     data->promoted_mode = data->passed_mode;
2282
2283   /* Determine parm's home in the stack, in case it arrives in the stack
2284      or we should pretend it did.  Compute the stack position and rtx where
2285      the argument arrives and its size.
2286
2287      There is one complexity here:  If this was a parameter that would
2288      have been passed in registers, but wasn't only because it is
2289      __builtin_va_alist, we want locate_and_pad_parm to treat it as if
2290      it came in a register so that REG_PARM_STACK_SPACE isn't skipped.
2291      In this case, we call FUNCTION_ARG with NAMED set to 1 instead of 0
2292      as it was the previous time.  */
2293   in_regs = entry_parm != 0;
2294 #ifdef STACK_PARMS_IN_REG_PARM_AREA
2295   in_regs = true;
2296 #endif
2297   if (!in_regs && !data->named_arg)
2298     {
2299       if (targetm.calls.pretend_outgoing_varargs_named (&all->args_so_far))
2300         {
2301           rtx tem;
2302 #ifdef FUNCTION_INCOMING_ARG
2303           tem = FUNCTION_INCOMING_ARG (all->args_so_far, data->promoted_mode,
2304                                        data->passed_type, true);
2305 #else
2306           tem = FUNCTION_ARG (all->args_so_far, data->promoted_mode,
2307                               data->passed_type, true);
2308 #endif
2309           in_regs = tem != NULL;
2310         }
2311     }
2312
2313   /* If this parameter was passed both in registers and in the stack, use
2314      the copy on the stack.  */
2315   if (targetm.calls.must_pass_in_stack (data->promoted_mode,
2316                                         data->passed_type))
2317     entry_parm = 0;
2318
2319   if (entry_parm)
2320     {
2321       int partial;
2322
2323       partial = targetm.calls.arg_partial_bytes (&all->args_so_far,
2324                                                  data->promoted_mode,
2325                                                  data->passed_type,
2326                                                  data->named_arg);
2327       data->partial = partial;
2328
2329       /* The caller might already have allocated stack space for the
2330          register parameters.  */
2331       if (partial != 0 && all->reg_parm_stack_space == 0)
2332         {
2333           /* Part of this argument is passed in registers and part
2334              is passed on the stack.  Ask the prologue code to extend
2335              the stack part so that we can recreate the full value.
2336
2337              PRETEND_BYTES is the size of the registers we need to store.
2338              CURRENT_FUNCTION_PRETEND_ARGS_SIZE is the amount of extra
2339              stack space that the prologue should allocate.
2340
2341              Internally, gcc assumes that the argument pointer is aligned
2342              to STACK_BOUNDARY bits.  This is used both for alignment
2343              optimizations (see init_emit) and to locate arguments that are
2344              aligned to more than PARM_BOUNDARY bits.  We must preserve this
2345              invariant by rounding CURRENT_FUNCTION_PRETEND_ARGS_SIZE up to
2346              a stack boundary.  */
2347
2348           /* We assume at most one partial arg, and it must be the first
2349              argument on the stack.  */
2350           gcc_assert (!all->extra_pretend_bytes && !all->pretend_args_size);
2351
2352           pretend_bytes = partial;
2353           all->pretend_args_size = CEIL_ROUND (pretend_bytes, STACK_BYTES);
2354
2355           /* We want to align relative to the actual stack pointer, so
2356              don't include this in the stack size until later.  */
2357           all->extra_pretend_bytes = all->pretend_args_size;
2358         }
2359     }
2360
2361   locate_and_pad_parm (data->promoted_mode, data->passed_type, in_regs,
2362                        entry_parm ? data->partial : 0, current_function_decl,
2363                        &all->stack_args_size, &data->locate);
2364
2365   /* Update parm_stack_boundary if this parameter is passed in the
2366      stack.  */
2367   if (!in_regs && crtl->parm_stack_boundary < data->locate.boundary)
2368     crtl->parm_stack_boundary = data->locate.boundary;
2369
2370   /* Adjust offsets to include the pretend args.  */
2371   pretend_bytes = all->extra_pretend_bytes - pretend_bytes;
2372   data->locate.slot_offset.constant += pretend_bytes;
2373   data->locate.offset.constant += pretend_bytes;
2374
2375   data->entry_parm = entry_parm;
2376 }
2377
2378 /* A subroutine of assign_parms.  If there is actually space on the stack
2379    for this parm, count it in stack_args_size and return true.  */
2380
2381 static bool
2382 assign_parm_is_stack_parm (struct assign_parm_data_all *all,
2383                            struct assign_parm_data_one *data)
2384 {
2385   /* Trivially true if we've no incoming register.  */
2386   if (data->entry_parm == NULL)
2387     ;
2388   /* Also true if we're partially in registers and partially not,
2389      since we've arranged to drop the entire argument on the stack.  */
2390   else if (data->partial != 0)
2391     ;
2392   /* Also true if the target says that it's passed in both registers
2393      and on the stack.  */
2394   else if (GET_CODE (data->entry_parm) == PARALLEL
2395            && XEXP (XVECEXP (data->entry_parm, 0, 0), 0) == NULL_RTX)
2396     ;
2397   /* Also true if the target says that there's stack allocated for
2398      all register parameters.  */
2399   else if (all->reg_parm_stack_space > 0)
2400     ;
2401   /* Otherwise, no, this parameter has no ABI defined stack slot.  */
2402   else
2403     return false;
2404
2405   all->stack_args_size.constant += data->locate.size.constant;
2406   if (data->locate.size.var)
2407     ADD_PARM_SIZE (all->stack_args_size, data->locate.size.var);
2408
2409   return true;
2410 }
2411
2412 /* A subroutine of assign_parms.  Given that this parameter is allocated
2413    stack space by the ABI, find it.  */
2414
2415 static void
2416 assign_parm_find_stack_rtl (tree parm, struct assign_parm_data_one *data)
2417 {
2418   rtx offset_rtx, stack_parm;
2419   unsigned int align, boundary;
2420
2421   /* If we're passing this arg using a reg, make its stack home the
2422      aligned stack slot.  */
2423   if (data->entry_parm)
2424     offset_rtx = ARGS_SIZE_RTX (data->locate.slot_offset);
2425   else
2426     offset_rtx = ARGS_SIZE_RTX (data->locate.offset);
2427
2428   stack_parm = crtl->args.internal_arg_pointer;
2429   if (offset_rtx != const0_rtx)
2430     stack_parm = gen_rtx_PLUS (Pmode, stack_parm, offset_rtx);
2431   stack_parm = gen_rtx_MEM (data->promoted_mode, stack_parm);
2432
2433   set_mem_attributes (stack_parm, parm, 1);
2434   /* set_mem_attributes could set MEM_SIZE to the passed mode's size,
2435      while promoted mode's size is needed.  */
2436   if (data->promoted_mode != BLKmode
2437       && data->promoted_mode != DECL_MODE (parm))
2438     {
2439       set_mem_size (stack_parm, GEN_INT (GET_MODE_SIZE (data->promoted_mode)));
2440       if (MEM_EXPR (stack_parm) && MEM_OFFSET (stack_parm))
2441         {
2442           int offset = subreg_lowpart_offset (DECL_MODE (parm),
2443                                               data->promoted_mode);
2444           if (offset)
2445             set_mem_offset (stack_parm,
2446                             plus_constant (MEM_OFFSET (stack_parm), -offset));
2447         }
2448     }
2449
2450   boundary = data->locate.boundary;
2451   align = BITS_PER_UNIT;
2452
2453   /* If we're padding upward, we know that the alignment of the slot
2454      is FUNCTION_ARG_BOUNDARY.  If we're using slot_offset, we're
2455      intentionally forcing upward padding.  Otherwise we have to come
2456      up with a guess at the alignment based on OFFSET_RTX.  */
2457   if (data->locate.where_pad != downward || data->entry_parm)
2458     align = boundary;
2459   else if (GET_CODE (offset_rtx) == CONST_INT)
2460     {
2461       align = INTVAL (offset_rtx) * BITS_PER_UNIT | boundary;
2462       align = align & -align;
2463     }
2464   set_mem_align (stack_parm, align);
2465
2466   if (data->entry_parm)
2467     set_reg_attrs_for_parm (data->entry_parm, stack_parm);
2468
2469   data->stack_parm = stack_parm;
2470 }
2471
2472 /* A subroutine of assign_parms.  Adjust DATA->ENTRY_RTL such that it's
2473    always valid and contiguous.  */
2474
2475 static void
2476 assign_parm_adjust_entry_rtl (struct assign_parm_data_one *data)
2477 {
2478   rtx entry_parm = data->entry_parm;
2479   rtx stack_parm = data->stack_parm;
2480
2481   /* If this parm was passed part in regs and part in memory, pretend it
2482      arrived entirely in memory by pushing the register-part onto the stack.
2483      In the special case of a DImode or DFmode that is split, we could put
2484      it together in a pseudoreg directly, but for now that's not worth
2485      bothering with.  */
2486   if (data->partial != 0)
2487     {
2488       /* Handle calls that pass values in multiple non-contiguous
2489          locations.  The Irix 6 ABI has examples of this.  */
2490       if (GET_CODE (entry_parm) == PARALLEL)
2491         emit_group_store (validize_mem (stack_parm), entry_parm,
2492                           data->passed_type, 
2493                           int_size_in_bytes (data->passed_type));
2494       else
2495         {
2496           gcc_assert (data->partial % UNITS_PER_WORD == 0);
2497           move_block_from_reg (REGNO (entry_parm), validize_mem (stack_parm),
2498                                data->partial / UNITS_PER_WORD);
2499         }
2500
2501       entry_parm = stack_parm;
2502     }
2503
2504   /* If we didn't decide this parm came in a register, by default it came
2505      on the stack.  */
2506   else if (entry_parm == NULL)
2507     entry_parm = stack_parm;
2508
2509   /* When an argument is passed in multiple locations, we can't make use
2510      of this information, but we can save some copying if the whole argument
2511      is passed in a single register.  */
2512   else if (GET_CODE (entry_parm) == PARALLEL
2513            && data->nominal_mode != BLKmode
2514            && data->passed_mode != BLKmode)
2515     {
2516       size_t i, len = XVECLEN (entry_parm, 0);
2517
2518       for (i = 0; i < len; i++)
2519         if (XEXP (XVECEXP (entry_parm, 0, i), 0) != NULL_RTX
2520             && REG_P (XEXP (XVECEXP (entry_parm, 0, i), 0))
2521             && (GET_MODE (XEXP (XVECEXP (entry_parm, 0, i), 0))
2522                 == data->passed_mode)
2523             && INTVAL (XEXP (XVECEXP (entry_parm, 0, i), 1)) == 0)
2524           {
2525             entry_parm = XEXP (XVECEXP (entry_parm, 0, i), 0);
2526             break;
2527           }
2528     }
2529
2530   data->entry_parm = entry_parm;
2531 }
2532
2533 /* A subroutine of assign_parms.  Reconstitute any values which were
2534    passed in multiple registers and would fit in a single register.  */
2535
2536 static void
2537 assign_parm_remove_parallels (struct assign_parm_data_one *data)
2538 {
2539   rtx entry_parm = data->entry_parm;
2540
2541   /* Convert the PARALLEL to a REG of the same mode as the parallel.
2542      This can be done with register operations rather than on the
2543      stack, even if we will store the reconstituted parameter on the
2544      stack later.  */
2545   if (GET_CODE (entry_parm) == PARALLEL && GET_MODE (entry_parm) != BLKmode)
2546     {
2547       rtx parmreg = gen_reg_rtx (GET_MODE (entry_parm));
2548       emit_group_store (parmreg, entry_parm, data->passed_type,
2549                         GET_MODE_SIZE (GET_MODE (entry_parm)));
2550       entry_parm = parmreg;
2551     }
2552
2553   data->entry_parm = entry_parm;
2554 }
2555
2556 /* A subroutine of assign_parms.  Adjust DATA->STACK_RTL such that it's
2557    always valid and properly aligned.  */
2558
2559 static void
2560 assign_parm_adjust_stack_rtl (struct assign_parm_data_one *data)
2561 {
2562   rtx stack_parm = data->stack_parm;
2563
2564   /* If we can't trust the parm stack slot to be aligned enough for its
2565      ultimate type, don't use that slot after entry.  We'll make another
2566      stack slot, if we need one.  */
2567   if (stack_parm
2568       && ((STRICT_ALIGNMENT
2569            && GET_MODE_ALIGNMENT (data->nominal_mode) > MEM_ALIGN (stack_parm))
2570           || (data->nominal_type
2571               && TYPE_ALIGN (data->nominal_type) > MEM_ALIGN (stack_parm)
2572               && MEM_ALIGN (stack_parm) < PREFERRED_STACK_BOUNDARY)))
2573     stack_parm = NULL;
2574
2575   /* If parm was passed in memory, and we need to convert it on entry,
2576      don't store it back in that same slot.  */
2577   else if (data->entry_parm == stack_parm
2578            && data->nominal_mode != BLKmode
2579            && data->nominal_mode != data->passed_mode)
2580     stack_parm = NULL;
2581
2582   /* If stack protection is in effect for this function, don't leave any
2583      pointers in their passed stack slots.  */
2584   else if (crtl->stack_protect_guard
2585            && (flag_stack_protect == 2
2586                || data->passed_pointer
2587                || POINTER_TYPE_P (data->nominal_type)))
2588     stack_parm = NULL;
2589
2590   data->stack_parm = stack_parm;
2591 }
2592
2593 /* A subroutine of assign_parms.  Return true if the current parameter
2594    should be stored as a BLKmode in the current frame.  */
2595
2596 static bool
2597 assign_parm_setup_block_p (struct assign_parm_data_one *data)
2598 {
2599   if (data->nominal_mode == BLKmode)
2600     return true;
2601   if (GET_MODE (data->entry_parm) == BLKmode)
2602     return true;
2603
2604 #ifdef BLOCK_REG_PADDING
2605   /* Only assign_parm_setup_block knows how to deal with register arguments
2606      that are padded at the least significant end.  */
2607   if (REG_P (data->entry_parm)
2608       && GET_MODE_SIZE (data->promoted_mode) < UNITS_PER_WORD
2609       && (BLOCK_REG_PADDING (data->passed_mode, data->passed_type, 1)
2610           == (BYTES_BIG_ENDIAN ? upward : downward)))
2611     return true;
2612 #endif
2613
2614   return false;
2615 }
2616
2617 /* A subroutine of assign_parms.  Arrange for the parameter to be 
2618    present and valid in DATA->STACK_RTL.  */
2619
2620 static void
2621 assign_parm_setup_block (struct assign_parm_data_all *all,
2622                          tree parm, struct assign_parm_data_one *data)
2623 {
2624   rtx entry_parm = data->entry_parm;
2625   rtx stack_parm = data->stack_parm;
2626   HOST_WIDE_INT size;
2627   HOST_WIDE_INT size_stored;
2628
2629   if (GET_CODE (entry_parm) == PARALLEL)
2630     entry_parm = emit_group_move_into_temps (entry_parm);
2631
2632   size = int_size_in_bytes (data->passed_type);
2633   size_stored = CEIL_ROUND (size, UNITS_PER_WORD);
2634   if (stack_parm == 0)
2635     {
2636       DECL_ALIGN (parm) = MAX (DECL_ALIGN (parm), BITS_PER_WORD);
2637       stack_parm = assign_stack_local (BLKmode, size_stored,
2638                                        DECL_ALIGN (parm));
2639       if (GET_MODE_SIZE (GET_MODE (entry_parm)) == size)
2640         PUT_MODE (stack_parm, GET_MODE (entry_parm));
2641       set_mem_attributes (stack_parm, parm, 1);
2642     }
2643
2644   /* If a BLKmode arrives in registers, copy it to a stack slot.  Handle
2645      calls that pass values in multiple non-contiguous locations.  */
2646   if (REG_P (entry_parm) || GET_CODE (entry_parm) == PARALLEL)
2647     {
2648       rtx mem;
2649
2650       /* Note that we will be storing an integral number of words.
2651          So we have to be careful to ensure that we allocate an
2652          integral number of words.  We do this above when we call
2653          assign_stack_local if space was not allocated in the argument
2654          list.  If it was, this will not work if PARM_BOUNDARY is not
2655          a multiple of BITS_PER_WORD.  It isn't clear how to fix this
2656          if it becomes a problem.  Exception is when BLKmode arrives
2657          with arguments not conforming to word_mode.  */
2658
2659       if (data->stack_parm == 0)
2660         ;
2661       else if (GET_CODE (entry_parm) == PARALLEL)
2662         ;
2663       else
2664         gcc_assert (!size || !(PARM_BOUNDARY % BITS_PER_WORD));
2665
2666       mem = validize_mem (stack_parm);
2667
2668       /* Handle values in multiple non-contiguous locations.  */
2669       if (GET_CODE (entry_parm) == PARALLEL)
2670         {
2671           push_to_sequence2 (all->first_conversion_insn,
2672                              all->last_conversion_insn);
2673           emit_group_store (mem, entry_parm, data->passed_type, size);
2674           all->first_conversion_insn = get_insns ();
2675           all->last_conversion_insn = get_last_insn ();
2676           end_sequence ();
2677         }
2678
2679       else if (size == 0)
2680         ;
2681
2682       /* If SIZE is that of a mode no bigger than a word, just use
2683          that mode's store operation.  */
2684       else if (size <= UNITS_PER_WORD)
2685         {
2686           enum machine_mode mode
2687             = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
2688
2689           if (mode != BLKmode
2690 #ifdef BLOCK_REG_PADDING
2691               && (size == UNITS_PER_WORD
2692                   || (BLOCK_REG_PADDING (mode, data->passed_type, 1)
2693                       != (BYTES_BIG_ENDIAN ? upward : downward)))
2694 #endif
2695               )
2696             {
2697               rtx reg;
2698
2699               /* We are really truncating a word_mode value containing
2700                  SIZE bytes into a value of mode MODE.  If such an
2701                  operation requires no actual instructions, we can refer
2702                  to the value directly in mode MODE, otherwise we must
2703                  start with the register in word_mode and explicitly
2704                  convert it.  */
2705               if (TRULY_NOOP_TRUNCATION (size * BITS_PER_UNIT, BITS_PER_WORD))
2706                 reg = gen_rtx_REG (mode, REGNO (entry_parm));
2707               else
2708                 {
2709                   reg = gen_rtx_REG (word_mode, REGNO (entry_parm));
2710                   reg = convert_to_mode (mode, copy_to_reg (reg), 1);
2711                 }
2712               emit_move_insn (change_address (mem, mode, 0), reg);
2713             }
2714
2715           /* Blocks smaller than a word on a BYTES_BIG_ENDIAN
2716              machine must be aligned to the left before storing
2717              to memory.  Note that the previous test doesn't
2718              handle all cases (e.g. SIZE == 3).  */
2719           else if (size != UNITS_PER_WORD
2720 #ifdef BLOCK_REG_PADDING
2721                    && (BLOCK_REG_PADDING (mode, data->passed_type, 1)
2722                        == downward)
2723 #else
2724                    && BYTES_BIG_ENDIAN
2725 #endif
2726                    )
2727             {
2728               rtx tem, x;
2729               int by = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2730               rtx reg = gen_rtx_REG (word_mode, REGNO (entry_parm));
2731
2732               x = expand_shift (LSHIFT_EXPR, word_mode, reg,
2733                                 build_int_cst (NULL_TREE, by),
2734                                 NULL_RTX, 1);
2735               tem = change_address (mem, word_mode, 0);
2736               emit_move_insn (tem, x);
2737             }
2738           else
2739             move_block_from_reg (REGNO (entry_parm), mem,
2740                                  size_stored / UNITS_PER_WORD);
2741         }
2742       else
2743         move_block_from_reg (REGNO (entry_parm), mem,
2744                              size_stored / UNITS_PER_WORD);
2745     }
2746   else if (data->stack_parm == 0)
2747     {
2748       push_to_sequence2 (all->first_conversion_insn, all->last_conversion_insn);
2749       emit_block_move (stack_parm, data->entry_parm, GEN_INT (size),
2750                        BLOCK_OP_NORMAL);
2751       all->first_conversion_insn = get_insns ();
2752       all->last_conversion_insn = get_last_insn ();
2753       end_sequence ();
2754     }
2755
2756   data->stack_parm = stack_parm;
2757   SET_DECL_RTL (parm, stack_parm);
2758 }
2759
2760 /* A subroutine of assign_parms.  Allocate a pseudo to hold the current
2761    parameter.  Get it there.  Perform all ABI specified conversions.  */
2762
2763 static void
2764 assign_parm_setup_reg (struct assign_parm_data_all *all, tree parm,
2765                        struct assign_parm_data_one *data)
2766 {
2767   rtx parmreg;
2768   enum machine_mode promoted_nominal_mode;
2769   int unsignedp = TYPE_UNSIGNED (TREE_TYPE (parm));
2770   bool did_conversion = false;
2771
2772   /* Store the parm in a pseudoregister during the function, but we may
2773      need to do it in a wider mode.  */
2774
2775   /* This is not really promoting for a call.  However we need to be
2776      consistent with assign_parm_find_data_types and expand_expr_real_1.  */
2777   promoted_nominal_mode
2778     = promote_mode (data->nominal_type, data->nominal_mode, &unsignedp, 1);
2779
2780   parmreg = gen_reg_rtx (promoted_nominal_mode);
2781
2782   if (!DECL_ARTIFICIAL (parm))
2783     mark_user_reg (parmreg);
2784
2785   /* If this was an item that we received a pointer to,
2786      set DECL_RTL appropriately.  */
2787   if (data->passed_pointer)
2788     {
2789       rtx x = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (data->passed_type)), parmreg);
2790       set_mem_attributes (x, parm, 1);
2791       SET_DECL_RTL (parm, x);
2792     }
2793   else
2794     SET_DECL_RTL (parm, parmreg);
2795
2796   assign_parm_remove_parallels (data);
2797
2798   /* Copy the value into the register.  */
2799   if (data->nominal_mode != data->passed_mode
2800       || promoted_nominal_mode != data->promoted_mode)
2801     {
2802       int save_tree_used;
2803
2804       /* ENTRY_PARM has been converted to PROMOTED_MODE, its
2805          mode, by the caller.  We now have to convert it to
2806          NOMINAL_MODE, if different.  However, PARMREG may be in
2807          a different mode than NOMINAL_MODE if it is being stored
2808          promoted.
2809
2810          If ENTRY_PARM is a hard register, it might be in a register
2811          not valid for operating in its mode (e.g., an odd-numbered
2812          register for a DFmode).  In that case, moves are the only
2813          thing valid, so we can't do a convert from there.  This
2814          occurs when the calling sequence allow such misaligned
2815          usages.
2816
2817          In addition, the conversion may involve a call, which could
2818          clobber parameters which haven't been copied to pseudo
2819          registers yet.  Therefore, we must first copy the parm to
2820          a pseudo reg here, and save the conversion until after all
2821          parameters have been moved.  */
2822
2823       rtx tempreg = gen_reg_rtx (GET_MODE (data->entry_parm));
2824
2825       emit_move_insn (tempreg, validize_mem (data->entry_parm));
2826
2827       push_to_sequence2 (all->first_conversion_insn, all->last_conversion_insn);
2828       tempreg = convert_to_mode (data->nominal_mode, tempreg, unsignedp);
2829
2830       if (GET_CODE (tempreg) == SUBREG
2831           && GET_MODE (tempreg) == data->nominal_mode
2832           && REG_P (SUBREG_REG (tempreg))
2833           && data->nominal_mode == data->passed_mode
2834           && GET_MODE (SUBREG_REG (tempreg)) == GET_MODE (data->entry_parm)
2835           && GET_MODE_SIZE (GET_MODE (tempreg))
2836              < GET_MODE_SIZE (GET_MODE (data->entry_parm)))
2837         {
2838           /* The argument is already sign/zero extended, so note it
2839              into the subreg.  */
2840           SUBREG_PROMOTED_VAR_P (tempreg) = 1;
2841           SUBREG_PROMOTED_UNSIGNED_SET (tempreg, unsignedp);
2842         }
2843
2844       /* TREE_USED gets set erroneously during expand_assignment.  */
2845       save_tree_used = TREE_USED (parm);
2846       expand_assignment (parm, make_tree (data->nominal_type, tempreg), false);
2847       TREE_USED (parm) = save_tree_used;
2848       all->first_conversion_insn = get_insns ();
2849       all->last_conversion_insn = get_last_insn ();
2850       end_sequence ();
2851
2852       did_conversion = true;
2853     }
2854   else
2855     emit_move_insn (parmreg, validize_mem (data->entry_parm));
2856
2857   /* If we were passed a pointer but the actual value can safely live
2858      in a register, put it in one.  */
2859   if (data->passed_pointer
2860       && TYPE_MODE (TREE_TYPE (parm)) != BLKmode
2861       /* If by-reference argument was promoted, demote it.  */
2862       && (TYPE_MODE (TREE_TYPE (parm)) != GET_MODE (DECL_RTL (parm))
2863           || use_register_for_decl (parm)))
2864     {
2865       /* We can't use nominal_mode, because it will have been set to
2866          Pmode above.  We must use the actual mode of the parm.  */
2867       parmreg = gen_reg_rtx (TYPE_MODE (TREE_TYPE (parm)));
2868       mark_user_reg (parmreg);
2869
2870       if (GET_MODE (parmreg) != GET_MODE (DECL_RTL (parm)))
2871         {
2872           rtx tempreg = gen_reg_rtx (GET_MODE (DECL_RTL (parm)));
2873           int unsigned_p = TYPE_UNSIGNED (TREE_TYPE (parm));
2874
2875           push_to_sequence2 (all->first_conversion_insn,
2876                              all->last_conversion_insn);
2877           emit_move_insn (tempreg, DECL_RTL (parm));
2878           tempreg = convert_to_mode (GET_MODE (parmreg), tempreg, unsigned_p);
2879           emit_move_insn (parmreg, tempreg);
2880           all->first_conversion_insn = get_insns ();
2881           all->last_conversion_insn = get_last_insn ();
2882           end_sequence ();
2883
2884           did_conversion = true;
2885         }
2886       else
2887         emit_move_insn (parmreg, DECL_RTL (parm));
2888
2889       SET_DECL_RTL (parm, parmreg);
2890
2891       /* STACK_PARM is the pointer, not the parm, and PARMREG is
2892          now the parm.  */
2893       data->stack_parm = NULL;
2894     }
2895
2896   /* Mark the register as eliminable if we did no conversion and it was
2897      copied from memory at a fixed offset, and the arg pointer was not
2898      copied to a pseudo-reg.  If the arg pointer is a pseudo reg or the
2899      offset formed an invalid address, such memory-equivalences as we
2900      make here would screw up life analysis for it.  */
2901   if (data->nominal_mode == data->passed_mode
2902       && !did_conversion
2903       && data->stack_parm != 0
2904       && MEM_P (data->stack_parm)
2905       && data->locate.offset.var == 0
2906       && reg_mentioned_p (virtual_incoming_args_rtx,
2907                           XEXP (data->stack_parm, 0)))
2908     {
2909       rtx linsn = get_last_insn ();
2910       rtx sinsn, set;
2911
2912       /* Mark complex types separately.  */
2913       if (GET_CODE (parmreg) == CONCAT)
2914         {
2915           enum machine_mode submode
2916             = GET_MODE_INNER (GET_MODE (parmreg));
2917           int regnor = REGNO (XEXP (parmreg, 0));
2918           int regnoi = REGNO (XEXP (parmreg, 1));
2919           rtx stackr = adjust_address_nv (data->stack_parm, submode, 0);
2920           rtx stacki = adjust_address_nv (data->stack_parm, submode,
2921                                           GET_MODE_SIZE (submode));
2922
2923           /* Scan backwards for the set of the real and
2924              imaginary parts.  */
2925           for (sinsn = linsn; sinsn != 0;
2926                sinsn = prev_nonnote_insn (sinsn))
2927             {
2928               set = single_set (sinsn);
2929               if (set == 0)
2930                 continue;
2931
2932               if (SET_DEST (set) == regno_reg_rtx [regnoi])
2933                 set_unique_reg_note (sinsn, REG_EQUIV, stacki);
2934               else if (SET_DEST (set) == regno_reg_rtx [regnor])
2935                 set_unique_reg_note (sinsn, REG_EQUIV, stackr);
2936             }
2937         }
2938       else if ((set = single_set (linsn)) != 0
2939                && SET_DEST (set) == parmreg)
2940         set_unique_reg_note (linsn, REG_EQUIV, data->stack_parm);
2941     }
2942
2943   /* For pointer data type, suggest pointer register.  */
2944   if (POINTER_TYPE_P (TREE_TYPE (parm)))
2945     mark_reg_pointer (parmreg,
2946                       TYPE_ALIGN (TREE_TYPE (TREE_TYPE (parm))));
2947 }
2948
2949 /* A subroutine of assign_parms.  Allocate stack space to hold the current
2950    parameter.  Get it there.  Perform all ABI specified conversions.  */
2951
2952 static void
2953 assign_parm_setup_stack (struct assign_parm_data_all *all, tree parm,
2954                          struct assign_parm_data_one *data)
2955 {
2956   /* Value must be stored in the stack slot STACK_PARM during function
2957      execution.  */
2958   bool to_conversion = false;
2959
2960   assign_parm_remove_parallels (data);
2961
2962   if (data->promoted_mode != data->nominal_mode)
2963     {
2964       /* Conversion is required.  */
2965       rtx tempreg = gen_reg_rtx (GET_MODE (data->entry_parm));
2966
2967       emit_move_insn (tempreg, validize_mem (data->entry_parm));
2968
2969       push_to_sequence2 (all->first_conversion_insn, all->last_conversion_insn);
2970       to_conversion = true;
2971
2972       data->entry_parm = convert_to_mode (data->nominal_mode, tempreg,
2973                                           TYPE_UNSIGNED (TREE_TYPE (parm)));
2974
2975       if (data->stack_parm)
2976         /* ??? This may need a big-endian conversion on sparc64.  */
2977         data->stack_parm
2978           = adjust_address (data->stack_parm, data->nominal_mode, 0);
2979     }
2980
2981   if (data->entry_parm != data->stack_parm)
2982     {
2983       rtx src, dest;
2984
2985       if (data->stack_parm == 0)
2986         {
2987           int align = STACK_SLOT_ALIGNMENT (data->passed_type,
2988                                             GET_MODE (data->entry_parm),
2989                                             TYPE_ALIGN (data->passed_type));
2990           data->stack_parm
2991             = assign_stack_local (GET_MODE (data->entry_parm),
2992                                   GET_MODE_SIZE (GET_MODE (data->entry_parm)),
2993                                   align);
2994           set_mem_attributes (data->stack_parm, parm, 1);
2995         }
2996
2997       dest = validize_mem (data->stack_parm);
2998       src = validize_mem (data->entry_parm);
2999
3000       if (MEM_P (src))
3001         {
3002           /* Use a block move to handle potentially misaligned entry_parm.  */
3003           if (!to_conversion)
3004             push_to_sequence2 (all->first_conversion_insn,
3005                                all->last_conversion_insn);
3006           to_conversion = true;
3007
3008           emit_block_move (dest, src,
3009                            GEN_INT (int_size_in_bytes (data->passed_type)),
3010                            BLOCK_OP_NORMAL);
3011         }
3012       else
3013         emit_move_insn (dest, src);
3014     }
3015
3016   if (to_conversion)
3017     {
3018       all->first_conversion_insn = get_insns ();
3019       all->last_conversion_insn = get_last_insn ();
3020       end_sequence ();
3021     }
3022
3023   SET_DECL_RTL (parm, data->stack_parm);
3024 }
3025
3026 /* A subroutine of assign_parms.  If the ABI splits complex arguments, then
3027    undo the frobbing that we did in assign_parms_augmented_arg_list.  */
3028
3029 static void
3030 assign_parms_unsplit_complex (struct assign_parm_data_all *all, tree fnargs)
3031 {
3032   tree parm;
3033   tree orig_fnargs = all->orig_fnargs;
3034
3035   for (parm = orig_fnargs; parm; parm = TREE_CHAIN (parm))
3036     {
3037       if (TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
3038           && targetm.calls.split_complex_arg (TREE_TYPE (parm)))
3039         {
3040           rtx tmp, real, imag;
3041           enum machine_mode inner = GET_MODE_INNER (DECL_MODE (parm));
3042
3043           real = DECL_RTL (fnargs);
3044           imag = DECL_RTL (TREE_CHAIN (fnargs));
3045           if (inner != GET_MODE (real))
3046             {
3047               real = gen_lowpart_SUBREG (inner, real);
3048               imag = gen_lowpart_SUBREG (inner, imag);
3049             }
3050
3051           if (TREE_ADDRESSABLE (parm))
3052             {
3053               rtx rmem, imem;
3054               HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (parm));
3055               int align = STACK_SLOT_ALIGNMENT (TREE_TYPE (parm),
3056                                                 DECL_MODE (parm),
3057                                                 TYPE_ALIGN (TREE_TYPE (parm)));
3058
3059               /* split_complex_arg put the real and imag parts in
3060                  pseudos.  Move them to memory.  */
3061               tmp = assign_stack_local (DECL_MODE (parm), size, align);
3062               set_mem_attributes (tmp, parm, 1);
3063               rmem = adjust_address_nv (tmp, inner, 0);
3064               imem = adjust_address_nv (tmp, inner, GET_MODE_SIZE (inner));
3065               push_to_sequence2 (all->first_conversion_insn,
3066                                  all->last_conversion_insn);
3067               emit_move_insn (rmem, real);
3068               emit_move_insn (imem, imag);
3069               all->first_conversion_insn = get_insns ();
3070               all->last_conversion_insn = get_last_insn ();
3071               end_sequence ();
3072             }
3073           else
3074             tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag);
3075           SET_DECL_RTL (parm, tmp);
3076
3077           real = DECL_INCOMING_RTL (fnargs);
3078           imag = DECL_INCOMING_RTL (TREE_CHAIN (fnargs));
3079           if (inner != GET_MODE (real))
3080             {
3081               real = gen_lowpart_SUBREG (inner, real);
3082               imag = gen_lowpart_SUBREG (inner, imag);
3083             }
3084           tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag);
3085           set_decl_incoming_rtl (parm, tmp, false);
3086           fnargs = TREE_CHAIN (fnargs);
3087         }
3088       else
3089         {
3090           SET_DECL_RTL (parm, DECL_RTL (fnargs));
3091           set_decl_incoming_rtl (parm, DECL_INCOMING_RTL (fnargs), false);
3092
3093           /* Set MEM_EXPR to the original decl, i.e. to PARM,
3094              instead of the copy of decl, i.e. FNARGS.  */
3095           if (DECL_INCOMING_RTL (parm) && MEM_P (DECL_INCOMING_RTL (parm)))
3096             set_mem_expr (DECL_INCOMING_RTL (parm), parm);
3097         }
3098
3099       fnargs = TREE_CHAIN (fnargs);
3100     }
3101 }
3102
3103 /* Assign RTL expressions to the function's parameters.  This may involve
3104    copying them into registers and using those registers as the DECL_RTL.  */
3105
3106 static void
3107 assign_parms (tree fndecl)
3108 {
3109   struct assign_parm_data_all all;
3110   tree fnargs, parm;
3111
3112   crtl->args.internal_arg_pointer
3113     = targetm.calls.internal_arg_pointer ();
3114
3115   assign_parms_initialize_all (&all);
3116   fnargs = assign_parms_augmented_arg_list (&all);
3117
3118   for (parm = fnargs; parm; parm = TREE_CHAIN (parm))
3119     {
3120       struct assign_parm_data_one data;
3121
3122       /* Extract the type of PARM; adjust it according to ABI.  */
3123       assign_parm_find_data_types (&all, parm, &data);
3124
3125       /* Early out for errors and void parameters.  */
3126       if (data.passed_mode == VOIDmode)
3127         {
3128           SET_DECL_RTL (parm, const0_rtx);
3129           DECL_INCOMING_RTL (parm) = DECL_RTL (parm);
3130           continue;
3131         }
3132
3133       /* Estimate stack alignment from parameter alignment.  */
3134       if (SUPPORTS_STACK_ALIGNMENT)
3135         {
3136           unsigned int align = FUNCTION_ARG_BOUNDARY (data.promoted_mode,
3137                                                       data.passed_type);
3138           if (TYPE_ALIGN (data.nominal_type) > align)
3139             align = TYPE_ALIGN (data.passed_type);
3140           if (crtl->stack_alignment_estimated < align)
3141             {
3142               gcc_assert (!crtl->stack_realign_processed);
3143               crtl->stack_alignment_estimated = align;
3144             }
3145         }
3146         
3147       if (cfun->stdarg && !TREE_CHAIN (parm))
3148         assign_parms_setup_varargs (&all, &data, false);
3149
3150       /* Find out where the parameter arrives in this function.  */
3151       assign_parm_find_entry_rtl (&all, &data);
3152
3153       /* Find out where stack space for this parameter might be.  */
3154       if (assign_parm_is_stack_parm (&all, &data))
3155         {
3156           assign_parm_find_stack_rtl (parm, &data);
3157           assign_parm_adjust_entry_rtl (&data);
3158         }
3159
3160       /* Record permanently how this parm was passed.  */
3161       set_decl_incoming_rtl (parm, data.entry_parm, data.passed_pointer);
3162
3163       /* Update info on where next arg arrives in registers.  */
3164       FUNCTION_ARG_ADVANCE (all.args_so_far, data.promoted_mode,
3165                             data.passed_type, data.named_arg);
3166
3167       assign_parm_adjust_stack_rtl (&data);
3168
3169       if (assign_parm_setup_block_p (&data))
3170         assign_parm_setup_block (&all, parm, &data);
3171       else if (data.passed_pointer || use_register_for_decl (parm))
3172         assign_parm_setup_reg (&all, parm, &data);
3173       else
3174         assign_parm_setup_stack (&all, parm, &data);
3175     }
3176
3177   if (targetm.calls.split_complex_arg && fnargs != all.orig_fnargs)
3178     assign_parms_unsplit_complex (&all, fnargs);
3179
3180   /* Output all parameter conversion instructions (possibly including calls)
3181      now that all parameters have been copied out of hard registers.  */
3182   emit_insn (all.first_conversion_insn);
3183
3184   /* Estimate reload stack alignment from scalar return mode.  */
3185   if (SUPPORTS_STACK_ALIGNMENT)
3186     {
3187       if (DECL_RESULT (fndecl))
3188         {
3189           tree type = TREE_TYPE (DECL_RESULT (fndecl));
3190           enum machine_mode mode = TYPE_MODE (type);
3191
3192           if (mode != BLKmode
3193               && mode != VOIDmode
3194               && !AGGREGATE_TYPE_P (type))
3195             {
3196               unsigned int align = GET_MODE_ALIGNMENT (mode);
3197               if (crtl->stack_alignment_estimated < align)
3198                 {
3199                   gcc_assert (!crtl->stack_realign_processed);
3200                   crtl->stack_alignment_estimated = align;
3201                 }
3202             }
3203         } 
3204     }
3205
3206   /* If we are receiving a struct value address as the first argument, set up
3207      the RTL for the function result. As this might require code to convert
3208      the transmitted address to Pmode, we do this here to ensure that possible
3209      preliminary conversions of the address have been emitted already.  */
3210   if (all.function_result_decl)
3211     {
3212       tree result = DECL_RESULT (current_function_decl);
3213       rtx addr = DECL_RTL (all.function_result_decl);
3214       rtx x;
3215
3216       if (DECL_BY_REFERENCE (result))
3217         x = addr;
3218       else
3219         {
3220           addr = convert_memory_address (Pmode, addr);
3221           x = gen_rtx_MEM (DECL_MODE (result), addr);
3222           set_mem_attributes (x, result, 1);
3223         }
3224       SET_DECL_RTL (result, x);
3225     }
3226
3227   /* We have aligned all the args, so add space for the pretend args.  */
3228   crtl->args.pretend_args_size = all.pretend_args_size;
3229   all.stack_args_size.constant += all.extra_pretend_bytes;
3230   crtl->args.size = all.stack_args_size.constant;
3231
3232   /* Adjust function incoming argument size for alignment and
3233      minimum length.  */
3234
3235 #ifdef REG_PARM_STACK_SPACE
3236   crtl->args.size = MAX (crtl->args.size,
3237                                     REG_PARM_STACK_SPACE (fndecl));
3238 #endif
3239
3240   crtl->args.size = CEIL_ROUND (crtl->args.size,
3241                                            PARM_BOUNDARY / BITS_PER_UNIT);
3242
3243 #ifdef ARGS_GROW_DOWNWARD
3244   crtl->args.arg_offset_rtx
3245     = (all.stack_args_size.var == 0 ? GEN_INT (-all.stack_args_size.constant)
3246        : expand_expr (size_diffop (all.stack_args_size.var,
3247                                    size_int (-all.stack_args_size.constant)),
3248                       NULL_RTX, VOIDmode, EXPAND_NORMAL));
3249 #else
3250   crtl->args.arg_offset_rtx = ARGS_SIZE_RTX (all.stack_args_size);
3251 #endif
3252
3253   /* See how many bytes, if any, of its args a function should try to pop
3254      on return.  */
3255
3256   crtl->args.pops_args = RETURN_POPS_ARGS (fndecl, TREE_TYPE (fndecl),
3257                                                  crtl->args.size);
3258
3259   /* For stdarg.h function, save info about
3260      regs and stack space used by the named args.  */
3261
3262   crtl->args.info = all.args_so_far;
3263
3264   /* Set the rtx used for the function return value.  Put this in its
3265      own variable so any optimizers that need this information don't have
3266      to include tree.h.  Do this here so it gets done when an inlined
3267      function gets output.  */
3268
3269   crtl->return_rtx
3270     = (DECL_RTL_SET_P (DECL_RESULT (fndecl))
3271        ? DECL_RTL (DECL_RESULT (fndecl)) : NULL_RTX);
3272
3273   /* If scalar return value was computed in a pseudo-reg, or was a named
3274      return value that got dumped to the stack, copy that to the hard
3275      return register.  */
3276   if (DECL_RTL_SET_P (DECL_RESULT (fndecl)))
3277     {
3278       tree decl_result = DECL_RESULT (fndecl);
3279       rtx decl_rtl = DECL_RTL (decl_result);
3280
3281       if (REG_P (decl_rtl)
3282           ? REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER
3283           : DECL_REGISTER (decl_result))
3284         {
3285           rtx real_decl_rtl;
3286
3287           real_decl_rtl = targetm.calls.function_value (TREE_TYPE (decl_result),
3288                                                         fndecl, true);
3289           REG_FUNCTION_VALUE_P (real_decl_rtl) = 1;
3290           /* The delay slot scheduler assumes that crtl->return_rtx
3291              holds the hard register containing the return value, not a
3292              temporary pseudo.  */
3293           crtl->return_rtx = real_decl_rtl;
3294         }
3295     }
3296 }
3297
3298 /* A subroutine of gimplify_parameters, invoked via walk_tree.
3299    For all seen types, gimplify their sizes.  */
3300
3301 static tree
3302 gimplify_parm_type (tree *tp, int *walk_subtrees, void *data)
3303 {
3304   tree t = *tp;
3305
3306   *walk_subtrees = 0;
3307   if (TYPE_P (t))
3308     {
3309       if (POINTER_TYPE_P (t))
3310         *walk_subtrees = 1;
3311       else if (TYPE_SIZE (t) && !TREE_CONSTANT (TYPE_SIZE (t))
3312                && !TYPE_SIZES_GIMPLIFIED (t))
3313         {
3314           gimplify_type_sizes (t, (gimple_seq *) data);
3315           *walk_subtrees = 1;
3316         }
3317     }
3318
3319   return NULL;
3320 }
3321
3322 /* Gimplify the parameter list for current_function_decl.  This involves
3323    evaluating SAVE_EXPRs of variable sized parameters and generating code
3324    to implement callee-copies reference parameters.  Returns a sequence of
3325    statements to add to the beginning of the function.  */
3326
3327 gimple_seq
3328 gimplify_parameters (void)
3329 {
3330   struct assign_parm_data_all all;
3331   tree fnargs, parm;
3332   gimple_seq stmts = NULL;
3333
3334   assign_parms_initialize_all (&all);
3335   fnargs = assign_parms_augmented_arg_list (&all);
3336
3337   for (parm = fnargs; parm; parm = TREE_CHAIN (parm))
3338     {
3339       struct assign_parm_data_one data;
3340
3341       /* Extract the type of PARM; adjust it according to ABI.  */
3342       assign_parm_find_data_types (&all, parm, &data);
3343
3344       /* Early out for errors and void parameters.  */
3345       if (data.passed_mode == VOIDmode || DECL_SIZE (parm) == NULL)
3346         continue;
3347
3348       /* Update info on where next arg arrives in registers.  */
3349       FUNCTION_ARG_ADVANCE (all.args_so_far, data.promoted_mode,
3350                             data.passed_type, data.named_arg);
3351
3352       /* ??? Once upon a time variable_size stuffed parameter list
3353          SAVE_EXPRs (amongst others) onto a pending sizes list.  This
3354          turned out to be less than manageable in the gimple world.
3355          Now we have to hunt them down ourselves.  */
3356       walk_tree_without_duplicates (&data.passed_type,
3357                                     gimplify_parm_type, &stmts);
3358
3359       if (TREE_CODE (DECL_SIZE_UNIT (parm)) != INTEGER_CST)
3360         {
3361           gimplify_one_sizepos (&DECL_SIZE (parm), &stmts);
3362           gimplify_one_sizepos (&DECL_SIZE_UNIT (parm), &stmts);
3363         }
3364
3365       if (data.passed_pointer)
3366         {
3367           tree type = TREE_TYPE (data.passed_type);
3368           if (reference_callee_copied (&all.args_so_far, TYPE_MODE (type),
3369                                        type, data.named_arg))
3370             {
3371               tree local, t;
3372
3373               /* For constant-sized objects, this is trivial; for
3374                  variable-sized objects, we have to play games.  */
3375               if (TREE_CODE (DECL_SIZE_UNIT (parm)) == INTEGER_CST
3376                   && !(flag_stack_check == GENERIC_STACK_CHECK
3377                        && compare_tree_int (DECL_SIZE_UNIT (parm),
3378                                             STACK_CHECK_MAX_VAR_SIZE) > 0))
3379                 {
3380                   local = create_tmp_var (type, get_name (parm));
3381                   DECL_IGNORED_P (local) = 0;
3382                   /* If PARM was addressable, move that flag over
3383                      to the local copy, as its address will be taken,
3384                      not the PARMs.  */
3385                   if (TREE_ADDRESSABLE (parm))
3386                     {
3387                       TREE_ADDRESSABLE (parm) = 0;
3388                       TREE_ADDRESSABLE (local) = 1;
3389                     }
3390                 }
3391               else
3392                 {
3393                   tree ptr_type, addr;
3394
3395                   ptr_type = build_pointer_type (type);
3396                   addr = create_tmp_var (ptr_type, get_name (parm));
3397                   DECL_IGNORED_P (addr) = 0;
3398                   local = build_fold_indirect_ref (addr);
3399
3400                   t = built_in_decls[BUILT_IN_ALLOCA];
3401                   t = build_call_expr (t, 1, DECL_SIZE_UNIT (parm));
3402                   t = fold_convert (ptr_type, t);
3403                   t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
3404                   gimplify_and_add (t, &stmts);
3405                 }
3406
3407               gimplify_assign (local, parm, &stmts);
3408
3409               SET_DECL_VALUE_EXPR (parm, local);
3410               DECL_HAS_VALUE_EXPR_P (parm) = 1;
3411             }
3412         }
3413     }
3414
3415   return stmts;
3416 }
3417 \f
3418 /* Compute the size and offset from the start of the stacked arguments for a
3419    parm passed in mode PASSED_MODE and with type TYPE.
3420
3421    INITIAL_OFFSET_PTR points to the current offset into the stacked
3422    arguments.
3423
3424    The starting offset and size for this parm are returned in
3425    LOCATE->OFFSET and LOCATE->SIZE, respectively.  When IN_REGS is
3426    nonzero, the offset is that of stack slot, which is returned in
3427    LOCATE->SLOT_OFFSET.  LOCATE->ALIGNMENT_PAD is the amount of
3428    padding required from the initial offset ptr to the stack slot.
3429
3430    IN_REGS is nonzero if the argument will be passed in registers.  It will
3431    never be set if REG_PARM_STACK_SPACE is not defined.
3432
3433    FNDECL is the function in which the argument was defined.
3434
3435    There are two types of rounding that are done.  The first, controlled by
3436    FUNCTION_ARG_BOUNDARY, forces the offset from the start of the argument
3437    list to be aligned to the specific boundary (in bits).  This rounding
3438    affects the initial and starting offsets, but not the argument size.
3439
3440    The second, controlled by FUNCTION_ARG_PADDING and PARM_BOUNDARY,
3441    optionally rounds the size of the parm to PARM_BOUNDARY.  The
3442    initial offset is not affected by this rounding, while the size always
3443    is and the starting offset may be.  */
3444
3445 /*  LOCATE->OFFSET will be negative for ARGS_GROW_DOWNWARD case;
3446     INITIAL_OFFSET_PTR is positive because locate_and_pad_parm's
3447     callers pass in the total size of args so far as
3448     INITIAL_OFFSET_PTR.  LOCATE->SIZE is always positive.  */
3449
3450 void
3451 locate_and_pad_parm (enum machine_mode passed_mode, tree type, int in_regs,
3452                      int partial, tree fndecl ATTRIBUTE_UNUSED,
3453                      struct args_size *initial_offset_ptr,
3454                      struct locate_and_pad_arg_data *locate)
3455 {
3456   tree sizetree;
3457   enum direction where_pad;
3458   unsigned int boundary;
3459   int reg_parm_stack_space = 0;
3460   int part_size_in_regs;
3461
3462 #ifdef REG_PARM_STACK_SPACE
3463   reg_parm_stack_space = REG_PARM_STACK_SPACE (fndecl);
3464
3465   /* If we have found a stack parm before we reach the end of the
3466      area reserved for registers, skip that area.  */
3467   if (! in_regs)
3468     {
3469       if (reg_parm_stack_space > 0)
3470         {
3471           if (initial_offset_ptr->var)
3472             {
3473               initial_offset_ptr->var
3474                 = size_binop (MAX_EXPR, ARGS_SIZE_TREE (*initial_offset_ptr),
3475                               ssize_int (reg_parm_stack_space));
3476               initial_offset_ptr->constant = 0;
3477             }
3478           else if (initial_offset_ptr->constant < reg_parm_stack_space)
3479             initial_offset_ptr->constant = reg_parm_stack_space;
3480         }
3481     }
3482 #endif /* REG_PARM_STACK_SPACE */
3483
3484   part_size_in_regs = (reg_parm_stack_space == 0 ? partial : 0);
3485
3486   sizetree
3487     = type ? size_in_bytes (type) : size_int (GET_MODE_SIZE (passed_mode));
3488   where_pad = FUNCTION_ARG_PADDING (passed_mode, type);
3489   boundary = FUNCTION_ARG_BOUNDARY (passed_mode, type);
3490   locate->where_pad = where_pad;
3491
3492   /* Alignment can't exceed MAX_SUPPORTED_STACK_ALIGNMENT.  */
3493   if (boundary > MAX_SUPPORTED_STACK_ALIGNMENT)
3494     boundary = MAX_SUPPORTED_STACK_ALIGNMENT;
3495
3496   locate->boundary = boundary;
3497
3498   if (SUPPORTS_STACK_ALIGNMENT)
3499     {
3500       /* stack_alignment_estimated can't change after stack has been
3501          realigned.  */
3502       if (crtl->stack_alignment_estimated < boundary)
3503         {
3504           if (!crtl->stack_realign_processed)
3505             crtl->stack_alignment_estimated = boundary;
3506           else
3507             {
3508               /* If stack is realigned and stack alignment value
3509                  hasn't been finalized, it is OK not to increase
3510                  stack_alignment_estimated.  The bigger alignment
3511                  requirement is recorded in stack_alignment_needed
3512                  below.  */
3513               gcc_assert (!crtl->stack_realign_finalized
3514                           && crtl->stack_realign_needed);
3515             }
3516         }
3517     }
3518
3519   /* Remember if the outgoing parameter requires extra alignment on the
3520      calling function side.  */
3521   if (crtl->stack_alignment_needed < boundary)
3522     crtl->stack_alignment_needed = boundary;
3523   if (crtl->max_used_stack_slot_alignment < crtl->stack_alignment_needed)
3524     crtl->max_used_stack_slot_alignment = crtl->stack_alignment_needed;
3525   if (crtl->preferred_stack_boundary < boundary)
3526     crtl->preferred_stack_boundary = boundary;
3527
3528 #ifdef ARGS_GROW_DOWNWARD
3529   locate->slot_offset.constant = -initial_offset_ptr->constant;
3530   if (initial_offset_ptr->var)
3531     locate->slot_offset.var = size_binop (MINUS_EXPR, ssize_int (0),
3532                                           initial_offset_ptr->var);
3533
3534   {
3535     tree s2 = sizetree;
3536     if (where_pad != none
3537         && (!host_integerp (sizetree, 1)
3538             || (tree_low_cst (sizetree, 1) * BITS_PER_UNIT) % PARM_BOUNDARY))
3539       s2 = round_up (s2, PARM_BOUNDARY / BITS_PER_UNIT);
3540     SUB_PARM_SIZE (locate->slot_offset, s2);
3541   }
3542
3543   locate->slot_offset.constant += part_size_in_regs;
3544
3545   if (!in_regs
3546 #ifdef REG_PARM_STACK_SPACE
3547       || REG_PARM_STACK_SPACE (fndecl) > 0
3548 #endif
3549      )
3550     pad_to_arg_alignment (&locate->slot_offset, boundary,
3551                           &locate->alignment_pad);
3552
3553   locate->size.constant = (-initial_offset_ptr->constant
3554                            - locate->slot_offset.constant);
3555   if (initial_offset_ptr->var)
3556     locate->size.var = size_binop (MINUS_EXPR,
3557                                    size_binop (MINUS_EXPR,
3558                                                ssize_int (0),
3559                                                initial_offset_ptr->var),
3560                                    locate->slot_offset.var);
3561
3562   /* Pad_below needs the pre-rounded size to know how much to pad
3563      below.  */
3564   locate->offset = locate->slot_offset;
3565   if (where_pad == downward)
3566     pad_below (&locate->offset, passed_mode, sizetree);
3567
3568 #else /* !ARGS_GROW_DOWNWARD */
3569   if (!in_regs
3570 #ifdef REG_PARM_STACK_SPACE
3571       || REG_PARM_STACK_SPACE (fndecl) > 0
3572 #endif
3573       )
3574     pad_to_arg_alignment (initial_offset_ptr, boundary,
3575                           &locate->alignment_pad);
3576   locate->slot_offset = *initial_offset_ptr;
3577
3578 #ifdef PUSH_ROUNDING
3579   if (passed_mode != BLKmode)
3580     sizetree = size_int (PUSH_ROUNDING (TREE_INT_CST_LOW (sizetree)));
3581 #endif
3582
3583   /* Pad_below needs the pre-rounded size to know how much to pad below
3584      so this must be done before rounding up.  */
3585   locate->offset = locate->slot_offset;
3586   if (where_pad == downward)
3587     pad_below (&locate->offset, passed_mode, sizetree);
3588
3589   if (where_pad != none
3590       && (!host_integerp (sizetree, 1)
3591           || (tree_low_cst (sizetree, 1) * BITS_PER_UNIT) % PARM_BOUNDARY))
3592     sizetree = round_up (sizetree, PARM_BOUNDARY / BITS_PER_UNIT);
3593
3594   ADD_PARM_SIZE (locate->size, sizetree);
3595
3596   locate->size.constant -= part_size_in_regs;
3597 #endif /* ARGS_GROW_DOWNWARD */
3598
3599 #ifdef FUNCTION_ARG_OFFSET
3600   locate->offset.constant += FUNCTION_ARG_OFFSET (passed_mode, type);
3601 #endif
3602 }
3603
3604 /* Round the stack offset in *OFFSET_PTR up to a multiple of BOUNDARY.
3605    BOUNDARY is measured in bits, but must be a multiple of a storage unit.  */
3606
3607 static void
3608 pad_to_arg_alignment (struct args_size *offset_ptr, int boundary,
3609                       struct args_size *alignment_pad)
3610 {
3611   tree save_var = NULL_TREE;
3612   HOST_WIDE_INT save_constant = 0;
3613   int boundary_in_bytes = boundary / BITS_PER_UNIT;
3614   HOST_WIDE_INT sp_offset = STACK_POINTER_OFFSET;
3615
3616 #ifdef SPARC_STACK_BOUNDARY_HACK
3617   /* ??? The SPARC port may claim a STACK_BOUNDARY higher than
3618      the real alignment of %sp.  However, when it does this, the
3619      alignment of %sp+STACK_POINTER_OFFSET is STACK_BOUNDARY.  */
3620   if (SPARC_STACK_BOUNDARY_HACK)
3621     sp_offset = 0;
3622 #endif
3623
3624   if (boundary > PARM_BOUNDARY)
3625     {
3626       save_var = offset_ptr->var;
3627       save_constant = offset_ptr->constant;
3628     }
3629
3630   alignment_pad->var = NULL_TREE;
3631   alignment_pad->constant = 0;
3632
3633   if (boundary > BITS_PER_UNIT)
3634     {
3635       if (offset_ptr->var)
3636         {
3637           tree sp_offset_tree = ssize_int (sp_offset);
3638           tree offset = size_binop (PLUS_EXPR,
3639                                     ARGS_SIZE_TREE (*offset_ptr),
3640                                     sp_offset_tree);
3641 #ifdef ARGS_GROW_DOWNWARD
3642           tree rounded = round_down (offset, boundary / BITS_PER_UNIT);
3643 #else
3644           tree rounded = round_up   (offset, boundary / BITS_PER_UNIT);
3645 #endif
3646
3647           offset_ptr->var = size_binop (MINUS_EXPR, rounded, sp_offset_tree);
3648           /* ARGS_SIZE_TREE includes constant term.  */
3649           offset_ptr->constant = 0;
3650           if (boundary > PARM_BOUNDARY)
3651             alignment_pad->var = size_binop (MINUS_EXPR, offset_ptr->var,
3652                                              save_var);
3653         }
3654       else
3655         {
3656           offset_ptr->constant = -sp_offset +
3657 #ifdef ARGS_GROW_DOWNWARD
3658             FLOOR_ROUND (offset_ptr->constant + sp_offset, boundary_in_bytes);
3659 #else
3660             CEIL_ROUND (offset_ptr->constant + sp_offset, boundary_in_bytes);
3661 #endif
3662             if (boundary > PARM_BOUNDARY)
3663               alignment_pad->constant = offset_ptr->constant - save_constant;
3664         }
3665     }
3666 }
3667
3668 static void
3669 pad_below (struct args_size *offset_ptr, enum machine_mode passed_mode, tree sizetree)
3670 {
3671   if (passed_mode != BLKmode)
3672     {
3673       if (GET_MODE_BITSIZE (passed_mode) % PARM_BOUNDARY)
3674         offset_ptr->constant
3675           += (((GET_MODE_BITSIZE (passed_mode) + PARM_BOUNDARY - 1)
3676                / PARM_BOUNDARY * PARM_BOUNDARY / BITS_PER_UNIT)
3677               - GET_MODE_SIZE (passed_mode));
3678     }
3679   else
3680     {
3681       if (TREE_CODE (sizetree) != INTEGER_CST
3682           || (TREE_INT_CST_LOW (sizetree) * BITS_PER_UNIT) % PARM_BOUNDARY)
3683         {
3684           /* Round the size up to multiple of PARM_BOUNDARY bits.  */
3685           tree s2 = round_up (sizetree, PARM_BOUNDARY / BITS_PER_UNIT);
3686           /* Add it in.  */
3687           ADD_PARM_SIZE (*offset_ptr, s2);
3688           SUB_PARM_SIZE (*offset_ptr, sizetree);
3689         }
3690     }
3691 }
3692 \f
3693
3694 /* True if register REGNO was alive at a place where `setjmp' was
3695    called and was set more than once or is an argument.  Such regs may
3696    be clobbered by `longjmp'.  */
3697
3698 static bool
3699 regno_clobbered_at_setjmp (bitmap setjmp_crosses, int regno)
3700 {
3701   /* There appear to be cases where some local vars never reach the
3702      backend but have bogus regnos.  */
3703   if (regno >= max_reg_num ())
3704     return false;
3705
3706   return ((REG_N_SETS (regno) > 1
3707            || REGNO_REG_SET_P (df_get_live_out (ENTRY_BLOCK_PTR), regno))
3708           && REGNO_REG_SET_P (setjmp_crosses, regno));
3709 }
3710
3711 /* Walk the tree of blocks describing the binding levels within a
3712    function and warn about variables the might be killed by setjmp or
3713    vfork.  This is done after calling flow_analysis before register
3714    allocation since that will clobber the pseudo-regs to hard
3715    regs.  */
3716
3717 static void
3718 setjmp_vars_warning (bitmap setjmp_crosses, tree block)
3719 {
3720   tree decl, sub;
3721
3722   for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
3723     {
3724       if (TREE_CODE (decl) == VAR_DECL
3725           && DECL_RTL_SET_P (decl)
3726           && REG_P (DECL_RTL (decl))
3727           && regno_clobbered_at_setjmp (setjmp_crosses, REGNO (DECL_RTL (decl))))
3728         warning (OPT_Wclobbered, "variable %q+D might be clobbered by" 
3729                  " %<longjmp%> or %<vfork%>", decl);
3730     }
3731
3732   for (sub = BLOCK_SUBBLOCKS (block); sub; sub = BLOCK_CHAIN (sub))
3733     setjmp_vars_warning (setjmp_crosses, sub);
3734 }
3735
3736 /* Do the appropriate part of setjmp_vars_warning
3737    but for arguments instead of local variables.  */
3738
3739 static void
3740 setjmp_args_warning (bitmap setjmp_crosses)
3741 {
3742   tree decl;
3743   for (decl = DECL_ARGUMENTS (current_function_decl);
3744        decl; decl = TREE_CHAIN (decl))
3745     if (DECL_RTL (decl) != 0
3746         && REG_P (DECL_RTL (decl))
3747         && regno_clobbered_at_setjmp (setjmp_crosses, REGNO (DECL_RTL (decl))))
3748       warning (OPT_Wclobbered, 
3749                "argument %q+D might be clobbered by %<longjmp%> or %<vfork%>",
3750                decl);
3751 }
3752
3753 /* Generate warning messages for variables live across setjmp.  */
3754
3755 void 
3756 generate_setjmp_warnings (void)
3757 {
3758   bitmap setjmp_crosses = regstat_get_setjmp_crosses ();
3759
3760   if (n_basic_blocks == NUM_FIXED_BLOCKS
3761       || bitmap_empty_p (setjmp_crosses))
3762     return;
3763
3764   setjmp_vars_warning (setjmp_crosses, DECL_INITIAL (current_function_decl));
3765   setjmp_args_warning (setjmp_crosses);
3766 }
3767
3768 \f
3769 /* Identify BLOCKs referenced by more than one NOTE_INSN_BLOCK_{BEG,END},
3770    and create duplicate blocks.  */
3771 /* ??? Need an option to either create block fragments or to create
3772    abstract origin duplicates of a source block.  It really depends
3773    on what optimization has been performed.  */
3774
3775 void
3776 reorder_blocks (void)
3777 {
3778   tree block = DECL_INITIAL (current_function_decl);
3779   VEC(tree,heap) *block_stack;
3780
3781   if (block == NULL_TREE)
3782     return;
3783
3784   block_stack = VEC_alloc (tree, heap, 10);
3785
3786   /* Reset the TREE_ASM_WRITTEN bit for all blocks.  */
3787   clear_block_marks (block);
3788
3789   /* Prune the old trees away, so that they don't get in the way.  */
3790   BLOCK_SUBBLOCKS (block) = NULL_TREE;
3791   BLOCK_CHAIN (block) = NULL_TREE;
3792
3793   /* Recreate the block tree from the note nesting.  */
3794   reorder_blocks_1 (get_insns (), block, &block_stack);
3795   BLOCK_SUBBLOCKS (block) = blocks_nreverse (BLOCK_SUBBLOCKS (block));
3796
3797   VEC_free (tree, heap, block_stack);
3798 }
3799
3800 /* Helper function for reorder_blocks.  Reset TREE_ASM_WRITTEN.  */
3801
3802 void
3803 clear_block_marks (tree block)
3804 {
3805   while (block)
3806     {
3807       TREE_ASM_WRITTEN (block) = 0;
3808       clear_block_marks (BLOCK_SUBBLOCKS (block));
3809       block = BLOCK_CHAIN (block);
3810     }
3811 }
3812
3813 static void
3814 reorder_blocks_1 (rtx insns, tree current_block, VEC(tree,heap) **p_block_stack)
3815 {
3816   rtx insn;
3817
3818   for (insn = insns; insn; insn = NEXT_INSN (insn))
3819     {
3820       if (NOTE_P (insn))
3821         {
3822           if (NOTE_KIND (insn) == NOTE_INSN_BLOCK_BEG)
3823             {
3824               tree block = NOTE_BLOCK (insn);
3825               tree origin;
3826
3827               origin = (BLOCK_FRAGMENT_ORIGIN (block)
3828                         ? BLOCK_FRAGMENT_ORIGIN (block)
3829                         : block);
3830
3831               /* If we have seen this block before, that means it now
3832                  spans multiple address regions.  Create a new fragment.  */
3833               if (TREE_ASM_WRITTEN (block))
3834                 {
3835                   tree new_block = copy_node (block);
3836
3837                   BLOCK_FRAGMENT_ORIGIN (new_block) = origin;
3838                   BLOCK_FRAGMENT_CHAIN (new_block)
3839                     = BLOCK_FRAGMENT_CHAIN (origin);
3840                   BLOCK_FRAGMENT_CHAIN (origin) = new_block;
3841
3842                   NOTE_BLOCK (insn) = new_block;
3843                   block = new_block;
3844                 }
3845
3846               BLOCK_SUBBLOCKS (block) = 0;
3847               TREE_ASM_WRITTEN (block) = 1;
3848               /* When there's only one block for the entire function,
3849                  current_block == block and we mustn't do this, it
3850                  will cause infinite recursion.  */
3851               if (block != current_block)
3852                 {
3853                   if (block != origin)
3854                     gcc_assert (BLOCK_SUPERCONTEXT (origin) == current_block);
3855
3856                   BLOCK_SUPERCONTEXT (block) = current_block;
3857                   BLOCK_CHAIN (block) = BLOCK_SUBBLOCKS (current_block);
3858                   BLOCK_SUBBLOCKS (current_block) = block;
3859                   current_block = origin;
3860                 }
3861               VEC_safe_push (tree, heap, *p_block_stack, block);
3862             }
3863           else if (NOTE_KIND (insn) == NOTE_INSN_BLOCK_END)
3864             {
3865               NOTE_BLOCK (insn) = VEC_pop (tree, *p_block_stack);
3866               BLOCK_SUBBLOCKS (current_block)
3867                 = blocks_nreverse (BLOCK_SUBBLOCKS (current_block));
3868               current_block = BLOCK_SUPERCONTEXT (current_block);
3869             }
3870         }
3871     }
3872 }
3873
3874 /* Reverse the order of elements in the chain T of blocks,
3875    and return the new head of the chain (old last element).  */
3876
3877 tree
3878 blocks_nreverse (tree t)
3879 {
3880   tree prev = 0, decl, next;
3881   for (decl = t; decl; decl = next)
3882     {
3883       next = BLOCK_CHAIN (decl);
3884       BLOCK_CHAIN (decl) = prev;
3885       prev = decl;
3886     }
3887   return prev;
3888 }
3889
3890 /* Count the subblocks of the list starting with BLOCK.  If VECTOR is
3891    non-NULL, list them all into VECTOR, in a depth-first preorder
3892    traversal of the block tree.  Also clear TREE_ASM_WRITTEN in all
3893    blocks.  */
3894
3895 static int
3896 all_blocks (tree block, tree *vector)
3897 {
3898   int n_blocks = 0;
3899
3900   while (block)
3901     {
3902       TREE_ASM_WRITTEN (block) = 0;
3903
3904       /* Record this block.  */
3905       if (vector)
3906         vector[n_blocks] = block;
3907
3908       ++n_blocks;
3909
3910       /* Record the subblocks, and their subblocks...  */
3911       n_blocks += all_blocks (BLOCK_SUBBLOCKS (block),
3912                               vector ? vector + n_blocks : 0);
3913       block = BLOCK_CHAIN (block);
3914     }
3915
3916   return n_blocks;
3917 }
3918
3919 /* Return a vector containing all the blocks rooted at BLOCK.  The
3920    number of elements in the vector is stored in N_BLOCKS_P.  The
3921    vector is dynamically allocated; it is the caller's responsibility
3922    to call `free' on the pointer returned.  */
3923
3924 static tree *
3925 get_block_vector (tree block, int *n_blocks_p)
3926 {
3927   tree *block_vector;
3928
3929   *n_blocks_p = all_blocks (block, NULL);
3930   block_vector = XNEWVEC (tree, *n_blocks_p);
3931   all_blocks (block, block_vector);
3932
3933   return block_vector;
3934 }
3935
3936 static GTY(()) int next_block_index = 2;
3937
3938 /* Set BLOCK_NUMBER for all the blocks in FN.  */
3939
3940 void
3941 number_blocks (tree fn)
3942 {
3943   int i;
3944   int n_blocks;
3945   tree *block_vector;
3946
3947   /* For SDB and XCOFF debugging output, we start numbering the blocks
3948      from 1 within each function, rather than keeping a running
3949      count.  */
3950 #if defined (SDB_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
3951   if (write_symbols == SDB_DEBUG || write_symbols == XCOFF_DEBUG)
3952     next_block_index = 1;
3953 #endif
3954
3955   block_vector = get_block_vector (DECL_INITIAL (fn), &n_blocks);
3956
3957   /* The top-level BLOCK isn't numbered at all.  */
3958   for (i = 1; i < n_blocks; ++i)
3959     /* We number the blocks from two.  */
3960     BLOCK_NUMBER (block_vector[i]) = next_block_index++;
3961
3962   free (block_vector);
3963
3964   return;
3965 }
3966
3967 /* If VAR is present in a subblock of BLOCK, return the subblock.  */
3968
3969 tree
3970 debug_find_var_in_block_tree (tree var, tree block)
3971 {
3972   tree t;
3973
3974   for (t = BLOCK_VARS (block); t; t = TREE_CHAIN (t))
3975     if (t == var)
3976       return block;
3977
3978   for (t = BLOCK_SUBBLOCKS (block); t; t = TREE_CHAIN (t))
3979     {
3980       tree ret = debug_find_var_in_block_tree (var, t);
3981       if (ret)
3982         return ret;
3983     }
3984
3985   return NULL_TREE;
3986 }
3987 \f
3988 /* Keep track of whether we're in a dummy function context.  If we are,
3989    we don't want to invoke the set_current_function hook, because we'll
3990    get into trouble if the hook calls target_reinit () recursively or
3991    when the initial initialization is not yet complete.  */
3992
3993 static bool in_dummy_function;
3994
3995 /* Invoke the target hook when setting cfun.  Update the optimization options
3996    if the function uses different options than the default.  */
3997
3998 static void
3999 invoke_set_current_function_hook (tree fndecl)
4000 {
4001   if (!in_dummy_function)
4002     {
4003       tree opts = ((fndecl)
4004                    ? DECL_FUNCTION_SPECIFIC_OPTIMIZATION (fndecl)
4005                    : optimization_default_node);
4006
4007       if (!opts)
4008         opts = optimization_default_node;
4009
4010       /* Change optimization options if needed.  */
4011       if (optimization_current_node != opts)
4012         {
4013           optimization_current_node = opts;
4014           cl_optimization_restore (TREE_OPTIMIZATION (opts));
4015         }
4016
4017       targetm.set_current_function (fndecl);
4018     }
4019 }
4020
4021 /* cfun should never be set directly; use this function.  */
4022
4023 void
4024 set_cfun (struct function *new_cfun)
4025 {
4026   if (cfun != new_cfun)
4027     {
4028       cfun = new_cfun;
4029       invoke_set_current_function_hook (new_cfun ? new_cfun->decl : NULL_TREE);
4030     }
4031 }
4032
4033 /* Initialized with NOGC, making this poisonous to the garbage collector.  */
4034
4035 static VEC(function_p,heap) *cfun_stack;
4036
4037 /* Push the current cfun onto the stack, and set cfun to new_cfun.  */
4038
4039 void
4040 push_cfun (struct function *new_cfun)
4041 {
4042   VEC_safe_push (function_p, heap, cfun_stack, cfun);
4043   set_cfun (new_cfun);
4044 }
4045
4046 /* Pop cfun from the stack.  */
4047
4048 void
4049 pop_cfun (void)
4050 {
4051   struct function *new_cfun = VEC_pop (function_p, cfun_stack);
4052   set_cfun (new_cfun);
4053 }
4054
4055 /* Return value of funcdef and increase it.  */
4056 int
4057 get_next_funcdef_no (void) 
4058 {
4059   return funcdef_no++;
4060 }
4061
4062 /* Allocate a function structure for FNDECL and set its contents
4063    to the defaults.  Set cfun to the newly-allocated object.
4064    Some of the helper functions invoked during initialization assume
4065    that cfun has already been set.  Therefore, assign the new object
4066    directly into cfun and invoke the back end hook explicitly at the
4067    very end, rather than initializing a temporary and calling set_cfun
4068    on it.
4069
4070    ABSTRACT_P is true if this is a function that will never be seen by
4071    the middle-end.  Such functions are front-end concepts (like C++
4072    function templates) that do not correspond directly to functions
4073    placed in object files.  */
4074
4075 void
4076 allocate_struct_function (tree fndecl, bool abstract_p)
4077 {
4078   tree result;
4079   tree fntype = fndecl ? TREE_TYPE (fndecl) : NULL_TREE;
4080
4081   cfun = GGC_CNEW (struct function);
4082
4083   cfun->function_frequency = FUNCTION_FREQUENCY_NORMAL;
4084
4085   init_eh_for_function ();
4086
4087   if (init_machine_status)
4088     cfun->machine = (*init_machine_status) ();
4089
4090 #ifdef OVERRIDE_ABI_FORMAT
4091   OVERRIDE_ABI_FORMAT (fndecl);
4092 #endif
4093
4094   invoke_set_current_function_hook (fndecl);
4095
4096   if (fndecl != NULL_TREE)
4097     {
4098       DECL_STRUCT_FUNCTION (fndecl) = cfun;
4099       cfun->decl = fndecl;
4100       current_function_funcdef_no = get_next_funcdef_no ();
4101
4102       result = DECL_RESULT (fndecl);
4103       if (!abstract_p && aggregate_value_p (result, fndecl))
4104         {
4105 #ifdef PCC_STATIC_STRUCT_RETURN
4106           cfun->returns_pcc_struct = 1;
4107 #endif
4108           cfun->returns_struct = 1;
4109         }
4110
4111       cfun->stdarg
4112         = (fntype
4113            && TYPE_ARG_TYPES (fntype) != 0
4114            && (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype)))
4115                != void_type_node));
4116       
4117       /* Assume all registers in stdarg functions need to be saved.  */
4118       cfun->va_list_gpr_size = VA_LIST_MAX_GPR_SIZE;
4119       cfun->va_list_fpr_size = VA_LIST_MAX_FPR_SIZE;
4120     }
4121 }
4122
4123 /* This is like allocate_struct_function, but pushes a new cfun for FNDECL
4124    instead of just setting it.  */
4125
4126 void
4127 push_struct_function (tree fndecl)
4128 {
4129   VEC_safe_push (function_p, heap, cfun_stack, cfun);
4130   allocate_struct_function (fndecl, false);
4131 }
4132
4133 /* Reset cfun, and other non-struct-function variables to defaults as
4134    appropriate for emitting rtl at the start of a function.  */
4135
4136 static void
4137 prepare_function_start (void)
4138 {
4139   gcc_assert (!crtl->emit.x_last_insn);
4140   init_temp_slots ();
4141   init_emit ();
4142   init_varasm_status ();
4143   init_expr ();
4144   default_rtl_profile ();
4145
4146   cse_not_expected = ! optimize;
4147
4148   /* Caller save not needed yet.  */
4149   caller_save_needed = 0;
4150
4151   /* We haven't done register allocation yet.  */
4152   reg_renumber = 0;
4153
4154   /* Indicate that we have not instantiated virtual registers yet.  */
4155   virtuals_instantiated = 0;
4156
4157   /* Indicate that we want CONCATs now.  */
4158   generating_concat_p = 1;
4159
4160   /* Indicate we have no need of a frame pointer yet.  */
4161   frame_pointer_needed = 0;
4162 }
4163
4164 /* Initialize the rtl expansion mechanism so that we can do simple things
4165    like generate sequences.  This is used to provide a context during global
4166    initialization of some passes.  You must call expand_dummy_function_end
4167    to exit this context.  */
4168
4169 void
4170 init_dummy_function_start (void)
4171 {
4172   gcc_assert (!in_dummy_function);
4173   in_dummy_function = true;
4174   push_struct_function (NULL_TREE);
4175   prepare_function_start ();
4176 }
4177
4178 /* Generate RTL for the start of the function SUBR (a FUNCTION_DECL tree node)
4179    and initialize static variables for generating RTL for the statements
4180    of the function.  */
4181
4182 void
4183 init_function_start (tree subr)
4184 {
4185   if (subr && DECL_STRUCT_FUNCTION (subr))
4186     set_cfun (DECL_STRUCT_FUNCTION (subr));
4187   else
4188     allocate_struct_function (subr, false);
4189   prepare_function_start ();
4190
4191   /* Warn if this value is an aggregate type,
4192      regardless of which calling convention we are using for it.  */
4193   if (AGGREGATE_TYPE_P (TREE_TYPE (DECL_RESULT (subr))))
4194     warning (OPT_Waggregate_return, "function returns an aggregate");
4195 }
4196
4197 /* Make sure all values used by the optimization passes have sane defaults.  */
4198 unsigned int
4199 init_function_for_compilation (void)
4200 {
4201   reg_renumber = 0;
4202   return 0;
4203 }
4204
4205 struct rtl_opt_pass pass_init_function =
4206 {
4207  {
4208   RTL_PASS,
4209   NULL,                                 /* name */
4210   NULL,                                 /* gate */   
4211   init_function_for_compilation,        /* execute */       
4212   NULL,                                 /* sub */
4213   NULL,                                 /* next */
4214   0,                                    /* static_pass_number */
4215   TV_NONE,                              /* tv_id */
4216   0,                                    /* properties_required */
4217   0,                                    /* properties_provided */
4218   0,                                    /* properties_destroyed */
4219   0,                                    /* todo_flags_start */
4220   0                                     /* todo_flags_finish */
4221  }
4222 };
4223
4224
4225 void
4226 expand_main_function (void)
4227 {
4228 #if (defined(INVOKE__main)                              \
4229      || (!defined(HAS_INIT_SECTION)                     \
4230          && !defined(INIT_SECTION_ASM_OP)               \
4231          && !defined(INIT_ARRAY_SECTION_ASM_OP)))
4232   emit_library_call (init_one_libfunc (NAME__MAIN), LCT_NORMAL, VOIDmode, 0);
4233 #endif
4234 }
4235 \f
4236 /* Expand code to initialize the stack_protect_guard.  This is invoked at
4237    the beginning of a function to be protected.  */
4238
4239 #ifndef HAVE_stack_protect_set
4240 # define HAVE_stack_protect_set         0
4241 # define gen_stack_protect_set(x,y)     (gcc_unreachable (), NULL_RTX)
4242 #endif
4243
4244 void
4245 stack_protect_prologue (void)
4246 {
4247   tree guard_decl = targetm.stack_protect_guard ();
4248   rtx x, y;
4249
4250   /* Avoid expand_expr here, because we don't want guard_decl pulled
4251      into registers unless absolutely necessary.  And we know that
4252      crtl->stack_protect_guard is a local stack slot, so this skips
4253      all the fluff.  */
4254   x = validize_mem (DECL_RTL (crtl->stack_protect_guard));
4255   y = validize_mem (DECL_RTL (guard_decl));
4256
4257   /* Allow the target to copy from Y to X without leaking Y into a
4258      register.  */
4259   if (HAVE_stack_protect_set)
4260     {
4261       rtx insn = gen_stack_protect_set (x, y);
4262       if (insn)
4263         {
4264           emit_insn (insn);
4265           return;
4266         }
4267     }
4268
4269   /* Otherwise do a straight move.  */
4270   emit_move_insn (x, y);
4271 }
4272
4273 /* Expand code to verify the stack_protect_guard.  This is invoked at
4274    the end of a function to be protected.  */
4275
4276 #ifndef HAVE_stack_protect_test
4277 # define HAVE_stack_protect_test                0
4278 # define gen_stack_protect_test(x, y, z)        (gcc_unreachable (), NULL_RTX)
4279 #endif
4280
4281 void
4282 stack_protect_epilogue (void)
4283 {
4284   tree guard_decl = targetm.stack_protect_guard ();
4285   rtx label = gen_label_rtx ();
4286   rtx x, y, tmp;
4287
4288   /* Avoid expand_expr here, because we don't want guard_decl pulled
4289      into registers unless absolutely necessary.  And we know that
4290      crtl->stack_protect_guard is a local stack slot, so this skips
4291      all the fluff.  */
4292   x = validize_mem (DECL_RTL (crtl->stack_protect_guard));
4293   y = validize_mem (DECL_RTL (guard_decl));
4294
4295   /* Allow the target to compare Y with X without leaking either into
4296      a register.  */
4297   switch (HAVE_stack_protect_test != 0)
4298     {
4299     case 1:
4300       tmp = gen_stack_protect_test (x, y, label);
4301       if (tmp)
4302         {
4303           emit_insn (tmp);
4304           break;
4305         }
4306       /* FALLTHRU */
4307
4308     default:
4309       emit_cmp_and_jump_insns (x, y, EQ, NULL_RTX, ptr_mode, 1, label);
4310       break;
4311     }
4312
4313   /* The noreturn predictor has been moved to the tree level.  The rtl-level
4314      predictors estimate this branch about 20%, which isn't enough to get
4315      things moved out of line.  Since this is the only extant case of adding
4316      a noreturn function at the rtl level, it doesn't seem worth doing ought
4317      except adding the prediction by hand.  */
4318   tmp = get_last_insn ();
4319   if (JUMP_P (tmp))
4320     predict_insn_def (tmp, PRED_NORETURN, TAKEN);
4321
4322   expand_expr_stmt (targetm.stack_protect_fail ());
4323   emit_label (label);
4324 }
4325 \f
4326 /* Start the RTL for a new function, and set variables used for
4327    emitting RTL.
4328    SUBR is the FUNCTION_DECL node.
4329    PARMS_HAVE_CLEANUPS is nonzero if there are cleanups associated with
4330    the function's parameters, which must be run at any return statement.  */
4331
4332 void
4333 expand_function_start (tree subr)
4334 {
4335   /* Make sure volatile mem refs aren't considered
4336      valid operands of arithmetic insns.  */
4337   init_recog_no_volatile ();
4338
4339   crtl->profile
4340     = (profile_flag
4341        && ! DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (subr));
4342
4343   crtl->limit_stack
4344     = (stack_limit_rtx != NULL_RTX && ! DECL_NO_LIMIT_STACK (subr));
4345
4346   /* Make the label for return statements to jump to.  Do not special
4347      case machines with special return instructions -- they will be
4348      handled later during jump, ifcvt, or epilogue creation.  */
4349   return_label = gen_label_rtx ();
4350
4351   /* Initialize rtx used to return the value.  */
4352   /* Do this before assign_parms so that we copy the struct value address
4353      before any library calls that assign parms might generate.  */
4354
4355   /* Decide whether to return the value in memory or in a register.  */
4356   if (aggregate_value_p (DECL_RESULT (subr), subr))
4357     {
4358       /* Returning something that won't go in a register.  */
4359       rtx value_address = 0;
4360
4361 #ifdef PCC_STATIC_STRUCT_RETURN
4362       if (cfun->returns_pcc_struct)
4363         {
4364           int size = int_size_in_bytes (TREE_TYPE (DECL_RESULT (subr)));
4365           value_address = assemble_static_space (size);
4366         }
4367       else
4368 #endif
4369         {
4370           rtx sv = targetm.calls.struct_value_rtx (TREE_TYPE (subr), 2);
4371           /* Expect to be passed the address of a place to store the value.
4372              If it is passed as an argument, assign_parms will take care of
4373              it.  */
4374           if (sv)
4375             {
4376               value_address = gen_reg_rtx (Pmode);
4377               emit_move_insn (value_address, sv);
4378             }
4379         }
4380       if (value_address)
4381         {
4382           rtx x = value_address;
4383           if (!DECL_BY_REFERENCE (DECL_RESULT (subr)))
4384             {
4385               x = gen_rtx_MEM (DECL_MODE (DECL_RESULT (subr)), x);
4386               set_mem_attributes (x, DECL_RESULT (subr), 1);
4387             }
4388           SET_DECL_RTL (DECL_RESULT (subr), x);
4389         }
4390     }
4391   else if (DECL_MODE (DECL_RESULT (subr)) == VOIDmode)
4392     /* If return mode is void, this decl rtl should not be used.  */
4393     SET_DECL_RTL (DECL_RESULT (subr), NULL_RTX);
4394   else
4395     {
4396       /* Compute the return values into a pseudo reg, which we will copy
4397          into the true return register after the cleanups are done.  */
4398       tree return_type = TREE_TYPE (DECL_RESULT (subr));
4399       if (TYPE_MODE (return_type) != BLKmode
4400           && targetm.calls.return_in_msb (return_type))
4401         /* expand_function_end will insert the appropriate padding in
4402            this case.  Use the return value's natural (unpadded) mode
4403            within the function proper.  */
4404         SET_DECL_RTL (DECL_RESULT (subr),
4405                       gen_reg_rtx (TYPE_MODE (return_type)));
4406       else
4407         {
4408           /* In order to figure out what mode to use for the pseudo, we
4409              figure out what the mode of the eventual return register will
4410              actually be, and use that.  */
4411           rtx hard_reg = hard_function_value (return_type, subr, 0, 1);
4412
4413           /* Structures that are returned in registers are not
4414              aggregate_value_p, so we may see a PARALLEL or a REG.  */
4415           if (REG_P (hard_reg))
4416             SET_DECL_RTL (DECL_RESULT (subr),
4417                           gen_reg_rtx (GET_MODE (hard_reg)));
4418           else
4419             {
4420               gcc_assert (GET_CODE (hard_reg) == PARALLEL);
4421               SET_DECL_RTL (DECL_RESULT (subr), gen_group_rtx (hard_reg));
4422             }
4423         }
4424
4425       /* Set DECL_REGISTER flag so that expand_function_end will copy the
4426          result to the real return register(s).  */
4427       DECL_REGISTER (DECL_RESULT (subr)) = 1;
4428     }
4429
4430   /* Initialize rtx for parameters and local variables.
4431      In some cases this requires emitting insns.  */
4432   assign_parms (subr);
4433
4434   /* If function gets a static chain arg, store it.  */
4435   if (cfun->static_chain_decl)
4436     {
4437       tree parm = cfun->static_chain_decl;
4438       rtx local = gen_reg_rtx (Pmode);
4439
4440       set_decl_incoming_rtl (parm, static_chain_incoming_rtx, false);
4441       SET_DECL_RTL (parm, local);
4442       mark_reg_pointer (local, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (parm))));
4443
4444       emit_move_insn (local, static_chain_incoming_rtx);
4445     }
4446
4447   /* If the function receives a non-local goto, then store the
4448      bits we need to restore the frame pointer.  */
4449   if (cfun->nonlocal_goto_save_area)
4450     {
4451       tree t_save;
4452       rtx r_save;
4453
4454       /* ??? We need to do this save early.  Unfortunately here is
4455          before the frame variable gets declared.  Help out...  */
4456       tree var = TREE_OPERAND (cfun->nonlocal_goto_save_area, 0);
4457       if (!DECL_RTL_SET_P (var))
4458         expand_decl (var);
4459
4460       t_save = build4 (ARRAY_REF, ptr_type_node,
4461                        cfun->nonlocal_goto_save_area,
4462                        integer_zero_node, NULL_TREE, NULL_TREE);
4463       r_save = expand_expr (t_save, NULL_RTX, VOIDmode, EXPAND_WRITE);
4464       r_save = convert_memory_address (Pmode, r_save);
4465
4466       emit_move_insn (r_save, targetm.builtin_setjmp_frame_value ());
4467       update_nonlocal_goto_save_area ();
4468     }
4469
4470   /* The following was moved from init_function_start.
4471      The move is supposed to make sdb output more accurate.  */
4472   /* Indicate the beginning of the function body,
4473      as opposed to parm setup.  */
4474   emit_note (NOTE_INSN_FUNCTION_BEG);
4475
4476   gcc_assert (NOTE_P (get_last_insn ()));
4477
4478   parm_birth_insn = get_last_insn ();
4479
4480   if (crtl->profile)
4481     {
4482 #ifdef PROFILE_HOOK
4483       PROFILE_HOOK (current_function_funcdef_no);
4484 #endif
4485     }
4486
4487   /* After the display initializations is where the stack checking
4488      probe should go.  */
4489   if(flag_stack_check)
4490     stack_check_probe_note = emit_note (NOTE_INSN_DELETED);
4491
4492   /* Make sure there is a line number after the function entry setup code.  */
4493   force_next_line_note ();
4494 }
4495 \f
4496 /* Undo the effects of init_dummy_function_start.  */
4497 void
4498 expand_dummy_function_end (void)
4499 {
4500   gcc_assert (in_dummy_function);
4501
4502   /* End any sequences that failed to be closed due to syntax errors.  */
4503   while (in_sequence_p ())
4504     end_sequence ();
4505
4506   /* Outside function body, can't compute type's actual size
4507      until next function's body starts.  */
4508
4509   free_after_parsing (cfun);
4510   free_after_compilation (cfun);
4511   pop_cfun ();
4512   in_dummy_function = false;
4513 }
4514
4515 /* Call DOIT for each hard register used as a return value from
4516    the current function.  */
4517
4518 void
4519 diddle_return_value (void (*doit) (rtx, void *), void *arg)
4520 {
4521   rtx outgoing = crtl->return_rtx;
4522
4523   if (! outgoing)
4524     return;
4525
4526   if (REG_P (outgoing))
4527     (*doit) (outgoing, arg);
4528   else if (GET_CODE (outgoing) == PARALLEL)
4529     {
4530       int i;
4531
4532       for (i = 0; i < XVECLEN (outgoing, 0); i++)
4533         {
4534           rtx x = XEXP (XVECEXP (outgoing, 0, i), 0);
4535
4536           if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
4537             (*doit) (x, arg);
4538         }
4539     }
4540 }
4541
4542 static void
4543 do_clobber_return_reg (rtx reg, void *arg ATTRIBUTE_UNUSED)
4544 {
4545   emit_clobber (reg);
4546 }
4547
4548 void
4549 clobber_return_register (void)
4550 {
4551   diddle_return_value (do_clobber_return_reg, NULL);
4552
4553   /* In case we do use pseudo to return value, clobber it too.  */
4554   if (DECL_RTL_SET_P (DECL_RESULT (current_function_decl)))
4555     {
4556       tree decl_result = DECL_RESULT (current_function_decl);
4557       rtx decl_rtl = DECL_RTL (decl_result);
4558       if (REG_P (decl_rtl) && REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER)
4559         {
4560           do_clobber_return_reg (decl_rtl, NULL);
4561         }
4562     }
4563 }
4564
4565 static void
4566 do_use_return_reg (rtx reg, void *arg ATTRIBUTE_UNUSED)
4567 {
4568   emit_use (reg);
4569 }
4570
4571 static void
4572 use_return_register (void)
4573 {
4574   diddle_return_value (do_use_return_reg, NULL);
4575 }
4576
4577 /* Possibly warn about unused parameters.  */
4578 void
4579 do_warn_unused_parameter (tree fn)
4580 {
4581   tree decl;
4582
4583   for (decl = DECL_ARGUMENTS (fn);
4584        decl; decl = TREE_CHAIN (decl))
4585     if (!TREE_USED (decl) && TREE_CODE (decl) == PARM_DECL
4586         && DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)
4587         && !TREE_NO_WARNING (decl))
4588       warning (OPT_Wunused_parameter, "unused parameter %q+D", decl);
4589 }
4590
4591 static GTY(()) rtx initial_trampoline;
4592
4593 /* Generate RTL for the end of the current function.  */
4594
4595 void
4596 expand_function_end (void)
4597 {
4598   rtx clobber_after;
4599
4600   /* If arg_pointer_save_area was referenced only from a nested
4601      function, we will not have initialized it yet.  Do that now.  */
4602   if (arg_pointer_save_area && ! crtl->arg_pointer_save_area_init)
4603     get_arg_pointer_save_area ();
4604
4605   /* If we are doing generic stack checking and this function makes calls,
4606      do a stack probe at the start of the function to ensure we have enough
4607      space for another stack frame.  */
4608   if (flag_stack_check == GENERIC_STACK_CHECK)
4609     {
4610       rtx insn, seq;
4611
4612       for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4613         if (CALL_P (insn))
4614           {
4615             start_sequence ();
4616             probe_stack_range (STACK_OLD_CHECK_PROTECT,
4617                                GEN_INT (STACK_CHECK_MAX_FRAME_SIZE));
4618             seq = get_insns ();
4619             end_sequence ();
4620             emit_insn_before (seq, stack_check_probe_note);
4621             break;
4622           }
4623     }
4624
4625   /* End any sequences that failed to be closed due to syntax errors.  */
4626   while (in_sequence_p ())
4627     end_sequence ();
4628
4629   clear_pending_stack_adjust ();
4630   do_pending_stack_adjust ();
4631
4632   /* Output a linenumber for the end of the function.
4633      SDB depends on this.  */
4634   force_next_line_note ();
4635   set_curr_insn_source_location (input_location);
4636
4637   /* Before the return label (if any), clobber the return
4638      registers so that they are not propagated live to the rest of
4639      the function.  This can only happen with functions that drop
4640      through; if there had been a return statement, there would
4641      have either been a return rtx, or a jump to the return label.
4642
4643      We delay actual code generation after the current_function_value_rtx
4644      is computed.  */
4645   clobber_after = get_last_insn ();
4646
4647   /* Output the label for the actual return from the function.  */
4648   emit_label (return_label);
4649
4650   if (USING_SJLJ_EXCEPTIONS)
4651     {
4652       /* Let except.c know where it should emit the call to unregister
4653          the function context for sjlj exceptions.  */
4654       if (flag_exceptions)
4655         sjlj_emit_function_exit_after (get_last_insn ());
4656     }
4657   else
4658     {
4659       /* We want to ensure that instructions that may trap are not
4660          moved into the epilogue by scheduling, because we don't
4661          always emit unwind information for the epilogue.  */
4662       if (flag_non_call_exceptions)
4663         emit_insn (gen_blockage ());
4664     }
4665
4666   /* If this is an implementation of throw, do what's necessary to
4667      communicate between __builtin_eh_return and the epilogue.  */
4668   expand_eh_return ();
4669
4670   /* If scalar return value was computed in a pseudo-reg, or was a named
4671      return value that got dumped to the stack, copy that to the hard
4672      return register.  */
4673   if (DECL_RTL_SET_P (DECL_RESULT (current_function_decl)))
4674     {
4675       tree decl_result = DECL_RESULT (current_function_decl);
4676       rtx decl_rtl = DECL_RTL (decl_result);
4677
4678       if (REG_P (decl_rtl)
4679           ? REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER
4680           : DECL_REGISTER (decl_result))
4681         {
4682           rtx real_decl_rtl = crtl->return_rtx;
4683
4684           /* This should be set in assign_parms.  */
4685           gcc_assert (REG_FUNCTION_VALUE_P (real_decl_rtl));
4686
4687           /* If this is a BLKmode structure being returned in registers,
4688              then use the mode computed in expand_return.  Note that if
4689              decl_rtl is memory, then its mode may have been changed,
4690              but that crtl->return_rtx has not.  */
4691           if (GET_MODE (real_decl_rtl) == BLKmode)
4692             PUT_MODE (real_decl_rtl, GET_MODE (decl_rtl));
4693
4694           /* If a non-BLKmode return value should be padded at the least
4695              significant end of the register, shift it left by the appropriate
4696              amount.  BLKmode results are handled using the group load/store
4697              machinery.  */
4698           if (TYPE_MODE (TREE_TYPE (decl_result)) != BLKmode
4699               && targetm.calls.return_in_msb (TREE_TYPE (decl_result)))
4700             {
4701               emit_move_insn (gen_rtx_REG (GET_MODE (decl_rtl),
4702                                            REGNO (real_decl_rtl)),
4703                               decl_rtl);
4704               shift_return_value (GET_MODE (decl_rtl), true, real_decl_rtl);
4705             }
4706           /* If a named return value dumped decl_return to memory, then
4707              we may need to re-do the PROMOTE_MODE signed/unsigned
4708              extension.  */
4709           else if (GET_MODE (real_decl_rtl) != GET_MODE (decl_rtl))
4710             {
4711               int unsignedp = TYPE_UNSIGNED (TREE_TYPE (decl_result));
4712
4713               if (targetm.calls.promote_function_return (TREE_TYPE (current_function_decl)))
4714                 promote_mode (TREE_TYPE (decl_result), GET_MODE (decl_rtl),
4715                               &unsignedp, 1);
4716
4717               convert_move (real_decl_rtl, decl_rtl, unsignedp);
4718             }
4719           else if (GET_CODE (real_decl_rtl) == PARALLEL)
4720             {
4721               /* If expand_function_start has created a PARALLEL for decl_rtl,
4722                  move the result to the real return registers.  Otherwise, do
4723                  a group load from decl_rtl for a named return.  */
4724               if (GET_CODE (decl_rtl) == PARALLEL)
4725                 emit_group_move (real_decl_rtl, decl_rtl);
4726               else
4727                 emit_group_load (real_decl_rtl, decl_rtl,
4728                                  TREE_TYPE (decl_result),
4729                                  int_size_in_bytes (TREE_TYPE (decl_result)));
4730             }
4731           /* In the case of complex integer modes smaller than a word, we'll
4732              need to generate some non-trivial bitfield insertions.  Do that
4733              on a pseudo and not the hard register.  */
4734           else if (GET_CODE (decl_rtl) == CONCAT
4735                    && GET_MODE_CLASS (GET_MODE (decl_rtl)) == MODE_COMPLEX_INT
4736                    && GET_MODE_BITSIZE (GET_MODE (decl_rtl)) <= BITS_PER_WORD)
4737             {
4738               int old_generating_concat_p;
4739               rtx tmp;
4740
4741               old_generating_concat_p = generating_concat_p;
4742               generating_concat_p = 0;
4743               tmp = gen_reg_rtx (GET_MODE (decl_rtl));
4744               generating_concat_p = old_generating_concat_p;
4745
4746               emit_move_insn (tmp, decl_rtl);
4747               emit_move_insn (real_decl_rtl, tmp);
4748             }
4749           else
4750             emit_move_insn (real_decl_rtl, decl_rtl);
4751         }
4752     }
4753
4754   /* If returning a structure, arrange to return the address of the value
4755      in a place where debuggers expect to find it.
4756
4757      If returning a structure PCC style,
4758      the caller also depends on this value.
4759      And cfun->returns_pcc_struct is not necessarily set.  */
4760   if (cfun->returns_struct
4761       || cfun->returns_pcc_struct)
4762     {
4763       rtx value_address = DECL_RTL (DECL_RESULT (current_function_decl));
4764       tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
4765       rtx outgoing;
4766
4767       if (DECL_BY_REFERENCE (DECL_RESULT (current_function_decl)))
4768         type = TREE_TYPE (type);
4769       else
4770         value_address = XEXP (value_address, 0);
4771
4772       outgoing = targetm.calls.function_value (build_pointer_type (type),
4773                                                current_function_decl, true);
4774
4775       /* Mark this as a function return value so integrate will delete the
4776          assignment and USE below when inlining this function.  */
4777       REG_FUNCTION_VALUE_P (outgoing) = 1;
4778
4779       /* The address may be ptr_mode and OUTGOING may be Pmode.  */
4780       value_address = convert_memory_address (GET_MODE (outgoing),
4781                                               value_address);
4782
4783       emit_move_insn (outgoing, value_address);
4784
4785       /* Show return register used to hold result (in this case the address
4786          of the result.  */
4787       crtl->return_rtx = outgoing;
4788     }
4789
4790   /* Emit the actual code to clobber return register.  */
4791   {
4792     rtx seq;
4793
4794     start_sequence ();
4795     clobber_return_register ();
4796     seq = get_insns ();
4797     end_sequence ();
4798
4799     emit_insn_after (seq, clobber_after);
4800   }
4801
4802   /* Output the label for the naked return from the function.  */
4803   if (naked_return_label)
4804     emit_label (naked_return_label);
4805
4806   /* @@@ This is a kludge.  We want to ensure that instructions that
4807      may trap are not moved into the epilogue by scheduling, because
4808      we don't always emit unwind information for the epilogue.  */
4809   if (! USING_SJLJ_EXCEPTIONS && flag_non_call_exceptions)
4810     emit_insn (gen_blockage ());
4811
4812   /* If stack protection is enabled for this function, check the guard.  */
4813   if (crtl->stack_protect_guard)
4814     stack_protect_epilogue ();
4815
4816   /* If we had calls to alloca, and this machine needs
4817      an accurate stack pointer to exit the function,
4818      insert some code to save and restore the stack pointer.  */
4819   if (! EXIT_IGNORE_STACK
4820       && cfun->calls_alloca)
4821     {
4822       rtx tem = 0;
4823
4824       emit_stack_save (SAVE_FUNCTION, &tem, parm_birth_insn);
4825       emit_stack_restore (SAVE_FUNCTION, tem, NULL_RTX);
4826     }
4827
4828   /* ??? This should no longer be necessary since stupid is no longer with
4829      us, but there are some parts of the compiler (eg reload_combine, and
4830      sh mach_dep_reorg) that still try and compute their own lifetime info
4831      instead of using the general framework.  */
4832   use_return_register ();
4833 }
4834
4835 rtx
4836 get_arg_pointer_save_area (void)
4837 {
4838   rtx ret = arg_pointer_save_area;
4839
4840   if (! ret)
4841     {
4842       ret = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
4843       arg_pointer_save_area = ret;
4844     }
4845
4846   if (! crtl->arg_pointer_save_area_init)
4847     {
4848       rtx seq;
4849
4850       /* Save the arg pointer at the beginning of the function.  The
4851          generated stack slot may not be a valid memory address, so we
4852          have to check it and fix it if necessary.  */
4853       start_sequence ();
4854       emit_move_insn (validize_mem (ret),
4855                       crtl->args.internal_arg_pointer);
4856       seq = get_insns ();
4857       end_sequence ();
4858
4859       push_topmost_sequence ();
4860       emit_insn_after (seq, entry_of_function ());
4861       pop_topmost_sequence ();
4862     }
4863
4864   return ret;
4865 }
4866 \f
4867 /* Add a list of INSNS to the hash HASHP, possibly allocating HASHP
4868    for the first time.  */
4869
4870 static void
4871 record_insns (rtx insns, rtx end, htab_t *hashp)
4872 {
4873   rtx tmp;
4874   htab_t hash = *hashp;
4875
4876   if (hash == NULL)
4877     *hashp = hash
4878       = htab_create_ggc (17, htab_hash_pointer, htab_eq_pointer, NULL);
4879
4880   for (tmp = insns; tmp != end; tmp = NEXT_INSN (tmp))
4881     {
4882       void **slot = htab_find_slot (hash, tmp, INSERT);
4883       gcc_assert (*slot == NULL);
4884       *slot = tmp;
4885     }
4886 }
4887
4888 /* INSN has been duplicated as COPY, as part of duping a basic block.
4889    If INSN is an epilogue insn, then record COPY as epilogue as well.  */
4890
4891 void
4892 maybe_copy_epilogue_insn (rtx insn, rtx copy)
4893 {
4894   void **slot;
4895
4896   if (epilogue_insn_hash == NULL
4897       || htab_find (epilogue_insn_hash, insn) == NULL)
4898     return;
4899
4900   slot = htab_find_slot (epilogue_insn_hash, copy, INSERT);
4901   gcc_assert (*slot == NULL);
4902   *slot = copy;
4903 }
4904
4905 /* Set the locator of the insn chain starting at INSN to LOC.  */
4906 static void
4907 set_insn_locators (rtx insn, int loc)
4908 {
4909   while (insn != NULL_RTX)
4910     {
4911       if (INSN_P (insn))
4912         INSN_LOCATOR (insn) = loc;
4913       insn = NEXT_INSN (insn);
4914     }
4915 }
4916
4917 /* Determine if any INSNs in HASH are, or are part of, INSN.  Because
4918    we can be running after reorg, SEQUENCE rtl is possible.  */
4919
4920 static bool
4921 contains (const_rtx insn, htab_t hash)
4922 {
4923   if (hash == NULL)
4924     return false;
4925
4926   if (NONJUMP_INSN_P (insn) && GET_CODE (PATTERN (insn)) == SEQUENCE)
4927     {
4928       int i;
4929       for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
4930         if (htab_find (hash, XVECEXP (PATTERN (insn), 0, i)))
4931           return true;
4932       return false;
4933     }
4934
4935   return htab_find (hash, insn) != NULL;
4936 }
4937
4938 int
4939 prologue_epilogue_contains (const_rtx insn)
4940 {
4941   if (contains (insn, prologue_insn_hash))
4942     return 1;
4943   if (contains (insn, epilogue_insn_hash))
4944     return 1;
4945   return 0;
4946 }
4947
4948 #ifdef HAVE_return
4949 /* Insert gen_return at the end of block BB.  This also means updating
4950    block_for_insn appropriately.  */
4951
4952 static void
4953 emit_return_into_block (basic_block bb)
4954 {
4955   emit_jump_insn_after (gen_return (), BB_END (bb));
4956 }
4957 #endif /* HAVE_return */
4958
4959 /* Generate the prologue and epilogue RTL if the machine supports it.  Thread
4960    this into place with notes indicating where the prologue ends and where
4961    the epilogue begins.  Update the basic block information when possible.  */
4962
4963 static void
4964 thread_prologue_and_epilogue_insns (void)
4965 {
4966   int inserted = 0;
4967   edge e;
4968 #if defined (HAVE_sibcall_epilogue) || defined (HAVE_epilogue) || defined (HAVE_return) || defined (HAVE_prologue)
4969   rtx seq;
4970 #endif
4971 #if defined (HAVE_epilogue) || defined(HAVE_return)
4972   rtx epilogue_end = NULL_RTX;
4973 #endif
4974   edge_iterator ei;
4975
4976   rtl_profile_for_bb (ENTRY_BLOCK_PTR);
4977 #ifdef HAVE_prologue
4978   if (HAVE_prologue)
4979     {
4980       start_sequence ();
4981       seq = gen_prologue ();
4982       emit_insn (seq);
4983
4984       /* Insert an explicit USE for the frame pointer 
4985          if the profiling is on and the frame pointer is required.  */
4986       if (crtl->profile && frame_pointer_needed)
4987         emit_use (hard_frame_pointer_rtx);
4988
4989       /* Retain a map of the prologue insns.  */
4990       record_insns (seq, NULL, &prologue_insn_hash);
4991       emit_note (NOTE_INSN_PROLOGUE_END);
4992  
4993 #ifndef PROFILE_BEFORE_PROLOGUE
4994       /* Ensure that instructions are not moved into the prologue when
4995          profiling is on.  The call to the profiling routine can be
4996          emitted within the live range of a call-clobbered register.  */
4997       if (crtl->profile)
4998         emit_insn (gen_blockage ());
4999 #endif
5000
5001       seq = get_insns ();
5002       end_sequence ();
5003       set_insn_locators (seq, prologue_locator);
5004
5005       /* Can't deal with multiple successors of the entry block
5006          at the moment.  Function should always have at least one
5007          entry point.  */
5008       gcc_assert (single_succ_p (ENTRY_BLOCK_PTR));
5009
5010       insert_insn_on_edge (seq, single_succ_edge (ENTRY_BLOCK_PTR));
5011       inserted = 1;
5012     }
5013 #endif
5014
5015   /* If the exit block has no non-fake predecessors, we don't need
5016      an epilogue.  */
5017   FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5018     if ((e->flags & EDGE_FAKE) == 0)
5019       break;
5020   if (e == NULL)
5021     goto epilogue_done;
5022
5023   rtl_profile_for_bb (EXIT_BLOCK_PTR);
5024 #ifdef HAVE_return
5025   if (optimize && HAVE_return)
5026     {
5027       /* If we're allowed to generate a simple return instruction,
5028          then by definition we don't need a full epilogue.  Examine
5029          the block that falls through to EXIT.   If it does not
5030          contain any code, examine its predecessors and try to
5031          emit (conditional) return instructions.  */
5032
5033       basic_block last;
5034       rtx label;
5035
5036       FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5037         if (e->flags & EDGE_FALLTHRU)
5038           break;
5039       if (e == NULL)
5040         goto epilogue_done;
5041       last = e->src;
5042
5043       /* Verify that there are no active instructions in the last block.  */
5044       label = BB_END (last);
5045       while (label && !LABEL_P (label))
5046         {
5047           if (active_insn_p (label))
5048             break;
5049           label = PREV_INSN (label);
5050         }
5051
5052       if (BB_HEAD (last) == label && LABEL_P (label))
5053         {
5054           edge_iterator ei2;
5055
5056           for (ei2 = ei_start (last->preds); (e = ei_safe_edge (ei2)); )
5057             {
5058               basic_block bb = e->src;
5059               rtx jump;
5060
5061               if (bb == ENTRY_BLOCK_PTR)
5062                 {
5063                   ei_next (&ei2);
5064                   continue;
5065                 }
5066
5067               jump = BB_END (bb);
5068               if (!JUMP_P (jump) || JUMP_LABEL (jump) != label)
5069                 {
5070                   ei_next (&ei2);
5071                   continue;
5072                 }
5073
5074               /* If we have an unconditional jump, we can replace that
5075                  with a simple return instruction.  */
5076               if (simplejump_p (jump))
5077                 {
5078                   emit_return_into_block (bb);
5079                   delete_insn (jump);
5080                 }
5081
5082               /* If we have a conditional jump, we can try to replace
5083                  that with a conditional return instruction.  */
5084               else if (condjump_p (jump))
5085                 {
5086                   if (! redirect_jump (jump, 0, 0))
5087                     {
5088                       ei_next (&ei2);
5089                       continue;
5090                     }
5091
5092                   /* If this block has only one successor, it both jumps
5093                      and falls through to the fallthru block, so we can't
5094                      delete the edge.  */
5095                   if (single_succ_p (bb))
5096                     {
5097                       ei_next (&ei2);
5098                       continue;
5099                     }
5100                 }
5101               else
5102                 {
5103                   ei_next (&ei2);
5104                   continue;
5105                 }
5106
5107               /* Fix up the CFG for the successful change we just made.  */
5108               redirect_edge_succ (e, EXIT_BLOCK_PTR);
5109             }
5110
5111           /* Emit a return insn for the exit fallthru block.  Whether
5112              this is still reachable will be determined later.  */
5113
5114           emit_barrier_after (BB_END (last));
5115           emit_return_into_block (last);
5116           epilogue_end = BB_END (last);
5117           single_succ_edge (last)->flags &= ~EDGE_FALLTHRU;
5118           goto epilogue_done;
5119         }
5120     }
5121 #endif
5122
5123   /* A small fib -- epilogue is not yet completed, but we wish to re-use
5124      this marker for the splits of EH_RETURN patterns, and nothing else
5125      uses the flag in the meantime.  */
5126   epilogue_completed = 1;
5127
5128 #ifdef HAVE_eh_return
5129   /* Find non-fallthru edges that end with EH_RETURN instructions.  On
5130      some targets, these get split to a special version of the epilogue
5131      code.  In order to be able to properly annotate these with unwind
5132      info, try to split them now.  If we get a valid split, drop an
5133      EPILOGUE_BEG note and mark the insns as epilogue insns.  */
5134   FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5135     {
5136       rtx prev, last, trial;
5137
5138       if (e->flags & EDGE_FALLTHRU)
5139         continue;
5140       last = BB_END (e->src);
5141       if (!eh_returnjump_p (last))
5142         continue;
5143
5144       prev = PREV_INSN (last);
5145       trial = try_split (PATTERN (last), last, 1);
5146       if (trial == last)
5147         continue;
5148
5149       record_insns (NEXT_INSN (prev), NEXT_INSN (trial), &epilogue_insn_hash);
5150       emit_note_after (NOTE_INSN_EPILOGUE_BEG, prev);
5151     }
5152 #endif
5153
5154   /* Find the edge that falls through to EXIT.  Other edges may exist
5155      due to RETURN instructions, but those don't need epilogues.
5156      There really shouldn't be a mixture -- either all should have
5157      been converted or none, however...  */
5158
5159   FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5160     if (e->flags & EDGE_FALLTHRU)
5161       break;
5162   if (e == NULL)
5163     goto epilogue_done;
5164
5165 #ifdef HAVE_epilogue
5166   if (HAVE_epilogue)
5167     {
5168       start_sequence ();
5169       epilogue_end = emit_note (NOTE_INSN_EPILOGUE_BEG);
5170       seq = gen_epilogue ();
5171       emit_jump_insn (seq);
5172
5173       /* Retain a map of the epilogue insns.  */
5174       record_insns (seq, NULL, &epilogue_insn_hash);
5175       set_insn_locators (seq, epilogue_locator);
5176
5177       seq = get_insns ();
5178       end_sequence ();
5179
5180       insert_insn_on_edge (seq, e);
5181       inserted = 1;
5182     }
5183   else
5184 #endif
5185     {
5186       basic_block cur_bb;
5187
5188       if (! next_active_insn (BB_END (e->src)))
5189         goto epilogue_done;
5190       /* We have a fall-through edge to the exit block, the source is not
5191          at the end of the function, and there will be an assembler epilogue
5192          at the end of the function.
5193          We can't use force_nonfallthru here, because that would try to
5194          use return.  Inserting a jump 'by hand' is extremely messy, so
5195          we take advantage of cfg_layout_finalize using
5196         fixup_fallthru_exit_predecessor.  */
5197       cfg_layout_initialize (0);
5198       FOR_EACH_BB (cur_bb)
5199         if (cur_bb->index >= NUM_FIXED_BLOCKS
5200             && cur_bb->next_bb->index >= NUM_FIXED_BLOCKS)
5201           cur_bb->aux = cur_bb->next_bb;
5202       cfg_layout_finalize ();
5203     }
5204 epilogue_done:
5205   default_rtl_profile ();
5206
5207   if (inserted)
5208     {
5209       commit_edge_insertions ();
5210
5211       /* The epilogue insns we inserted may cause the exit edge to no longer
5212          be fallthru.  */
5213       FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5214         {
5215           if (((e->flags & EDGE_FALLTHRU) != 0)
5216               && returnjump_p (BB_END (e->src)))
5217             e->flags &= ~EDGE_FALLTHRU;
5218         }
5219     }
5220
5221 #ifdef HAVE_sibcall_epilogue
5222   /* Emit sibling epilogues before any sibling call sites.  */
5223   for (ei = ei_start (EXIT_BLOCK_PTR->preds); (e = ei_safe_edge (ei)); )
5224     {
5225       basic_block bb = e->src;
5226       rtx insn = BB_END (bb);
5227
5228       if (!CALL_P (insn)
5229           || ! SIBLING_CALL_P (insn))
5230         {
5231           ei_next (&ei);
5232           continue;
5233         }
5234
5235       start_sequence ();
5236       emit_note (NOTE_INSN_EPILOGUE_BEG);
5237       emit_insn (gen_sibcall_epilogue ());
5238       seq = get_insns ();
5239       end_sequence ();
5240
5241       /* Retain a map of the epilogue insns.  Used in life analysis to
5242          avoid getting rid of sibcall epilogue insns.  Do this before we
5243          actually emit the sequence.  */
5244       record_insns (seq, NULL, &epilogue_insn_hash);
5245       set_insn_locators (seq, epilogue_locator);
5246
5247       emit_insn_before (seq, insn);
5248       ei_next (&ei);
5249     }
5250 #endif
5251
5252 #ifdef HAVE_epilogue
5253   if (epilogue_end)
5254     {
5255       rtx insn, next;
5256
5257       /* Similarly, move any line notes that appear after the epilogue.
5258          There is no need, however, to be quite so anal about the existence
5259          of such a note.  Also possibly move
5260          NOTE_INSN_FUNCTION_BEG notes, as those can be relevant for debug
5261          info generation.  */
5262       for (insn = epilogue_end; insn; insn = next)
5263         {
5264           next = NEXT_INSN (insn);
5265           if (NOTE_P (insn) 
5266               && (NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG))
5267             reorder_insns (insn, insn, PREV_INSN (epilogue_end));
5268         }
5269     }
5270 #endif
5271
5272   /* Threading the prologue and epilogue changes the artificial refs
5273      in the entry and exit blocks.  */
5274   epilogue_completed = 1;
5275   df_update_entry_exit_and_calls ();
5276 }
5277
5278 /* Reposition the prologue-end and epilogue-begin notes after
5279    instruction scheduling.  */
5280
5281 void
5282 reposition_prologue_and_epilogue_notes (void)
5283 {
5284 #if defined (HAVE_prologue) || defined (HAVE_epilogue) \
5285     || defined (HAVE_sibcall_epilogue)
5286   rtx insn, last, note;
5287   basic_block bb;
5288
5289   /* Since the hash table is created on demand, the fact that it is
5290      non-null is a signal that it is non-empty.  */
5291   if (prologue_insn_hash != NULL)
5292     {
5293       size_t len = htab_elements (prologue_insn_hash);
5294       last = 0, note = 0;
5295
5296       /* Scan from the beginning until we reach the last prologue insn.  */
5297       /* ??? While we do have the CFG intact, there are two problems:
5298          (1) The prologue can contain loops (typically probing the stack),
5299              which means that the end of the prologue isn't in the first bb.
5300          (2) Sometimes the PROLOGUE_END note gets pushed into the next bb.  */
5301       for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
5302         {
5303           if (NOTE_P (insn))
5304             {
5305               if (NOTE_KIND (insn) == NOTE_INSN_PROLOGUE_END)
5306                 note = insn;
5307             }
5308           else if (contains (insn, prologue_insn_hash))
5309             {
5310               last = insn;
5311               if (--len == 0)
5312                 break;
5313             }
5314         }
5315
5316       if (last)
5317         {
5318           if (note == NULL)
5319             {
5320               /* Scan forward looking for the PROLOGUE_END note.  It should
5321                  be right at the beginning of the block, possibly with other
5322                  insn notes that got moved there.  */
5323               for (note = NEXT_INSN (last); ; note = NEXT_INSN (note))
5324                 {
5325                   if (NOTE_P (note)
5326                       && NOTE_KIND (note) == NOTE_INSN_PROLOGUE_END)
5327                     break;
5328                 }
5329             }
5330
5331           /* Avoid placing note between CODE_LABEL and BASIC_BLOCK note.  */
5332           if (LABEL_P (last))
5333             last = NEXT_INSN (last);
5334           reorder_insns (note, note, last);
5335         }
5336     }
5337
5338   if (epilogue_insn_hash != NULL)
5339     {
5340       edge_iterator ei;
5341       edge e;
5342
5343       FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5344         {
5345           last = 0, note = 0;
5346           bb = e->src;
5347
5348           /* Scan from the beginning until we reach the first epilogue insn.
5349              Take the cue for whether this is a plain or sibcall epilogue
5350              from the kind of note we find first.  */
5351           FOR_BB_INSNS (bb, insn)
5352             {
5353               if (NOTE_P (insn))
5354                 {
5355                   if (NOTE_KIND (insn) == NOTE_INSN_EPILOGUE_BEG)
5356                     {
5357                       note = insn;
5358                       if (last)
5359                         break;
5360                     }
5361                 }
5362               else if (contains (insn, epilogue_insn_hash))
5363                 {
5364                   last = insn;
5365                   if (note != NULL)
5366                     break;
5367                 }
5368             }
5369              
5370           if (last && note && PREV_INSN (last) != note)
5371             reorder_insns (note, note, PREV_INSN (last));
5372         }
5373     }
5374 #endif /* HAVE_prologue or HAVE_epilogue */
5375 }
5376
5377 /* Returns the name of the current function.  */
5378 const char *
5379 current_function_name (void)
5380 {
5381   return lang_hooks.decl_printable_name (cfun->decl, 2);
5382 }
5383 \f
5384
5385 static unsigned int
5386 rest_of_handle_check_leaf_regs (void)
5387 {
5388 #ifdef LEAF_REGISTERS
5389   current_function_uses_only_leaf_regs
5390     = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
5391 #endif
5392   return 0;
5393 }
5394
5395 /* Insert a TYPE into the used types hash table of CFUN.  */
5396 static void
5397 used_types_insert_helper (tree type, struct function *func)
5398 {
5399   if (type != NULL && func != NULL)
5400     {
5401       void **slot;
5402
5403       if (func->used_types_hash == NULL)
5404         func->used_types_hash = htab_create_ggc (37, htab_hash_pointer,
5405                                                  htab_eq_pointer, NULL);
5406       slot = htab_find_slot (func->used_types_hash, type, INSERT);
5407       if (*slot == NULL)
5408         *slot = type;
5409     }
5410 }
5411
5412 /* Given a type, insert it into the used hash table in cfun.  */
5413 void
5414 used_types_insert (tree t)
5415 {
5416   while (POINTER_TYPE_P (t) || TREE_CODE (t) == ARRAY_TYPE)
5417     t = TREE_TYPE (t);
5418   t = TYPE_MAIN_VARIANT (t);
5419   if (debug_info_level > DINFO_LEVEL_NONE)
5420     used_types_insert_helper (t, cfun);
5421 }
5422
5423 struct rtl_opt_pass pass_leaf_regs =
5424 {
5425  {
5426   RTL_PASS,
5427   NULL,                                 /* name */
5428   NULL,                                 /* gate */
5429   rest_of_handle_check_leaf_regs,       /* execute */
5430   NULL,                                 /* sub */
5431   NULL,                                 /* next */
5432   0,                                    /* static_pass_number */
5433   TV_NONE,                              /* tv_id */
5434   0,                                    /* properties_required */
5435   0,                                    /* properties_provided */
5436   0,                                    /* properties_destroyed */
5437   0,                                    /* todo_flags_start */
5438   0                                     /* todo_flags_finish */
5439  }
5440 };
5441
5442 static unsigned int
5443 rest_of_handle_thread_prologue_and_epilogue (void)
5444 {
5445   if (optimize)
5446     cleanup_cfg (CLEANUP_EXPENSIVE);
5447   /* On some machines, the prologue and epilogue code, or parts thereof,
5448      can be represented as RTL.  Doing so lets us schedule insns between
5449      it and the rest of the code and also allows delayed branch
5450      scheduling to operate in the epilogue.  */
5451
5452   thread_prologue_and_epilogue_insns ();
5453   return 0;
5454 }
5455
5456 struct rtl_opt_pass pass_thread_prologue_and_epilogue =
5457 {
5458  {
5459   RTL_PASS,
5460   "pro_and_epilogue",                   /* name */
5461   NULL,                                 /* gate */
5462   rest_of_handle_thread_prologue_and_epilogue, /* execute */
5463   NULL,                                 /* sub */
5464   NULL,                                 /* next */
5465   0,                                    /* static_pass_number */
5466   TV_THREAD_PROLOGUE_AND_EPILOGUE,      /* tv_id */
5467   0,                                    /* properties_required */
5468   0,                                    /* properties_provided */
5469   0,                                    /* properties_destroyed */
5470   TODO_verify_flow,                     /* todo_flags_start */
5471   TODO_dump_func |
5472   TODO_df_verify |
5473   TODO_df_finish | TODO_verify_rtl_sharing |
5474   TODO_ggc_collect                      /* todo_flags_finish */
5475  }
5476 };
5477 \f
5478
5479 /* This mini-pass fixes fall-out from SSA in asm statements that have
5480    in-out constraints.  Say you start with 
5481
5482      orig = inout;
5483      asm ("": "+mr" (inout));
5484      use (orig);
5485
5486    which is transformed very early to use explicit output and match operands:
5487
5488      orig = inout;
5489      asm ("": "=mr" (inout) : "0" (inout));
5490      use (orig);
5491
5492    Or, after SSA and copyprop,
5493
5494      asm ("": "=mr" (inout_2) : "0" (inout_1));
5495      use (inout_1);
5496
5497    Clearly inout_2 and inout_1 can't be coalesced easily anymore, as
5498    they represent two separate values, so they will get different pseudo
5499    registers during expansion.  Then, since the two operands need to match
5500    per the constraints, but use different pseudo registers, reload can
5501    only register a reload for these operands.  But reloads can only be
5502    satisfied by hardregs, not by memory, so we need a register for this
5503    reload, just because we are presented with non-matching operands.
5504    So, even though we allow memory for this operand, no memory can be
5505    used for it, just because the two operands don't match.  This can
5506    cause reload failures on register-starved targets.
5507
5508    So it's a symptom of reload not being able to use memory for reloads
5509    or, alternatively it's also a symptom of both operands not coming into
5510    reload as matching (in which case the pseudo could go to memory just
5511    fine, as the alternative allows it, and no reload would be necessary).
5512    We fix the latter problem here, by transforming
5513
5514      asm ("": "=mr" (inout_2) : "0" (inout_1));
5515
5516    back to
5517
5518      inout_2 = inout_1;
5519      asm ("": "=mr" (inout_2) : "0" (inout_2));  */
5520
5521 static void
5522 match_asm_constraints_1 (rtx insn, rtx *p_sets, int noutputs)
5523 {
5524   int i;
5525   bool changed = false;
5526   rtx op = SET_SRC (p_sets[0]);
5527   int ninputs = ASM_OPERANDS_INPUT_LENGTH (op);
5528   rtvec inputs = ASM_OPERANDS_INPUT_VEC (op);
5529   bool *output_matched = XALLOCAVEC (bool, noutputs);
5530
5531   memset (output_matched, 0, noutputs * sizeof (bool));
5532   for (i = 0; i < ninputs; i++)
5533     {
5534       rtx input, output, insns;
5535       const char *constraint = ASM_OPERANDS_INPUT_CONSTRAINT (op, i);
5536       char *end;
5537       int match, j;
5538
5539       if (*constraint == '%')
5540         constraint++;
5541
5542       match = strtoul (constraint, &end, 10);
5543       if (end == constraint)
5544         continue;
5545
5546       gcc_assert (match < noutputs);
5547       output = SET_DEST (p_sets[match]);
5548       input = RTVEC_ELT (inputs, i);
5549       /* Only do the transformation for pseudos.  */
5550       if (! REG_P (output)
5551           || rtx_equal_p (output, input)
5552           || (GET_MODE (input) != VOIDmode
5553               && GET_MODE (input) != GET_MODE (output)))
5554         continue;
5555
5556       /* We can't do anything if the output is also used as input,
5557          as we're going to overwrite it.  */
5558       for (j = 0; j < ninputs; j++)
5559         if (reg_overlap_mentioned_p (output, RTVEC_ELT (inputs, j)))
5560           break;
5561       if (j != ninputs)
5562         continue;
5563
5564       /* Avoid changing the same input several times.  For
5565          asm ("" : "=mr" (out1), "=mr" (out2) : "0" (in), "1" (in));
5566          only change in once (to out1), rather than changing it
5567          first to out1 and afterwards to out2.  */
5568       if (i > 0)
5569         {
5570           for (j = 0; j < noutputs; j++)
5571             if (output_matched[j] && input == SET_DEST (p_sets[j]))
5572               break;
5573           if (j != noutputs)
5574             continue;
5575         }
5576       output_matched[match] = true;
5577
5578       start_sequence ();
5579       emit_move_insn (output, input);
5580       insns = get_insns ();
5581       end_sequence ();
5582       emit_insn_before (insns, insn);
5583
5584       /* Now replace all mentions of the input with output.  We can't
5585          just replace the occurrence in inputs[i], as the register might
5586          also be used in some other input (or even in an address of an
5587          output), which would mean possibly increasing the number of
5588          inputs by one (namely 'output' in addition), which might pose
5589          a too complicated problem for reload to solve.  E.g. this situation:
5590
5591            asm ("" : "=r" (output), "=m" (input) : "0" (input))
5592
5593          Here 'input' is used in two occurrences as input (once for the
5594          input operand, once for the address in the second output operand).
5595          If we would replace only the occurrence of the input operand (to
5596          make the matching) we would be left with this:
5597
5598            output = input
5599            asm ("" : "=r" (output), "=m" (input) : "0" (output))
5600
5601          Now we suddenly have two different input values (containing the same
5602          value, but different pseudos) where we formerly had only one.
5603          With more complicated asms this might lead to reload failures
5604          which wouldn't have happen without this pass.  So, iterate over
5605          all operands and replace all occurrences of the register used.  */
5606       for (j = 0; j < noutputs; j++)
5607         if (!rtx_equal_p (SET_DEST (p_sets[j]), input)
5608             && reg_overlap_mentioned_p (input, SET_DEST (p_sets[j])))
5609           SET_DEST (p_sets[j]) = replace_rtx (SET_DEST (p_sets[j]),
5610                                               input, output);
5611       for (j = 0; j < ninputs; j++)
5612         if (reg_overlap_mentioned_p (input, RTVEC_ELT (inputs, j)))
5613           RTVEC_ELT (inputs, j) = replace_rtx (RTVEC_ELT (inputs, j),
5614                                                input, output);
5615
5616       changed = true;
5617     }
5618
5619   if (changed)
5620     df_insn_rescan (insn);
5621 }
5622
5623 static unsigned
5624 rest_of_match_asm_constraints (void)
5625 {
5626   basic_block bb;
5627   rtx insn, pat, *p_sets;
5628   int noutputs;
5629
5630   if (!crtl->has_asm_statement)
5631     return 0;
5632
5633   df_set_flags (DF_DEFER_INSN_RESCAN);
5634   FOR_EACH_BB (bb)
5635     {
5636       FOR_BB_INSNS (bb, insn)
5637         {
5638           if (!INSN_P (insn))
5639             continue;
5640
5641           pat = PATTERN (insn);
5642           if (GET_CODE (pat) == PARALLEL)
5643             p_sets = &XVECEXP (pat, 0, 0), noutputs = XVECLEN (pat, 0);
5644           else if (GET_CODE (pat) == SET)
5645             p_sets = &PATTERN (insn), noutputs = 1;
5646           else
5647             continue;
5648
5649           if (GET_CODE (*p_sets) == SET
5650               && GET_CODE (SET_SRC (*p_sets)) == ASM_OPERANDS)
5651             match_asm_constraints_1 (insn, p_sets, noutputs);
5652          }
5653     }
5654
5655   return TODO_df_finish;
5656 }
5657
5658 struct rtl_opt_pass pass_match_asm_constraints =
5659 {
5660  {
5661   RTL_PASS,
5662   "asmcons",                            /* name */
5663   NULL,                                 /* gate */
5664   rest_of_match_asm_constraints,        /* execute */
5665   NULL,                                 /* sub */
5666   NULL,                                 /* next */
5667   0,                                    /* static_pass_number */
5668   TV_NONE,                              /* tv_id */
5669   0,                                    /* properties_required */
5670   0,                                    /* properties_provided */
5671   0,                                    /* properties_destroyed */
5672   0,                                    /* todo_flags_start */
5673   TODO_dump_func                       /* todo_flags_finish */
5674  }
5675 };
5676
5677
5678 #include "gt-function.h"