OSDN Git Service

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