OSDN Git Service

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