OSDN Git Service

* tree.h (immediate_size_expand): Delete.
[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    Call `put_var_into_stack' when you learn, belatedly, that a variable
37    previously given a pseudo-register must in fact go in the stack.
38    This function changes the DECL_RTL to be a stack slot instead of a reg
39    then scans all the RTL instructions so far generated to correct them.  */
40
41 #include "config.h"
42 #include "system.h"
43 #include "coretypes.h"
44 #include "tm.h"
45 #include "rtl.h"
46 #include "tree.h"
47 #include "flags.h"
48 #include "except.h"
49 #include "function.h"
50 #include "expr.h"
51 #include "optabs.h"
52 #include "libfuncs.h"
53 #include "regs.h"
54 #include "hard-reg-set.h"
55 #include "insn-config.h"
56 #include "recog.h"
57 #include "output.h"
58 #include "basic-block.h"
59 #include "toplev.h"
60 #include "hashtab.h"
61 #include "ggc.h"
62 #include "tm_p.h"
63 #include "integrate.h"
64 #include "langhooks.h"
65 #include "target.h"
66 #include "cfglayout.h"
67
68 #ifndef LOCAL_ALIGNMENT
69 #define LOCAL_ALIGNMENT(TYPE, ALIGNMENT) ALIGNMENT
70 #endif
71
72 #ifndef STACK_ALIGNMENT_NEEDED
73 #define STACK_ALIGNMENT_NEEDED 1
74 #endif
75
76 #define STACK_BYTES (STACK_BOUNDARY / BITS_PER_UNIT)
77
78 /* Some systems use __main in a way incompatible with its use in gcc, in these
79    cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
80    give the same symbol without quotes for an alternative entry point.  You
81    must define both, or neither.  */
82 #ifndef NAME__MAIN
83 #define NAME__MAIN "__main"
84 #endif
85
86 /* Round a value to the lowest integer less than it that is a multiple of
87    the required alignment.  Avoid using division in case the value is
88    negative.  Assume the alignment is a power of two.  */
89 #define FLOOR_ROUND(VALUE,ALIGN) ((VALUE) & ~((ALIGN) - 1))
90
91 /* Similar, but round to the next highest integer that meets the
92    alignment.  */
93 #define CEIL_ROUND(VALUE,ALIGN) (((VALUE) + (ALIGN) - 1) & ~((ALIGN)- 1))
94
95 /* NEED_SEPARATE_AP means that we cannot derive ap from the value of fp
96    during rtl generation.  If they are different register numbers, this is
97    always true.  It may also be true if
98    FIRST_PARM_OFFSET - STARTING_FRAME_OFFSET is not a constant during rtl
99    generation.  See fix_lexical_addr for details.  */
100
101 #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
102 #define NEED_SEPARATE_AP
103 #endif
104
105 /* Nonzero if function being compiled doesn't contain any calls
106    (ignoring the prologue and epilogue).  This is set prior to
107    local register allocation and is valid for the remaining
108    compiler passes.  */
109 int current_function_is_leaf;
110
111 /* Nonzero if function being compiled doesn't contain any instructions
112    that can throw an exception.  This is set prior to final.  */
113
114 int current_function_nothrow;
115
116 /* Nonzero if function being compiled doesn't modify the stack pointer
117    (ignoring the prologue and epilogue).  This is only valid after
118    life_analysis has run.  */
119 int current_function_sp_is_unchanging;
120
121 /* Nonzero if the function being compiled is a leaf function which only
122    uses leaf registers.  This is valid after reload (specifically after
123    sched2) and is useful only if the port defines LEAF_REGISTERS.  */
124 int current_function_uses_only_leaf_regs;
125
126 /* Nonzero once virtual register instantiation has been done.
127    assign_stack_local uses frame_pointer_rtx when this is nonzero.
128    calls.c:emit_library_call_value_1 uses it to set up
129    post-instantiation libcalls.  */
130 int virtuals_instantiated;
131
132 /* Assign unique numbers to labels generated for profiling, debugging, etc.  */
133 static GTY(()) int funcdef_no;
134
135 /* These variables hold pointers to functions to create and destroy
136    target specific, per-function data structures.  */
137 struct machine_function * (*init_machine_status) (void);
138
139 /* The currently compiled function.  */
140 struct function *cfun = 0;
141
142 /* These arrays record the INSN_UIDs of the prologue and epilogue insns.  */
143 static GTY(()) varray_type prologue;
144 static GTY(()) varray_type epilogue;
145
146 /* Array of INSN_UIDs to hold the INSN_UIDs for each sibcall epilogue
147    in this function.  */
148 static GTY(()) varray_type sibcall_epilogue;
149 \f
150 /* In order to evaluate some expressions, such as function calls returning
151    structures in memory, we need to temporarily allocate stack locations.
152    We record each allocated temporary in the following structure.
153
154    Associated with each temporary slot is a nesting level.  When we pop up
155    one level, all temporaries associated with the previous level are freed.
156    Normally, all temporaries are freed after the execution of the statement
157    in which they were created.  However, if we are inside a ({...}) grouping,
158    the result may be in a temporary and hence must be preserved.  If the
159    result could be in a temporary, we preserve it if we can determine which
160    one it is in.  If we cannot determine which temporary may contain the
161    result, all temporaries are preserved.  A temporary is preserved by
162    pretending it was allocated at the previous nesting level.
163
164    Automatic variables are also assigned temporary slots, at the nesting
165    level where they are defined.  They are marked a "kept" so that
166    free_temp_slots will not free them.  */
167
168 struct temp_slot GTY(())
169 {
170   /* Points to next temporary slot.  */
171   struct temp_slot *next;
172   /* Points to previous temporary slot.  */
173   struct temp_slot *prev;
174
175   /* The rtx to used to reference the slot.  */
176   rtx slot;
177   /* The rtx used to represent the address if not the address of the
178      slot above.  May be an EXPR_LIST if multiple addresses exist.  */
179   rtx address;
180   /* The alignment (in bits) of the slot.  */
181   unsigned int align;
182   /* The size, in units, of the slot.  */
183   HOST_WIDE_INT size;
184   /* The type of the object in the slot, or zero if it doesn't correspond
185      to a type.  We use this to determine whether a slot can be reused.
186      It can be reused if objects of the type of the new slot will always
187      conflict with objects of the type of the old slot.  */
188   tree type;
189   /* The value of `sequence_rtl_expr' when this temporary is allocated.  */
190   tree rtl_expr;
191   /* Nonzero if this temporary is currently in use.  */
192   char in_use;
193   /* Nonzero if this temporary has its address taken.  */
194   char addr_taken;
195   /* Nesting level at which this slot is being used.  */
196   int level;
197   /* Nonzero if this should survive a call to free_temp_slots.  */
198   int keep;
199   /* The offset of the slot from the frame_pointer, including extra space
200      for alignment.  This info is for combine_temp_slots.  */
201   HOST_WIDE_INT base_offset;
202   /* The size of the slot, including extra space for alignment.  This
203      info is for combine_temp_slots.  */
204   HOST_WIDE_INT full_size;
205 };
206 \f
207 /* This structure is used to record MEMs or pseudos used to replace VAR, any
208    SUBREGs of VAR, and any MEMs containing VAR as an address.  We need to
209    maintain this list in case two operands of an insn were required to match;
210    in that case we must ensure we use the same replacement.  */
211
212 struct fixup_replacement GTY(())
213 {
214   rtx old;
215   rtx new;
216   struct fixup_replacement *next;
217 };
218
219 struct insns_for_mem_entry
220 {
221   /* A MEM.  */
222   rtx key;
223   /* These are the INSNs which reference the MEM.  */
224   rtx insns;
225 };
226
227 /* Forward declarations.  */
228
229 static rtx assign_stack_local_1 (enum machine_mode, HOST_WIDE_INT, int,
230                                  struct function *);
231 static struct temp_slot *find_temp_slot_from_address (rtx);
232 static void put_reg_into_stack (struct function *, rtx, tree, enum machine_mode,
233                                 unsigned int, bool, bool, bool, htab_t);
234 static void schedule_fixup_var_refs (struct function *, rtx, tree, enum machine_mode,
235                                      htab_t);
236 static void fixup_var_refs (rtx, enum machine_mode, int, rtx, htab_t);
237 static struct fixup_replacement
238   *find_fixup_replacement (struct fixup_replacement **, rtx);
239 static void fixup_var_refs_insns (rtx, rtx, enum machine_mode, int, int, rtx);
240 static void fixup_var_refs_insns_with_hash (htab_t, rtx, enum machine_mode, int, rtx);
241 static void fixup_var_refs_insn (rtx, rtx, enum machine_mode, int, int, rtx);
242 static void fixup_var_refs_1 (rtx, enum machine_mode, rtx *, rtx,
243                               struct fixup_replacement **, rtx);
244 static rtx fixup_memory_subreg (rtx, rtx, enum machine_mode, int);
245 static rtx walk_fixup_memory_subreg (rtx, rtx, rtx, enum machine_mode, int);
246 static rtx fixup_stack_1 (rtx, rtx);
247 static void optimize_bit_field (rtx, rtx, rtx *);
248 static void instantiate_decls (tree, int);
249 static void instantiate_decls_1 (tree, int);
250 static void instantiate_decl (rtx, HOST_WIDE_INT, int);
251 static rtx instantiate_new_reg (rtx, HOST_WIDE_INT *);
252 static int instantiate_virtual_regs_1 (rtx *, rtx, int);
253 static void pad_to_arg_alignment (struct args_size *, int, struct args_size *);
254 static void pad_below (struct args_size *, enum machine_mode, tree);
255 static tree *identify_blocks_1 (rtx, tree *, tree *, tree *);
256 static void reorder_blocks_1 (rtx, tree, varray_type *);
257 static void reorder_fix_fragments (tree);
258 static int all_blocks (tree, tree *);
259 static tree *get_block_vector (tree, int *);
260 extern tree debug_find_var_in_block_tree (tree, tree);
261 /* We always define `record_insns' even if it's not used so that we
262    can always export `prologue_epilogue_contains'.  */
263 static void record_insns (rtx, varray_type *) ATTRIBUTE_UNUSED;
264 static int contains (rtx, varray_type);
265 #ifdef HAVE_return
266 static void emit_return_into_block (basic_block, rtx);
267 #endif
268 static void put_addressof_into_stack (rtx, htab_t);
269 static bool purge_addressof_1 (rtx *, rtx, int, int, int, htab_t);
270 static void purge_single_hard_subreg_set (rtx);
271 #if defined(HAVE_epilogue) && defined(INCOMING_RETURN_ADDR_RTX)
272 static rtx keep_stack_depressed (rtx);
273 #endif
274 static int is_addressof (rtx *, void *);
275 static hashval_t insns_for_mem_hash (const void *);
276 static int insns_for_mem_comp (const void *, const void *);
277 static int insns_for_mem_walk (rtx *, void *);
278 static void compute_insns_for_mem (rtx, rtx, htab_t);
279 static void prepare_function_start (tree);
280 static void do_clobber_return_reg (rtx, void *);
281 static void do_use_return_reg (rtx, void *);
282 static void instantiate_virtual_regs_lossage (rtx);
283 static tree split_complex_args (tree);
284 static void set_insn_locators (rtx, int) ATTRIBUTE_UNUSED;
285 \f
286 /* Pointer to chain of `struct function' for containing functions.  */
287 struct function *outer_function_chain;
288
289 /* List of insns that were postponed by purge_addressof_1.  */
290 static rtx postponed_insns;
291
292 /* Given a function decl for a containing function,
293    return the `struct function' for it.  */
294
295 struct function *
296 find_function_data (tree decl)
297 {
298   struct function *p;
299
300   for (p = outer_function_chain; p; p = p->outer)
301     if (p->decl == decl)
302       return p;
303
304   abort ();
305 }
306
307 /* Save the current context for compilation of a nested function.
308    This is called from language-specific code.  The caller should use
309    the enter_nested langhook to save any language-specific state,
310    since this function knows only about language-independent
311    variables.  */
312
313 void
314 push_function_context_to (tree context)
315 {
316   struct function *p;
317
318   if (context)
319     {
320       if (context == current_function_decl)
321         cfun->contains_functions = 1;
322       else
323         {
324           struct function *containing = find_function_data (context);
325           containing->contains_functions = 1;
326         }
327     }
328
329   if (cfun == 0)
330     init_dummy_function_start ();
331   p = cfun;
332
333   p->outer = outer_function_chain;
334   outer_function_chain = p;
335   p->fixup_var_refs_queue = 0;
336
337   lang_hooks.function.enter_nested (p);
338
339   cfun = 0;
340 }
341
342 void
343 push_function_context (void)
344 {
345   push_function_context_to (current_function_decl);
346 }
347
348 /* Restore the last saved context, at the end of a nested function.
349    This function is called from language-specific code.  */
350
351 void
352 pop_function_context_from (tree context ATTRIBUTE_UNUSED)
353 {
354   struct function *p = outer_function_chain;
355   struct var_refs_queue *queue;
356
357   cfun = p;
358   outer_function_chain = p->outer;
359
360   current_function_decl = p->decl;
361   reg_renumber = 0;
362
363   restore_emit_status (p);
364
365   lang_hooks.function.leave_nested (p);
366
367   /* Finish doing put_var_into_stack for any of our variables which became
368      addressable during the nested function.  If only one entry has to be
369      fixed up, just do that one.  Otherwise, first make a list of MEMs that
370      are not to be unshared.  */
371   if (p->fixup_var_refs_queue == 0)
372     ;
373   else if (p->fixup_var_refs_queue->next == 0)
374     fixup_var_refs (p->fixup_var_refs_queue->modified,
375                     p->fixup_var_refs_queue->promoted_mode,
376                     p->fixup_var_refs_queue->unsignedp,
377                     p->fixup_var_refs_queue->modified, 0);
378   else
379     {
380       rtx list = 0;
381
382       for (queue = p->fixup_var_refs_queue; queue; queue = queue->next)
383         list = gen_rtx_EXPR_LIST (VOIDmode, queue->modified, list);
384
385       for (queue = p->fixup_var_refs_queue; queue; queue = queue->next)
386         fixup_var_refs (queue->modified, queue->promoted_mode,
387                         queue->unsignedp, list, 0);
388
389     }
390
391   p->fixup_var_refs_queue = 0;
392
393   /* Reset variables that have known state during rtx generation.  */
394   rtx_equal_function_value_matters = 1;
395   virtuals_instantiated = 0;
396   generating_concat_p = 1;
397 }
398
399 void
400 pop_function_context (void)
401 {
402   pop_function_context_from (current_function_decl);
403 }
404
405 /* Clear out all parts of the state in F that can safely be discarded
406    after the function has been parsed, but not compiled, to let
407    garbage collection reclaim the memory.  */
408
409 void
410 free_after_parsing (struct function *f)
411 {
412   /* f->expr->forced_labels is used by code generation.  */
413   /* f->emit->regno_reg_rtx is used by code generation.  */
414   /* f->varasm is used by code generation.  */
415   /* f->eh->eh_return_stub_label is used by code generation.  */
416
417   lang_hooks.function.final (f);
418   f->stmt = NULL;
419 }
420
421 /* Clear out all parts of the state in F that can safely be discarded
422    after the function has been compiled, to let garbage collection
423    reclaim the memory.  */
424
425 void
426 free_after_compilation (struct function *f)
427 {
428   f->eh = NULL;
429   f->expr = NULL;
430   f->emit = NULL;
431   f->varasm = NULL;
432   f->machine = NULL;
433
434   f->x_avail_temp_slots = NULL;
435   f->x_used_temp_slots = NULL;
436   f->arg_offset_rtx = NULL;
437   f->return_rtx = NULL;
438   f->internal_arg_pointer = NULL;
439   f->x_nonlocal_goto_handler_labels = NULL;
440   f->x_cleanup_label = NULL;
441   f->x_return_label = NULL;
442   f->x_naked_return_label = NULL;
443   f->x_save_expr_regs = NULL;
444   f->x_stack_slot_list = NULL;
445   f->x_rtl_expr_chain = NULL;
446   f->x_tail_recursion_reentry = NULL;
447   f->x_arg_pointer_save_area = NULL;
448   f->x_parm_birth_insn = NULL;
449   f->x_parm_reg_stack_loc = NULL;
450   f->fixup_var_refs_queue = NULL;
451   f->original_arg_vector = NULL;
452   f->original_decl_initial = NULL;
453   f->epilogue_delay_list = NULL;
454 }
455 \f
456 /* Allocate fixed slots in the stack frame of the current function.  */
457
458 /* Return size needed for stack frame based on slots so far allocated in
459    function F.
460    This size counts from zero.  It is not rounded to PREFERRED_STACK_BOUNDARY;
461    the caller may have to do that.  */
462
463 HOST_WIDE_INT
464 get_func_frame_size (struct function *f)
465 {
466 #ifdef FRAME_GROWS_DOWNWARD
467   return -f->x_frame_offset;
468 #else
469   return f->x_frame_offset;
470 #endif
471 }
472
473 /* Return size needed for stack frame based on slots so far allocated.
474    This size counts from zero.  It is not rounded to PREFERRED_STACK_BOUNDARY;
475    the caller may have to do that.  */
476 HOST_WIDE_INT
477 get_frame_size (void)
478 {
479   return get_func_frame_size (cfun);
480 }
481
482 /* Allocate a stack slot of SIZE bytes and return a MEM rtx for it
483    with machine mode MODE.
484
485    ALIGN controls the amount of alignment for the address of the slot:
486    0 means according to MODE,
487    -1 means use BIGGEST_ALIGNMENT and round size to multiple of that,
488    -2 means use BITS_PER_UNIT,
489    positive specifies alignment boundary in bits.
490
491    We do not round to stack_boundary here.
492
493    FUNCTION specifies the function to allocate in.  */
494
495 static rtx
496 assign_stack_local_1 (enum machine_mode mode, HOST_WIDE_INT size, int align,
497                       struct function *function)
498 {
499   rtx x, addr;
500   int bigend_correction = 0;
501   int alignment;
502   int frame_off, frame_alignment, frame_phase;
503
504   if (align == 0)
505     {
506       tree type;
507
508       if (mode == BLKmode)
509         alignment = BIGGEST_ALIGNMENT;
510       else
511         alignment = GET_MODE_ALIGNMENT (mode);
512
513       /* Allow the target to (possibly) increase the alignment of this
514          stack slot.  */
515       type = lang_hooks.types.type_for_mode (mode, 0);
516       if (type)
517         alignment = LOCAL_ALIGNMENT (type, alignment);
518
519       alignment /= BITS_PER_UNIT;
520     }
521   else if (align == -1)
522     {
523       alignment = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
524       size = CEIL_ROUND (size, alignment);
525     }
526   else if (align == -2)
527     alignment = 1; /* BITS_PER_UNIT / BITS_PER_UNIT */
528   else
529     alignment = align / BITS_PER_UNIT;
530
531 #ifdef FRAME_GROWS_DOWNWARD
532   function->x_frame_offset -= size;
533 #endif
534
535   /* Ignore alignment we can't do with expected alignment of the boundary.  */
536   if (alignment * BITS_PER_UNIT > PREFERRED_STACK_BOUNDARY)
537     alignment = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
538
539   if (function->stack_alignment_needed < alignment * BITS_PER_UNIT)
540     function->stack_alignment_needed = alignment * BITS_PER_UNIT;
541
542   /* Calculate how many bytes the start of local variables is off from
543      stack alignment.  */
544   frame_alignment = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
545   frame_off = STARTING_FRAME_OFFSET % frame_alignment;
546   frame_phase = frame_off ? frame_alignment - frame_off : 0;
547
548   /* Round the frame offset to the specified alignment.  The default is
549      to always honor requests to align the stack but a port may choose to
550      do its own stack alignment by defining STACK_ALIGNMENT_NEEDED.  */
551   if (STACK_ALIGNMENT_NEEDED
552       || mode != BLKmode
553       || size != 0)
554     {
555       /*  We must be careful here, since FRAME_OFFSET might be negative and
556           division with a negative dividend isn't as well defined as we might
557           like.  So we instead assume that ALIGNMENT is a power of two and
558           use logical operations which are unambiguous.  */
559 #ifdef FRAME_GROWS_DOWNWARD
560       function->x_frame_offset
561         = (FLOOR_ROUND (function->x_frame_offset - frame_phase, alignment)
562            + frame_phase);
563 #else
564       function->x_frame_offset
565         = (CEIL_ROUND (function->x_frame_offset - frame_phase, alignment)
566            + frame_phase);
567 #endif
568     }
569
570   /* On a big-endian machine, if we are allocating more space than we will use,
571      use the least significant bytes of those that are allocated.  */
572   if (BYTES_BIG_ENDIAN && mode != BLKmode)
573     bigend_correction = size - GET_MODE_SIZE (mode);
574
575   /* If we have already instantiated virtual registers, return the actual
576      address relative to the frame pointer.  */
577   if (function == cfun && virtuals_instantiated)
578     addr = plus_constant (frame_pointer_rtx,
579                           trunc_int_for_mode
580                           (frame_offset + bigend_correction
581                            + STARTING_FRAME_OFFSET, Pmode));
582   else
583     addr = plus_constant (virtual_stack_vars_rtx,
584                           trunc_int_for_mode
585                           (function->x_frame_offset + bigend_correction,
586                            Pmode));
587
588 #ifndef FRAME_GROWS_DOWNWARD
589   function->x_frame_offset += size;
590 #endif
591
592   x = gen_rtx_MEM (mode, addr);
593
594   function->x_stack_slot_list
595     = gen_rtx_EXPR_LIST (VOIDmode, x, function->x_stack_slot_list);
596
597   return x;
598 }
599
600 /* Wrapper around assign_stack_local_1;  assign a local stack slot for the
601    current function.  */
602
603 rtx
604 assign_stack_local (enum machine_mode mode, HOST_WIDE_INT size, int align)
605 {
606   return assign_stack_local_1 (mode, size, align, cfun);
607 }
608
609 \f
610 /* Removes temporary slot TEMP from LIST.  */
611
612 static void
613 cut_slot_from_list (struct temp_slot *temp, struct temp_slot **list)
614 {
615   if (temp->next)
616     temp->next->prev = temp->prev;
617   if (temp->prev)
618     temp->prev->next = temp->next;
619   else
620     *list = temp->next;
621
622   temp->prev = temp->next = NULL;
623 }
624
625 /* Inserts temporary slot TEMP to LIST.  */
626
627 static void
628 insert_slot_to_list (struct temp_slot *temp, struct temp_slot **list)
629 {
630   temp->next = *list;
631   if (*list)
632     (*list)->prev = temp;
633   temp->prev = NULL;
634   *list = temp;
635 }
636
637 /* Returns the list of used temp slots at LEVEL.  */
638
639 static struct temp_slot **
640 temp_slots_at_level (int level)
641 {
642   level++;
643
644   if (!used_temp_slots)
645     VARRAY_GENERIC_PTR_INIT (used_temp_slots, 3, "used_temp_slots");
646
647   while (level >= (int) VARRAY_ACTIVE_SIZE (used_temp_slots))
648     VARRAY_PUSH_GENERIC_PTR (used_temp_slots, NULL);
649
650   return (struct temp_slot **) &VARRAY_GENERIC_PTR (used_temp_slots, level);
651 }
652
653 /* Returns the maximal temporary slot level.  */
654
655 static int
656 max_slot_level (void)
657 {
658   if (!used_temp_slots)
659     return -1;
660
661   return VARRAY_ACTIVE_SIZE (used_temp_slots) - 1;
662 }
663
664 /* Moves temporary slot TEMP to LEVEL.  */
665
666 static void
667 move_slot_to_level (struct temp_slot *temp, int level)
668 {
669   cut_slot_from_list (temp, temp_slots_at_level (temp->level));
670   insert_slot_to_list (temp, temp_slots_at_level (level));
671   temp->level = level;
672 }
673
674 /* Make temporary slot TEMP available.  */
675
676 static void
677 make_slot_available (struct temp_slot *temp)
678 {
679   cut_slot_from_list (temp, temp_slots_at_level (temp->level));
680   insert_slot_to_list (temp, &avail_temp_slots);
681   temp->in_use = 0;
682   temp->level = -1;
683 }
684 \f
685 /* Allocate a temporary stack slot and record it for possible later
686    reuse.
687
688    MODE is the machine mode to be given to the returned rtx.
689
690    SIZE is the size in units of the space required.  We do no rounding here
691    since assign_stack_local will do any required rounding.
692
693    KEEP is 1 if this slot is to be retained after a call to
694    free_temp_slots.  Automatic variables for a block are allocated
695    with this flag.  KEEP is 2 if we allocate a longer term temporary,
696    whose lifetime is controlled by CLEANUP_POINT_EXPRs.  KEEP is 3
697    if we are to allocate something at an inner level to be treated as
698    a variable in the block (e.g., a SAVE_EXPR).
699
700    TYPE is the type that will be used for the stack slot.  */
701
702 rtx
703 assign_stack_temp_for_type (enum machine_mode mode, HOST_WIDE_INT size, int keep,
704                             tree type)
705 {
706   unsigned int align;
707   struct temp_slot *p, *best_p = 0, *selected = NULL, **pp;
708   rtx slot;
709
710   /* If SIZE is -1 it means that somebody tried to allocate a temporary
711      of a variable size.  */
712   if (size == -1)
713     abort ();
714
715   if (mode == BLKmode)
716     align = BIGGEST_ALIGNMENT;
717   else
718     align = GET_MODE_ALIGNMENT (mode);
719
720   if (! type)
721     type = lang_hooks.types.type_for_mode (mode, 0);
722
723   if (type)
724     align = LOCAL_ALIGNMENT (type, align);
725
726   /* Try to find an available, already-allocated temporary of the proper
727      mode which meets the size and alignment requirements.  Choose the
728      smallest one with the closest alignment.  */
729   for (p = avail_temp_slots; p; p = p->next)
730     {
731       if (p->align >= align && p->size >= size && GET_MODE (p->slot) == mode
732           && objects_must_conflict_p (p->type, type)
733           && (best_p == 0 || best_p->size > p->size
734               || (best_p->size == p->size && best_p->align > p->align)))
735         {
736           if (p->align == align && p->size == size)
737             {
738               selected = p;
739               cut_slot_from_list (selected, &avail_temp_slots);
740               best_p = 0;
741               break;
742             }
743           best_p = p;
744         }
745     }
746
747   /* Make our best, if any, the one to use.  */
748   if (best_p)
749     {
750       selected = best_p;
751       cut_slot_from_list (selected, &avail_temp_slots);
752
753       /* If there are enough aligned bytes left over, make them into a new
754          temp_slot so that the extra bytes don't get wasted.  Do this only
755          for BLKmode slots, so that we can be sure of the alignment.  */
756       if (GET_MODE (best_p->slot) == BLKmode)
757         {
758           int alignment = best_p->align / BITS_PER_UNIT;
759           HOST_WIDE_INT rounded_size = CEIL_ROUND (size, alignment);
760
761           if (best_p->size - rounded_size >= alignment)
762             {
763               p = ggc_alloc (sizeof (struct temp_slot));
764               p->in_use = p->addr_taken = 0;
765               p->size = best_p->size - rounded_size;
766               p->base_offset = best_p->base_offset + rounded_size;
767               p->full_size = best_p->full_size - rounded_size;
768               p->slot = gen_rtx_MEM (BLKmode,
769                                      plus_constant (XEXP (best_p->slot, 0),
770                                                     rounded_size));
771               p->align = best_p->align;
772               p->address = 0;
773               p->rtl_expr = 0;
774               p->type = best_p->type;
775               insert_slot_to_list (p, &avail_temp_slots);
776
777               stack_slot_list = gen_rtx_EXPR_LIST (VOIDmode, p->slot,
778                                                    stack_slot_list);
779
780               best_p->size = rounded_size;
781               best_p->full_size = rounded_size;
782             }
783         }
784     }
785
786   /* If we still didn't find one, make a new temporary.  */
787   if (selected == 0)
788     {
789       HOST_WIDE_INT frame_offset_old = frame_offset;
790
791       p = ggc_alloc (sizeof (struct temp_slot));
792
793       /* We are passing an explicit alignment request to assign_stack_local.
794          One side effect of that is assign_stack_local will not round SIZE
795          to ensure the frame offset remains suitably aligned.
796
797          So for requests which depended on the rounding of SIZE, we go ahead
798          and round it now.  We also make sure ALIGNMENT is at least
799          BIGGEST_ALIGNMENT.  */
800       if (mode == BLKmode && align < BIGGEST_ALIGNMENT)
801         abort ();
802       p->slot = assign_stack_local (mode,
803                                     (mode == BLKmode
804                                      ? CEIL_ROUND (size, (int) align / BITS_PER_UNIT)
805                                      : size),
806                                     align);
807
808       p->align = align;
809
810       /* The following slot size computation is necessary because we don't
811          know the actual size of the temporary slot until assign_stack_local
812          has performed all the frame alignment and size rounding for the
813          requested temporary.  Note that extra space added for alignment
814          can be either above or below this stack slot depending on which
815          way the frame grows.  We include the extra space if and only if it
816          is above this slot.  */
817 #ifdef FRAME_GROWS_DOWNWARD
818       p->size = frame_offset_old - frame_offset;
819 #else
820       p->size = size;
821 #endif
822
823       /* Now define the fields used by combine_temp_slots.  */
824 #ifdef FRAME_GROWS_DOWNWARD
825       p->base_offset = frame_offset;
826       p->full_size = frame_offset_old - frame_offset;
827 #else
828       p->base_offset = frame_offset_old;
829       p->full_size = frame_offset - frame_offset_old;
830 #endif
831       p->address = 0;
832
833       selected = p;
834     }
835
836   p = selected;
837   p->in_use = 1;
838   p->addr_taken = 0;
839   p->rtl_expr = seq_rtl_expr;
840   p->type = type;
841
842   if (keep == 2)
843     {
844       p->level = target_temp_slot_level;
845       p->keep = 1;
846     }
847   else if (keep == 3)
848     {
849       p->level = var_temp_slot_level;
850       p->keep = 0;
851     }
852   else
853     {
854       p->level = temp_slot_level;
855       p->keep = keep;
856     }
857
858   pp = temp_slots_at_level (p->level);
859   insert_slot_to_list (p, pp);
860
861   /* Create a new MEM rtx to avoid clobbering MEM flags of old slots.  */
862   slot = gen_rtx_MEM (mode, XEXP (p->slot, 0));
863   stack_slot_list = gen_rtx_EXPR_LIST (VOIDmode, slot, stack_slot_list);
864
865   /* If we know the alias set for the memory that will be used, use
866      it.  If there's no TYPE, then we don't know anything about the
867      alias set for the memory.  */
868   set_mem_alias_set (slot, type ? get_alias_set (type) : 0);
869   set_mem_align (slot, align);
870
871   /* If a type is specified, set the relevant flags.  */
872   if (type != 0)
873     {
874       RTX_UNCHANGING_P (slot) = (lang_hooks.honor_readonly
875                                  && TYPE_READONLY (type));
876       MEM_VOLATILE_P (slot) = TYPE_VOLATILE (type);
877       MEM_SET_IN_STRUCT_P (slot, AGGREGATE_TYPE_P (type));
878     }
879
880   return slot;
881 }
882
883 /* Allocate a temporary stack slot and record it for possible later
884    reuse.  First three arguments are same as in preceding function.  */
885
886 rtx
887 assign_stack_temp (enum machine_mode mode, HOST_WIDE_INT size, int keep)
888 {
889   return assign_stack_temp_for_type (mode, size, keep, NULL_TREE);
890 }
891 \f
892 /* Assign a temporary.
893    If TYPE_OR_DECL is a decl, then we are doing it on behalf of the decl
894    and so that should be used in error messages.  In either case, we
895    allocate of the given type.
896    KEEP is as for assign_stack_temp.
897    MEMORY_REQUIRED is 1 if the result must be addressable stack memory;
898    it is 0 if a register is OK.
899    DONT_PROMOTE is 1 if we should not promote values in register
900    to wider modes.  */
901
902 rtx
903 assign_temp (tree type_or_decl, int keep, int memory_required,
904              int dont_promote ATTRIBUTE_UNUSED)
905 {
906   tree type, decl;
907   enum machine_mode mode;
908 #ifdef PROMOTE_MODE
909   int unsignedp;
910 #endif
911
912   if (DECL_P (type_or_decl))
913     decl = type_or_decl, type = TREE_TYPE (decl);
914   else
915     decl = NULL, type = type_or_decl;
916
917   mode = TYPE_MODE (type);
918 #ifdef PROMOTE_MODE
919   unsignedp = TYPE_UNSIGNED (type);
920 #endif
921
922   if (mode == BLKmode || memory_required)
923     {
924       HOST_WIDE_INT size = int_size_in_bytes (type);
925       rtx tmp;
926
927       /* Zero sized arrays are GNU C extension.  Set size to 1 to avoid
928          problems with allocating the stack space.  */
929       if (size == 0)
930         size = 1;
931
932       /* Unfortunately, we don't yet know how to allocate variable-sized
933          temporaries.  However, sometimes we have a fixed upper limit on
934          the size (which is stored in TYPE_ARRAY_MAX_SIZE) and can use that
935          instead.  This is the case for Chill variable-sized strings.  */
936       if (size == -1 && TREE_CODE (type) == ARRAY_TYPE
937           && TYPE_ARRAY_MAX_SIZE (type) != NULL_TREE
938           && host_integerp (TYPE_ARRAY_MAX_SIZE (type), 1))
939         size = tree_low_cst (TYPE_ARRAY_MAX_SIZE (type), 1);
940
941       /* The size of the temporary may be too large to fit into an integer.  */
942       /* ??? Not sure this should happen except for user silliness, so limit
943          this to things that aren't compiler-generated temporaries.  The
944          rest of the time we'll abort in assign_stack_temp_for_type.  */
945       if (decl && size == -1
946           && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST)
947         {
948           error ("%Jsize of variable '%D' is too large", decl, decl);
949           size = 1;
950         }
951
952       tmp = assign_stack_temp_for_type (mode, size, keep, type);
953       return tmp;
954     }
955
956 #ifdef PROMOTE_MODE
957   if (! dont_promote)
958     mode = promote_mode (type, mode, &unsignedp, 0);
959 #endif
960
961   return gen_reg_rtx (mode);
962 }
963 \f
964 /* Combine temporary stack slots which are adjacent on the stack.
965
966    This allows for better use of already allocated stack space.  This is only
967    done for BLKmode slots because we can be sure that we won't have alignment
968    problems in this case.  */
969
970 void
971 combine_temp_slots (void)
972 {
973   struct temp_slot *p, *q, *next, *next_q;
974   int num_slots;
975
976   /* We can't combine slots, because the information about which slot
977      is in which alias set will be lost.  */
978   if (flag_strict_aliasing)
979     return;
980
981   /* If there are a lot of temp slots, don't do anything unless
982      high levels of optimization.  */
983   if (! flag_expensive_optimizations)
984     for (p = avail_temp_slots, num_slots = 0; p; p = p->next, num_slots++)
985       if (num_slots > 100 || (num_slots > 10 && optimize == 0))
986         return;
987
988   for (p = avail_temp_slots; p; p = next)
989     {
990       int delete_p = 0;
991
992       next = p->next;
993
994       if (GET_MODE (p->slot) != BLKmode)
995         continue;
996
997       for (q = p->next; q; q = next_q)
998         {
999           int delete_q = 0;
1000
1001           next_q = q->next;
1002
1003           if (GET_MODE (q->slot) != BLKmode)
1004             continue;
1005
1006           if (p->base_offset + p->full_size == q->base_offset)
1007             {
1008               /* Q comes after P; combine Q into P.  */
1009               p->size += q->size;
1010               p->full_size += q->full_size;
1011               delete_q = 1;
1012             }
1013           else if (q->base_offset + q->full_size == p->base_offset)
1014             {
1015               /* P comes after Q; combine P into Q.  */
1016               q->size += p->size;
1017               q->full_size += p->full_size;
1018               delete_p = 1;
1019               break;
1020             }
1021           if (delete_q)
1022             cut_slot_from_list (q, &avail_temp_slots);
1023         }
1024
1025       /* Either delete P or advance past it.  */
1026       if (delete_p)
1027         cut_slot_from_list (p, &avail_temp_slots);
1028     }
1029 }
1030 \f
1031 /* Find the temp slot corresponding to the object at address X.  */
1032
1033 static struct temp_slot *
1034 find_temp_slot_from_address (rtx x)
1035 {
1036   struct temp_slot *p;
1037   rtx next;
1038   int i;
1039
1040   for (i = max_slot_level (); i >= 0; i--)
1041     for (p = *temp_slots_at_level (i); p; p = p->next)
1042       {
1043         if (XEXP (p->slot, 0) == x
1044             || p->address == x
1045             || (GET_CODE (x) == PLUS
1046                 && XEXP (x, 0) == virtual_stack_vars_rtx
1047                 && GET_CODE (XEXP (x, 1)) == CONST_INT
1048                 && INTVAL (XEXP (x, 1)) >= p->base_offset
1049                 && INTVAL (XEXP (x, 1)) < p->base_offset + p->full_size))
1050           return p;
1051
1052         else if (p->address != 0 && GET_CODE (p->address) == EXPR_LIST)
1053           for (next = p->address; next; next = XEXP (next, 1))
1054             if (XEXP (next, 0) == x)
1055               return p;
1056       }
1057
1058   /* If we have a sum involving a register, see if it points to a temp
1059      slot.  */
1060   if (GET_CODE (x) == PLUS && REG_P (XEXP (x, 0))
1061       && (p = find_temp_slot_from_address (XEXP (x, 0))) != 0)
1062     return p;
1063   else if (GET_CODE (x) == PLUS && REG_P (XEXP (x, 1))
1064            && (p = find_temp_slot_from_address (XEXP (x, 1))) != 0)
1065     return p;
1066
1067   return 0;
1068 }
1069
1070 /* Indicate that NEW is an alternate way of referring to the temp slot
1071    that previously was known by OLD.  */
1072
1073 void
1074 update_temp_slot_address (rtx old, rtx new)
1075 {
1076   struct temp_slot *p;
1077
1078   if (rtx_equal_p (old, new))
1079     return;
1080
1081   p = find_temp_slot_from_address (old);
1082
1083   /* If we didn't find one, see if both OLD is a PLUS.  If so, and NEW
1084      is a register, see if one operand of the PLUS is a temporary
1085      location.  If so, NEW points into it.  Otherwise, if both OLD and
1086      NEW are a PLUS and if there is a register in common between them.
1087      If so, try a recursive call on those values.  */
1088   if (p == 0)
1089     {
1090       if (GET_CODE (old) != PLUS)
1091         return;
1092
1093       if (REG_P (new))
1094         {
1095           update_temp_slot_address (XEXP (old, 0), new);
1096           update_temp_slot_address (XEXP (old, 1), new);
1097           return;
1098         }
1099       else if (GET_CODE (new) != PLUS)
1100         return;
1101
1102       if (rtx_equal_p (XEXP (old, 0), XEXP (new, 0)))
1103         update_temp_slot_address (XEXP (old, 1), XEXP (new, 1));
1104       else if (rtx_equal_p (XEXP (old, 1), XEXP (new, 0)))
1105         update_temp_slot_address (XEXP (old, 0), XEXP (new, 1));
1106       else if (rtx_equal_p (XEXP (old, 0), XEXP (new, 1)))
1107         update_temp_slot_address (XEXP (old, 1), XEXP (new, 0));
1108       else if (rtx_equal_p (XEXP (old, 1), XEXP (new, 1)))
1109         update_temp_slot_address (XEXP (old, 0), XEXP (new, 0));
1110
1111       return;
1112     }
1113
1114   /* Otherwise add an alias for the temp's address.  */
1115   else if (p->address == 0)
1116     p->address = new;
1117   else
1118     {
1119       if (GET_CODE (p->address) != EXPR_LIST)
1120         p->address = gen_rtx_EXPR_LIST (VOIDmode, p->address, NULL_RTX);
1121
1122       p->address = gen_rtx_EXPR_LIST (VOIDmode, new, p->address);
1123     }
1124 }
1125
1126 /* If X could be a reference to a temporary slot, mark the fact that its
1127    address was taken.  */
1128
1129 void
1130 mark_temp_addr_taken (rtx x)
1131 {
1132   struct temp_slot *p;
1133
1134   if (x == 0)
1135     return;
1136
1137   /* If X is not in memory or is at a constant address, it cannot be in
1138      a temporary slot.  */
1139   if (GET_CODE (x) != MEM || CONSTANT_P (XEXP (x, 0)))
1140     return;
1141
1142   p = find_temp_slot_from_address (XEXP (x, 0));
1143   if (p != 0)
1144     p->addr_taken = 1;
1145 }
1146
1147 /* If X could be a reference to a temporary slot, mark that slot as
1148    belonging to the to one level higher than the current level.  If X
1149    matched one of our slots, just mark that one.  Otherwise, we can't
1150    easily predict which it is, so upgrade all of them.  Kept slots
1151    need not be touched.
1152
1153    This is called when an ({...}) construct occurs and a statement
1154    returns a value in memory.  */
1155
1156 void
1157 preserve_temp_slots (rtx x)
1158 {
1159   struct temp_slot *p = 0, *next;
1160
1161   /* If there is no result, we still might have some objects whose address
1162      were taken, so we need to make sure they stay around.  */
1163   if (x == 0)
1164     {
1165       for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1166         {
1167           next = p->next;
1168
1169           if (p->addr_taken)
1170             move_slot_to_level (p, temp_slot_level - 1);
1171         }
1172
1173       return;
1174     }
1175
1176   /* If X is a register that is being used as a pointer, see if we have
1177      a temporary slot we know it points to.  To be consistent with
1178      the code below, we really should preserve all non-kept slots
1179      if we can't find a match, but that seems to be much too costly.  */
1180   if (REG_P (x) && REG_POINTER (x))
1181     p = find_temp_slot_from_address (x);
1182
1183   /* If X is not in memory or is at a constant address, it cannot be in
1184      a temporary slot, but it can contain something whose address was
1185      taken.  */
1186   if (p == 0 && (GET_CODE (x) != MEM || CONSTANT_P (XEXP (x, 0))))
1187     {
1188       for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1189         {
1190           next = p->next;
1191
1192           if (p->addr_taken)
1193             move_slot_to_level (p, temp_slot_level - 1);
1194         }
1195
1196       return;
1197     }
1198
1199   /* First see if we can find a match.  */
1200   if (p == 0)
1201     p = find_temp_slot_from_address (XEXP (x, 0));
1202
1203   if (p != 0)
1204     {
1205       /* Move everything at our level whose address was taken to our new
1206          level in case we used its address.  */
1207       struct temp_slot *q;
1208
1209       if (p->level == temp_slot_level)
1210         {
1211           for (q = *temp_slots_at_level (temp_slot_level); q; q = next)
1212             {
1213               next = q->next;
1214
1215               if (p != q && q->addr_taken)
1216                 move_slot_to_level (q, temp_slot_level - 1);
1217             }
1218
1219           move_slot_to_level (p, temp_slot_level - 1);
1220           p->addr_taken = 0;
1221         }
1222       return;
1223     }
1224
1225   /* Otherwise, preserve all non-kept slots at this level.  */
1226   for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1227     {
1228       next = p->next;
1229
1230       if (!p->keep)
1231         move_slot_to_level (p, temp_slot_level - 1);
1232     }
1233 }
1234
1235 /* X is the result of an RTL_EXPR.  If it is a temporary slot associated
1236    with that RTL_EXPR, promote it into a temporary slot at the present
1237    level so it will not be freed when we free slots made in the
1238    RTL_EXPR.  */
1239
1240 void
1241 preserve_rtl_expr_result (rtx x)
1242 {
1243   struct temp_slot *p;
1244
1245   /* If X is not in memory or is at a constant address, it cannot be in
1246      a temporary slot.  */
1247   if (x == 0 || GET_CODE (x) != MEM || CONSTANT_P (XEXP (x, 0)))
1248     return;
1249
1250   /* If we can find a match, move it to our level unless it is already at
1251      an upper level.  */
1252   p = find_temp_slot_from_address (XEXP (x, 0));
1253   if (p != 0)
1254     {
1255       move_slot_to_level (p, MIN (p->level, temp_slot_level));
1256       p->rtl_expr = 0;
1257     }
1258
1259   return;
1260 }
1261
1262 /* Free all temporaries used so far.  This is normally called at the end
1263    of generating code for a statement.  Don't free any temporaries
1264    currently in use for an RTL_EXPR that hasn't yet been emitted.
1265    We could eventually do better than this since it can be reused while
1266    generating the same RTL_EXPR, but this is complex and probably not
1267    worthwhile.  */
1268
1269 void
1270 free_temp_slots (void)
1271 {
1272   struct temp_slot *p, *next;
1273
1274   for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1275     {
1276       next = p->next;
1277
1278       if (!p->keep && p->rtl_expr == 0)
1279         make_slot_available (p);
1280     }
1281
1282   combine_temp_slots ();
1283 }
1284
1285 /* Free all temporary slots used in T, an RTL_EXPR node.  */
1286
1287 void
1288 free_temps_for_rtl_expr (tree t)
1289 {
1290   struct temp_slot *p, *next;
1291
1292   for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1293     {
1294       next = p->next;
1295
1296       if (p->rtl_expr == t)
1297         {
1298           /* If this slot is below the current TEMP_SLOT_LEVEL, then it
1299              needs to be preserved.  This can happen if a temporary in
1300              the RTL_EXPR was addressed; preserve_temp_slots will move
1301              the temporary into a higher level.  */
1302           if (temp_slot_level <= p->level)
1303             make_slot_available (p);
1304           else
1305             p->rtl_expr = NULL_TREE;
1306         }
1307     }
1308
1309   combine_temp_slots ();
1310 }
1311
1312 /* Push deeper into the nesting level for stack temporaries.  */
1313
1314 void
1315 push_temp_slots (void)
1316 {
1317   temp_slot_level++;
1318 }
1319
1320 /* Pop a temporary nesting level.  All slots in use in the current level
1321    are freed.  */
1322
1323 void
1324 pop_temp_slots (void)
1325 {
1326   struct temp_slot *p, *next;
1327
1328   for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1329     {
1330       next = p->next;
1331
1332       if (p->rtl_expr == 0)
1333         make_slot_available (p);
1334     }
1335
1336   combine_temp_slots ();
1337
1338   temp_slot_level--;
1339 }
1340
1341 /* Initialize temporary slots.  */
1342
1343 void
1344 init_temp_slots (void)
1345 {
1346   /* We have not allocated any temporaries yet.  */
1347   avail_temp_slots = 0;
1348   used_temp_slots = 0;
1349   temp_slot_level = 0;
1350   var_temp_slot_level = 0;
1351   target_temp_slot_level = 0;
1352 }
1353 \f
1354 /* Retroactively move an auto variable from a register to a stack
1355    slot.  This is done when an address-reference to the variable is
1356    seen.  If RESCAN is true, all previously emitted instructions are
1357    examined and modified to handle the fact that DECL is now
1358    addressable.  */
1359
1360 void
1361 put_var_into_stack (tree decl, int rescan)
1362 {
1363   rtx orig_reg, reg;
1364   enum machine_mode promoted_mode, decl_mode;
1365   struct function *function = 0;
1366   tree context;
1367   bool can_use_addressof_p;
1368   bool volatile_p = TREE_CODE (decl) != SAVE_EXPR && TREE_THIS_VOLATILE (decl);
1369   bool used_p = (TREE_USED (decl)
1370                || (TREE_CODE (decl) != SAVE_EXPR && DECL_INITIAL (decl) != 0));
1371
1372   context = decl_function_context (decl);
1373
1374   /* Get the current rtl used for this object and its original mode.  */
1375  orig_reg = reg = (TREE_CODE (decl) == SAVE_EXPR
1376                    ? SAVE_EXPR_RTL (decl)
1377                    : DECL_RTL_IF_SET (decl));
1378
1379   /* No need to do anything if decl has no rtx yet
1380      since in that case caller is setting TREE_ADDRESSABLE
1381      and a stack slot will be assigned when the rtl is made.  */
1382   if (reg == 0)
1383     return;
1384
1385   /* Get the declared mode for this object.  */
1386   decl_mode = (TREE_CODE (decl) == SAVE_EXPR ? TYPE_MODE (TREE_TYPE (decl))
1387                : DECL_MODE (decl));
1388   /* Get the mode it's actually stored in.  */
1389   promoted_mode = GET_MODE (reg);
1390
1391   /* If this variable comes from an outer function, find that
1392      function's saved context.  Don't use find_function_data here,
1393      because it might not be in any active function.
1394      FIXME: Is that really supposed to happen?
1395      It does in ObjC at least.  */
1396   if (context != current_function_decl)
1397     for (function = outer_function_chain; function; function = function->outer)
1398       if (function->decl == context)
1399         break;
1400
1401   /* If this is a variable-sized object or a structure passed by invisible
1402      reference, with a pseudo to address it, put that pseudo into the stack
1403      if the var is non-local.  */
1404   if (TREE_CODE (decl) != SAVE_EXPR && DECL_NONLOCAL (decl)
1405       && GET_CODE (reg) == MEM
1406       && REG_P (XEXP (reg, 0))
1407       && REGNO (XEXP (reg, 0)) > LAST_VIRTUAL_REGISTER)
1408     {
1409       orig_reg = reg = XEXP (reg, 0);
1410       decl_mode = promoted_mode = GET_MODE (reg);
1411     }
1412
1413   /* If this variable lives in the current function and we don't need to put it
1414      in the stack for the sake of setjmp or the non-locality, try to keep it in
1415      a register until we know we actually need the address.  */
1416   can_use_addressof_p
1417     = (function == 0
1418        && ! (TREE_CODE (decl) != SAVE_EXPR && DECL_NONLOCAL (decl))
1419        && optimize > 0
1420        /* FIXME make it work for promoted modes too */
1421        && decl_mode == promoted_mode
1422 #ifdef NON_SAVING_SETJMP
1423        && ! (NON_SAVING_SETJMP && current_function_calls_setjmp)
1424 #endif
1425        );
1426
1427   /* If we can't use ADDRESSOF, make sure we see through one we already
1428      generated.  */
1429   if (! can_use_addressof_p
1430       && GET_CODE (reg) == MEM
1431       && GET_CODE (XEXP (reg, 0)) == ADDRESSOF)
1432     reg = XEXP (XEXP (reg, 0), 0);
1433
1434   /* Now we should have a value that resides in one or more pseudo regs.  */
1435
1436   if (REG_P (reg))
1437     {
1438       if (can_use_addressof_p)
1439         gen_mem_addressof (reg, decl, rescan);
1440       else
1441         put_reg_into_stack (function, reg, TREE_TYPE (decl), decl_mode,
1442                             0, volatile_p, used_p, false, 0);
1443
1444           /* If this was previously a MEM but we've removed the ADDRESSOF,
1445              set this address into that MEM so we always use the same
1446              rtx for this variable.  */
1447           if (orig_reg != reg && GET_CODE (orig_reg) == MEM)
1448             XEXP (orig_reg, 0) = XEXP (reg, 0);
1449     }
1450   else if (GET_CODE (reg) == CONCAT)
1451     {
1452       /* A CONCAT contains two pseudos; put them both in the stack.
1453          We do it so they end up consecutive.
1454          We fixup references to the parts only after we fixup references
1455          to the whole CONCAT, lest we do double fixups for the latter
1456          references.  */
1457       enum machine_mode part_mode = GET_MODE (XEXP (reg, 0));
1458       tree part_type = lang_hooks.types.type_for_mode (part_mode, 0);
1459       rtx lopart = XEXP (reg, 0);
1460       rtx hipart = XEXP (reg, 1);
1461 #ifdef FRAME_GROWS_DOWNWARD
1462       /* Since part 0 should have a lower address, do it second.  */
1463       put_reg_into_stack (function, hipart, part_type, part_mode,
1464                           0, volatile_p, false, false, 0);
1465       put_reg_into_stack (function, lopart, part_type, part_mode,
1466                           0, volatile_p, false, true, 0);
1467 #else
1468       put_reg_into_stack (function, lopart, part_type, part_mode,
1469                           0, volatile_p, false, false, 0);
1470       put_reg_into_stack (function, hipart, part_type, part_mode,
1471                           0, volatile_p, false, true, 0);
1472 #endif
1473
1474       /* Change the CONCAT into a combined MEM for both parts.  */
1475       PUT_CODE (reg, MEM);
1476       MEM_ATTRS (reg) = 0;
1477
1478       /* set_mem_attributes uses DECL_RTL to avoid re-generating of
1479          already computed alias sets.  Here we want to re-generate.  */
1480       if (DECL_P (decl))
1481         SET_DECL_RTL (decl, NULL);
1482       set_mem_attributes (reg, decl, 1);
1483       if (DECL_P (decl))
1484         SET_DECL_RTL (decl, reg);
1485
1486       /* The two parts are in memory order already.
1487          Use the lower parts address as ours.  */
1488       XEXP (reg, 0) = XEXP (XEXP (reg, 0), 0);
1489       /* Prevent sharing of rtl that might lose.  */
1490       if (GET_CODE (XEXP (reg, 0)) == PLUS)
1491         XEXP (reg, 0) = copy_rtx (XEXP (reg, 0));
1492       if (used_p && rescan)
1493         {
1494           schedule_fixup_var_refs (function, reg, TREE_TYPE (decl),
1495                                    promoted_mode, 0);
1496           schedule_fixup_var_refs (function, lopart, part_type, part_mode, 0);
1497           schedule_fixup_var_refs (function, hipart, part_type, part_mode, 0);
1498         }
1499     }
1500   else
1501     return;
1502 }
1503
1504 /* Subroutine of put_var_into_stack.  This puts a single pseudo reg REG
1505    into the stack frame of FUNCTION (0 means the current function).
1506    TYPE is the user-level data type of the value hold in the register.
1507    DECL_MODE is the machine mode of the user-level data type.
1508    ORIGINAL_REGNO must be set if the real regno is not visible in REG.
1509    VOLATILE_P is true if this is for a "volatile" decl.
1510    USED_P is true if this reg might have already been used in an insn.
1511    CONSECUTIVE_P is true if the stack slot assigned to reg must be
1512    consecutive with the previous stack slot.  */
1513
1514 static void
1515 put_reg_into_stack (struct function *function, rtx reg, tree type,
1516                     enum machine_mode decl_mode, unsigned int original_regno,
1517                     bool volatile_p, bool used_p, bool consecutive_p,
1518                     htab_t ht)
1519 {
1520   struct function *func = function ? function : cfun;
1521   enum machine_mode mode = GET_MODE (reg);
1522   unsigned int regno = original_regno;
1523   rtx new = 0;
1524
1525   if (regno == 0)
1526     regno = REGNO (reg);
1527
1528   if (regno < func->x_max_parm_reg)
1529     {
1530       if (!func->x_parm_reg_stack_loc)
1531         abort ();
1532       new = func->x_parm_reg_stack_loc[regno];
1533     }
1534
1535   if (new == 0)
1536     new = assign_stack_local_1 (decl_mode, GET_MODE_SIZE (decl_mode),
1537                                 consecutive_p ? -2 : 0, func);
1538
1539   PUT_CODE (reg, MEM);
1540   PUT_MODE (reg, decl_mode);
1541   XEXP (reg, 0) = XEXP (new, 0);
1542   MEM_ATTRS (reg) = 0;
1543   /* `volatil' bit means one thing for MEMs, another entirely for REGs.  */
1544   MEM_VOLATILE_P (reg) = volatile_p;
1545
1546   /* If this is a memory ref that contains aggregate components,
1547      mark it as such for cse and loop optimize.  If we are reusing a
1548      previously generated stack slot, then we need to copy the bit in
1549      case it was set for other reasons.  For instance, it is set for
1550      __builtin_va_alist.  */
1551   if (type)
1552     {
1553       MEM_SET_IN_STRUCT_P (reg,
1554                            AGGREGATE_TYPE_P (type) || MEM_IN_STRUCT_P (new));
1555       set_mem_alias_set (reg, get_alias_set (type));
1556     }
1557
1558   if (used_p)
1559     schedule_fixup_var_refs (function, reg, type, mode, ht);
1560 }
1561
1562 /* Make sure that all refs to the variable, previously made
1563    when it was a register, are fixed up to be valid again.
1564    See function above for meaning of arguments.  */
1565
1566 static void
1567 schedule_fixup_var_refs (struct function *function, rtx reg, tree type,
1568                          enum machine_mode promoted_mode, htab_t ht)
1569 {
1570   int unsigned_p = type ? TYPE_UNSIGNED (type) : 0;
1571
1572   if (function != 0)
1573     {
1574       struct var_refs_queue *temp;
1575
1576       temp = ggc_alloc (sizeof (struct var_refs_queue));
1577       temp->modified = reg;
1578       temp->promoted_mode = promoted_mode;
1579       temp->unsignedp = unsigned_p;
1580       temp->next = function->fixup_var_refs_queue;
1581       function->fixup_var_refs_queue = temp;
1582     }
1583   else
1584     /* Variable is local; fix it up now.  */
1585     fixup_var_refs (reg, promoted_mode, unsigned_p, reg, ht);
1586 }
1587 \f
1588 static void
1589 fixup_var_refs (rtx var, enum machine_mode promoted_mode, int unsignedp,
1590                 rtx may_share, htab_t ht)
1591 {
1592   tree pending;
1593   rtx first_insn = get_insns ();
1594   struct sequence_stack *stack = seq_stack;
1595   tree rtl_exps = rtl_expr_chain;
1596   int save_volatile_ok = volatile_ok;
1597
1598   /* If there's a hash table, it must record all uses of VAR.  */
1599   if (ht)
1600     {
1601       if (stack != 0)
1602         abort ();
1603       fixup_var_refs_insns_with_hash (ht, var, promoted_mode, unsignedp,
1604                                       may_share);
1605       return;
1606     }
1607
1608   /* Volatile is valid in MEMs because all we're doing in changing the
1609      address inside.  */
1610   volatile_ok = 1;
1611   fixup_var_refs_insns (first_insn, var, promoted_mode, unsignedp,
1612                         stack == 0, may_share);
1613
1614   /* Scan all pending sequences too.  */
1615   for (; stack; stack = stack->next)
1616     {
1617       push_to_full_sequence (stack->first, stack->last);
1618       fixup_var_refs_insns (stack->first, var, promoted_mode, unsignedp,
1619                             stack->next != 0, may_share);
1620       /* Update bounds of sequence in case we added insns.  */
1621       stack->first = get_insns ();
1622       stack->last = get_last_insn ();
1623       end_sequence ();
1624     }
1625
1626   /* Scan all waiting RTL_EXPRs too.  */
1627   for (pending = rtl_exps; pending; pending = TREE_CHAIN (pending))
1628     {
1629       rtx seq = RTL_EXPR_SEQUENCE (TREE_VALUE (pending));
1630       if (seq != const0_rtx && seq != 0)
1631         {
1632           push_to_sequence (seq);
1633           fixup_var_refs_insns (seq, var, promoted_mode, unsignedp, 0,
1634                                 may_share);
1635           end_sequence ();
1636         }
1637     }
1638
1639   volatile_ok = save_volatile_ok;
1640 }
1641 \f
1642 /* REPLACEMENTS is a pointer to a list of the struct fixup_replacement and X is
1643    some part of an insn.  Return a struct fixup_replacement whose OLD
1644    value is equal to X.  Allocate a new structure if no such entry exists.  */
1645
1646 static struct fixup_replacement *
1647 find_fixup_replacement (struct fixup_replacement **replacements, rtx x)
1648 {
1649   struct fixup_replacement *p;
1650
1651   /* See if we have already replaced this.  */
1652   for (p = *replacements; p != 0 && ! rtx_equal_p (p->old, x); p = p->next)
1653     ;
1654
1655   if (p == 0)
1656     {
1657       p = xmalloc (sizeof (struct fixup_replacement));
1658       p->old = x;
1659       p->new = 0;
1660       p->next = *replacements;
1661       *replacements = p;
1662     }
1663
1664   return p;
1665 }
1666
1667 /* Scan the insn-chain starting with INSN for refs to VAR and fix them
1668    up.  TOPLEVEL is nonzero if this chain is the main chain of insns
1669    for the current function.  MAY_SHARE is either a MEM that is not
1670    to be unshared or a list of them.  */
1671
1672 static void
1673 fixup_var_refs_insns (rtx insn, rtx var, enum machine_mode promoted_mode,
1674                       int unsignedp, int toplevel, rtx may_share)
1675 {
1676   while (insn)
1677     {
1678       /* fixup_var_refs_insn might modify insn, so save its next
1679          pointer now.  */
1680       rtx next = NEXT_INSN (insn);
1681
1682       if (INSN_P (insn))
1683         fixup_var_refs_insn (insn, var, promoted_mode, unsignedp, toplevel,
1684                              may_share);
1685
1686       insn = next;
1687     }
1688 }
1689
1690 /* Look up the insns which reference VAR in HT and fix them up.  Other
1691    arguments are the same as fixup_var_refs_insns.  */
1692
1693 static void
1694 fixup_var_refs_insns_with_hash (htab_t ht, rtx var, enum machine_mode promoted_mode,
1695                                 int unsignedp, rtx may_share)
1696 {
1697   struct insns_for_mem_entry tmp;
1698   struct insns_for_mem_entry *ime;
1699   rtx insn_list;
1700
1701   tmp.key = var;
1702   ime = htab_find (ht, &tmp);
1703   for (insn_list = ime->insns; insn_list != 0; insn_list = XEXP (insn_list, 1))
1704     if (INSN_P (XEXP (insn_list, 0)))
1705       fixup_var_refs_insn (XEXP (insn_list, 0), var, promoted_mode,
1706                            unsignedp, 1, may_share);
1707 }
1708
1709
1710 /* Per-insn processing by fixup_var_refs_insns(_with_hash).  INSN is
1711    the insn under examination, VAR is the variable to fix up
1712    references to, PROMOTED_MODE and UNSIGNEDP describe VAR, and
1713    TOPLEVEL is nonzero if this is the main insn chain for this
1714    function.  */
1715
1716 static void
1717 fixup_var_refs_insn (rtx insn, rtx var, enum machine_mode promoted_mode,
1718                      int unsignedp, int toplevel, rtx no_share)
1719 {
1720   rtx call_dest = 0;
1721   rtx set, prev, prev_set;
1722   rtx note;
1723
1724   /* Remember the notes in case we delete the insn.  */
1725   note = REG_NOTES (insn);
1726
1727   /* If this is a CLOBBER of VAR, delete it.
1728
1729      If it has a REG_LIBCALL note, delete the REG_LIBCALL
1730      and REG_RETVAL notes too.  */
1731   if (GET_CODE (PATTERN (insn)) == CLOBBER
1732       && (XEXP (PATTERN (insn), 0) == var
1733           || (GET_CODE (XEXP (PATTERN (insn), 0)) == CONCAT
1734               && (XEXP (XEXP (PATTERN (insn), 0), 0) == var
1735                   || XEXP (XEXP (PATTERN (insn), 0), 1) == var))))
1736     {
1737       if ((note = find_reg_note (insn, REG_LIBCALL, NULL_RTX)) != 0)
1738         /* The REG_LIBCALL note will go away since we are going to
1739            turn INSN into a NOTE, so just delete the
1740            corresponding REG_RETVAL note.  */
1741         remove_note (XEXP (note, 0),
1742                      find_reg_note (XEXP (note, 0), REG_RETVAL,
1743                                     NULL_RTX));
1744
1745       delete_insn (insn);
1746     }
1747
1748   /* The insn to load VAR from a home in the arglist
1749      is now a no-op.  When we see it, just delete it.
1750      Similarly if this is storing VAR from a register from which
1751      it was loaded in the previous insn.  This will occur
1752      when an ADDRESSOF was made for an arglist slot.  */
1753   else if (toplevel
1754            && (set = single_set (insn)) != 0
1755            && SET_DEST (set) == var
1756            /* If this represents the result of an insn group,
1757               don't delete the insn.  */
1758            && find_reg_note (insn, REG_RETVAL, NULL_RTX) == 0
1759            && (rtx_equal_p (SET_SRC (set), var)
1760                || (REG_P (SET_SRC (set))
1761                    && (prev = prev_nonnote_insn (insn)) != 0
1762                    && (prev_set = single_set (prev)) != 0
1763                    && SET_DEST (prev_set) == SET_SRC (set)
1764                    && rtx_equal_p (SET_SRC (prev_set), var))))
1765     {
1766       delete_insn (insn);
1767     }
1768   else
1769     {
1770       struct fixup_replacement *replacements = 0;
1771       rtx next_insn = NEXT_INSN (insn);
1772
1773       if (SMALL_REGISTER_CLASSES)
1774         {
1775           /* If the insn that copies the results of a CALL_INSN
1776              into a pseudo now references VAR, we have to use an
1777              intermediate pseudo since we want the life of the
1778              return value register to be only a single insn.
1779
1780              If we don't use an intermediate pseudo, such things as
1781              address computations to make the address of VAR valid
1782              if it is not can be placed between the CALL_INSN and INSN.
1783
1784              To make sure this doesn't happen, we record the destination
1785              of the CALL_INSN and see if the next insn uses both that
1786              and VAR.  */
1787
1788           if (call_dest != 0 && GET_CODE (insn) == INSN
1789               && reg_mentioned_p (var, PATTERN (insn))
1790               && reg_mentioned_p (call_dest, PATTERN (insn)))
1791             {
1792               rtx temp = gen_reg_rtx (GET_MODE (call_dest));
1793
1794               emit_insn_before (gen_move_insn (temp, call_dest), insn);
1795
1796               PATTERN (insn) = replace_rtx (PATTERN (insn),
1797                                             call_dest, temp);
1798             }
1799
1800           if (GET_CODE (insn) == CALL_INSN
1801               && GET_CODE (PATTERN (insn)) == SET)
1802             call_dest = SET_DEST (PATTERN (insn));
1803           else if (GET_CODE (insn) == CALL_INSN
1804                    && GET_CODE (PATTERN (insn)) == PARALLEL
1805                    && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET)
1806             call_dest = SET_DEST (XVECEXP (PATTERN (insn), 0, 0));
1807           else
1808             call_dest = 0;
1809         }
1810
1811       /* See if we have to do anything to INSN now that VAR is in
1812          memory.  If it needs to be loaded into a pseudo, use a single
1813          pseudo for the entire insn in case there is a MATCH_DUP
1814          between two operands.  We pass a pointer to the head of
1815          a list of struct fixup_replacements.  If fixup_var_refs_1
1816          needs to allocate pseudos or replacement MEMs (for SUBREGs),
1817          it will record them in this list.
1818
1819          If it allocated a pseudo for any replacement, we copy into
1820          it here.  */
1821
1822       fixup_var_refs_1 (var, promoted_mode, &PATTERN (insn), insn,
1823                         &replacements, no_share);
1824
1825       while (replacements)
1826         {
1827           struct fixup_replacement *next;
1828
1829           if (REG_P (replacements->new))
1830             {
1831               rtx insert_before;
1832               rtx seq;
1833
1834               /* OLD might be a (subreg (mem)).  */
1835               if (GET_CODE (replacements->old) == SUBREG)
1836                 replacements->old
1837                   = fixup_memory_subreg (replacements->old, insn,
1838                                          promoted_mode, 0);
1839               else
1840                 replacements->old
1841                   = fixup_stack_1 (replacements->old, insn);
1842
1843               insert_before = insn;
1844
1845               /* If we are changing the mode, do a conversion.
1846                  This might be wasteful, but combine.c will
1847                  eliminate much of the waste.  */
1848
1849               if (GET_MODE (replacements->new)
1850                   != GET_MODE (replacements->old))
1851                 {
1852                   start_sequence ();
1853                   convert_move (replacements->new,
1854                                 replacements->old, unsignedp);
1855                   seq = get_insns ();
1856                   end_sequence ();
1857                 }
1858               else
1859                 seq = gen_move_insn (replacements->new,
1860                                      replacements->old);
1861
1862               emit_insn_before (seq, insert_before);
1863             }
1864
1865           next = replacements->next;
1866           free (replacements);
1867           replacements = next;
1868         }
1869     }
1870
1871   /* Also fix up any invalid exprs in the REG_NOTES of this insn.
1872      But don't touch other insns referred to by reg-notes;
1873      we will get them elsewhere.  */
1874   while (note)
1875     {
1876       if (GET_CODE (note) != INSN_LIST)
1877         XEXP (note, 0)
1878           = walk_fixup_memory_subreg (XEXP (note, 0), insn, var,
1879                                       promoted_mode, 1);
1880       note = XEXP (note, 1);
1881     }
1882 }
1883 \f
1884 /* VAR is a MEM that used to be a pseudo register with mode PROMOTED_MODE.
1885    See if the rtx expression at *LOC in INSN needs to be changed.
1886
1887    REPLACEMENTS is a pointer to a list head that starts out zero, but may
1888    contain a list of original rtx's and replacements. If we find that we need
1889    to modify this insn by replacing a memory reference with a pseudo or by
1890    making a new MEM to implement a SUBREG, we consult that list to see if
1891    we have already chosen a replacement. If none has already been allocated,
1892    we allocate it and update the list.  fixup_var_refs_insn will copy VAR
1893    or the SUBREG, as appropriate, to the pseudo.  */
1894
1895 static void
1896 fixup_var_refs_1 (rtx var, enum machine_mode promoted_mode, rtx *loc, rtx insn,
1897                   struct fixup_replacement **replacements, rtx no_share)
1898 {
1899   int i;
1900   rtx x = *loc;
1901   RTX_CODE code = GET_CODE (x);
1902   const char *fmt;
1903   rtx tem, tem1;
1904   struct fixup_replacement *replacement;
1905
1906   switch (code)
1907     {
1908     case ADDRESSOF:
1909       if (XEXP (x, 0) == var)
1910         {
1911           /* Prevent sharing of rtl that might lose.  */
1912           rtx sub = copy_rtx (XEXP (var, 0));
1913
1914           if (! validate_change (insn, loc, sub, 0))
1915             {
1916               rtx y = gen_reg_rtx (GET_MODE (sub));
1917               rtx seq, new_insn;
1918
1919               /* We should be able to replace with a register or all is lost.
1920                  Note that we can't use validate_change to verify this, since
1921                  we're not caring for replacing all dups simultaneously.  */
1922               if (! validate_replace_rtx (*loc, y, insn))
1923                 abort ();
1924
1925               /* Careful!  First try to recognize a direct move of the
1926                  value, mimicking how things are done in gen_reload wrt
1927                  PLUS.  Consider what happens when insn is a conditional
1928                  move instruction and addsi3 clobbers flags.  */
1929
1930               start_sequence ();
1931               new_insn = emit_insn (gen_rtx_SET (VOIDmode, y, sub));
1932               seq = get_insns ();
1933               end_sequence ();
1934
1935               if (recog_memoized (new_insn) < 0)
1936                 {
1937                   /* That failed.  Fall back on force_operand and hope.  */
1938
1939                   start_sequence ();
1940                   sub = force_operand (sub, y);
1941                   if (sub != y)
1942                     emit_insn (gen_move_insn (y, sub));
1943                   seq = get_insns ();
1944                   end_sequence ();
1945                 }
1946
1947 #ifdef HAVE_cc0
1948               /* Don't separate setter from user.  */
1949               if (PREV_INSN (insn) && sets_cc0_p (PREV_INSN (insn)))
1950                 insn = PREV_INSN (insn);
1951 #endif
1952
1953               emit_insn_before (seq, insn);
1954             }
1955         }
1956       return;
1957
1958     case MEM:
1959       if (var == x)
1960         {
1961           /* If we already have a replacement, use it.  Otherwise,
1962              try to fix up this address in case it is invalid.  */
1963
1964           replacement = find_fixup_replacement (replacements, var);
1965           if (replacement->new)
1966             {
1967               *loc = replacement->new;
1968               return;
1969             }
1970
1971           *loc = replacement->new = x = fixup_stack_1 (x, insn);
1972
1973           /* Unless we are forcing memory to register or we changed the mode,
1974              we can leave things the way they are if the insn is valid.  */
1975
1976           INSN_CODE (insn) = -1;
1977           if (! flag_force_mem && GET_MODE (x) == promoted_mode
1978               && recog_memoized (insn) >= 0)
1979             return;
1980
1981           *loc = replacement->new = gen_reg_rtx (promoted_mode);
1982           return;
1983         }
1984
1985       /* If X contains VAR, we need to unshare it here so that we update
1986          each occurrence separately.  But all identical MEMs in one insn
1987          must be replaced with the same rtx because of the possibility of
1988          MATCH_DUPs.  */
1989
1990       if (reg_mentioned_p (var, x))
1991         {
1992           replacement = find_fixup_replacement (replacements, x);
1993           if (replacement->new == 0)
1994             replacement->new = copy_most_rtx (x, no_share);
1995
1996           *loc = x = replacement->new;
1997           code = GET_CODE (x);
1998         }
1999       break;
2000
2001     case REG:
2002     case CC0:
2003     case PC:
2004     case CONST_INT:
2005     case CONST:
2006     case SYMBOL_REF:
2007     case LABEL_REF:
2008     case CONST_DOUBLE:
2009     case CONST_VECTOR:
2010       return;
2011
2012     case SIGN_EXTRACT:
2013     case ZERO_EXTRACT:
2014       /* Note that in some cases those types of expressions are altered
2015          by optimize_bit_field, and do not survive to get here.  */
2016       if (XEXP (x, 0) == var
2017           || (GET_CODE (XEXP (x, 0)) == SUBREG
2018               && SUBREG_REG (XEXP (x, 0)) == var))
2019         {
2020           /* Get TEM as a valid MEM in the mode presently in the insn.
2021
2022              We don't worry about the possibility of MATCH_DUP here; it
2023              is highly unlikely and would be tricky to handle.  */
2024
2025           tem = XEXP (x, 0);
2026           if (GET_CODE (tem) == SUBREG)
2027             {
2028               if (GET_MODE_BITSIZE (GET_MODE (tem))
2029                   > GET_MODE_BITSIZE (GET_MODE (var)))
2030                 {
2031                   replacement = find_fixup_replacement (replacements, var);
2032                   if (replacement->new == 0)
2033                     replacement->new = gen_reg_rtx (GET_MODE (var));
2034                   SUBREG_REG (tem) = replacement->new;
2035
2036                   /* The following code works only if we have a MEM, so we
2037                      need to handle the subreg here.  We directly substitute
2038                      it assuming that a subreg must be OK here.  We already
2039                      scheduled a replacement to copy the mem into the
2040                      subreg.  */
2041                   XEXP (x, 0) = tem;
2042                   return;
2043                 }
2044               else
2045                 tem = fixup_memory_subreg (tem, insn, promoted_mode, 0);
2046             }
2047           else
2048             tem = fixup_stack_1 (tem, insn);
2049
2050           /* Unless we want to load from memory, get TEM into the proper mode
2051              for an extract from memory.  This can only be done if the
2052              extract is at a constant position and length.  */
2053
2054           if (! flag_force_mem && GET_CODE (XEXP (x, 1)) == CONST_INT
2055               && GET_CODE (XEXP (x, 2)) == CONST_INT
2056               && ! mode_dependent_address_p (XEXP (tem, 0))
2057               && ! MEM_VOLATILE_P (tem))
2058             {
2059               enum machine_mode wanted_mode = VOIDmode;
2060               enum machine_mode is_mode = GET_MODE (tem);
2061               HOST_WIDE_INT pos = INTVAL (XEXP (x, 2));
2062
2063               if (GET_CODE (x) == ZERO_EXTRACT)
2064                 {
2065                   enum machine_mode new_mode
2066                     = mode_for_extraction (EP_extzv, 1);
2067                   if (new_mode != MAX_MACHINE_MODE)
2068                     wanted_mode = new_mode;
2069                 }
2070               else if (GET_CODE (x) == SIGN_EXTRACT)
2071                 {
2072                   enum machine_mode new_mode
2073                     = mode_for_extraction (EP_extv, 1);
2074                   if (new_mode != MAX_MACHINE_MODE)
2075                     wanted_mode = new_mode;
2076                 }
2077
2078               /* If we have a narrower mode, we can do something.  */
2079               if (wanted_mode != VOIDmode
2080                   && GET_MODE_SIZE (wanted_mode) < GET_MODE_SIZE (is_mode))
2081                 {
2082                   HOST_WIDE_INT offset = pos / BITS_PER_UNIT;
2083                   rtx old_pos = XEXP (x, 2);
2084                   rtx newmem;
2085
2086                   /* If the bytes and bits are counted differently, we
2087                      must adjust the offset.  */
2088                   if (BYTES_BIG_ENDIAN != BITS_BIG_ENDIAN)
2089                     offset = (GET_MODE_SIZE (is_mode)
2090                               - GET_MODE_SIZE (wanted_mode) - offset);
2091
2092                   pos %= GET_MODE_BITSIZE (wanted_mode);
2093
2094                   newmem = adjust_address_nv (tem, wanted_mode, offset);
2095
2096                   /* Make the change and see if the insn remains valid.  */
2097                   INSN_CODE (insn) = -1;
2098                   XEXP (x, 0) = newmem;
2099                   XEXP (x, 2) = GEN_INT (pos);
2100
2101                   if (recog_memoized (insn) >= 0)
2102                     return;
2103
2104                   /* Otherwise, restore old position.  XEXP (x, 0) will be
2105                      restored later.  */
2106                   XEXP (x, 2) = old_pos;
2107                 }
2108             }
2109
2110           /* If we get here, the bitfield extract insn can't accept a memory
2111              reference.  Copy the input into a register.  */
2112
2113           tem1 = gen_reg_rtx (GET_MODE (tem));
2114           emit_insn_before (gen_move_insn (tem1, tem), insn);
2115           XEXP (x, 0) = tem1;
2116           return;
2117         }
2118       break;
2119
2120     case SUBREG:
2121       if (SUBREG_REG (x) == var)
2122         {
2123           /* If this is a special SUBREG made because VAR was promoted
2124              from a wider mode, replace it with VAR and call ourself
2125              recursively, this time saying that the object previously
2126              had its current mode (by virtue of the SUBREG).  */
2127
2128           if (SUBREG_PROMOTED_VAR_P (x))
2129             {
2130               *loc = var;
2131               fixup_var_refs_1 (var, GET_MODE (var), loc, insn, replacements,
2132                                 no_share);
2133               return;
2134             }
2135
2136           /* If this SUBREG makes VAR wider, it has become a paradoxical
2137              SUBREG with VAR in memory, but these aren't allowed at this
2138              stage of the compilation.  So load VAR into a pseudo and take
2139              a SUBREG of that pseudo.  */
2140           if (GET_MODE_SIZE (GET_MODE (x)) > GET_MODE_SIZE (GET_MODE (var)))
2141             {
2142               replacement = find_fixup_replacement (replacements, var);
2143               if (replacement->new == 0)
2144                 replacement->new = gen_reg_rtx (promoted_mode);
2145               SUBREG_REG (x) = replacement->new;
2146               return;
2147             }
2148
2149           /* See if we have already found a replacement for this SUBREG.
2150              If so, use it.  Otherwise, make a MEM and see if the insn
2151              is recognized.  If not, or if we should force MEM into a register,
2152              make a pseudo for this SUBREG.  */
2153           replacement = find_fixup_replacement (replacements, x);
2154           if (replacement->new)
2155             {
2156               enum machine_mode mode = GET_MODE (x);
2157               *loc = replacement->new;
2158
2159               /* Careful!  We may have just replaced a SUBREG by a MEM, which
2160                  means that the insn may have become invalid again.  We can't
2161                  in this case make a new replacement since we already have one
2162                  and we must deal with MATCH_DUPs.  */
2163               if (GET_CODE (replacement->new) == MEM)
2164                 {
2165                   INSN_CODE (insn) = -1;
2166                   if (recog_memoized (insn) >= 0)
2167                     return;
2168
2169                   fixup_var_refs_1 (replacement->new, mode, &PATTERN (insn),
2170                                     insn, replacements, no_share);
2171                 }
2172
2173               return;
2174             }
2175
2176           replacement->new = *loc = fixup_memory_subreg (x, insn,
2177                                                          promoted_mode, 0);
2178
2179           INSN_CODE (insn) = -1;
2180           if (! flag_force_mem && recog_memoized (insn) >= 0)
2181             return;
2182
2183           *loc = replacement->new = gen_reg_rtx (GET_MODE (x));
2184           return;
2185         }
2186       break;
2187
2188     case SET:
2189       /* First do special simplification of bit-field references.  */
2190       if (GET_CODE (SET_DEST (x)) == SIGN_EXTRACT
2191           || GET_CODE (SET_DEST (x)) == ZERO_EXTRACT)
2192         optimize_bit_field (x, insn, 0);
2193       if (GET_CODE (SET_SRC (x)) == SIGN_EXTRACT
2194           || GET_CODE (SET_SRC (x)) == ZERO_EXTRACT)
2195         optimize_bit_field (x, insn, 0);
2196
2197       /* For a paradoxical SUBREG inside a ZERO_EXTRACT, load the object
2198          into a register and then store it back out.  */
2199       if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
2200           && GET_CODE (XEXP (SET_DEST (x), 0)) == SUBREG
2201           && SUBREG_REG (XEXP (SET_DEST (x), 0)) == var
2202           && (GET_MODE_SIZE (GET_MODE (XEXP (SET_DEST (x), 0)))
2203               > GET_MODE_SIZE (GET_MODE (var))))
2204         {
2205           replacement = find_fixup_replacement (replacements, var);
2206           if (replacement->new == 0)
2207             replacement->new = gen_reg_rtx (GET_MODE (var));
2208
2209           SUBREG_REG (XEXP (SET_DEST (x), 0)) = replacement->new;
2210           emit_insn_after (gen_move_insn (var, replacement->new), insn);
2211         }
2212
2213       /* If SET_DEST is now a paradoxical SUBREG, put the result of this
2214          insn into a pseudo and store the low part of the pseudo into VAR.  */
2215       if (GET_CODE (SET_DEST (x)) == SUBREG
2216           && SUBREG_REG (SET_DEST (x)) == var
2217           && (GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
2218               > GET_MODE_SIZE (GET_MODE (var))))
2219         {
2220           SET_DEST (x) = tem = gen_reg_rtx (GET_MODE (SET_DEST (x)));
2221           emit_insn_after (gen_move_insn (var, gen_lowpart (GET_MODE (var),
2222                                                             tem)),
2223                            insn);
2224           break;
2225         }
2226
2227       {
2228         rtx dest = SET_DEST (x);
2229         rtx src = SET_SRC (x);
2230         rtx outerdest = dest;
2231
2232         while (GET_CODE (dest) == SUBREG || GET_CODE (dest) == STRICT_LOW_PART
2233                || GET_CODE (dest) == SIGN_EXTRACT
2234                || GET_CODE (dest) == ZERO_EXTRACT)
2235           dest = XEXP (dest, 0);
2236
2237         if (GET_CODE (src) == SUBREG)
2238           src = SUBREG_REG (src);
2239
2240         /* If VAR does not appear at the top level of the SET
2241            just scan the lower levels of the tree.  */
2242
2243         if (src != var && dest != var)
2244           break;
2245
2246         /* We will need to rerecognize this insn.  */
2247         INSN_CODE (insn) = -1;
2248
2249         if (GET_CODE (outerdest) == ZERO_EXTRACT && dest == var
2250             && mode_for_extraction (EP_insv, -1) != MAX_MACHINE_MODE)
2251           {
2252             /* Since this case will return, ensure we fixup all the
2253                operands here.  */
2254             fixup_var_refs_1 (var, promoted_mode, &XEXP (outerdest, 1),
2255                               insn, replacements, no_share);
2256             fixup_var_refs_1 (var, promoted_mode, &XEXP (outerdest, 2),
2257                               insn, replacements, no_share);
2258             fixup_var_refs_1 (var, promoted_mode, &SET_SRC (x),
2259                               insn, replacements, no_share);
2260
2261             tem = XEXP (outerdest, 0);
2262
2263             /* Clean up (SUBREG:SI (MEM:mode ...) 0)
2264                that may appear inside a ZERO_EXTRACT.
2265                This was legitimate when the MEM was a REG.  */
2266             if (GET_CODE (tem) == SUBREG
2267                 && SUBREG_REG (tem) == var)
2268               tem = fixup_memory_subreg (tem, insn, promoted_mode, 0);
2269             else
2270               tem = fixup_stack_1 (tem, insn);
2271
2272             if (GET_CODE (XEXP (outerdest, 1)) == CONST_INT
2273                 && GET_CODE (XEXP (outerdest, 2)) == CONST_INT
2274                 && ! mode_dependent_address_p (XEXP (tem, 0))
2275                 && ! MEM_VOLATILE_P (tem))
2276               {
2277                 enum machine_mode wanted_mode;
2278                 enum machine_mode is_mode = GET_MODE (tem);
2279                 HOST_WIDE_INT pos = INTVAL (XEXP (outerdest, 2));
2280
2281                 wanted_mode = mode_for_extraction (EP_insv, 0);
2282
2283                 /* If we have a narrower mode, we can do something.  */
2284                 if (GET_MODE_SIZE (wanted_mode) < GET_MODE_SIZE (is_mode))
2285                   {
2286                     HOST_WIDE_INT offset = pos / BITS_PER_UNIT;
2287                     rtx old_pos = XEXP (outerdest, 2);
2288                     rtx newmem;
2289
2290                     if (BYTES_BIG_ENDIAN != BITS_BIG_ENDIAN)
2291                       offset = (GET_MODE_SIZE (is_mode)
2292                                 - GET_MODE_SIZE (wanted_mode) - offset);
2293
2294                     pos %= GET_MODE_BITSIZE (wanted_mode);
2295
2296                     newmem = adjust_address_nv (tem, wanted_mode, offset);
2297
2298                     /* Make the change and see if the insn remains valid.  */
2299                     INSN_CODE (insn) = -1;
2300                     XEXP (outerdest, 0) = newmem;
2301                     XEXP (outerdest, 2) = GEN_INT (pos);
2302
2303                     if (recog_memoized (insn) >= 0)
2304                       return;
2305
2306                     /* Otherwise, restore old position.  XEXP (x, 0) will be
2307                        restored later.  */
2308                     XEXP (outerdest, 2) = old_pos;
2309                   }
2310               }
2311
2312             /* If we get here, the bit-field store doesn't allow memory
2313                or isn't located at a constant position.  Load the value into
2314                a register, do the store, and put it back into memory.  */
2315
2316             tem1 = gen_reg_rtx (GET_MODE (tem));
2317             emit_insn_before (gen_move_insn (tem1, tem), insn);
2318             emit_insn_after (gen_move_insn (tem, tem1), insn);
2319             XEXP (outerdest, 0) = tem1;
2320             return;
2321           }
2322
2323         /* STRICT_LOW_PART is a no-op on memory references
2324            and it can cause combinations to be unrecognizable,
2325            so eliminate it.  */
2326
2327         if (dest == var && GET_CODE (SET_DEST (x)) == STRICT_LOW_PART)
2328           SET_DEST (x) = XEXP (SET_DEST (x), 0);
2329
2330         /* A valid insn to copy VAR into or out of a register
2331            must be left alone, to avoid an infinite loop here.
2332            If the reference to VAR is by a subreg, fix that up,
2333            since SUBREG is not valid for a memref.
2334            Also fix up the address of the stack slot.
2335
2336            Note that we must not try to recognize the insn until
2337            after we know that we have valid addresses and no
2338            (subreg (mem ...) ...) constructs, since these interfere
2339            with determining the validity of the insn.  */
2340
2341         if ((SET_SRC (x) == var
2342              || (GET_CODE (SET_SRC (x)) == SUBREG
2343                  && SUBREG_REG (SET_SRC (x)) == var))
2344             && (REG_P (SET_DEST (x))
2345                 || (GET_CODE (SET_DEST (x)) == SUBREG
2346                     && REG_P (SUBREG_REG (SET_DEST (x)))))
2347             && GET_MODE (var) == promoted_mode
2348             && x == single_set (insn))
2349           {
2350             rtx pat, last;
2351
2352             if (GET_CODE (SET_SRC (x)) == SUBREG
2353                 && (GET_MODE_SIZE (GET_MODE (SET_SRC (x)))
2354                     > GET_MODE_SIZE (GET_MODE (var))))
2355               {
2356                 /* This (subreg VAR) is now a paradoxical subreg.  We need
2357                    to replace VAR instead of the subreg.  */
2358                 replacement = find_fixup_replacement (replacements, var);
2359                 if (replacement->new == NULL_RTX)
2360                   replacement->new = gen_reg_rtx (GET_MODE (var));
2361                 SUBREG_REG (SET_SRC (x)) = replacement->new;
2362               }
2363             else
2364               {
2365                 replacement = find_fixup_replacement (replacements, SET_SRC (x));
2366                 if (replacement->new)
2367                   SET_SRC (x) = replacement->new;
2368                 else if (GET_CODE (SET_SRC (x)) == SUBREG)
2369                   SET_SRC (x) = replacement->new
2370                     = fixup_memory_subreg (SET_SRC (x), insn, promoted_mode,
2371                                            0);
2372                 else
2373                   SET_SRC (x) = replacement->new
2374                     = fixup_stack_1 (SET_SRC (x), insn);
2375               }
2376
2377             if (recog_memoized (insn) >= 0)
2378               return;
2379
2380             /* INSN is not valid, but we know that we want to
2381                copy SET_SRC (x) to SET_DEST (x) in some way.  So
2382                we generate the move and see whether it requires more
2383                than one insn.  If it does, we emit those insns and
2384                delete INSN.  Otherwise, we can just replace the pattern
2385                of INSN; we have already verified above that INSN has
2386                no other function that to do X.  */
2387
2388             pat = gen_move_insn (SET_DEST (x), SET_SRC (x));
2389             if (NEXT_INSN (pat) != NULL_RTX)
2390               {
2391                 last = emit_insn_before (pat, insn);
2392
2393                 /* INSN might have REG_RETVAL or other important notes, so
2394                    we need to store the pattern of the last insn in the
2395                    sequence into INSN similarly to the normal case.  LAST
2396                    should not have REG_NOTES, but we allow them if INSN has
2397                    no REG_NOTES.  */
2398                 if (REG_NOTES (last) && REG_NOTES (insn))
2399                   abort ();
2400                 if (REG_NOTES (last))
2401                   REG_NOTES (insn) = REG_NOTES (last);
2402                 PATTERN (insn) = PATTERN (last);
2403
2404                 delete_insn (last);
2405               }
2406             else
2407               PATTERN (insn) = PATTERN (pat);
2408
2409             return;
2410           }
2411
2412         if ((SET_DEST (x) == var
2413              || (GET_CODE (SET_DEST (x)) == SUBREG
2414                  && SUBREG_REG (SET_DEST (x)) == var))
2415             && (REG_P (SET_SRC (x))
2416                 || (GET_CODE (SET_SRC (x)) == SUBREG
2417                     && REG_P (SUBREG_REG (SET_SRC (x)))))
2418             && GET_MODE (var) == promoted_mode
2419             && x == single_set (insn))
2420           {
2421             rtx pat, last;
2422
2423             if (GET_CODE (SET_DEST (x)) == SUBREG)
2424               SET_DEST (x) = fixup_memory_subreg (SET_DEST (x), insn,
2425                                                   promoted_mode, 0);
2426             else
2427               SET_DEST (x) = fixup_stack_1 (SET_DEST (x), insn);
2428
2429             if (recog_memoized (insn) >= 0)
2430               return;
2431
2432             pat = gen_move_insn (SET_DEST (x), SET_SRC (x));
2433             if (NEXT_INSN (pat) != NULL_RTX)
2434               {
2435                 last = emit_insn_before (pat, insn);
2436
2437                 /* INSN might have REG_RETVAL or other important notes, so
2438                    we need to store the pattern of the last insn in the
2439                    sequence into INSN similarly to the normal case.  LAST
2440                    should not have REG_NOTES, but we allow them if INSN has
2441                    no REG_NOTES.  */
2442                 if (REG_NOTES (last) && REG_NOTES (insn))
2443                   abort ();
2444                 if (REG_NOTES (last))
2445                   REG_NOTES (insn) = REG_NOTES (last);
2446                 PATTERN (insn) = PATTERN (last);
2447
2448                 delete_insn (last);
2449               }
2450             else
2451               PATTERN (insn) = PATTERN (pat);
2452
2453             return;
2454           }
2455
2456         /* Otherwise, storing into VAR must be handled specially
2457            by storing into a temporary and copying that into VAR
2458            with a new insn after this one.  Note that this case
2459            will be used when storing into a promoted scalar since
2460            the insn will now have different modes on the input
2461            and output and hence will be invalid (except for the case
2462            of setting it to a constant, which does not need any
2463            change if it is valid).  We generate extra code in that case,
2464            but combine.c will eliminate it.  */
2465
2466         if (dest == var)
2467           {
2468             rtx temp;
2469             rtx fixeddest = SET_DEST (x);
2470             enum machine_mode temp_mode;
2471
2472             /* STRICT_LOW_PART can be discarded, around a MEM.  */
2473             if (GET_CODE (fixeddest) == STRICT_LOW_PART)
2474               fixeddest = XEXP (fixeddest, 0);
2475             /* Convert (SUBREG (MEM)) to a MEM in a changed mode.  */
2476             if (GET_CODE (fixeddest) == SUBREG)
2477               {
2478                 fixeddest = fixup_memory_subreg (fixeddest, insn,
2479                                                  promoted_mode, 0);
2480                 temp_mode = GET_MODE (fixeddest);
2481               }
2482             else
2483               {
2484                 fixeddest = fixup_stack_1 (fixeddest, insn);
2485                 temp_mode = promoted_mode;
2486               }
2487
2488             temp = gen_reg_rtx (temp_mode);
2489
2490             emit_insn_after (gen_move_insn (fixeddest,
2491                                             gen_lowpart (GET_MODE (fixeddest),
2492                                                          temp)),
2493                              insn);
2494
2495             SET_DEST (x) = temp;
2496           }
2497       }
2498
2499     default:
2500       break;
2501     }
2502
2503   /* Nothing special about this RTX; fix its operands.  */
2504
2505   fmt = GET_RTX_FORMAT (code);
2506   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2507     {
2508       if (fmt[i] == 'e')
2509         fixup_var_refs_1 (var, promoted_mode, &XEXP (x, i), insn, replacements,
2510                           no_share);
2511       else if (fmt[i] == 'E')
2512         {
2513           int j;
2514           for (j = 0; j < XVECLEN (x, i); j++)
2515             fixup_var_refs_1 (var, promoted_mode, &XVECEXP (x, i, j),
2516                               insn, replacements, no_share);
2517         }
2518     }
2519 }
2520 \f
2521 /* Previously, X had the form (SUBREG:m1 (REG:PROMOTED_MODE ...)).
2522    The REG  was placed on the stack, so X now has the form (SUBREG:m1
2523    (MEM:m2 ...)).
2524
2525    Return an rtx (MEM:m1 newaddr) which is equivalent.  If any insns
2526    must be emitted to compute NEWADDR, put them before INSN.
2527
2528    UNCRITICAL nonzero means accept paradoxical subregs.
2529    This is used for subregs found inside REG_NOTES.  */
2530
2531 static rtx
2532 fixup_memory_subreg (rtx x, rtx insn, enum machine_mode promoted_mode, int uncritical)
2533 {
2534   int offset;
2535   rtx mem = SUBREG_REG (x);
2536   rtx addr = XEXP (mem, 0);
2537   enum machine_mode mode = GET_MODE (x);
2538   rtx result, seq;
2539
2540   /* Paradoxical SUBREGs are usually invalid during RTL generation.  */
2541   if (GET_MODE_SIZE (mode) > GET_MODE_SIZE (GET_MODE (mem)) && ! uncritical)
2542     abort ();
2543
2544   offset = SUBREG_BYTE (x);
2545   if (BYTES_BIG_ENDIAN)
2546     /* If the PROMOTED_MODE is wider than the mode of the MEM, adjust
2547        the offset so that it points to the right location within the
2548        MEM.  */
2549     offset -= (GET_MODE_SIZE (promoted_mode) - GET_MODE_SIZE (GET_MODE (mem)));
2550
2551   if (!flag_force_addr
2552       && memory_address_p (mode, plus_constant (addr, offset)))
2553     /* Shortcut if no insns need be emitted.  */
2554     return adjust_address (mem, mode, offset);
2555
2556   start_sequence ();
2557   result = adjust_address (mem, mode, offset);
2558   seq = get_insns ();
2559   end_sequence ();
2560
2561   emit_insn_before (seq, insn);
2562   return result;
2563 }
2564
2565 /* Do fixup_memory_subreg on all (SUBREG (VAR) ...) contained in X.
2566    VAR is a MEM that used to be a pseudo register with mode PROMOTED_MODE.
2567    Replace subexpressions of X in place.
2568    If X itself is a (SUBREG (VAR) ...), return the replacement expression.
2569    Otherwise return X, with its contents possibly altered.
2570
2571    INSN and UNCRITICAL are as for fixup_memory_subreg.  */
2572
2573 static rtx
2574 walk_fixup_memory_subreg (rtx x, rtx insn, rtx var,
2575                           enum machine_mode promoted_mode, int uncritical)
2576 {
2577   enum rtx_code code;
2578   const char *fmt;
2579   int i;
2580
2581   if (x == 0)
2582     return 0;
2583
2584   code = GET_CODE (x);
2585
2586   if (code == SUBREG && SUBREG_REG (x) == var)
2587     return fixup_memory_subreg (x, insn, promoted_mode, uncritical);
2588
2589   /* Nothing special about this RTX; fix its operands.  */
2590
2591   fmt = GET_RTX_FORMAT (code);
2592   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2593     {
2594       if (fmt[i] == 'e')
2595         XEXP (x, i) = walk_fixup_memory_subreg (XEXP (x, i), insn, var,
2596                                                 promoted_mode, uncritical);
2597       else if (fmt[i] == 'E')
2598         {
2599           int j;
2600           for (j = 0; j < XVECLEN (x, i); j++)
2601             XVECEXP (x, i, j)
2602               = walk_fixup_memory_subreg (XVECEXP (x, i, j), insn, var,
2603                                           promoted_mode, uncritical);
2604         }
2605     }
2606   return x;
2607 }
2608 \f
2609 /* For each memory ref within X, if it refers to a stack slot
2610    with an out of range displacement, put the address in a temp register
2611    (emitting new insns before INSN to load these registers)
2612    and alter the memory ref to use that register.
2613    Replace each such MEM rtx with a copy, to avoid clobberage.  */
2614
2615 static rtx
2616 fixup_stack_1 (rtx x, rtx insn)
2617 {
2618   int i;
2619   RTX_CODE code = GET_CODE (x);
2620   const char *fmt;
2621
2622   if (code == MEM)
2623     {
2624       rtx ad = XEXP (x, 0);
2625       /* If we have address of a stack slot but it's not valid
2626          (displacement is too large), compute the sum in a register.  */
2627       if (GET_CODE (ad) == PLUS
2628           && REG_P (XEXP (ad, 0))
2629           && ((REGNO (XEXP (ad, 0)) >= FIRST_VIRTUAL_REGISTER
2630                && REGNO (XEXP (ad, 0)) <= LAST_VIRTUAL_REGISTER)
2631               || REGNO (XEXP (ad, 0)) == FRAME_POINTER_REGNUM
2632 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
2633               || REGNO (XEXP (ad, 0)) == HARD_FRAME_POINTER_REGNUM
2634 #endif
2635               || REGNO (XEXP (ad, 0)) == STACK_POINTER_REGNUM
2636               || REGNO (XEXP (ad, 0)) == ARG_POINTER_REGNUM
2637               || XEXP (ad, 0) == current_function_internal_arg_pointer)
2638           && GET_CODE (XEXP (ad, 1)) == CONST_INT)
2639         {
2640           rtx temp, seq;
2641           if (memory_address_p (GET_MODE (x), ad))
2642             return x;
2643
2644           start_sequence ();
2645           temp = copy_to_reg (ad);
2646           seq = get_insns ();
2647           end_sequence ();
2648           emit_insn_before (seq, insn);
2649           return replace_equiv_address (x, temp);
2650         }
2651       return x;
2652     }
2653
2654   fmt = GET_RTX_FORMAT (code);
2655   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2656     {
2657       if (fmt[i] == 'e')
2658         XEXP (x, i) = fixup_stack_1 (XEXP (x, i), insn);
2659       else if (fmt[i] == 'E')
2660         {
2661           int j;
2662           for (j = 0; j < XVECLEN (x, i); j++)
2663             XVECEXP (x, i, j) = fixup_stack_1 (XVECEXP (x, i, j), insn);
2664         }
2665     }
2666   return x;
2667 }
2668 \f
2669 /* Optimization: a bit-field instruction whose field
2670    happens to be a byte or halfword in memory
2671    can be changed to a move instruction.
2672
2673    We call here when INSN is an insn to examine or store into a bit-field.
2674    BODY is the SET-rtx to be altered.
2675
2676    EQUIV_MEM is the table `reg_equiv_mem' if that is available; else 0.
2677    (Currently this is called only from function.c, and EQUIV_MEM
2678    is always 0.)  */
2679
2680 static void
2681 optimize_bit_field (rtx body, rtx insn, rtx *equiv_mem)
2682 {
2683   rtx bitfield;
2684   int destflag;
2685   rtx seq = 0;
2686   enum machine_mode mode;
2687
2688   if (GET_CODE (SET_DEST (body)) == SIGN_EXTRACT
2689       || GET_CODE (SET_DEST (body)) == ZERO_EXTRACT)
2690     bitfield = SET_DEST (body), destflag = 1;
2691   else
2692     bitfield = SET_SRC (body), destflag = 0;
2693
2694   /* First check that the field being stored has constant size and position
2695      and is in fact a byte or halfword suitably aligned.  */
2696
2697   if (GET_CODE (XEXP (bitfield, 1)) == CONST_INT
2698       && GET_CODE (XEXP (bitfield, 2)) == CONST_INT
2699       && ((mode = mode_for_size (INTVAL (XEXP (bitfield, 1)), MODE_INT, 1))
2700           != BLKmode)
2701       && INTVAL (XEXP (bitfield, 2)) % INTVAL (XEXP (bitfield, 1)) == 0)
2702     {
2703       rtx memref = 0;
2704
2705       /* Now check that the containing word is memory, not a register,
2706          and that it is safe to change the machine mode.  */
2707
2708       if (GET_CODE (XEXP (bitfield, 0)) == MEM)
2709         memref = XEXP (bitfield, 0);
2710       else if (REG_P (XEXP (bitfield, 0))
2711                && equiv_mem != 0)
2712         memref = equiv_mem[REGNO (XEXP (bitfield, 0))];
2713       else if (GET_CODE (XEXP (bitfield, 0)) == SUBREG
2714                && GET_CODE (SUBREG_REG (XEXP (bitfield, 0))) == MEM)
2715         memref = SUBREG_REG (XEXP (bitfield, 0));
2716       else if (GET_CODE (XEXP (bitfield, 0)) == SUBREG
2717                && equiv_mem != 0
2718                && REG_P (SUBREG_REG (XEXP (bitfield, 0))))
2719         memref = equiv_mem[REGNO (SUBREG_REG (XEXP (bitfield, 0)))];
2720
2721       if (memref
2722           && ! mode_dependent_address_p (XEXP (memref, 0))
2723           && ! MEM_VOLATILE_P (memref))
2724         {
2725           /* Now adjust the address, first for any subreg'ing
2726              that we are now getting rid of,
2727              and then for which byte of the word is wanted.  */
2728
2729           HOST_WIDE_INT offset = INTVAL (XEXP (bitfield, 2));
2730           rtx insns;
2731
2732           /* Adjust OFFSET to count bits from low-address byte.  */
2733           if (BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
2734             offset = (GET_MODE_BITSIZE (GET_MODE (XEXP (bitfield, 0)))
2735                       - offset - INTVAL (XEXP (bitfield, 1)));
2736
2737           /* Adjust OFFSET to count bytes from low-address byte.  */
2738           offset /= BITS_PER_UNIT;
2739           if (GET_CODE (XEXP (bitfield, 0)) == SUBREG)
2740             {
2741               offset += (SUBREG_BYTE (XEXP (bitfield, 0))
2742                          / UNITS_PER_WORD) * UNITS_PER_WORD;
2743               if (BYTES_BIG_ENDIAN)
2744                 offset -= (MIN (UNITS_PER_WORD,
2745                                 GET_MODE_SIZE (GET_MODE (XEXP (bitfield, 0))))
2746                            - MIN (UNITS_PER_WORD,
2747                                   GET_MODE_SIZE (GET_MODE (memref))));
2748             }
2749
2750           start_sequence ();
2751           memref = adjust_address (memref, mode, offset);
2752           insns = get_insns ();
2753           end_sequence ();
2754           emit_insn_before (insns, insn);
2755
2756           /* Store this memory reference where
2757              we found the bit field reference.  */
2758
2759           if (destflag)
2760             {
2761               validate_change (insn, &SET_DEST (body), memref, 1);
2762               if (! CONSTANT_ADDRESS_P (SET_SRC (body)))
2763                 {
2764                   rtx src = SET_SRC (body);
2765                   while (GET_CODE (src) == SUBREG
2766                          && SUBREG_BYTE (src) == 0)
2767                     src = SUBREG_REG (src);
2768                   if (GET_MODE (src) != GET_MODE (memref))
2769                     src = gen_lowpart (GET_MODE (memref), SET_SRC (body));
2770                   validate_change (insn, &SET_SRC (body), src, 1);
2771                 }
2772               else if (GET_MODE (SET_SRC (body)) != VOIDmode
2773                        && GET_MODE (SET_SRC (body)) != GET_MODE (memref))
2774                 /* This shouldn't happen because anything that didn't have
2775                    one of these modes should have got converted explicitly
2776                    and then referenced through a subreg.
2777                    This is so because the original bit-field was
2778                    handled by agg_mode and so its tree structure had
2779                    the same mode that memref now has.  */
2780                 abort ();
2781             }
2782           else
2783             {
2784               rtx dest = SET_DEST (body);
2785
2786               while (GET_CODE (dest) == SUBREG
2787                      && SUBREG_BYTE (dest) == 0
2788                      && (GET_MODE_CLASS (GET_MODE (dest))
2789                          == GET_MODE_CLASS (GET_MODE (SUBREG_REG (dest))))
2790                      && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
2791                          <= UNITS_PER_WORD))
2792                 dest = SUBREG_REG (dest);
2793
2794               validate_change (insn, &SET_DEST (body), dest, 1);
2795
2796               if (GET_MODE (dest) == GET_MODE (memref))
2797                 validate_change (insn, &SET_SRC (body), memref, 1);
2798               else
2799                 {
2800                   /* Convert the mem ref to the destination mode.  */
2801                   rtx newreg = gen_reg_rtx (GET_MODE (dest));
2802
2803                   start_sequence ();
2804                   convert_move (newreg, memref,
2805                                 GET_CODE (SET_SRC (body)) == ZERO_EXTRACT);
2806                   seq = get_insns ();
2807                   end_sequence ();
2808
2809                   validate_change (insn, &SET_SRC (body), newreg, 1);
2810                 }
2811             }
2812
2813           /* See if we can convert this extraction or insertion into
2814              a simple move insn.  We might not be able to do so if this
2815              was, for example, part of a PARALLEL.
2816
2817              If we succeed, write out any needed conversions.  If we fail,
2818              it is hard to guess why we failed, so don't do anything
2819              special; just let the optimization be suppressed.  */
2820
2821           if (apply_change_group () && seq)
2822             emit_insn_before (seq, insn);
2823         }
2824     }
2825 }
2826 \f
2827 /* These routines are responsible for converting virtual register references
2828    to the actual hard register references once RTL generation is complete.
2829
2830    The following four variables are used for communication between the
2831    routines.  They contain the offsets of the virtual registers from their
2832    respective hard registers.  */
2833
2834 static int in_arg_offset;
2835 static int var_offset;
2836 static int dynamic_offset;
2837 static int out_arg_offset;
2838 static int cfa_offset;
2839
2840 /* In most machines, the stack pointer register is equivalent to the bottom
2841    of the stack.  */
2842
2843 #ifndef STACK_POINTER_OFFSET
2844 #define STACK_POINTER_OFFSET    0
2845 #endif
2846
2847 /* If not defined, pick an appropriate default for the offset of dynamically
2848    allocated memory depending on the value of ACCUMULATE_OUTGOING_ARGS,
2849    REG_PARM_STACK_SPACE, and OUTGOING_REG_PARM_STACK_SPACE.  */
2850
2851 #ifndef STACK_DYNAMIC_OFFSET
2852
2853 /* The bottom of the stack points to the actual arguments.  If
2854    REG_PARM_STACK_SPACE is defined, this includes the space for the register
2855    parameters.  However, if OUTGOING_REG_PARM_STACK space is not defined,
2856    stack space for register parameters is not pushed by the caller, but
2857    rather part of the fixed stack areas and hence not included in
2858    `current_function_outgoing_args_size'.  Nevertheless, we must allow
2859    for it when allocating stack dynamic objects.  */
2860
2861 #if defined(REG_PARM_STACK_SPACE) && ! defined(OUTGOING_REG_PARM_STACK_SPACE)
2862 #define STACK_DYNAMIC_OFFSET(FNDECL)    \
2863 ((ACCUMULATE_OUTGOING_ARGS                                                    \
2864   ? (current_function_outgoing_args_size + REG_PARM_STACK_SPACE (FNDECL)) : 0)\
2865  + (STACK_POINTER_OFFSET))                                                    \
2866
2867 #else
2868 #define STACK_DYNAMIC_OFFSET(FNDECL)    \
2869 ((ACCUMULATE_OUTGOING_ARGS ? current_function_outgoing_args_size : 0)         \
2870  + (STACK_POINTER_OFFSET))
2871 #endif
2872 #endif
2873
2874 /* On most machines, the CFA coincides with the first incoming parm.  */
2875
2876 #ifndef ARG_POINTER_CFA_OFFSET
2877 #define ARG_POINTER_CFA_OFFSET(FNDECL) FIRST_PARM_OFFSET (FNDECL)
2878 #endif
2879
2880 /* Build up a (MEM (ADDRESSOF (REG))) rtx for a register REG that just
2881    had its address taken.  DECL is the decl or SAVE_EXPR for the
2882    object stored in the register, for later use if we do need to force
2883    REG into the stack.  REG is overwritten by the MEM like in
2884    put_reg_into_stack.  RESCAN is true if previously emitted
2885    instructions must be rescanned and modified now that the REG has
2886    been transformed.  */
2887
2888 rtx
2889 gen_mem_addressof (rtx reg, tree decl, int rescan)
2890 {
2891   rtx r = gen_rtx_ADDRESSOF (Pmode, gen_reg_rtx (GET_MODE (reg)),
2892                              REGNO (reg), decl);
2893
2894   /* Calculate this before we start messing with decl's RTL.  */
2895   HOST_WIDE_INT set = decl ? get_alias_set (decl) : 0;
2896
2897   /* If the original REG was a user-variable, then so is the REG whose
2898      address is being taken.  Likewise for unchanging.  */
2899   REG_USERVAR_P (XEXP (r, 0)) = REG_USERVAR_P (reg);
2900   RTX_UNCHANGING_P (XEXP (r, 0)) = RTX_UNCHANGING_P (reg);
2901
2902   PUT_CODE (reg, MEM);
2903   MEM_VOLATILE_P (reg) = 0;
2904   MEM_ATTRS (reg) = 0;
2905   XEXP (reg, 0) = r;
2906
2907   if (decl)
2908     {
2909       tree type = TREE_TYPE (decl);
2910       enum machine_mode decl_mode
2911         = (DECL_P (decl) ? DECL_MODE (decl) : TYPE_MODE (TREE_TYPE (decl)));
2912       rtx decl_rtl = (TREE_CODE (decl) == SAVE_EXPR ? SAVE_EXPR_RTL (decl)
2913                       : DECL_RTL_IF_SET (decl));
2914
2915       PUT_MODE (reg, decl_mode);
2916
2917       /* Clear DECL_RTL momentarily so functions below will work
2918          properly, then set it again.  */
2919       if (DECL_P (decl) && decl_rtl == reg)
2920         SET_DECL_RTL (decl, 0);
2921
2922       set_mem_attributes (reg, decl, 1);
2923       set_mem_alias_set (reg, set);
2924
2925       if (DECL_P (decl) && decl_rtl == reg)
2926         SET_DECL_RTL (decl, reg);
2927
2928       if (rescan
2929           && (TREE_USED (decl) || (DECL_P (decl) && DECL_INITIAL (decl) != 0)))
2930         fixup_var_refs (reg, GET_MODE (reg), TYPE_UNSIGNED (type), reg, 0);
2931     }
2932   else if (rescan)
2933     {
2934       /* This can only happen during reload.  Clear the same flag bits as
2935          reload.  */
2936       RTX_UNCHANGING_P (reg) = 0;
2937       MEM_IN_STRUCT_P (reg) = 0;
2938       MEM_SCALAR_P (reg) = 0;
2939
2940       fixup_var_refs (reg, GET_MODE (reg), 0, reg, 0);
2941     }
2942
2943   return reg;
2944 }
2945
2946 /* If DECL has an RTL that is an ADDRESSOF rtx, put it into the stack.  */
2947
2948 void
2949 flush_addressof (tree decl)
2950 {
2951   if ((TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == VAR_DECL)
2952       && DECL_RTL (decl) != 0
2953       && GET_CODE (DECL_RTL (decl)) == MEM
2954       && GET_CODE (XEXP (DECL_RTL (decl), 0)) == ADDRESSOF
2955       && REG_P (XEXP (XEXP (DECL_RTL (decl), 0), 0)))
2956     put_addressof_into_stack (XEXP (DECL_RTL (decl), 0), 0);
2957 }
2958
2959 /* Force the register pointed to by R, an ADDRESSOF rtx, into the stack.  */
2960
2961 static void
2962 put_addressof_into_stack (rtx r, htab_t ht)
2963 {
2964   tree decl, type;
2965   bool volatile_p, used_p;
2966
2967   rtx reg = XEXP (r, 0);
2968
2969   if (!REG_P (reg))
2970     abort ();
2971
2972   decl = ADDRESSOF_DECL (r);
2973   if (decl)
2974     {
2975       type = TREE_TYPE (decl);
2976       volatile_p = (TREE_CODE (decl) != SAVE_EXPR
2977                     && TREE_THIS_VOLATILE (decl));
2978       used_p = (TREE_USED (decl)
2979                 || (DECL_P (decl) && DECL_INITIAL (decl) != 0));
2980     }
2981   else
2982     {
2983       type = NULL_TREE;
2984       volatile_p = false;
2985       used_p = true;
2986     }
2987
2988   put_reg_into_stack (0, reg, type, GET_MODE (reg), ADDRESSOF_REGNO (r),
2989                       volatile_p, used_p, false, ht);
2990 }
2991
2992 /* List of replacements made below in purge_addressof_1 when creating
2993    bitfield insertions.  */
2994 static rtx purge_bitfield_addressof_replacements;
2995
2996 /* List of replacements made below in purge_addressof_1 for patterns
2997    (MEM (ADDRESSOF (REG ...))).  The key of the list entry is the
2998    corresponding (ADDRESSOF (REG ...)) and value is a substitution for
2999    the all pattern.  List PURGE_BITFIELD_ADDRESSOF_REPLACEMENTS is not
3000    enough in complex cases, e.g. when some field values can be
3001    extracted by usage MEM with narrower mode.  */
3002 static rtx purge_addressof_replacements;
3003
3004 /* Helper function for purge_addressof.  See if the rtx expression at *LOC
3005    in INSN needs to be changed.  If FORCE, always put any ADDRESSOFs into
3006    the stack.  If the function returns FALSE then the replacement could not
3007    be made.  If MAY_POSTPONE is true and we would not put the addressof
3008    to stack, postpone processing of the insn.  */
3009
3010 static bool
3011 purge_addressof_1 (rtx *loc, rtx insn, int force, int store, int may_postpone,
3012                    htab_t ht)
3013 {
3014   rtx x;
3015   RTX_CODE code;
3016   int i, j;
3017   const char *fmt;
3018   bool result = true;
3019   bool libcall = false;
3020
3021   /* Re-start here to avoid recursion in common cases.  */
3022  restart:
3023
3024   x = *loc;
3025   if (x == 0)
3026     return true;
3027
3028   /* Is this a libcall?  */
3029   if (!insn)
3030     libcall = REG_NOTE_KIND (*loc) == REG_RETVAL;
3031
3032   code = GET_CODE (x);
3033
3034   /* If we don't return in any of the cases below, we will recurse inside
3035      the RTX, which will normally result in any ADDRESSOF being forced into
3036      memory.  */
3037   if (code == SET)
3038     {
3039       result = purge_addressof_1 (&SET_DEST (x), insn, force, 1,
3040                                   may_postpone, ht);
3041       result &= purge_addressof_1 (&SET_SRC (x), insn, force, 0,
3042                                    may_postpone, ht);
3043       return result;
3044     }
3045   else if (code == ADDRESSOF)
3046     {
3047       rtx sub, insns;
3048
3049       if (GET_CODE (XEXP (x, 0)) != MEM)
3050         put_addressof_into_stack (x, ht);
3051
3052       /* We must create a copy of the rtx because it was created by
3053          overwriting a REG rtx which is always shared.  */
3054       sub = copy_rtx (XEXP (XEXP (x, 0), 0));
3055       if (validate_change (insn, loc, sub, 0)
3056           || validate_replace_rtx (x, sub, insn))
3057         return true;
3058
3059       start_sequence ();
3060
3061       /* If SUB is a hard or virtual register, try it as a pseudo-register.
3062          Otherwise, perhaps SUB is an expression, so generate code to compute
3063          it.  */
3064       if (REG_P (sub) && REGNO (sub) <= LAST_VIRTUAL_REGISTER)
3065         sub = copy_to_reg (sub);
3066       else
3067         sub = force_operand (sub, NULL_RTX);
3068
3069       if (! validate_change (insn, loc, sub, 0)
3070           && ! validate_replace_rtx (x, sub, insn))
3071         abort ();
3072
3073       insns = get_insns ();
3074       end_sequence ();
3075       emit_insn_before (insns, insn);
3076       return true;
3077     }
3078
3079   else if (code == MEM && GET_CODE (XEXP (x, 0)) == ADDRESSOF && ! force)
3080     {
3081       rtx sub = XEXP (XEXP (x, 0), 0);
3082
3083       if (GET_CODE (sub) == MEM)
3084         sub = adjust_address_nv (sub, GET_MODE (x), 0);
3085       else if (REG_P (sub)
3086                && (MEM_VOLATILE_P (x) || GET_MODE (x) == BLKmode))
3087         ;
3088       else if (REG_P (sub) && GET_MODE (x) != GET_MODE (sub))
3089         {
3090           int size_x, size_sub;
3091
3092           if (may_postpone)
3093             {
3094               /* Postpone for now, so that we do not emit bitfield arithmetics
3095                  unless there is some benefit from it.  */
3096               if (!postponed_insns || XEXP (postponed_insns, 0) != insn)
3097                 postponed_insns = alloc_INSN_LIST (insn, postponed_insns);
3098               return true;
3099             }
3100
3101           if (!insn)
3102             {
3103               /* When processing REG_NOTES look at the list of
3104                  replacements done on the insn to find the register that X
3105                  was replaced by.  */
3106               rtx tem;
3107
3108               for (tem = purge_bitfield_addressof_replacements;
3109                    tem != NULL_RTX;
3110                    tem = XEXP (XEXP (tem, 1), 1))
3111                 if (rtx_equal_p (x, XEXP (tem, 0)))
3112                   {
3113                     *loc = XEXP (XEXP (tem, 1), 0);
3114                     return true;
3115                   }
3116
3117               /* See comment for purge_addressof_replacements.  */
3118               for (tem = purge_addressof_replacements;
3119                    tem != NULL_RTX;
3120                    tem = XEXP (XEXP (tem, 1), 1))
3121                 if (rtx_equal_p (XEXP (x, 0), XEXP (tem, 0)))
3122                   {
3123                     rtx z = XEXP (XEXP (tem, 1), 0);
3124
3125                     if (GET_MODE (x) == GET_MODE (z)
3126                         || (!REG_P (XEXP (XEXP (tem, 1), 0))
3127                             && GET_CODE (XEXP (XEXP (tem, 1), 0)) != SUBREG))
3128                       abort ();
3129
3130                     /* It can happen that the note may speak of things
3131                        in a wider (or just different) mode than the
3132                        code did.  This is especially true of
3133                        REG_RETVAL.  */
3134
3135                     if (GET_CODE (z) == SUBREG && SUBREG_BYTE (z) == 0)
3136                       z = SUBREG_REG (z);
3137
3138                     if (GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD
3139                         && (GET_MODE_SIZE (GET_MODE (x))
3140                             > GET_MODE_SIZE (GET_MODE (z))))
3141                       {
3142                         /* This can occur as a result in invalid
3143                            pointer casts, e.g. float f; ...
3144                            *(long long int *)&f.
3145                            ??? We could emit a warning here, but
3146                            without a line number that wouldn't be
3147                            very helpful.  */
3148                         z = gen_rtx_SUBREG (GET_MODE (x), z, 0);
3149                       }
3150                     else
3151                       z = gen_lowpart (GET_MODE (x), z);
3152
3153                     *loc = z;
3154                     return true;
3155                   }
3156
3157               /* When we are processing the REG_NOTES of the last instruction
3158                  of a libcall, there will be typically no replacements
3159                  for that insn; the replacements happened before, piecemeal
3160                  fashion.  OTOH we are not interested in the details of
3161                  this for the REG_EQUAL note, we want to know the big picture,
3162                  which can be succinctly described with a simple SUBREG.
3163                  Note that removing the REG_EQUAL note is not an option
3164                  on the last insn of a libcall, so we must do a replacement.  */
3165
3166               /* In compile/990107-1.c:7 compiled at -O1 -m1 for sh-elf,
3167                  we got
3168                  (mem:DI (addressof:SI (reg/v:DF 160) 159 0x401c8510)
3169                  [0 S8 A32]), which can be expressed with a simple
3170                  same-size subreg  */
3171               if ((GET_MODE_SIZE (GET_MODE (x))
3172                    <= GET_MODE_SIZE (GET_MODE (sub)))
3173                   /* Again, invalid pointer casts (as in
3174                      compile/990203-1.c) can require paradoxical
3175                      subregs.  */
3176                   || (GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD
3177                       && (GET_MODE_SIZE (GET_MODE (x))
3178                           > GET_MODE_SIZE (GET_MODE (sub)))
3179                       && libcall))
3180                 {
3181                   *loc = gen_rtx_SUBREG (GET_MODE (x), sub, 0);
3182                   return true;
3183                 }
3184               /* ??? Are there other cases we should handle?  */
3185
3186               /* Sometimes we may not be able to find the replacement.  For
3187                  example when the original insn was a MEM in a wider mode,
3188                  and the note is part of a sign extension of a narrowed
3189                  version of that MEM.  Gcc testcase compile/990829-1.c can
3190                  generate an example of this situation.  Rather than complain
3191                  we return false, which will prompt our caller to remove the
3192                  offending note.  */
3193               return false;
3194             }
3195
3196           size_x = GET_MODE_BITSIZE (GET_MODE (x));
3197           size_sub = GET_MODE_BITSIZE (GET_MODE (sub));
3198
3199           /* Do not frob unchanging MEMs.  If a later reference forces the
3200              pseudo to the stack, we can wind up with multiple writes to
3201              an unchanging memory, which is invalid.  */
3202           if (RTX_UNCHANGING_P (x) && size_x != size_sub)
3203             ;
3204
3205           /* Don't even consider working with paradoxical subregs,
3206              or the moral equivalent seen here.  */
3207           else if (size_x <= size_sub
3208                    && int_mode_for_mode (GET_MODE (sub)) != BLKmode)
3209             {
3210               /* Do a bitfield insertion to mirror what would happen
3211                  in memory.  */
3212
3213               rtx val, seq;
3214
3215               if (store)
3216                 {
3217                   rtx p = PREV_INSN (insn);
3218
3219                   start_sequence ();
3220                   val = gen_reg_rtx (GET_MODE (x));
3221                   if (! validate_change (insn, loc, val, 0))
3222                     {
3223                       /* Discard the current sequence and put the
3224                          ADDRESSOF on stack.  */
3225                       end_sequence ();
3226                       goto give_up;
3227                     }
3228                   seq = get_insns ();
3229                   end_sequence ();
3230                   emit_insn_before (seq, insn);
3231                   compute_insns_for_mem (p ? NEXT_INSN (p) : get_insns (),
3232                                          insn, ht);
3233
3234                   start_sequence ();
3235                   store_bit_field (sub, size_x, 0, GET_MODE (x),
3236                                    val, GET_MODE_SIZE (GET_MODE (sub)));
3237
3238                   /* Make sure to unshare any shared rtl that store_bit_field
3239                      might have created.  */
3240                   unshare_all_rtl_again (get_insns ());
3241
3242                   seq = get_insns ();
3243                   end_sequence ();
3244                   p = emit_insn_after (seq, insn);
3245                   if (NEXT_INSN (insn))
3246                     compute_insns_for_mem (NEXT_INSN (insn),
3247                                            p ? NEXT_INSN (p) : NULL_RTX,
3248                                            ht);
3249                 }
3250               else
3251                 {
3252                   rtx p = PREV_INSN (insn);
3253
3254                   start_sequence ();
3255                   val = extract_bit_field (sub, size_x, 0, 1, NULL_RTX,
3256                                            GET_MODE (x), GET_MODE (x),
3257                                            GET_MODE_SIZE (GET_MODE (sub)));
3258
3259                   if (! validate_change (insn, loc, val, 0))
3260                     {
3261                       /* Discard the current sequence and put the
3262                          ADDRESSOF on stack.  */
3263                       end_sequence ();
3264                       goto give_up;
3265                     }
3266
3267                   seq = get_insns ();
3268                   end_sequence ();
3269                   emit_insn_before (seq, insn);
3270                   compute_insns_for_mem (p ? NEXT_INSN (p) : get_insns (),
3271                                          insn, ht);
3272                 }
3273
3274               /* Remember the replacement so that the same one can be done
3275                  on the REG_NOTES.  */
3276               purge_bitfield_addressof_replacements
3277                 = gen_rtx_EXPR_LIST (VOIDmode, x,
3278                                      gen_rtx_EXPR_LIST
3279                                      (VOIDmode, val,
3280                                       purge_bitfield_addressof_replacements));
3281
3282               /* We replaced with a reg -- all done.  */
3283               return true;
3284             }
3285         }
3286
3287       else if (validate_change (insn, loc, sub, 0))
3288         {
3289           /* Remember the replacement so that the same one can be done
3290              on the REG_NOTES.  */
3291           if (REG_P (sub) || GET_CODE (sub) == SUBREG)
3292             {
3293               rtx tem;
3294
3295               for (tem = purge_addressof_replacements;
3296                    tem != NULL_RTX;
3297                    tem = XEXP (XEXP (tem, 1), 1))
3298                 if (rtx_equal_p (XEXP (x, 0), XEXP (tem, 0)))
3299                   {
3300                     XEXP (XEXP (tem, 1), 0) = sub;
3301                     return true;
3302                   }
3303               purge_addressof_replacements
3304                 = gen_rtx_EXPR_LIST (VOIDmode, XEXP (x, 0),
3305                                      gen_rtx_EXPR_LIST (VOIDmode, sub,
3306                                                         purge_addressof_replacements));
3307               return true;
3308             }
3309           goto restart;
3310         }
3311     }
3312
3313  give_up:
3314   /* Scan all subexpressions.  */
3315   fmt = GET_RTX_FORMAT (code);
3316   for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
3317     {
3318       if (*fmt == 'e')
3319         result &= purge_addressof_1 (&XEXP (x, i), insn, force, 0,
3320                                      may_postpone, ht);
3321       else if (*fmt == 'E')
3322         for (j = 0; j < XVECLEN (x, i); j++)
3323           result &= purge_addressof_1 (&XVECEXP (x, i, j), insn, force, 0,
3324                                        may_postpone, ht);
3325     }
3326
3327   return result;
3328 }
3329
3330 /* Return a hash value for K, a REG.  */
3331
3332 static hashval_t
3333 insns_for_mem_hash (const void *k)
3334 {
3335   /* Use the address of the key for the hash value.  */
3336   struct insns_for_mem_entry *m = (struct insns_for_mem_entry *) k;
3337   return htab_hash_pointer (m->key);
3338 }
3339
3340 /* Return nonzero if K1 and K2 (two REGs) are the same.  */
3341
3342 static int
3343 insns_for_mem_comp (const void *k1, const void *k2)
3344 {
3345   struct insns_for_mem_entry *m1 = (struct insns_for_mem_entry *) k1;
3346   struct insns_for_mem_entry *m2 = (struct insns_for_mem_entry *) k2;
3347   return m1->key == m2->key;
3348 }
3349
3350 struct insns_for_mem_walk_info
3351 {
3352   /* The hash table that we are using to record which INSNs use which
3353      MEMs.  */
3354   htab_t ht;
3355
3356   /* The INSN we are currently processing.  */
3357   rtx insn;
3358
3359   /* Zero if we are walking to find ADDRESSOFs, one if we are walking
3360      to find the insns that use the REGs in the ADDRESSOFs.  */
3361   int pass;
3362 };
3363
3364 /* Called from compute_insns_for_mem via for_each_rtx.  If R is a REG
3365    that might be used in an ADDRESSOF expression, record this INSN in
3366    the hash table given by DATA (which is really a pointer to an
3367    insns_for_mem_walk_info structure).  */
3368
3369 static int
3370 insns_for_mem_walk (rtx *r, void *data)
3371 {
3372   struct insns_for_mem_walk_info *ifmwi
3373     = (struct insns_for_mem_walk_info *) data;
3374   struct insns_for_mem_entry tmp;
3375   tmp.insns = NULL_RTX;
3376
3377   if (ifmwi->pass == 0 && *r && GET_CODE (*r) == ADDRESSOF
3378       && REG_P (XEXP (*r, 0)))
3379     {
3380       void **e;
3381       tmp.key = XEXP (*r, 0);
3382       e = htab_find_slot (ifmwi->ht, &tmp, INSERT);
3383       if (*e == NULL)
3384         {
3385           *e = ggc_alloc (sizeof (tmp));
3386           memcpy (*e, &tmp, sizeof (tmp));
3387         }
3388     }
3389   else if (ifmwi->pass == 1 && *r && REG_P (*r))
3390     {
3391       struct insns_for_mem_entry *ifme;
3392       tmp.key = *r;
3393       ifme = htab_find (ifmwi->ht, &tmp);
3394
3395       /* If we have not already recorded this INSN, do so now.  Since
3396          we process the INSNs in order, we know that if we have
3397          recorded it it must be at the front of the list.  */
3398       if (ifme && (!ifme->insns || XEXP (ifme->insns, 0) != ifmwi->insn))
3399         ifme->insns = gen_rtx_EXPR_LIST (VOIDmode, ifmwi->insn,
3400                                          ifme->insns);
3401     }
3402
3403   return 0;
3404 }
3405
3406 /* Walk the INSNS, until we reach LAST_INSN, recording which INSNs use
3407    which REGs in HT.  */
3408
3409 static void
3410 compute_insns_for_mem (rtx insns, rtx last_insn, htab_t ht)
3411 {
3412   rtx insn;
3413   struct insns_for_mem_walk_info ifmwi;
3414   ifmwi.ht = ht;
3415
3416   for (ifmwi.pass = 0; ifmwi.pass < 2; ++ifmwi.pass)
3417     for (insn = insns; insn != last_insn; insn = NEXT_INSN (insn))
3418       if (INSN_P (insn))
3419         {
3420           ifmwi.insn = insn;
3421           for_each_rtx (&insn, insns_for_mem_walk, &ifmwi);
3422         }
3423 }
3424
3425 /* Helper function for purge_addressof called through for_each_rtx.
3426    Returns true iff the rtl is an ADDRESSOF.  */
3427
3428 static int
3429 is_addressof (rtx *rtl, void *data ATTRIBUTE_UNUSED)
3430 {
3431   return GET_CODE (*rtl) == ADDRESSOF;
3432 }
3433
3434 /* Eliminate all occurrences of ADDRESSOF from INSNS.  Elide any remaining
3435    (MEM (ADDRESSOF)) patterns, and force any needed registers into the
3436    stack.  */
3437
3438 void
3439 purge_addressof (rtx insns)
3440 {
3441   rtx insn, tmp;
3442   htab_t ht;
3443
3444   /* When we actually purge ADDRESSOFs, we turn REGs into MEMs.  That
3445      requires a fixup pass over the instruction stream to correct
3446      INSNs that depended on the REG being a REG, and not a MEM.  But,
3447      these fixup passes are slow.  Furthermore, most MEMs are not
3448      mentioned in very many instructions.  So, we speed up the process
3449      by pre-calculating which REGs occur in which INSNs; that allows
3450      us to perform the fixup passes much more quickly.  */
3451   ht = htab_create_ggc (1000, insns_for_mem_hash, insns_for_mem_comp, NULL);
3452   compute_insns_for_mem (insns, NULL_RTX, ht);
3453
3454   postponed_insns = NULL;
3455
3456   for (insn = insns; insn; insn = NEXT_INSN (insn))
3457     if (INSN_P (insn))
3458       {
3459         if (! purge_addressof_1 (&PATTERN (insn), insn,
3460                                  asm_noperands (PATTERN (insn)) > 0, 0, 1, ht))
3461           /* If we could not replace the ADDRESSOFs in the insn,
3462              something is wrong.  */
3463           abort ();
3464
3465         if (! purge_addressof_1 (&REG_NOTES (insn), NULL_RTX, 0, 0, 0, ht))
3466           {
3467             /* If we could not replace the ADDRESSOFs in the insn's notes,
3468                we can just remove the offending notes instead.  */
3469             rtx note;
3470
3471             for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
3472               {
3473                 /* If we find a REG_RETVAL note then the insn is a libcall.
3474                    Such insns must have REG_EQUAL notes as well, in order
3475                    for later passes of the compiler to work.  So it is not
3476                    safe to delete the notes here, and instead we abort.  */
3477                 if (REG_NOTE_KIND (note) == REG_RETVAL)
3478                   abort ();
3479                 if (for_each_rtx (&note, is_addressof, NULL))
3480                   remove_note (insn, note);
3481               }
3482           }
3483       }
3484
3485   /* Process the postponed insns.  */
3486   while (postponed_insns)
3487     {
3488       insn = XEXP (postponed_insns, 0);
3489       tmp = postponed_insns;
3490       postponed_insns = XEXP (postponed_insns, 1);
3491       free_INSN_LIST_node (tmp);
3492
3493       if (! purge_addressof_1 (&PATTERN (insn), insn,
3494                                asm_noperands (PATTERN (insn)) > 0, 0, 0, ht))
3495         abort ();
3496     }
3497
3498   /* Clean up.  */
3499   purge_bitfield_addressof_replacements = 0;
3500   purge_addressof_replacements = 0;
3501
3502   /* REGs are shared.  purge_addressof will destructively replace a REG
3503      with a MEM, which creates shared MEMs.
3504
3505      Unfortunately, the children of put_reg_into_stack assume that MEMs
3506      referring to the same stack slot are shared (fixup_var_refs and
3507      the associated hash table code).
3508
3509      So, we have to do another unsharing pass after we have flushed any
3510      REGs that had their address taken into the stack.
3511
3512      It may be worth tracking whether or not we converted any REGs into
3513      MEMs to avoid this overhead when it is not needed.  */
3514   unshare_all_rtl_again (get_insns ());
3515 }
3516 \f
3517 /* Convert a SET of a hard subreg to a set of the appropriate hard
3518    register.  A subroutine of purge_hard_subreg_sets.  */
3519
3520 static void
3521 purge_single_hard_subreg_set (rtx pattern)
3522 {
3523   rtx reg = SET_DEST (pattern);
3524   enum machine_mode mode = GET_MODE (SET_DEST (pattern));
3525   int offset = 0;
3526
3527   if (GET_CODE (reg) == SUBREG && REG_P (SUBREG_REG (reg))
3528       && REGNO (SUBREG_REG (reg)) < FIRST_PSEUDO_REGISTER)
3529     {
3530       offset = subreg_regno_offset (REGNO (SUBREG_REG (reg)),
3531                                     GET_MODE (SUBREG_REG (reg)),
3532                                     SUBREG_BYTE (reg),
3533                                     GET_MODE (reg));
3534       reg = SUBREG_REG (reg);
3535     }
3536
3537
3538   if (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER)
3539     {
3540       reg = gen_rtx_REG (mode, REGNO (reg) + offset);
3541       SET_DEST (pattern) = reg;
3542     }
3543 }
3544
3545 /* Eliminate all occurrences of SETs of hard subregs from INSNS.  The
3546    only such SETs that we expect to see are those left in because
3547    integrate can't handle sets of parts of a return value register.
3548
3549    We don't use alter_subreg because we only want to eliminate subregs
3550    of hard registers.  */
3551
3552 void
3553 purge_hard_subreg_sets (rtx insn)
3554 {
3555   for (; insn; insn = NEXT_INSN (insn))
3556     {
3557       if (INSN_P (insn))
3558         {
3559           rtx pattern = PATTERN (insn);
3560           switch (GET_CODE (pattern))
3561             {
3562             case SET:
3563               if (GET_CODE (SET_DEST (pattern)) == SUBREG)
3564                 purge_single_hard_subreg_set (pattern);
3565               break;
3566             case PARALLEL:
3567               {
3568                 int j;
3569                 for (j = XVECLEN (pattern, 0) - 1; j >= 0; j--)
3570                   {
3571                     rtx inner_pattern = XVECEXP (pattern, 0, j);
3572                     if (GET_CODE (inner_pattern) == SET
3573                         && GET_CODE (SET_DEST (inner_pattern)) == SUBREG)
3574                       purge_single_hard_subreg_set (inner_pattern);
3575                   }
3576               }
3577               break;
3578             default:
3579               break;
3580             }
3581         }
3582     }
3583 }
3584 \f
3585 /* Pass through the INSNS of function FNDECL and convert virtual register
3586    references to hard register references.  */
3587
3588 void
3589 instantiate_virtual_regs (void)
3590 {
3591   rtx insn;
3592   unsigned int i;
3593
3594   /* Compute the offsets to use for this function.  */
3595   in_arg_offset = FIRST_PARM_OFFSET (current_function_decl);
3596   var_offset = STARTING_FRAME_OFFSET;
3597   dynamic_offset = STACK_DYNAMIC_OFFSET (current_function_decl);
3598   out_arg_offset = STACK_POINTER_OFFSET;
3599   cfa_offset = ARG_POINTER_CFA_OFFSET (current_function_decl);
3600
3601   /* Scan all variables and parameters of this function.  For each that is
3602      in memory, instantiate all virtual registers if the result is a valid
3603      address.  If not, we do it later.  That will handle most uses of virtual
3604      regs on many machines.  */
3605   instantiate_decls (current_function_decl, 1);
3606
3607   /* Initialize recognition, indicating that volatile is OK.  */
3608   init_recog ();
3609
3610   /* Scan through all the insns, instantiating every virtual register still
3611      present.  */
3612   for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3613     if (GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN
3614         || GET_CODE (insn) == CALL_INSN)
3615       {
3616         instantiate_virtual_regs_1 (&PATTERN (insn), insn, 1);
3617         if (INSN_DELETED_P (insn))
3618           continue;
3619         instantiate_virtual_regs_1 (&REG_NOTES (insn), NULL_RTX, 0);
3620         /* Instantiate any virtual registers in CALL_INSN_FUNCTION_USAGE.  */
3621         if (GET_CODE (insn) == CALL_INSN)
3622           instantiate_virtual_regs_1 (&CALL_INSN_FUNCTION_USAGE (insn),
3623                                       NULL_RTX, 0);
3624
3625         /* Past this point all ASM statements should match.  Verify that
3626            to avoid failures later in the compilation process.  */
3627         if (asm_noperands (PATTERN (insn)) >= 0
3628             && ! check_asm_operands (PATTERN (insn)))
3629           instantiate_virtual_regs_lossage (insn);
3630       }
3631
3632   /* Instantiate the stack slots for the parm registers, for later use in
3633      addressof elimination.  */
3634   for (i = 0; i < max_parm_reg; ++i)
3635     if (parm_reg_stack_loc[i])
3636       instantiate_virtual_regs_1 (&parm_reg_stack_loc[i], NULL_RTX, 0);
3637
3638   /* Now instantiate the remaining register equivalences for debugging info.
3639      These will not be valid addresses.  */
3640   instantiate_decls (current_function_decl, 0);
3641
3642   /* Indicate that, from now on, assign_stack_local should use
3643      frame_pointer_rtx.  */
3644   virtuals_instantiated = 1;
3645 }
3646
3647 /* Scan all decls in FNDECL (both variables and parameters) and instantiate
3648    all virtual registers in their DECL_RTL's.
3649
3650    If VALID_ONLY, do this only if the resulting address is still valid.
3651    Otherwise, always do it.  */
3652
3653 static void
3654 instantiate_decls (tree fndecl, int valid_only)
3655 {
3656   tree decl;
3657
3658   /* Process all parameters of the function.  */
3659   for (decl = DECL_ARGUMENTS (fndecl); decl; decl = TREE_CHAIN (decl))
3660     {
3661       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (decl));
3662       HOST_WIDE_INT size_rtl;
3663
3664       instantiate_decl (DECL_RTL (decl), size, valid_only);
3665
3666       /* If the parameter was promoted, then the incoming RTL mode may be
3667          larger than the declared type size.  We must use the larger of
3668          the two sizes.  */
3669       size_rtl = GET_MODE_SIZE (GET_MODE (DECL_INCOMING_RTL (decl)));
3670       size = MAX (size_rtl, size);
3671       instantiate_decl (DECL_INCOMING_RTL (decl), size, valid_only);
3672     }
3673
3674   /* Now process all variables defined in the function or its subblocks.  */
3675   instantiate_decls_1 (DECL_INITIAL (fndecl), valid_only);
3676 }
3677
3678 /* Subroutine of instantiate_decls: Process all decls in the given
3679    BLOCK node and all its subblocks.  */
3680
3681 static void
3682 instantiate_decls_1 (tree let, int valid_only)
3683 {
3684   tree t;
3685
3686   for (t = BLOCK_VARS (let); t; t = TREE_CHAIN (t))
3687     if (DECL_RTL_SET_P (t))
3688       instantiate_decl (DECL_RTL (t),
3689                         int_size_in_bytes (TREE_TYPE (t)),
3690                         valid_only);
3691
3692   /* Process all subblocks.  */
3693   for (t = BLOCK_SUBBLOCKS (let); t; t = TREE_CHAIN (t))
3694     instantiate_decls_1 (t, valid_only);
3695 }
3696
3697 /* Subroutine of the preceding procedures: Given RTL representing a
3698    decl and the size of the object, do any instantiation required.
3699
3700    If VALID_ONLY is nonzero, it means that the RTL should only be
3701    changed if the new address is valid.  */
3702
3703 static void
3704 instantiate_decl (rtx x, HOST_WIDE_INT size, int valid_only)
3705 {
3706   enum machine_mode mode;
3707   rtx addr;
3708
3709   /* If this is not a MEM, no need to do anything.  Similarly if the
3710      address is a constant or a register that is not a virtual register.  */
3711
3712   if (x == 0 || GET_CODE (x) != MEM)
3713     return;
3714
3715   addr = XEXP (x, 0);
3716   if (CONSTANT_P (addr)
3717       || (GET_CODE (addr) == ADDRESSOF && REG_P (XEXP (addr, 0)))
3718       || (REG_P (addr)
3719           && (REGNO (addr) < FIRST_VIRTUAL_REGISTER
3720               || REGNO (addr) > LAST_VIRTUAL_REGISTER)))
3721     return;
3722
3723   /* If we should only do this if the address is valid, copy the address.
3724      We need to do this so we can undo any changes that might make the
3725      address invalid.  This copy is unfortunate, but probably can't be
3726      avoided.  */
3727
3728   if (valid_only)
3729     addr = copy_rtx (addr);
3730
3731   instantiate_virtual_regs_1 (&addr, NULL_RTX, 0);
3732
3733   if (valid_only && size >= 0)
3734     {
3735       unsigned HOST_WIDE_INT decl_size = size;
3736
3737       /* Now verify that the resulting address is valid for every integer or
3738          floating-point mode up to and including SIZE bytes long.  We do this
3739          since the object might be accessed in any mode and frame addresses
3740          are shared.  */
3741
3742       for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT);
3743            mode != VOIDmode && GET_MODE_SIZE (mode) <= decl_size;
3744            mode = GET_MODE_WIDER_MODE (mode))
3745         if (! memory_address_p (mode, addr))
3746           return;
3747
3748       for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT);
3749            mode != VOIDmode && GET_MODE_SIZE (mode) <= decl_size;
3750            mode = GET_MODE_WIDER_MODE (mode))
3751         if (! memory_address_p (mode, addr))
3752           return;
3753     }
3754
3755   /* Put back the address now that we have updated it and we either know
3756      it is valid or we don't care whether it is valid.  */
3757
3758   XEXP (x, 0) = addr;
3759 }
3760 \f
3761 /* Given a piece of RTX and a pointer to a HOST_WIDE_INT, if the RTX
3762    is a virtual register, return the equivalent hard register and set the
3763    offset indirectly through the pointer.  Otherwise, return 0.  */
3764
3765 static rtx
3766 instantiate_new_reg (rtx x, HOST_WIDE_INT *poffset)
3767 {
3768   rtx new;
3769   HOST_WIDE_INT offset;
3770
3771   if (x == virtual_incoming_args_rtx)
3772     new = arg_pointer_rtx, offset = in_arg_offset;
3773   else if (x == virtual_stack_vars_rtx)
3774     new = frame_pointer_rtx, offset = var_offset;
3775   else if (x == virtual_stack_dynamic_rtx)
3776     new = stack_pointer_rtx, offset = dynamic_offset;
3777   else if (x == virtual_outgoing_args_rtx)
3778     new = stack_pointer_rtx, offset = out_arg_offset;
3779   else if (x == virtual_cfa_rtx)
3780     new = arg_pointer_rtx, offset = cfa_offset;
3781   else
3782     return 0;
3783
3784   *poffset = offset;
3785   return new;
3786 }
3787 \f
3788
3789 /* Called when instantiate_virtual_regs has failed to update the instruction.
3790    Usually this means that non-matching instruction has been emit, however for
3791    asm statements it may be the problem in the constraints.  */
3792 static void
3793 instantiate_virtual_regs_lossage (rtx insn)
3794 {
3795   if (asm_noperands (PATTERN (insn)) >= 0)
3796     {
3797       error_for_asm (insn, "impossible constraint in `asm'");
3798       delete_insn (insn);
3799     }
3800   else
3801     abort ();
3802 }
3803 /* Given a pointer to a piece of rtx and an optional pointer to the
3804    containing object, instantiate any virtual registers present in it.
3805
3806    If EXTRA_INSNS, we always do the replacement and generate
3807    any extra insns before OBJECT.  If it zero, we do nothing if replacement
3808    is not valid.
3809
3810    Return 1 if we either had nothing to do or if we were able to do the
3811    needed replacement.  Return 0 otherwise; we only return zero if
3812    EXTRA_INSNS is zero.
3813
3814    We first try some simple transformations to avoid the creation of extra
3815    pseudos.  */
3816
3817 static int
3818 instantiate_virtual_regs_1 (rtx *loc, rtx object, int extra_insns)
3819 {
3820   rtx x;
3821   RTX_CODE code;
3822   rtx new = 0;
3823   HOST_WIDE_INT offset = 0;
3824   rtx temp;
3825   rtx seq;
3826   int i, j;
3827   const char *fmt;
3828
3829   /* Re-start here to avoid recursion in common cases.  */
3830  restart:
3831
3832   x = *loc;
3833   if (x == 0)
3834     return 1;
3835
3836   /* We may have detected and deleted invalid asm statements.  */
3837   if (object && INSN_P (object) && INSN_DELETED_P (object))
3838     return 1;
3839
3840   code = GET_CODE (x);
3841
3842   /* Check for some special cases.  */
3843   switch (code)
3844     {
3845     case CONST_INT:
3846     case CONST_DOUBLE:
3847     case CONST_VECTOR:
3848     case CONST:
3849     case SYMBOL_REF:
3850     case CODE_LABEL:
3851     case PC:
3852     case CC0:
3853     case ASM_INPUT:
3854     case ADDR_VEC:
3855     case ADDR_DIFF_VEC:
3856     case RETURN:
3857       return 1;
3858
3859     case SET:
3860       /* We are allowed to set the virtual registers.  This means that
3861          the actual register should receive the source minus the
3862          appropriate offset.  This is used, for example, in the handling
3863          of non-local gotos.  */
3864       if ((new = instantiate_new_reg (SET_DEST (x), &offset)) != 0)
3865         {
3866           rtx src = SET_SRC (x);
3867
3868           /* We are setting the register, not using it, so the relevant
3869              offset is the negative of the offset to use were we using
3870              the register.  */
3871           offset = - offset;
3872           instantiate_virtual_regs_1 (&src, NULL_RTX, 0);
3873
3874           /* The only valid sources here are PLUS or REG.  Just do
3875              the simplest possible thing to handle them.  */
3876           if (!REG_P (src) && GET_CODE (src) != PLUS)
3877             {
3878               instantiate_virtual_regs_lossage (object);
3879               return 1;
3880             }
3881
3882           start_sequence ();
3883           if (!REG_P (src))
3884             temp = force_operand (src, NULL_RTX);
3885           else
3886             temp = src;
3887           temp = force_operand (plus_constant (temp, offset), NULL_RTX);
3888           seq = get_insns ();
3889           end_sequence ();
3890
3891           emit_insn_before (seq, object);
3892           SET_DEST (x) = new;
3893
3894           if (! validate_change (object, &SET_SRC (x), temp, 0)
3895               || ! extra_insns)
3896             instantiate_virtual_regs_lossage (object);
3897
3898           return 1;
3899         }
3900
3901       instantiate_virtual_regs_1 (&SET_DEST (x), object, extra_insns);
3902       loc = &SET_SRC (x);
3903       goto restart;
3904
3905     case PLUS:
3906       /* Handle special case of virtual register plus constant.  */
3907       if (CONSTANT_P (XEXP (x, 1)))
3908         {
3909           rtx old, new_offset;
3910
3911           /* Check for (plus (plus VIRT foo) (const_int)) first.  */
3912           if (GET_CODE (XEXP (x, 0)) == PLUS)
3913             {
3914               if ((new = instantiate_new_reg (XEXP (XEXP (x, 0), 0), &offset)))
3915                 {
3916                   instantiate_virtual_regs_1 (&XEXP (XEXP (x, 0), 1), object,
3917                                               extra_insns);
3918                   new = gen_rtx_PLUS (Pmode, new, XEXP (XEXP (x, 0), 1));
3919                 }
3920               else
3921                 {
3922                   loc = &XEXP (x, 0);
3923                   goto restart;
3924                 }
3925             }
3926
3927 #ifdef POINTERS_EXTEND_UNSIGNED
3928           /* If we have (plus (subreg (virtual-reg)) (const_int)), we know
3929              we can commute the PLUS and SUBREG because pointers into the
3930              frame are well-behaved.  */
3931           else if (GET_CODE (XEXP (x, 0)) == SUBREG && GET_MODE (x) == ptr_mode
3932                    && GET_CODE (XEXP (x, 1)) == CONST_INT
3933                    && 0 != (new
3934                             = instantiate_new_reg (SUBREG_REG (XEXP (x, 0)),
3935                                                    &offset))
3936                    && validate_change (object, loc,
3937                                        plus_constant (gen_lowpart (ptr_mode,
3938                                                                    new),
3939                                                       offset
3940                                                       + INTVAL (XEXP (x, 1))),
3941                                        0))
3942                 return 1;
3943 #endif
3944           else if ((new = instantiate_new_reg (XEXP (x, 0), &offset)) == 0)
3945             {
3946               /* We know the second operand is a constant.  Unless the
3947                  first operand is a REG (which has been already checked),
3948                  it needs to be checked.  */
3949               if (!REG_P (XEXP (x, 0)))
3950                 {
3951                   loc = &XEXP (x, 0);
3952                   goto restart;
3953                 }
3954               return 1;
3955             }
3956
3957           new_offset = plus_constant (XEXP (x, 1), offset);
3958
3959           /* If the new constant is zero, try to replace the sum with just
3960              the register.  */
3961           if (new_offset == const0_rtx
3962               && validate_change (object, loc, new, 0))
3963             return 1;
3964
3965           /* Next try to replace the register and new offset.
3966              There are two changes to validate here and we can't assume that
3967              in the case of old offset equals new just changing the register
3968              will yield a valid insn.  In the interests of a little efficiency,
3969              however, we only call validate change once (we don't queue up the
3970              changes and then call apply_change_group).  */
3971
3972           old = XEXP (x, 0);
3973           if (offset == 0
3974               ? ! validate_change (object, &XEXP (x, 0), new, 0)
3975               : (XEXP (x, 0) = new,
3976                  ! validate_change (object, &XEXP (x, 1), new_offset, 0)))
3977             {
3978               if (! extra_insns)
3979                 {
3980                   XEXP (x, 0) = old;
3981                   return 0;
3982                 }
3983
3984               /* Otherwise copy the new constant into a register and replace
3985                  constant with that register.  */
3986               temp = gen_reg_rtx (Pmode);
3987               XEXP (x, 0) = new;
3988               if (validate_change (object, &XEXP (x, 1), temp, 0))
3989                 emit_insn_before (gen_move_insn (temp, new_offset), object);
3990               else
3991                 {
3992                   /* If that didn't work, replace this expression with a
3993                      register containing the sum.  */
3994
3995                   XEXP (x, 0) = old;
3996                   new = gen_rtx_PLUS (Pmode, new, new_offset);
3997
3998                   start_sequence ();
3999                   temp = force_operand (new, NULL_RTX);
4000                   seq = get_insns ();
4001                   end_sequence ();
4002
4003                   emit_insn_before (seq, object);
4004                   if (! validate_change (object, loc, temp, 0)
4005                       && ! validate_replace_rtx (x, temp, object))
4006                     {
4007                       instantiate_virtual_regs_lossage (object);
4008                       return 1;
4009                     }
4010                 }
4011             }
4012
4013           return 1;
4014         }
4015
4016       /* Fall through to generic two-operand expression case.  */
4017     case EXPR_LIST:
4018     case CALL:
4019     case COMPARE:
4020     case MINUS:
4021     case MULT:
4022     case DIV:      case UDIV:
4023     case MOD:      case UMOD:
4024     case AND:      case IOR:      case XOR:
4025     case ROTATERT: case ROTATE:
4026     case ASHIFTRT: case LSHIFTRT: case ASHIFT:
4027     case NE:       case EQ:
4028     case GE:       case GT:       case GEU:    case GTU:
4029     case LE:       case LT:       case LEU:    case LTU:
4030       if (XEXP (x, 1) && ! CONSTANT_P (XEXP (x, 1)))
4031         instantiate_virtual_regs_1 (&XEXP (x, 1), object, extra_insns);
4032       loc = &XEXP (x, 0);
4033       goto restart;
4034
4035     case MEM:
4036       /* Most cases of MEM that convert to valid addresses have already been
4037          handled by our scan of decls.  The only special handling we
4038          need here is to make a copy of the rtx to ensure it isn't being
4039          shared if we have to change it to a pseudo.
4040
4041          If the rtx is a simple reference to an address via a virtual register,
4042          it can potentially be shared.  In such cases, first try to make it
4043          a valid address, which can also be shared.  Otherwise, copy it and
4044          proceed normally.
4045
4046          First check for common cases that need no processing.  These are
4047          usually due to instantiation already being done on a previous instance
4048          of a shared rtx.  */
4049
4050       temp = XEXP (x, 0);
4051       if (CONSTANT_ADDRESS_P (temp)
4052 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4053           || temp == arg_pointer_rtx
4054 #endif
4055 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
4056           || temp == hard_frame_pointer_rtx
4057 #endif
4058           || temp == frame_pointer_rtx)
4059         return 1;
4060
4061       if (GET_CODE (temp) == PLUS
4062           && CONSTANT_ADDRESS_P (XEXP (temp, 1))
4063           && (XEXP (temp, 0) == frame_pointer_rtx
4064 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
4065               || XEXP (temp, 0) == hard_frame_pointer_rtx
4066 #endif
4067 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4068               || XEXP (temp, 0) == arg_pointer_rtx
4069 #endif
4070               ))
4071         return 1;
4072
4073       if (temp == virtual_stack_vars_rtx
4074           || temp == virtual_incoming_args_rtx
4075           || (GET_CODE (temp) == PLUS
4076               && CONSTANT_ADDRESS_P (XEXP (temp, 1))
4077               && (XEXP (temp, 0) == virtual_stack_vars_rtx
4078                   || XEXP (temp, 0) == virtual_incoming_args_rtx)))
4079         {
4080           /* This MEM may be shared.  If the substitution can be done without
4081              the need to generate new pseudos, we want to do it in place
4082              so all copies of the shared rtx benefit.  The call below will
4083              only make substitutions if the resulting address is still
4084              valid.
4085
4086              Note that we cannot pass X as the object in the recursive call
4087              since the insn being processed may not allow all valid
4088              addresses.  However, if we were not passed on object, we can
4089              only modify X without copying it if X will have a valid
4090              address.
4091
4092              ??? Also note that this can still lose if OBJECT is an insn that
4093              has less restrictions on an address that some other insn.
4094              In that case, we will modify the shared address.  This case
4095              doesn't seem very likely, though.  One case where this could
4096              happen is in the case of a USE or CLOBBER reference, but we
4097              take care of that below.  */
4098
4099           if (instantiate_virtual_regs_1 (&XEXP (x, 0),
4100                                           object ? object : x, 0))
4101             return 1;
4102
4103           /* Otherwise make a copy and process that copy.  We copy the entire
4104              RTL expression since it might be a PLUS which could also be
4105              shared.  */
4106           *loc = x = copy_rtx (x);
4107         }
4108
4109       /* Fall through to generic unary operation case.  */
4110     case PREFETCH:
4111     case SUBREG:
4112     case STRICT_LOW_PART:
4113     case NEG:          case NOT:
4114     case PRE_DEC:      case PRE_INC:      case POST_DEC:    case POST_INC:
4115     case SIGN_EXTEND:  case ZERO_EXTEND:
4116     case TRUNCATE:     case FLOAT_EXTEND: case FLOAT_TRUNCATE:
4117     case FLOAT:        case FIX:
4118     case UNSIGNED_FIX: case UNSIGNED_FLOAT:
4119     case ABS:
4120     case SQRT:
4121     case FFS:
4122     case CLZ:          case CTZ:
4123     case POPCOUNT:     case PARITY:
4124       /* These case either have just one operand or we know that we need not
4125          check the rest of the operands.  */
4126       loc = &XEXP (x, 0);
4127       goto restart;
4128
4129     case USE:
4130     case CLOBBER:
4131       /* If the operand is a MEM, see if the change is a valid MEM.  If not,
4132          go ahead and make the invalid one, but do it to a copy.  For a REG,
4133          just make the recursive call, since there's no chance of a problem.  */
4134
4135       if ((GET_CODE (XEXP (x, 0)) == MEM
4136            && instantiate_virtual_regs_1 (&XEXP (XEXP (x, 0), 0), XEXP (x, 0),
4137                                           0))
4138           || (REG_P (XEXP (x, 0))
4139               && instantiate_virtual_regs_1 (&XEXP (x, 0), object, 0)))
4140         return 1;
4141
4142       XEXP (x, 0) = copy_rtx (XEXP (x, 0));
4143       loc = &XEXP (x, 0);
4144       goto restart;
4145
4146     case REG:
4147       /* Try to replace with a PLUS.  If that doesn't work, compute the sum
4148          in front of this insn and substitute the temporary.  */
4149       if ((new = instantiate_new_reg (x, &offset)) != 0)
4150         {
4151           temp = plus_constant (new, offset);
4152           if (!validate_change (object, loc, temp, 0))
4153             {
4154               if (! extra_insns)
4155                 return 0;
4156
4157               start_sequence ();
4158               temp = force_operand (temp, NULL_RTX);
4159               seq = get_insns ();
4160               end_sequence ();
4161
4162               emit_insn_before (seq, object);
4163               if (! validate_change (object, loc, temp, 0)
4164                   && ! validate_replace_rtx (x, temp, object))
4165                 instantiate_virtual_regs_lossage (object);
4166             }
4167         }
4168
4169       return 1;
4170
4171     case ADDRESSOF:
4172       if (REG_P (XEXP (x, 0)))
4173         return 1;
4174
4175       else if (GET_CODE (XEXP (x, 0)) == MEM)
4176         {
4177           /* If we have a (addressof (mem ..)), do any instantiation inside
4178              since we know we'll be making the inside valid when we finally
4179              remove the ADDRESSOF.  */
4180           instantiate_virtual_regs_1 (&XEXP (XEXP (x, 0), 0), NULL_RTX, 0);
4181           return 1;
4182         }
4183       break;
4184
4185     default:
4186       break;
4187     }
4188
4189   /* Scan all subexpressions.  */
4190   fmt = GET_RTX_FORMAT (code);
4191   for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
4192     if (*fmt == 'e')
4193       {
4194         if (!instantiate_virtual_regs_1 (&XEXP (x, i), object, extra_insns))
4195           return 0;
4196       }
4197     else if (*fmt == 'E')
4198       for (j = 0; j < XVECLEN (x, i); j++)
4199         if (! instantiate_virtual_regs_1 (&XVECEXP (x, i, j), object,
4200                                           extra_insns))
4201           return 0;
4202
4203   return 1;
4204 }
4205 \f
4206 /* Return 1 if EXP is an aggregate type (or a value with aggregate type).
4207    This means a type for which function calls must pass an address to the
4208    function or get an address back from the function.
4209    EXP may be a type node or an expression (whose type is tested).  */
4210
4211 int
4212 aggregate_value_p (tree exp, tree fntype)
4213 {
4214   int i, regno, nregs;
4215   rtx reg;
4216
4217   tree type = (TYPE_P (exp)) ? exp : TREE_TYPE (exp);
4218
4219   if (fntype)
4220     switch (TREE_CODE (fntype))
4221       {
4222       case CALL_EXPR:
4223         fntype = get_callee_fndecl (fntype);
4224         fntype = fntype ? TREE_TYPE (fntype) : 0;
4225         break;
4226       case FUNCTION_DECL:
4227         fntype = TREE_TYPE (fntype);
4228         break;
4229       case FUNCTION_TYPE:
4230       case METHOD_TYPE:
4231         break;
4232       case IDENTIFIER_NODE:
4233         fntype = 0;
4234         break;
4235       default:
4236         /* We don't expect other rtl types here.  */
4237         abort();
4238       }
4239
4240   if (TREE_CODE (type) == VOID_TYPE)
4241     return 0;
4242   if (targetm.calls.return_in_memory (type, fntype))
4243     return 1;
4244   /* Types that are TREE_ADDRESSABLE must be constructed in memory,
4245      and thus can't be returned in registers.  */
4246   if (TREE_ADDRESSABLE (type))
4247     return 1;
4248   if (flag_pcc_struct_return && AGGREGATE_TYPE_P (type))
4249     return 1;
4250   /* Make sure we have suitable call-clobbered regs to return
4251      the value in; if not, we must return it in memory.  */
4252   reg = hard_function_value (type, 0, 0);
4253
4254   /* If we have something other than a REG (e.g. a PARALLEL), then assume
4255      it is OK.  */
4256   if (!REG_P (reg))
4257     return 0;
4258
4259   regno = REGNO (reg);
4260   nregs = hard_regno_nregs[regno][TYPE_MODE (type)];
4261   for (i = 0; i < nregs; i++)
4262     if (! call_used_regs[regno + i])
4263       return 1;
4264   return 0;
4265 }
4266 \f
4267 /* Assign RTL expressions to the function's parameters.
4268    This may involve copying them into registers and using
4269    those registers as the RTL for them.  */
4270
4271 void
4272 assign_parms (tree fndecl)
4273 {
4274   tree parm;
4275   CUMULATIVE_ARGS args_so_far;
4276   /* Total space needed so far for args on the stack,
4277      given as a constant and a tree-expression.  */
4278   struct args_size stack_args_size;
4279   HOST_WIDE_INT extra_pretend_bytes = 0;
4280   tree fntype = TREE_TYPE (fndecl);
4281   tree fnargs = DECL_ARGUMENTS (fndecl), orig_fnargs;
4282   /* This is used for the arg pointer when referring to stack args.  */
4283   rtx internal_arg_pointer;
4284   /* This is a dummy PARM_DECL that we used for the function result if
4285      the function returns a structure.  */
4286   tree function_result_decl = 0;
4287   int varargs_setup = 0;
4288   int reg_parm_stack_space ATTRIBUTE_UNUSED = 0;
4289   rtx conversion_insns = 0;
4290
4291   /* Nonzero if function takes extra anonymous args.
4292      This means the last named arg must be on the stack
4293      right before the anonymous ones.  */
4294   int stdarg = current_function_stdarg;
4295
4296   /* If the reg that the virtual arg pointer will be translated into is
4297      not a fixed reg or is the stack pointer, make a copy of the virtual
4298      arg pointer, and address parms via the copy.  The frame pointer is
4299      considered fixed even though it is not marked as such.
4300
4301      The second time through, simply use ap to avoid generating rtx.  */
4302
4303   if ((ARG_POINTER_REGNUM == STACK_POINTER_REGNUM
4304        || ! (fixed_regs[ARG_POINTER_REGNUM]
4305              || ARG_POINTER_REGNUM == FRAME_POINTER_REGNUM)))
4306     internal_arg_pointer = copy_to_reg (virtual_incoming_args_rtx);
4307   else
4308     internal_arg_pointer = virtual_incoming_args_rtx;
4309   current_function_internal_arg_pointer = internal_arg_pointer;
4310
4311   stack_args_size.constant = 0;
4312   stack_args_size.var = 0;
4313
4314   /* If struct value address is treated as the first argument, make it so.  */
4315   if (aggregate_value_p (DECL_RESULT (fndecl), fndecl)
4316       && ! current_function_returns_pcc_struct
4317       && targetm.calls.struct_value_rtx (TREE_TYPE (fndecl), 1) == 0)
4318     {
4319       tree type = build_pointer_type (TREE_TYPE (fntype));
4320
4321       function_result_decl = build_decl (PARM_DECL, NULL_TREE, type);
4322
4323       DECL_ARG_TYPE (function_result_decl) = type;
4324       TREE_CHAIN (function_result_decl) = fnargs;
4325       fnargs = function_result_decl;
4326     }
4327
4328   orig_fnargs = fnargs;
4329
4330   max_parm_reg = LAST_VIRTUAL_REGISTER + 1;
4331   parm_reg_stack_loc = ggc_alloc_cleared (max_parm_reg * sizeof (rtx));
4332
4333   /* If the target wants to split complex arguments into scalars, do so.  */
4334   if (targetm.calls.split_complex_arg)
4335     fnargs = split_complex_args (fnargs);
4336
4337 #ifdef REG_PARM_STACK_SPACE
4338   reg_parm_stack_space = REG_PARM_STACK_SPACE (fndecl);
4339 #endif
4340
4341 #ifdef INIT_CUMULATIVE_INCOMING_ARGS
4342   INIT_CUMULATIVE_INCOMING_ARGS (args_so_far, fntype, NULL_RTX);
4343 #else
4344   INIT_CUMULATIVE_ARGS (args_so_far, fntype, NULL_RTX, fndecl, -1);
4345 #endif
4346
4347   /* We haven't yet found an argument that we must push and pretend the
4348      caller did.  */
4349   current_function_pretend_args_size = 0;
4350
4351   for (parm = fnargs; parm; parm = TREE_CHAIN (parm))
4352     {
4353       rtx entry_parm;
4354       rtx stack_parm;
4355       enum machine_mode promoted_mode, passed_mode;
4356       enum machine_mode nominal_mode, promoted_nominal_mode;
4357       int unsignedp;
4358       struct locate_and_pad_arg_data locate;
4359       int passed_pointer = 0;
4360       int did_conversion = 0;
4361       tree passed_type = DECL_ARG_TYPE (parm);
4362       tree nominal_type = TREE_TYPE (parm);
4363       int last_named = 0, named_arg;
4364       int in_regs;
4365       int partial = 0;
4366       int pretend_bytes = 0;
4367       int loaded_in_reg = 0;
4368
4369       /* Set LAST_NAMED if this is last named arg before last
4370          anonymous args.  */
4371       if (stdarg)
4372         {
4373           tree tem;
4374
4375           for (tem = TREE_CHAIN (parm); tem; tem = TREE_CHAIN (tem))
4376             if (DECL_NAME (tem))
4377               break;
4378
4379           if (tem == 0)
4380             last_named = 1;
4381         }
4382       /* Set NAMED_ARG if this arg should be treated as a named arg.  For
4383          most machines, if this is a varargs/stdarg function, then we treat
4384          the last named arg as if it were anonymous too.  */
4385       named_arg = (targetm.calls.strict_argument_naming (&args_so_far)
4386                    ? 1 : !last_named);
4387
4388       if (TREE_TYPE (parm) == error_mark_node
4389           /* This can happen after weird syntax errors
4390              or if an enum type is defined among the parms.  */
4391           || TREE_CODE (parm) != PARM_DECL
4392           || passed_type == NULL)
4393         {
4394           SET_DECL_RTL (parm, gen_rtx_MEM (BLKmode, const0_rtx));
4395           DECL_INCOMING_RTL (parm) = DECL_RTL (parm);
4396           TREE_USED (parm) = 1;
4397           continue;
4398         }
4399
4400       /* Find mode of arg as it is passed, and mode of arg
4401          as it should be during execution of this function.  */
4402       passed_mode = TYPE_MODE (passed_type);
4403       nominal_mode = TYPE_MODE (nominal_type);
4404
4405       /* If the parm's mode is VOID, its value doesn't matter,
4406          and avoid the usual things like emit_move_insn that could crash.  */
4407       if (nominal_mode == VOIDmode)
4408         {
4409           SET_DECL_RTL (parm, const0_rtx);
4410           DECL_INCOMING_RTL (parm) = DECL_RTL (parm);
4411           continue;
4412         }
4413
4414       /* If the parm is to be passed as a transparent union, use the
4415          type of the first field for the tests below.  We have already
4416          verified that the modes are the same.  */
4417       if (DECL_TRANSPARENT_UNION (parm)
4418           || (TREE_CODE (passed_type) == UNION_TYPE
4419               && TYPE_TRANSPARENT_UNION (passed_type)))
4420         passed_type = TREE_TYPE (TYPE_FIELDS (passed_type));
4421
4422       /* See if this arg was passed by invisible reference.  It is if
4423          it is an object whose size depends on the contents of the
4424          object itself or if the machine requires these objects be passed
4425          that way.  */
4426
4427       if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (passed_type))
4428           || TREE_ADDRESSABLE (passed_type)
4429 #ifdef FUNCTION_ARG_PASS_BY_REFERENCE
4430           || FUNCTION_ARG_PASS_BY_REFERENCE (args_so_far, passed_mode,
4431                                              passed_type, named_arg)
4432 #endif
4433           )
4434         {
4435           passed_type = nominal_type = build_pointer_type (passed_type);
4436           passed_pointer = 1;
4437           passed_mode = nominal_mode = Pmode;
4438         }
4439       /* See if the frontend wants to pass this by invisible reference.  */
4440       else if (passed_type != nominal_type
4441                && POINTER_TYPE_P (passed_type)
4442                && TREE_TYPE (passed_type) == nominal_type)
4443         {
4444           nominal_type = passed_type;
4445           passed_pointer = 1;
4446           passed_mode = nominal_mode = Pmode;
4447         }
4448
4449       promoted_mode = passed_mode;
4450
4451       if (targetm.calls.promote_function_args (TREE_TYPE (fndecl)))
4452         {
4453           /* Compute the mode in which the arg is actually extended to.  */
4454           unsignedp = TYPE_UNSIGNED (passed_type);
4455           promoted_mode = promote_mode (passed_type, promoted_mode,
4456                                         &unsignedp, 1);
4457         }
4458
4459       /* Let machine desc say which reg (if any) the parm arrives in.
4460          0 means it arrives on the stack.  */
4461 #ifdef FUNCTION_INCOMING_ARG
4462       entry_parm = FUNCTION_INCOMING_ARG (args_so_far, promoted_mode,
4463                                           passed_type, named_arg);
4464 #else
4465       entry_parm = FUNCTION_ARG (args_so_far, promoted_mode,
4466                                  passed_type, named_arg);
4467 #endif
4468
4469       if (entry_parm == 0)
4470         promoted_mode = passed_mode;
4471
4472       /* If this is the last named parameter, do any required setup for
4473          varargs or stdargs.  We need to know about the case of this being an
4474          addressable type, in which case we skip the registers it
4475          would have arrived in.
4476
4477          For stdargs, LAST_NAMED will be set for two parameters, the one that
4478          is actually the last named, and the dummy parameter.  We only
4479          want to do this action once.
4480
4481          Also, indicate when RTL generation is to be suppressed.  */
4482       if (last_named && !varargs_setup)
4483         {
4484           int varargs_pretend_bytes = 0;
4485           targetm.calls.setup_incoming_varargs (&args_so_far, promoted_mode,
4486                                                 passed_type,
4487                                                 &varargs_pretend_bytes, 0);
4488           varargs_setup = 1;
4489
4490           /* If the back-end has requested extra stack space, record how
4491              much is needed.  Do not change pretend_args_size otherwise
4492              since it may be nonzero from an earlier partial argument.  */
4493           if (varargs_pretend_bytes > 0)
4494             current_function_pretend_args_size = varargs_pretend_bytes;
4495         }
4496
4497       /* Determine parm's home in the stack,
4498          in case it arrives in the stack or we should pretend it did.
4499
4500          Compute the stack position and rtx where the argument arrives
4501          and its size.
4502
4503          There is one complexity here:  If this was a parameter that would
4504          have been passed in registers, but wasn't only because it is
4505          __builtin_va_alist, we want locate_and_pad_parm to treat it as if
4506          it came in a register so that REG_PARM_STACK_SPACE isn't skipped.
4507          In this case, we call FUNCTION_ARG with NAMED set to 1 instead of
4508          0 as it was the previous time.  */
4509       in_regs = entry_parm != 0;
4510 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4511       in_regs = 1;
4512 #endif
4513       if (!in_regs && !named_arg)
4514         {
4515           int pretend_named =
4516             targetm.calls.pretend_outgoing_varargs_named (&args_so_far);
4517           if (pretend_named)
4518             {
4519 #ifdef FUNCTION_INCOMING_ARG
4520               in_regs = FUNCTION_INCOMING_ARG (args_so_far, promoted_mode,
4521                                                passed_type,
4522                                                pretend_named) != 0;
4523 #else
4524               in_regs = FUNCTION_ARG (args_so_far, promoted_mode,
4525                                       passed_type,
4526                                       pretend_named) != 0;
4527 #endif
4528             }
4529         }
4530
4531       /* If this parameter was passed both in registers and in the stack,
4532          use the copy on the stack.  */
4533       if (MUST_PASS_IN_STACK (promoted_mode, passed_type))
4534         entry_parm = 0;
4535
4536 #ifdef FUNCTION_ARG_PARTIAL_NREGS
4537       if (entry_parm)
4538         {
4539           partial = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, promoted_mode,
4540                                                 passed_type, named_arg);
4541           if (partial
4542               /* The caller might already have allocated stack space
4543                  for the register parameters.  */
4544               && reg_parm_stack_space == 0)
4545             {
4546               /* Part of this argument is passed in registers and part
4547                  is passed on the stack.  Ask the prologue code to extend
4548                  the stack part so that we can recreate the full value.
4549
4550                  PRETEND_BYTES is the size of the registers we need to store.
4551                  CURRENT_FUNCTION_PRETEND_ARGS_SIZE is the amount of extra
4552                  stack space that the prologue should allocate.
4553
4554                  Internally, gcc assumes that the argument pointer is
4555                  aligned to STACK_BOUNDARY bits.  This is used both for
4556                  alignment optimizations (see init_emit) and to locate
4557                  arguments that are aligned to more than PARM_BOUNDARY
4558                  bits.  We must preserve this invariant by rounding
4559                  CURRENT_FUNCTION_PRETEND_ARGS_SIZE up to a stack
4560                  boundary.  */
4561
4562               /* We assume at most one partial arg, and it must be the first
4563                  argument on the stack.  */
4564               if (extra_pretend_bytes || current_function_pretend_args_size)
4565                 abort ();
4566
4567               pretend_bytes = partial * UNITS_PER_WORD;
4568               current_function_pretend_args_size
4569                 = CEIL_ROUND (pretend_bytes, STACK_BYTES);
4570
4571               /* We want to align relative to the actual stack pointer, so
4572                  don't include this in the stack size until later.  */
4573               extra_pretend_bytes = current_function_pretend_args_size;
4574             }
4575         }
4576 #endif
4577
4578       memset (&locate, 0, sizeof (locate));
4579       locate_and_pad_parm (promoted_mode, passed_type, in_regs,
4580                            entry_parm ? partial : 0, fndecl,
4581                            &stack_args_size, &locate);
4582       /* Adjust offsets to include the pretend args.  */
4583       locate.slot_offset.constant += extra_pretend_bytes - pretend_bytes;
4584       locate.offset.constant += extra_pretend_bytes - pretend_bytes;
4585
4586       {
4587         rtx offset_rtx;
4588         unsigned int align, boundary;
4589
4590         /* If we're passing this arg using a reg, make its stack home
4591            the aligned stack slot.  */
4592         if (entry_parm)
4593           offset_rtx = ARGS_SIZE_RTX (locate.slot_offset);
4594         else
4595           offset_rtx = ARGS_SIZE_RTX (locate.offset);
4596
4597         if (offset_rtx == const0_rtx)
4598           stack_parm = gen_rtx_MEM (promoted_mode, internal_arg_pointer);
4599         else
4600           stack_parm = gen_rtx_MEM (promoted_mode,
4601                                     gen_rtx_PLUS (Pmode,
4602                                                   internal_arg_pointer,
4603                                                   offset_rtx));
4604
4605         set_mem_attributes (stack_parm, parm, 1);
4606
4607         boundary = FUNCTION_ARG_BOUNDARY (promoted_mode, passed_type);
4608         align = 0;
4609
4610         /* If we're padding upward, we know that the alignment of the slot
4611            is FUNCTION_ARG_BOUNDARY.  If we're using slot_offset, we're
4612            intentionally forcing upward padding.  Otherwise we have to come
4613            up with a guess at the alignment based on OFFSET_RTX.  */
4614         if (locate.where_pad == upward || entry_parm)
4615           align = boundary;
4616         else if (GET_CODE (offset_rtx) == CONST_INT)
4617           {
4618             align = INTVAL (offset_rtx) * BITS_PER_UNIT | boundary;
4619             align = align & -align;
4620           }
4621         if (align > 0)
4622           set_mem_align (stack_parm, align);
4623
4624         if (entry_parm)
4625           set_reg_attrs_for_parm (entry_parm, stack_parm);
4626       }
4627
4628       /* If this parm was passed part in regs and part in memory,
4629          pretend it arrived entirely in memory
4630          by pushing the register-part onto the stack.
4631
4632          In the special case of a DImode or DFmode that is split,
4633          we could put it together in a pseudoreg directly,
4634          but for now that's not worth bothering with.  */
4635
4636       if (partial)
4637         {
4638           /* Handle calls that pass values in multiple non-contiguous
4639              locations.  The Irix 6 ABI has examples of this.  */
4640           if (GET_CODE (entry_parm) == PARALLEL)
4641             emit_group_store (validize_mem (stack_parm), entry_parm,
4642                               TREE_TYPE (parm),
4643                               int_size_in_bytes (TREE_TYPE (parm)));
4644
4645           else
4646             move_block_from_reg (REGNO (entry_parm), validize_mem (stack_parm),
4647                                  partial);
4648
4649           entry_parm = stack_parm;
4650         }
4651
4652       /* If we didn't decide this parm came in a register,
4653          by default it came on the stack.  */
4654       if (entry_parm == 0)
4655         entry_parm = stack_parm;
4656
4657       /* Record permanently how this parm was passed.  */
4658       set_decl_incoming_rtl (parm, entry_parm);
4659
4660       /* If there is actually space on the stack for this parm,
4661          count it in stack_args_size; otherwise set stack_parm to 0
4662          to indicate there is no preallocated stack slot for the parm.  */
4663
4664       if (entry_parm == stack_parm
4665           || (GET_CODE (entry_parm) == PARALLEL
4666               && XEXP (XVECEXP (entry_parm, 0, 0), 0) == NULL_RTX)
4667 #if defined (REG_PARM_STACK_SPACE)
4668           /* On some machines, even if a parm value arrives in a register
4669              there is still an (uninitialized) stack slot allocated
4670              for it.  */
4671           || REG_PARM_STACK_SPACE (fndecl) > 0
4672 #endif
4673           )
4674         {
4675           stack_args_size.constant += locate.size.constant;
4676           if (locate.size.var)
4677             ADD_PARM_SIZE (stack_args_size, locate.size.var);
4678         }
4679       else
4680         /* No stack slot was pushed for this parm.  */
4681         stack_parm = 0;
4682
4683       /* Update info on where next arg arrives in registers.  */
4684
4685       FUNCTION_ARG_ADVANCE (args_so_far, promoted_mode,
4686                             passed_type, named_arg);
4687
4688       /* If we can't trust the parm stack slot to be aligned enough
4689          for its ultimate type, don't use that slot after entry.
4690          We'll make another stack slot, if we need one.  */
4691       if (STRICT_ALIGNMENT && stack_parm
4692           && GET_MODE_ALIGNMENT (nominal_mode) > MEM_ALIGN (stack_parm))
4693         stack_parm = 0;
4694
4695       /* If parm was passed in memory, and we need to convert it on entry,
4696          don't store it back in that same slot.  */
4697       if (entry_parm == stack_parm
4698           && nominal_mode != BLKmode && nominal_mode != passed_mode)
4699         stack_parm = 0;
4700
4701       /* When an argument is passed in multiple locations, we can't
4702          make use of this information, but we can save some copying if
4703          the whole argument is passed in a single register.  */
4704       if (GET_CODE (entry_parm) == PARALLEL
4705           && nominal_mode != BLKmode && passed_mode != BLKmode)
4706         {
4707           int i, len = XVECLEN (entry_parm, 0);
4708
4709           for (i = 0; i < len; i++)
4710             if (XEXP (XVECEXP (entry_parm, 0, i), 0) != NULL_RTX
4711                 && REG_P (XEXP (XVECEXP (entry_parm, 0, i), 0))
4712                 && (GET_MODE (XEXP (XVECEXP (entry_parm, 0, i), 0))
4713                     == passed_mode)
4714                 && INTVAL (XEXP (XVECEXP (entry_parm, 0, i), 1)) == 0)
4715               {
4716                 entry_parm = XEXP (XVECEXP (entry_parm, 0, i), 0);
4717                 set_decl_incoming_rtl (parm, entry_parm);
4718                 break;
4719               }
4720         }
4721
4722       /* ENTRY_PARM is an RTX for the parameter as it arrives,
4723          in the mode in which it arrives.
4724          STACK_PARM is an RTX for a stack slot where the parameter can live
4725          during the function (in case we want to put it there).
4726          STACK_PARM is 0 if no stack slot was pushed for it.
4727
4728          Now output code if necessary to convert ENTRY_PARM to
4729          the type in which this function declares it,
4730          and store that result in an appropriate place,
4731          which may be a pseudo reg, may be STACK_PARM,
4732          or may be a local stack slot if STACK_PARM is 0.
4733
4734          Set DECL_RTL to that place.  */
4735
4736       if (GET_CODE (entry_parm) == PARALLEL && nominal_mode != BLKmode
4737           && XVECLEN (entry_parm, 0) > 1)
4738         {
4739           /* Reconstitute objects the size of a register or larger using
4740              register operations instead of the stack.  */
4741           rtx parmreg = gen_reg_rtx (nominal_mode);
4742
4743           if (REG_P (parmreg))
4744             {
4745               unsigned int regno = REGNO (parmreg);
4746
4747               emit_group_store (parmreg, entry_parm, TREE_TYPE (parm),
4748                                 int_size_in_bytes (TREE_TYPE (parm)));
4749               SET_DECL_RTL (parm, parmreg);
4750               loaded_in_reg = 1;
4751
4752               if (regno >= max_parm_reg)
4753                 {
4754                   rtx *new;
4755                   int old_max_parm_reg = max_parm_reg;
4756
4757                   /* It's slow to expand this one register at a time,
4758                      but it's also rare and we need max_parm_reg to be
4759                      precisely correct.  */
4760                   max_parm_reg = regno + 1;
4761                   new = ggc_realloc (parm_reg_stack_loc,
4762                                      max_parm_reg * sizeof (rtx));
4763                   memset (new + old_max_parm_reg, 0,
4764                           (max_parm_reg - old_max_parm_reg) * sizeof (rtx));
4765                   parm_reg_stack_loc = new;
4766                   parm_reg_stack_loc[regno] = stack_parm;
4767                 }
4768             }
4769         }
4770
4771       if (nominal_mode == BLKmode
4772 #ifdef BLOCK_REG_PADDING
4773           || (locate.where_pad == (BYTES_BIG_ENDIAN ? upward : downward)
4774               && GET_MODE_SIZE (promoted_mode) < UNITS_PER_WORD)
4775 #endif
4776           || GET_CODE (entry_parm) == PARALLEL)
4777         {
4778           /* If a BLKmode arrives in registers, copy it to a stack slot.
4779              Handle calls that pass values in multiple non-contiguous
4780              locations.  The Irix 6 ABI has examples of this.  */
4781           if (REG_P (entry_parm)
4782               || (GET_CODE (entry_parm) == PARALLEL
4783                  && (!loaded_in_reg || !optimize)))
4784             {
4785               int size = int_size_in_bytes (TREE_TYPE (parm));
4786               int size_stored = CEIL_ROUND (size, UNITS_PER_WORD);
4787               rtx mem;
4788
4789               /* Note that we will be storing an integral number of words.
4790                  So we have to be careful to ensure that we allocate an
4791                  integral number of words.  We do this below in the
4792                  assign_stack_local if space was not allocated in the argument
4793                  list.  If it was, this will not work if PARM_BOUNDARY is not
4794                  a multiple of BITS_PER_WORD.  It isn't clear how to fix this
4795                  if it becomes a problem.  Exception is when BLKmode arrives
4796                  with arguments not conforming to word_mode.  */
4797
4798               if (stack_parm == 0)
4799                 {
4800                   stack_parm = assign_stack_local (BLKmode, size_stored, 0);
4801                   PUT_MODE (stack_parm, GET_MODE (entry_parm));
4802                   set_mem_attributes (stack_parm, parm, 1);
4803                 }
4804               else if (GET_CODE (entry_parm) == PARALLEL)
4805                 ;
4806               else if (size != 0 && PARM_BOUNDARY % BITS_PER_WORD != 0)
4807                 abort ();
4808
4809               mem = validize_mem (stack_parm);
4810
4811               /* Handle calls that pass values in multiple non-contiguous
4812                  locations.  The Irix 6 ABI has examples of this.  */
4813               if (GET_CODE (entry_parm) == PARALLEL)
4814                 emit_group_store (mem, entry_parm, TREE_TYPE (parm), size);
4815
4816               else if (size == 0)
4817                 ;
4818
4819               /* If SIZE is that of a mode no bigger than a word, just use
4820                  that mode's store operation.  */
4821               else if (size <= UNITS_PER_WORD)
4822                 {
4823                   enum machine_mode mode
4824                     = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
4825
4826                   if (mode != BLKmode
4827 #ifdef BLOCK_REG_PADDING
4828                       && (size == UNITS_PER_WORD
4829                           || (BLOCK_REG_PADDING (mode, TREE_TYPE (parm), 1)
4830                               != (BYTES_BIG_ENDIAN ? upward : downward)))
4831 #endif
4832                       )
4833                     {
4834                       rtx reg = gen_rtx_REG (mode, REGNO (entry_parm));
4835                       emit_move_insn (change_address (mem, mode, 0), reg);
4836                     }
4837
4838                   /* Blocks smaller than a word on a BYTES_BIG_ENDIAN
4839                      machine must be aligned to the left before storing
4840                      to memory.  Note that the previous test doesn't
4841                      handle all cases (e.g. SIZE == 3).  */
4842                   else if (size != UNITS_PER_WORD
4843 #ifdef BLOCK_REG_PADDING
4844                            && (BLOCK_REG_PADDING (mode, TREE_TYPE (parm), 1)
4845                                == downward)
4846 #else
4847                            && BYTES_BIG_ENDIAN
4848 #endif
4849                            )
4850                     {
4851                       rtx tem, x;
4852                       int by = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
4853                       rtx reg = gen_rtx_REG (word_mode, REGNO (entry_parm));
4854
4855                       x = expand_binop (word_mode, ashl_optab, reg,
4856                                         GEN_INT (by), 0, 1, OPTAB_WIDEN);
4857                       tem = change_address (mem, word_mode, 0);
4858                       emit_move_insn (tem, x);
4859                     }
4860                   else
4861                     move_block_from_reg (REGNO (entry_parm), mem,
4862                                          size_stored / UNITS_PER_WORD);
4863                 }
4864               else
4865                 move_block_from_reg (REGNO (entry_parm), mem,
4866                                      size_stored / UNITS_PER_WORD);
4867             }
4868           /* If parm is already bound to register pair, don't change 
4869              this binding.  */
4870           if (! DECL_RTL_SET_P (parm))
4871             SET_DECL_RTL (parm, stack_parm);
4872         }
4873       else if (! ((! optimize
4874                    && ! DECL_REGISTER (parm))
4875                   || TREE_SIDE_EFFECTS (parm)
4876                   /* If -ffloat-store specified, don't put explicit
4877                      float variables into registers.  */
4878                   || (flag_float_store
4879                       && TREE_CODE (TREE_TYPE (parm)) == REAL_TYPE))
4880                /* Always assign pseudo to structure return or item passed
4881                   by invisible reference.  */
4882                || passed_pointer || parm == function_result_decl)
4883         {
4884           /* Store the parm in a pseudoregister during the function, but we
4885              may need to do it in a wider mode.  */
4886
4887           rtx parmreg;
4888           unsigned int regno, regnoi = 0, regnor = 0;
4889
4890           unsignedp = TYPE_UNSIGNED (TREE_TYPE (parm));
4891
4892           promoted_nominal_mode
4893             = promote_mode (TREE_TYPE (parm), nominal_mode, &unsignedp, 0);
4894
4895           parmreg = gen_reg_rtx (promoted_nominal_mode);
4896           mark_user_reg (parmreg);
4897
4898           /* If this was an item that we received a pointer to, set DECL_RTL
4899              appropriately.  */
4900           if (passed_pointer)
4901             {
4902               rtx x = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (passed_type)),
4903                                    parmreg);
4904               set_mem_attributes (x, parm, 1);
4905               SET_DECL_RTL (parm, x);
4906             }
4907           else
4908             {
4909               SET_DECL_RTL (parm, parmreg);
4910               maybe_set_unchanging (DECL_RTL (parm), parm);
4911             }
4912
4913           /* Copy the value into the register.  */
4914           if (nominal_mode != passed_mode
4915               || promoted_nominal_mode != promoted_mode)
4916             {
4917               int save_tree_used;
4918               /* ENTRY_PARM has been converted to PROMOTED_MODE, its
4919                  mode, by the caller.  We now have to convert it to
4920                  NOMINAL_MODE, if different.  However, PARMREG may be in
4921                  a different mode than NOMINAL_MODE if it is being stored
4922                  promoted.
4923
4924                  If ENTRY_PARM is a hard register, it might be in a register
4925                  not valid for operating in its mode (e.g., an odd-numbered
4926                  register for a DFmode).  In that case, moves are the only
4927                  thing valid, so we can't do a convert from there.  This
4928                  occurs when the calling sequence allow such misaligned
4929                  usages.
4930
4931                  In addition, the conversion may involve a call, which could
4932                  clobber parameters which haven't been copied to pseudo
4933                  registers yet.  Therefore, we must first copy the parm to
4934                  a pseudo reg here, and save the conversion until after all
4935                  parameters have been moved.  */
4936
4937               rtx tempreg = gen_reg_rtx (GET_MODE (entry_parm));
4938
4939               emit_move_insn (tempreg, validize_mem (entry_parm));
4940
4941               push_to_sequence (conversion_insns);
4942               tempreg = convert_to_mode (nominal_mode, tempreg, unsignedp);
4943
4944               if (GET_CODE (tempreg) == SUBREG
4945                   && GET_MODE (tempreg) == nominal_mode
4946                   && REG_P (SUBREG_REG (tempreg))
4947                   && nominal_mode == passed_mode
4948                   && GET_MODE (SUBREG_REG (tempreg)) == GET_MODE (entry_parm)
4949                   && GET_MODE_SIZE (GET_MODE (tempreg))
4950                      < GET_MODE_SIZE (GET_MODE (entry_parm)))
4951                 {
4952                   /* The argument is already sign/zero extended, so note it
4953                      into the subreg.  */
4954                   SUBREG_PROMOTED_VAR_P (tempreg) = 1;
4955                   SUBREG_PROMOTED_UNSIGNED_SET (tempreg, unsignedp);
4956                 }
4957
4958               /* TREE_USED gets set erroneously during expand_assignment.  */
4959               save_tree_used = TREE_USED (parm);
4960               expand_assignment (parm,
4961                                  make_tree (nominal_type, tempreg), 0);
4962               TREE_USED (parm) = save_tree_used;
4963               conversion_insns = get_insns ();
4964               did_conversion = 1;
4965               end_sequence ();
4966             }
4967           else
4968             emit_move_insn (parmreg, validize_mem (entry_parm));
4969
4970           /* If we were passed a pointer but the actual value
4971              can safely live in a register, put it in one.  */
4972           if (passed_pointer && TYPE_MODE (TREE_TYPE (parm)) != BLKmode
4973               /* If by-reference argument was promoted, demote it.  */
4974               && (TYPE_MODE (TREE_TYPE (parm)) != GET_MODE (DECL_RTL (parm))
4975                   || ! ((! optimize
4976                          && ! DECL_REGISTER (parm))
4977                         || TREE_SIDE_EFFECTS (parm)
4978                         /* If -ffloat-store specified, don't put explicit
4979                            float variables into registers.  */
4980                         || (flag_float_store
4981                             && TREE_CODE (TREE_TYPE (parm)) == REAL_TYPE))))
4982             {
4983               /* We can't use nominal_mode, because it will have been set to
4984                  Pmode above.  We must use the actual mode of the parm.  */
4985               parmreg = gen_reg_rtx (TYPE_MODE (TREE_TYPE (parm)));
4986               mark_user_reg (parmreg);
4987               if (GET_MODE (parmreg) != GET_MODE (DECL_RTL (parm)))
4988                 {
4989                   rtx tempreg = gen_reg_rtx (GET_MODE (DECL_RTL (parm)));
4990                   int unsigned_p = TYPE_UNSIGNED (TREE_TYPE (parm));
4991                   push_to_sequence (conversion_insns);
4992                   emit_move_insn (tempreg, DECL_RTL (parm));
4993                   SET_DECL_RTL (parm,
4994                                 convert_to_mode (GET_MODE (parmreg),
4995                                                  tempreg,
4996                                                  unsigned_p));
4997                   emit_move_insn (parmreg, DECL_RTL (parm));
4998                   conversion_insns = get_insns();
4999                   did_conversion = 1;
5000                   end_sequence ();
5001                 }
5002               else
5003                 emit_move_insn (parmreg, DECL_RTL (parm));
5004               SET_DECL_RTL (parm, parmreg);
5005               /* STACK_PARM is the pointer, not the parm, and PARMREG is
5006                  now the parm.  */
5007               stack_parm = 0;
5008             }
5009 #ifdef FUNCTION_ARG_CALLEE_COPIES
5010           /* If we are passed an arg by reference and it is our responsibility
5011              to make a copy, do it now.
5012              PASSED_TYPE and PASSED mode now refer to the pointer, not the
5013              original argument, so we must recreate them in the call to
5014              FUNCTION_ARG_CALLEE_COPIES.  */
5015           /* ??? Later add code to handle the case that if the argument isn't
5016              modified, don't do the copy.  */
5017
5018           else if (passed_pointer
5019                    && FUNCTION_ARG_CALLEE_COPIES (args_so_far,
5020                                                   TYPE_MODE (TREE_TYPE (passed_type)),
5021                                                   TREE_TYPE (passed_type),
5022                                                   named_arg)
5023                    && ! TREE_ADDRESSABLE (TREE_TYPE (passed_type)))
5024             {
5025               rtx copy;
5026               tree type = TREE_TYPE (passed_type);
5027
5028               /* This sequence may involve a library call perhaps clobbering
5029                  registers that haven't been copied to pseudos yet.  */
5030
5031               push_to_sequence (conversion_insns);
5032
5033               if (!COMPLETE_TYPE_P (type)
5034                   || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5035                 /* This is a variable sized object.  */
5036                 copy = gen_rtx_MEM (BLKmode,
5037                                     allocate_dynamic_stack_space
5038                                     (expr_size (parm), NULL_RTX,
5039                                      TYPE_ALIGN (type)));
5040               else
5041                 copy = assign_stack_temp (TYPE_MODE (type),
5042                                           int_size_in_bytes (type), 1);
5043               set_mem_attributes (copy, parm, 1);
5044
5045               store_expr (parm, copy, 0);
5046               emit_move_insn (parmreg, XEXP (copy, 0));
5047               conversion_insns = get_insns ();
5048               did_conversion = 1;
5049               end_sequence ();
5050             }
5051 #endif /* FUNCTION_ARG_CALLEE_COPIES */
5052
5053           /* In any case, record the parm's desired stack location
5054              in case we later discover it must live in the stack.
5055
5056              If it is a COMPLEX value, store the stack location for both
5057              halves.  */
5058
5059           if (GET_CODE (parmreg) == CONCAT)
5060             regno = MAX (REGNO (XEXP (parmreg, 0)), REGNO (XEXP (parmreg, 1)));
5061           else
5062             regno = REGNO (parmreg);
5063
5064           if (regno >= max_parm_reg)
5065             {
5066               rtx *new;
5067               int old_max_parm_reg = max_parm_reg;
5068
5069               /* It's slow to expand this one register at a time,
5070                  but it's also rare and we need max_parm_reg to be
5071                  precisely correct.  */
5072               max_parm_reg = regno + 1;
5073               new = ggc_realloc (parm_reg_stack_loc,
5074                                  max_parm_reg * sizeof (rtx));
5075               memset (new + old_max_parm_reg, 0,
5076                       (max_parm_reg - old_max_parm_reg) * sizeof (rtx));
5077               parm_reg_stack_loc = new;
5078             }
5079
5080           if (GET_CODE (parmreg) == CONCAT)
5081             {
5082               enum machine_mode submode = GET_MODE (XEXP (parmreg, 0));
5083
5084               regnor = REGNO (gen_realpart (submode, parmreg));
5085               regnoi = REGNO (gen_imagpart (submode, parmreg));
5086
5087               if (stack_parm != 0)
5088                 {
5089                   parm_reg_stack_loc[regnor]
5090                     = gen_realpart (submode, stack_parm);
5091                   parm_reg_stack_loc[regnoi]
5092                     = gen_imagpart (submode, stack_parm);
5093                 }
5094               else
5095                 {
5096                   parm_reg_stack_loc[regnor] = 0;
5097                   parm_reg_stack_loc[regnoi] = 0;
5098                 }
5099             }
5100           else
5101             parm_reg_stack_loc[REGNO (parmreg)] = stack_parm;
5102
5103           /* Mark the register as eliminable if we did no conversion
5104              and it was copied from memory at a fixed offset,
5105              and the arg pointer was not copied to a pseudo-reg.
5106              If the arg pointer is a pseudo reg or the offset formed
5107              an invalid address, such memory-equivalences
5108              as we make here would screw up life analysis for it.  */
5109           if (nominal_mode == passed_mode
5110               && ! did_conversion
5111               && stack_parm != 0
5112               && GET_CODE (stack_parm) == MEM
5113               && locate.offset.var == 0
5114               && reg_mentioned_p (virtual_incoming_args_rtx,
5115                                   XEXP (stack_parm, 0)))
5116             {
5117               rtx linsn = get_last_insn ();
5118               rtx sinsn, set;
5119
5120               /* Mark complex types separately.  */
5121               if (GET_CODE (parmreg) == CONCAT)
5122                 /* Scan backwards for the set of the real and
5123                    imaginary parts.  */
5124                 for (sinsn = linsn; sinsn != 0;
5125                      sinsn = prev_nonnote_insn (sinsn))
5126                   {
5127                     set = single_set (sinsn);
5128                     if (set != 0
5129                         && SET_DEST (set) == regno_reg_rtx [regnoi])
5130                       REG_NOTES (sinsn)
5131                         = gen_rtx_EXPR_LIST (REG_EQUIV,
5132                                              parm_reg_stack_loc[regnoi],
5133                                              REG_NOTES (sinsn));
5134                     else if (set != 0
5135                              && SET_DEST (set) == regno_reg_rtx [regnor])
5136                       REG_NOTES (sinsn)
5137                         = gen_rtx_EXPR_LIST (REG_EQUIV,
5138                                              parm_reg_stack_loc[regnor],
5139                                              REG_NOTES (sinsn));
5140                   }
5141               else if ((set = single_set (linsn)) != 0
5142                        && SET_DEST (set) == parmreg)
5143                 REG_NOTES (linsn)
5144                   = gen_rtx_EXPR_LIST (REG_EQUIV,
5145                                        stack_parm, REG_NOTES (linsn));
5146             }
5147
5148           /* For pointer data type, suggest pointer register.  */
5149           if (POINTER_TYPE_P (TREE_TYPE (parm)))
5150             mark_reg_pointer (parmreg,
5151                               TYPE_ALIGN (TREE_TYPE (TREE_TYPE (parm))));
5152
5153           /* If something wants our address, try to use ADDRESSOF.  */
5154           if (TREE_ADDRESSABLE (parm))
5155             {
5156               /* If we end up putting something into the stack,
5157                  fixup_var_refs_insns will need to make a pass over
5158                  all the instructions.  It looks through the pending
5159                  sequences -- but it can't see the ones in the
5160                  CONVERSION_INSNS, if they're not on the sequence
5161                  stack.  So, we go back to that sequence, just so that
5162                  the fixups will happen.  */
5163               push_to_sequence (conversion_insns);
5164               put_var_into_stack (parm, /*rescan=*/true);
5165               conversion_insns = get_insns ();
5166               end_sequence ();
5167             }
5168         }
5169       else
5170         {
5171           /* Value must be stored in the stack slot STACK_PARM
5172              during function execution.  */
5173
5174           if (promoted_mode != nominal_mode)
5175             {
5176               /* Conversion is required.  */
5177               rtx tempreg = gen_reg_rtx (GET_MODE (entry_parm));
5178
5179               emit_move_insn (tempreg, validize_mem (entry_parm));
5180
5181               push_to_sequence (conversion_insns);
5182               entry_parm = convert_to_mode (nominal_mode, tempreg,
5183                                             TYPE_UNSIGNED (TREE_TYPE (parm)));
5184               if (stack_parm)
5185                 /* ??? This may need a big-endian conversion on sparc64.  */
5186                 stack_parm = adjust_address (stack_parm, nominal_mode, 0);
5187
5188               conversion_insns = get_insns ();
5189               did_conversion = 1;
5190               end_sequence ();
5191             }
5192
5193           if (entry_parm != stack_parm)
5194             {
5195               if (stack_parm == 0)
5196                 {
5197                   stack_parm
5198                     = assign_stack_local (GET_MODE (entry_parm),
5199                                           GET_MODE_SIZE (GET_MODE (entry_parm)),
5200                                           0);
5201                   set_mem_attributes (stack_parm, parm, 1);
5202                 }
5203
5204               if (promoted_mode != nominal_mode)
5205                 {
5206                   push_to_sequence (conversion_insns);
5207                   emit_move_insn (validize_mem (stack_parm),
5208                                   validize_mem (entry_parm));
5209                   conversion_insns = get_insns ();
5210                   end_sequence ();
5211                 }
5212               else
5213                 emit_move_insn (validize_mem (stack_parm),
5214                                 validize_mem (entry_parm));
5215             }
5216
5217           SET_DECL_RTL (parm, stack_parm);
5218         }
5219     }
5220
5221   if (targetm.calls.split_complex_arg && fnargs != orig_fnargs)
5222     {
5223       for (parm = orig_fnargs; parm; parm = TREE_CHAIN (parm))
5224         {
5225           if (TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
5226               && targetm.calls.split_complex_arg (TREE_TYPE (parm)))
5227             {
5228               rtx tmp, real, imag;
5229               enum machine_mode inner = GET_MODE_INNER (DECL_MODE (parm));
5230
5231               real = DECL_RTL (fnargs);
5232               imag = DECL_RTL (TREE_CHAIN (fnargs));
5233               if (inner != GET_MODE (real))
5234                 {
5235                   real = gen_lowpart_SUBREG (inner, real);
5236                   imag = gen_lowpart_SUBREG (inner, imag);
5237                 }
5238               tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag);
5239               SET_DECL_RTL (parm, tmp);
5240
5241               real = DECL_INCOMING_RTL (fnargs);
5242               imag = DECL_INCOMING_RTL (TREE_CHAIN (fnargs));
5243               if (inner != GET_MODE (real))
5244                 {
5245                   real = gen_lowpart_SUBREG (inner, real);
5246                   imag = gen_lowpart_SUBREG (inner, imag);
5247                 }
5248               tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag);
5249               set_decl_incoming_rtl (parm, tmp);
5250               fnargs = TREE_CHAIN (fnargs);
5251             }
5252           else
5253             {
5254               SET_DECL_RTL (parm, DECL_RTL (fnargs));
5255               set_decl_incoming_rtl (parm, DECL_INCOMING_RTL (fnargs));
5256
5257               /* Set MEM_EXPR to the original decl, i.e. to PARM,
5258                  instead of the copy of decl, i.e. FNARGS.  */
5259               if (DECL_INCOMING_RTL (parm)
5260                   && GET_CODE (DECL_INCOMING_RTL (parm)) == MEM)
5261                 set_mem_expr (DECL_INCOMING_RTL (parm), parm);
5262             }
5263           fnargs = TREE_CHAIN (fnargs);
5264         }
5265     }
5266
5267   /* Output all parameter conversion instructions (possibly including calls)
5268      now that all parameters have been copied out of hard registers.  */
5269   emit_insn (conversion_insns);
5270
5271   /* If we are receiving a struct value address as the first argument, set up
5272      the RTL for the function result. As this might require code to convert
5273      the transmitted address to Pmode, we do this here to ensure that possible
5274      preliminary conversions of the address have been emitted already.  */
5275   if (function_result_decl)
5276     {
5277       tree result = DECL_RESULT (fndecl);
5278       rtx addr = DECL_RTL (function_result_decl);
5279       rtx x;
5280
5281       addr = convert_memory_address (Pmode, addr);
5282       x = gen_rtx_MEM (DECL_MODE (result), addr);
5283       set_mem_attributes (x, result, 1);
5284       SET_DECL_RTL (result, x);
5285     }
5286
5287   /* We have aligned all the args, so add space for the pretend args.  */
5288   stack_args_size.constant += extra_pretend_bytes;
5289   current_function_args_size = stack_args_size.constant;
5290
5291   /* Adjust function incoming argument size for alignment and
5292      minimum length.  */
5293
5294 #ifdef REG_PARM_STACK_SPACE
5295   current_function_args_size = MAX (current_function_args_size,
5296                                     REG_PARM_STACK_SPACE (fndecl));
5297 #endif
5298
5299   current_function_args_size
5300     = ((current_function_args_size + STACK_BYTES - 1)
5301        / STACK_BYTES) * STACK_BYTES;
5302
5303 #ifdef ARGS_GROW_DOWNWARD
5304   current_function_arg_offset_rtx
5305     = (stack_args_size.var == 0 ? GEN_INT (-stack_args_size.constant)
5306        : expand_expr (size_diffop (stack_args_size.var,
5307                                    size_int (-stack_args_size.constant)),
5308                       NULL_RTX, VOIDmode, 0));
5309 #else
5310   current_function_arg_offset_rtx = ARGS_SIZE_RTX (stack_args_size);
5311 #endif
5312
5313   /* See how many bytes, if any, of its args a function should try to pop
5314      on return.  */
5315
5316   current_function_pops_args = RETURN_POPS_ARGS (fndecl, TREE_TYPE (fndecl),
5317                                                  current_function_args_size);
5318
5319   /* For stdarg.h function, save info about
5320      regs and stack space used by the named args.  */
5321
5322   current_function_args_info = args_so_far;
5323
5324   /* Set the rtx used for the function return value.  Put this in its
5325      own variable so any optimizers that need this information don't have
5326      to include tree.h.  Do this here so it gets done when an inlined
5327      function gets output.  */
5328
5329   current_function_return_rtx
5330     = (DECL_RTL_SET_P (DECL_RESULT (fndecl))
5331        ? DECL_RTL (DECL_RESULT (fndecl)) : NULL_RTX);
5332
5333   /* If scalar return value was computed in a pseudo-reg, or was a named
5334      return value that got dumped to the stack, copy that to the hard
5335      return register.  */
5336   if (DECL_RTL_SET_P (DECL_RESULT (fndecl)))
5337     {
5338       tree decl_result = DECL_RESULT (fndecl);
5339       rtx decl_rtl = DECL_RTL (decl_result);
5340
5341       if (REG_P (decl_rtl)
5342           ? REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER
5343           : DECL_REGISTER (decl_result))
5344         {
5345           rtx real_decl_rtl;
5346
5347 #ifdef FUNCTION_OUTGOING_VALUE
5348           real_decl_rtl = FUNCTION_OUTGOING_VALUE (TREE_TYPE (decl_result),
5349                                                    fndecl);
5350 #else
5351           real_decl_rtl = FUNCTION_VALUE (TREE_TYPE (decl_result),
5352                                           fndecl);
5353 #endif
5354           REG_FUNCTION_VALUE_P (real_decl_rtl) = 1;
5355           /* The delay slot scheduler assumes that current_function_return_rtx
5356              holds the hard register containing the return value, not a
5357              temporary pseudo.  */
5358           current_function_return_rtx = real_decl_rtl;
5359         }
5360     }
5361 }
5362
5363 /* If ARGS contains entries with complex types, split the entry into two
5364    entries of the component type.  Return a new list of substitutions are
5365    needed, else the old list.  */
5366
5367 static tree
5368 split_complex_args (tree args)
5369 {
5370   tree p;
5371
5372   /* Before allocating memory, check for the common case of no complex.  */
5373   for (p = args; p; p = TREE_CHAIN (p))
5374     {
5375       tree type = TREE_TYPE (p);
5376       if (TREE_CODE (type) == COMPLEX_TYPE
5377           && targetm.calls.split_complex_arg (type))
5378         goto found;
5379     }
5380   return args;
5381
5382  found:
5383   args = copy_list (args);
5384
5385   for (p = args; p; p = TREE_CHAIN (p))
5386     {
5387       tree type = TREE_TYPE (p);
5388       if (TREE_CODE (type) == COMPLEX_TYPE
5389           && targetm.calls.split_complex_arg (type))
5390         {
5391           tree decl;
5392           tree subtype = TREE_TYPE (type);
5393
5394           /* Rewrite the PARM_DECL's type with its component.  */
5395           TREE_TYPE (p) = subtype;
5396           DECL_ARG_TYPE (p) = TREE_TYPE (DECL_ARG_TYPE (p));
5397           DECL_MODE (p) = VOIDmode;
5398           DECL_SIZE (p) = NULL;
5399           DECL_SIZE_UNIT (p) = NULL;
5400           layout_decl (p, 0);
5401
5402           /* Build a second synthetic decl.  */
5403           decl = build_decl (PARM_DECL, NULL_TREE, subtype);
5404           DECL_ARG_TYPE (decl) = DECL_ARG_TYPE (p);
5405           layout_decl (decl, 0);
5406
5407           /* Splice it in; skip the new decl.  */
5408           TREE_CHAIN (decl) = TREE_CHAIN (p);
5409           TREE_CHAIN (p) = decl;
5410           p = decl;
5411         }
5412     }
5413
5414   return args;
5415 }
5416 \f
5417 /* Indicate whether REGNO is an incoming argument to the current function
5418    that was promoted to a wider mode.  If so, return the RTX for the
5419    register (to get its mode).  PMODE and PUNSIGNEDP are set to the mode
5420    that REGNO is promoted from and whether the promotion was signed or
5421    unsigned.  */
5422
5423 rtx
5424 promoted_input_arg (unsigned int regno, enum machine_mode *pmode, int *punsignedp)
5425 {
5426   tree arg;
5427
5428   for (arg = DECL_ARGUMENTS (current_function_decl); arg;
5429        arg = TREE_CHAIN (arg))
5430     if (REG_P (DECL_INCOMING_RTL (arg))
5431         && REGNO (DECL_INCOMING_RTL (arg)) == regno
5432         && TYPE_MODE (DECL_ARG_TYPE (arg)) == TYPE_MODE (TREE_TYPE (arg)))
5433       {
5434         enum machine_mode mode = TYPE_MODE (TREE_TYPE (arg));
5435         int unsignedp = TYPE_UNSIGNED (TREE_TYPE (arg));
5436
5437         mode = promote_mode (TREE_TYPE (arg), mode, &unsignedp, 1);
5438         if (mode == GET_MODE (DECL_INCOMING_RTL (arg))
5439             && mode != DECL_MODE (arg))
5440           {
5441             *pmode = DECL_MODE (arg);
5442             *punsignedp = unsignedp;
5443             return DECL_INCOMING_RTL (arg);
5444           }
5445       }
5446
5447   return 0;
5448 }
5449
5450 \f
5451 /* Compute the size and offset from the start of the stacked arguments for a
5452    parm passed in mode PASSED_MODE and with type TYPE.
5453
5454    INITIAL_OFFSET_PTR points to the current offset into the stacked
5455    arguments.
5456
5457    The starting offset and size for this parm are returned in
5458    LOCATE->OFFSET and LOCATE->SIZE, respectively.  When IN_REGS is
5459    nonzero, the offset is that of stack slot, which is returned in
5460    LOCATE->SLOT_OFFSET.  LOCATE->ALIGNMENT_PAD is the amount of
5461    padding required from the initial offset ptr to the stack slot.
5462
5463    IN_REGS is nonzero if the argument will be passed in registers.  It will
5464    never be set if REG_PARM_STACK_SPACE is not defined.
5465
5466    FNDECL is the function in which the argument was defined.
5467
5468    There are two types of rounding that are done.  The first, controlled by
5469    FUNCTION_ARG_BOUNDARY, forces the offset from the start of the argument
5470    list to be aligned to the specific boundary (in bits).  This rounding
5471    affects the initial and starting offsets, but not the argument size.
5472
5473    The second, controlled by FUNCTION_ARG_PADDING and PARM_BOUNDARY,
5474    optionally rounds the size of the parm to PARM_BOUNDARY.  The
5475    initial offset is not affected by this rounding, while the size always
5476    is and the starting offset may be.  */
5477
5478 /*  LOCATE->OFFSET will be negative for ARGS_GROW_DOWNWARD case;
5479     INITIAL_OFFSET_PTR is positive because locate_and_pad_parm's
5480     callers pass in the total size of args so far as
5481     INITIAL_OFFSET_PTR.  LOCATE->SIZE is always positive.  */
5482
5483 void
5484 locate_and_pad_parm (enum machine_mode passed_mode, tree type, int in_regs,
5485                      int partial, tree fndecl ATTRIBUTE_UNUSED,
5486                      struct args_size *initial_offset_ptr,
5487                      struct locate_and_pad_arg_data *locate)
5488 {
5489   tree sizetree;
5490   enum direction where_pad;
5491   int boundary;
5492   int reg_parm_stack_space = 0;
5493   int part_size_in_regs;
5494
5495 #ifdef REG_PARM_STACK_SPACE
5496   reg_parm_stack_space = REG_PARM_STACK_SPACE (fndecl);
5497
5498   /* If we have found a stack parm before we reach the end of the
5499      area reserved for registers, skip that area.  */
5500   if (! in_regs)
5501     {
5502       if (reg_parm_stack_space > 0)
5503         {
5504           if (initial_offset_ptr->var)
5505             {
5506               initial_offset_ptr->var
5507                 = size_binop (MAX_EXPR, ARGS_SIZE_TREE (*initial_offset_ptr),
5508                               ssize_int (reg_parm_stack_space));
5509               initial_offset_ptr->constant = 0;
5510             }
5511           else if (initial_offset_ptr->constant < reg_parm_stack_space)
5512             initial_offset_ptr->constant = reg_parm_stack_space;
5513         }
5514     }
5515 #endif /* REG_PARM_STACK_SPACE */
5516
5517   part_size_in_regs = 0;
5518   if (reg_parm_stack_space == 0)
5519     part_size_in_regs = ((partial * UNITS_PER_WORD)
5520                          / (PARM_BOUNDARY / BITS_PER_UNIT)
5521                          * (PARM_BOUNDARY / BITS_PER_UNIT));
5522
5523   sizetree
5524     = type ? size_in_bytes (type) : size_int (GET_MODE_SIZE (passed_mode));
5525   where_pad = FUNCTION_ARG_PADDING (passed_mode, type);
5526   boundary = FUNCTION_ARG_BOUNDARY (passed_mode, type);
5527   locate->where_pad = where_pad;
5528
5529 #ifdef ARGS_GROW_DOWNWARD
5530   locate->slot_offset.constant = -initial_offset_ptr->constant;
5531   if (initial_offset_ptr->var)
5532     locate->slot_offset.var = size_binop (MINUS_EXPR, ssize_int (0),
5533                                           initial_offset_ptr->var);
5534
5535   {
5536     tree s2 = sizetree;
5537     if (where_pad != none
5538         && (!host_integerp (sizetree, 1)
5539             || (tree_low_cst (sizetree, 1) * BITS_PER_UNIT) % PARM_BOUNDARY))
5540       s2 = round_up (s2, PARM_BOUNDARY / BITS_PER_UNIT);
5541     SUB_PARM_SIZE (locate->slot_offset, s2);
5542   }
5543
5544   locate->slot_offset.constant += part_size_in_regs;
5545
5546   if (!in_regs
5547 #ifdef REG_PARM_STACK_SPACE
5548       || REG_PARM_STACK_SPACE (fndecl) > 0
5549 #endif
5550      )
5551     pad_to_arg_alignment (&locate->slot_offset, boundary,
5552                           &locate->alignment_pad);
5553
5554   locate->size.constant = (-initial_offset_ptr->constant
5555                            - locate->slot_offset.constant);
5556   if (initial_offset_ptr->var)
5557     locate->size.var = size_binop (MINUS_EXPR,
5558                                    size_binop (MINUS_EXPR,
5559                                                ssize_int (0),
5560                                                initial_offset_ptr->var),
5561                                    locate->slot_offset.var);
5562
5563   /* Pad_below needs the pre-rounded size to know how much to pad
5564      below.  */
5565   locate->offset = locate->slot_offset;
5566   if (where_pad == downward)
5567     pad_below (&locate->offset, passed_mode, sizetree);
5568
5569 #else /* !ARGS_GROW_DOWNWARD */
5570   if (!in_regs
5571 #ifdef REG_PARM_STACK_SPACE
5572       || REG_PARM_STACK_SPACE (fndecl) > 0
5573 #endif
5574       )
5575     pad_to_arg_alignment (initial_offset_ptr, boundary,
5576                           &locate->alignment_pad);
5577   locate->slot_offset = *initial_offset_ptr;
5578
5579 #ifdef PUSH_ROUNDING
5580   if (passed_mode != BLKmode)
5581     sizetree = size_int (PUSH_ROUNDING (TREE_INT_CST_LOW (sizetree)));
5582 #endif
5583
5584   /* Pad_below needs the pre-rounded size to know how much to pad below
5585      so this must be done before rounding up.  */
5586   locate->offset = locate->slot_offset;
5587   if (where_pad == downward)
5588     pad_below (&locate->offset, passed_mode, sizetree);
5589
5590   if (where_pad != none
5591       && (!host_integerp (sizetree, 1)
5592           || (tree_low_cst (sizetree, 1) * BITS_PER_UNIT) % PARM_BOUNDARY))
5593     sizetree = round_up (sizetree, PARM_BOUNDARY / BITS_PER_UNIT);
5594
5595   ADD_PARM_SIZE (locate->size, sizetree);
5596
5597   locate->size.constant -= part_size_in_regs;
5598 #endif /* ARGS_GROW_DOWNWARD */
5599 }
5600
5601 /* Round the stack offset in *OFFSET_PTR up to a multiple of BOUNDARY.
5602    BOUNDARY is measured in bits, but must be a multiple of a storage unit.  */
5603
5604 static void
5605 pad_to_arg_alignment (struct args_size *offset_ptr, int boundary,
5606                       struct args_size *alignment_pad)
5607 {
5608   tree save_var = NULL_TREE;
5609   HOST_WIDE_INT save_constant = 0;
5610   int boundary_in_bytes = boundary / BITS_PER_UNIT;
5611   HOST_WIDE_INT sp_offset = STACK_POINTER_OFFSET;
5612
5613 #ifdef SPARC_STACK_BOUNDARY_HACK
5614   /* The sparc port has a bug.  It sometimes claims a STACK_BOUNDARY
5615      higher than the real alignment of %sp.  However, when it does this,
5616      the alignment of %sp+STACK_POINTER_OFFSET will be STACK_BOUNDARY.
5617      This is a temporary hack while the sparc port is fixed.  */
5618   if (SPARC_STACK_BOUNDARY_HACK)
5619     sp_offset = 0;
5620 #endif
5621
5622   if (boundary > PARM_BOUNDARY && boundary > STACK_BOUNDARY)
5623     {
5624       save_var = offset_ptr->var;
5625       save_constant = offset_ptr->constant;
5626     }
5627
5628   alignment_pad->var = NULL_TREE;
5629   alignment_pad->constant = 0;
5630
5631   if (boundary > BITS_PER_UNIT)
5632     {
5633       if (offset_ptr->var)
5634         {
5635           tree sp_offset_tree = ssize_int (sp_offset);
5636           tree offset = size_binop (PLUS_EXPR,
5637                                     ARGS_SIZE_TREE (*offset_ptr),
5638                                     sp_offset_tree);
5639 #ifdef ARGS_GROW_DOWNWARD
5640           tree rounded = round_down (offset, boundary / BITS_PER_UNIT);
5641 #else
5642           tree rounded = round_up   (offset, boundary / BITS_PER_UNIT);
5643 #endif
5644
5645           offset_ptr->var = size_binop (MINUS_EXPR, rounded, sp_offset_tree);
5646           /* ARGS_SIZE_TREE includes constant term.  */
5647           offset_ptr->constant = 0;
5648           if (boundary > PARM_BOUNDARY && boundary > STACK_BOUNDARY)
5649             alignment_pad->var = size_binop (MINUS_EXPR, offset_ptr->var,
5650                                              save_var);
5651         }
5652       else
5653         {
5654           offset_ptr->constant = -sp_offset +
5655 #ifdef ARGS_GROW_DOWNWARD
5656             FLOOR_ROUND (offset_ptr->constant + sp_offset, boundary_in_bytes);
5657 #else
5658             CEIL_ROUND (offset_ptr->constant + sp_offset, boundary_in_bytes);
5659 #endif
5660             if (boundary > PARM_BOUNDARY && boundary > STACK_BOUNDARY)
5661               alignment_pad->constant = offset_ptr->constant - save_constant;
5662         }
5663     }
5664 }
5665
5666 static void
5667 pad_below (struct args_size *offset_ptr, enum machine_mode passed_mode, tree sizetree)
5668 {
5669   if (passed_mode != BLKmode)
5670     {
5671       if (GET_MODE_BITSIZE (passed_mode) % PARM_BOUNDARY)
5672         offset_ptr->constant
5673           += (((GET_MODE_BITSIZE (passed_mode) + PARM_BOUNDARY - 1)
5674                / PARM_BOUNDARY * PARM_BOUNDARY / BITS_PER_UNIT)
5675               - GET_MODE_SIZE (passed_mode));
5676     }
5677   else
5678     {
5679       if (TREE_CODE (sizetree) != INTEGER_CST
5680           || (TREE_INT_CST_LOW (sizetree) * BITS_PER_UNIT) % PARM_BOUNDARY)
5681         {
5682           /* Round the size up to multiple of PARM_BOUNDARY bits.  */
5683           tree s2 = round_up (sizetree, PARM_BOUNDARY / BITS_PER_UNIT);
5684           /* Add it in.  */
5685           ADD_PARM_SIZE (*offset_ptr, s2);
5686           SUB_PARM_SIZE (*offset_ptr, sizetree);
5687         }
5688     }
5689 }
5690 \f
5691 /* Walk the tree of blocks describing the binding levels within a function
5692    and warn about variables the might be killed by setjmp or vfork.
5693    This is done after calling flow_analysis and before global_alloc
5694    clobbers the pseudo-regs to hard regs.  */
5695
5696 void
5697 setjmp_vars_warning (tree block)
5698 {
5699   tree decl, sub;
5700
5701   for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
5702     {
5703       if (TREE_CODE (decl) == VAR_DECL
5704           && DECL_RTL_SET_P (decl)
5705           && REG_P (DECL_RTL (decl))
5706           && regno_clobbered_at_setjmp (REGNO (DECL_RTL (decl))))
5707         warning ("%Jvariable '%D' might be clobbered by `longjmp' or `vfork'",
5708                  decl, decl);
5709     }
5710
5711   for (sub = BLOCK_SUBBLOCKS (block); sub; sub = TREE_CHAIN (sub))
5712     setjmp_vars_warning (sub);
5713 }
5714
5715 /* Do the appropriate part of setjmp_vars_warning
5716    but for arguments instead of local variables.  */
5717
5718 void
5719 setjmp_args_warning (void)
5720 {
5721   tree decl;
5722   for (decl = DECL_ARGUMENTS (current_function_decl);
5723        decl; decl = TREE_CHAIN (decl))
5724     if (DECL_RTL (decl) != 0
5725         && REG_P (DECL_RTL (decl))
5726         && regno_clobbered_at_setjmp (REGNO (DECL_RTL (decl))))
5727       warning ("%Jargument '%D' might be clobbered by `longjmp' or `vfork'",
5728                decl, decl);
5729 }
5730
5731 /* If this function call setjmp, put all vars into the stack
5732    unless they were declared `register'.  */
5733
5734 void
5735 setjmp_protect (tree block)
5736 {
5737   tree decl, sub;
5738   for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
5739     if ((TREE_CODE (decl) == VAR_DECL
5740          || TREE_CODE (decl) == PARM_DECL)
5741         && DECL_RTL (decl) != 0
5742         && (REG_P (DECL_RTL (decl))
5743             || (GET_CODE (DECL_RTL (decl)) == MEM
5744                 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == ADDRESSOF))
5745         /* If this variable came from an inline function, it must be
5746            that its life doesn't overlap the setjmp.  If there was a
5747            setjmp in the function, it would already be in memory.  We
5748            must exclude such variable because their DECL_RTL might be
5749            set to strange things such as virtual_stack_vars_rtx.  */
5750         && ! DECL_FROM_INLINE (decl)
5751         && (
5752 #ifdef NON_SAVING_SETJMP
5753             /* If longjmp doesn't restore the registers,
5754                don't put anything in them.  */
5755             NON_SAVING_SETJMP
5756             ||
5757 #endif
5758             ! DECL_REGISTER (decl)))
5759       put_var_into_stack (decl, /*rescan=*/true);
5760   for (sub = BLOCK_SUBBLOCKS (block); sub; sub = TREE_CHAIN (sub))
5761     setjmp_protect (sub);
5762 }
5763 \f
5764 /* Like the previous function, but for args instead of local variables.  */
5765
5766 void
5767 setjmp_protect_args (void)
5768 {
5769   tree decl;
5770   for (decl = DECL_ARGUMENTS (current_function_decl);
5771        decl; decl = TREE_CHAIN (decl))
5772     if ((TREE_CODE (decl) == VAR_DECL
5773          || TREE_CODE (decl) == PARM_DECL)
5774         && DECL_RTL (decl) != 0
5775         && (REG_P (DECL_RTL (decl))
5776             || (GET_CODE (DECL_RTL (decl)) == MEM
5777                 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == ADDRESSOF))
5778         && (
5779             /* If longjmp doesn't restore the registers,
5780                don't put anything in them.  */
5781 #ifdef NON_SAVING_SETJMP
5782             NON_SAVING_SETJMP
5783             ||
5784 #endif
5785             ! DECL_REGISTER (decl)))
5786       put_var_into_stack (decl, /*rescan=*/true);
5787 }
5788 \f
5789 /* Convert a stack slot address ADDR for variable VAR
5790    (from a containing function)
5791    into an address valid in this function (using a static chain).  */
5792
5793 rtx
5794 fix_lexical_addr (rtx addr, tree var)
5795 {
5796   rtx basereg;
5797   HOST_WIDE_INT displacement;
5798   tree context = decl_function_context (var);
5799   struct function *fp;
5800   rtx base = 0;
5801
5802   /* If this is the present function, we need not do anything.  */
5803   if (context == current_function_decl)
5804     return addr;
5805
5806   fp = find_function_data (context);
5807
5808   if (GET_CODE (addr) == ADDRESSOF && GET_CODE (XEXP (addr, 0)) == MEM)
5809     addr = XEXP (XEXP (addr, 0), 0);
5810
5811   /* Decode given address as base reg plus displacement.  */
5812   if (REG_P (addr))
5813     basereg = addr, displacement = 0;
5814   else if (GET_CODE (addr) == PLUS && GET_CODE (XEXP (addr, 1)) == CONST_INT)
5815     basereg = XEXP (addr, 0), displacement = INTVAL (XEXP (addr, 1));
5816   else
5817     abort ();
5818
5819   if (base == 0)
5820     abort ();
5821
5822   /* Use same offset, relative to appropriate static chain or argument
5823      pointer.  */
5824   return plus_constant (base, displacement);
5825 }
5826 \f
5827 /* Put all this function's BLOCK nodes including those that are chained
5828    onto the first block into a vector, and return it.
5829    Also store in each NOTE for the beginning or end of a block
5830    the index of that block in the vector.
5831    The arguments are BLOCK, the chain of top-level blocks of the function,
5832    and INSNS, the insn chain of the function.  */
5833
5834 void
5835 identify_blocks (void)
5836 {
5837   int n_blocks;
5838   tree *block_vector, *last_block_vector;
5839   tree *block_stack;
5840   tree block = DECL_INITIAL (current_function_decl);
5841
5842   if (block == 0)
5843     return;
5844
5845   /* Fill the BLOCK_VECTOR with all of the BLOCKs in this function, in
5846      depth-first order.  */
5847   block_vector = get_block_vector (block, &n_blocks);
5848   block_stack = xmalloc (n_blocks * sizeof (tree));
5849
5850   last_block_vector = identify_blocks_1 (get_insns (),
5851                                          block_vector + 1,
5852                                          block_vector + n_blocks,
5853                                          block_stack);
5854
5855   /* If we didn't use all of the subblocks, we've misplaced block notes.  */
5856   /* ??? This appears to happen all the time.  Latent bugs elsewhere?  */
5857   if (0 && last_block_vector != block_vector + n_blocks)
5858     abort ();
5859
5860   free (block_vector);
5861   free (block_stack);
5862 }
5863
5864 /* Subroutine of identify_blocks.  Do the block substitution on the
5865    insn chain beginning with INSNS.
5866
5867    BLOCK_STACK is pushed and popped for each BLOCK_BEGIN/BLOCK_END pair.
5868    BLOCK_VECTOR is incremented for each block seen.  */
5869
5870 static tree *
5871 identify_blocks_1 (rtx insns, tree *block_vector, tree *end_block_vector,
5872                    tree *orig_block_stack)
5873 {
5874   rtx insn;
5875   tree *block_stack = orig_block_stack;
5876
5877   for (insn = insns; insn; insn = NEXT_INSN (insn))
5878     {
5879       if (GET_CODE (insn) == NOTE)
5880         {
5881           if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG)
5882             {
5883               tree b;
5884
5885               /* If there are more block notes than BLOCKs, something
5886                  is badly wrong.  */
5887               if (block_vector == end_block_vector)
5888                 abort ();
5889
5890               b = *block_vector++;
5891               NOTE_BLOCK (insn) = b;
5892               *block_stack++ = b;
5893             }
5894           else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
5895             {
5896               /* If there are more NOTE_INSN_BLOCK_ENDs than
5897                  NOTE_INSN_BLOCK_BEGs, something is badly wrong.  */
5898               if (block_stack == orig_block_stack)
5899                 abort ();
5900
5901               NOTE_BLOCK (insn) = *--block_stack;
5902             }
5903         }
5904     }
5905
5906   /* If there are more NOTE_INSN_BLOCK_BEGINs than NOTE_INSN_BLOCK_ENDs,
5907      something is badly wrong.  */
5908   if (block_stack != orig_block_stack)
5909     abort ();
5910
5911   return block_vector;
5912 }
5913
5914 /* Identify BLOCKs referenced by more than one NOTE_INSN_BLOCK_{BEG,END},
5915    and create duplicate blocks.  */
5916 /* ??? Need an option to either create block fragments or to create
5917    abstract origin duplicates of a source block.  It really depends
5918    on what optimization has been performed.  */
5919
5920 void
5921 reorder_blocks (void)
5922 {
5923   tree block = DECL_INITIAL (current_function_decl);
5924   varray_type block_stack;
5925
5926   if (block == NULL_TREE)
5927     return;
5928
5929   VARRAY_TREE_INIT (block_stack, 10, "block_stack");
5930
5931   /* Reset the TREE_ASM_WRITTEN bit for all blocks.  */
5932   clear_block_marks (block);
5933
5934   /* Prune the old trees away, so that they don't get in the way.  */
5935   BLOCK_SUBBLOCKS (block) = NULL_TREE;
5936   BLOCK_CHAIN (block) = NULL_TREE;
5937
5938   /* Recreate the block tree from the note nesting.  */
5939   reorder_blocks_1 (get_insns (), block, &block_stack);
5940   BLOCK_SUBBLOCKS (block) = blocks_nreverse (BLOCK_SUBBLOCKS (block));
5941
5942   /* Remove deleted blocks from the block fragment chains.  */
5943   reorder_fix_fragments (block);
5944 }
5945
5946 /* Helper function for reorder_blocks.  Reset TREE_ASM_WRITTEN.  */
5947
5948 void
5949 clear_block_marks (tree block)
5950 {
5951   while (block)
5952     {
5953       TREE_ASM_WRITTEN (block) = 0;
5954       clear_block_marks (BLOCK_SUBBLOCKS (block));
5955       block = BLOCK_CHAIN (block);
5956     }
5957 }
5958
5959 static void
5960 reorder_blocks_1 (rtx insns, tree current_block, varray_type *p_block_stack)
5961 {
5962   rtx insn;
5963
5964   for (insn = insns; insn; insn = NEXT_INSN (insn))
5965     {
5966       if (GET_CODE (insn) == NOTE)
5967         {
5968           if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG)
5969             {
5970               tree block = NOTE_BLOCK (insn);
5971
5972               /* If we have seen this block before, that means it now
5973                  spans multiple address regions.  Create a new fragment.  */
5974               if (TREE_ASM_WRITTEN (block))
5975                 {
5976                   tree new_block = copy_node (block);
5977                   tree origin;
5978
5979                   origin = (BLOCK_FRAGMENT_ORIGIN (block)
5980                             ? BLOCK_FRAGMENT_ORIGIN (block)
5981                             : block);
5982                   BLOCK_FRAGMENT_ORIGIN (new_block) = origin;
5983                   BLOCK_FRAGMENT_CHAIN (new_block)
5984                     = BLOCK_FRAGMENT_CHAIN (origin);
5985                   BLOCK_FRAGMENT_CHAIN (origin) = new_block;
5986
5987                   NOTE_BLOCK (insn) = new_block;
5988                   block = new_block;
5989                 }
5990
5991               BLOCK_SUBBLOCKS (block) = 0;
5992               TREE_ASM_WRITTEN (block) = 1;
5993               /* When there's only one block for the entire function,
5994                  current_block == block and we mustn't do this, it
5995                  will cause infinite recursion.  */
5996               if (block != current_block)
5997                 {
5998                   BLOCK_SUPERCONTEXT (block) = current_block;
5999                   BLOCK_CHAIN (block) = BLOCK_SUBBLOCKS (current_block);
6000                   BLOCK_SUBBLOCKS (current_block) = block;
6001                   current_block = block;
6002                 }
6003               VARRAY_PUSH_TREE (*p_block_stack, block);
6004             }
6005           else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
6006             {
6007               NOTE_BLOCK (insn) = VARRAY_TOP_TREE (*p_block_stack);
6008               VARRAY_POP (*p_block_stack);
6009               BLOCK_SUBBLOCKS (current_block)
6010                 = blocks_nreverse (BLOCK_SUBBLOCKS (current_block));
6011               current_block = BLOCK_SUPERCONTEXT (current_block);
6012             }
6013         }
6014     }
6015 }
6016
6017 /* Rationalize BLOCK_FRAGMENT_ORIGIN.  If an origin block no longer
6018    appears in the block tree, select one of the fragments to become
6019    the new origin block.  */
6020
6021 static void
6022 reorder_fix_fragments (tree block)
6023 {
6024   while (block)
6025     {
6026       tree dup_origin = BLOCK_FRAGMENT_ORIGIN (block);
6027       tree new_origin = NULL_TREE;
6028
6029       if (dup_origin)
6030         {
6031           if (! TREE_ASM_WRITTEN (dup_origin))
6032             {
6033               new_origin = BLOCK_FRAGMENT_CHAIN (dup_origin);
6034
6035               /* Find the first of the remaining fragments.  There must
6036                  be at least one -- the current block.  */
6037               while (! TREE_ASM_WRITTEN (new_origin))
6038                 new_origin = BLOCK_FRAGMENT_CHAIN (new_origin);
6039               BLOCK_FRAGMENT_ORIGIN (new_origin) = NULL_TREE;
6040             }
6041         }
6042       else if (! dup_origin)
6043         new_origin = block;
6044
6045       /* Re-root the rest of the fragments to the new origin.  In the
6046          case that DUP_ORIGIN was null, that means BLOCK was the origin
6047          of a chain of fragments and we want to remove those fragments
6048          that didn't make it to the output.  */
6049       if (new_origin)
6050         {
6051           tree *pp = &BLOCK_FRAGMENT_CHAIN (new_origin);
6052           tree chain = *pp;
6053
6054           while (chain)
6055             {
6056               if (TREE_ASM_WRITTEN (chain))
6057                 {
6058                   BLOCK_FRAGMENT_ORIGIN (chain) = new_origin;
6059                   *pp = chain;
6060                   pp = &BLOCK_FRAGMENT_CHAIN (chain);
6061                 }
6062               chain = BLOCK_FRAGMENT_CHAIN (chain);
6063             }
6064           *pp = NULL_TREE;
6065         }
6066
6067       reorder_fix_fragments (BLOCK_SUBBLOCKS (block));
6068       block = BLOCK_CHAIN (block);
6069     }
6070 }
6071
6072 /* Reverse the order of elements in the chain T of blocks,
6073    and return the new head of the chain (old last element).  */
6074
6075 tree
6076 blocks_nreverse (tree t)
6077 {
6078   tree prev = 0, decl, next;
6079   for (decl = t; decl; decl = next)
6080     {
6081       next = BLOCK_CHAIN (decl);
6082       BLOCK_CHAIN (decl) = prev;
6083       prev = decl;
6084     }
6085   return prev;
6086 }
6087
6088 /* Count the subblocks of the list starting with BLOCK.  If VECTOR is
6089    non-NULL, list them all into VECTOR, in a depth-first preorder
6090    traversal of the block tree.  Also clear TREE_ASM_WRITTEN in all
6091    blocks.  */
6092
6093 static int
6094 all_blocks (tree block, tree *vector)
6095 {
6096   int n_blocks = 0;
6097
6098   while (block)
6099     {
6100       TREE_ASM_WRITTEN (block) = 0;
6101
6102       /* Record this block.  */
6103       if (vector)
6104         vector[n_blocks] = block;
6105
6106       ++n_blocks;
6107
6108       /* Record the subblocks, and their subblocks...  */
6109       n_blocks += all_blocks (BLOCK_SUBBLOCKS (block),
6110                               vector ? vector + n_blocks : 0);
6111       block = BLOCK_CHAIN (block);
6112     }
6113
6114   return n_blocks;
6115 }
6116
6117 /* Return a vector containing all the blocks rooted at BLOCK.  The
6118    number of elements in the vector is stored in N_BLOCKS_P.  The
6119    vector is dynamically allocated; it is the caller's responsibility
6120    to call `free' on the pointer returned.  */
6121
6122 static tree *
6123 get_block_vector (tree block, int *n_blocks_p)
6124 {
6125   tree *block_vector;
6126
6127   *n_blocks_p = all_blocks (block, NULL);
6128   block_vector = xmalloc (*n_blocks_p * sizeof (tree));
6129   all_blocks (block, block_vector);
6130
6131   return block_vector;
6132 }
6133
6134 static GTY(()) int next_block_index = 2;
6135
6136 /* Set BLOCK_NUMBER for all the blocks in FN.  */
6137
6138 void
6139 number_blocks (tree fn)
6140 {
6141   int i;
6142   int n_blocks;
6143   tree *block_vector;
6144
6145   /* For SDB and XCOFF debugging output, we start numbering the blocks
6146      from 1 within each function, rather than keeping a running
6147      count.  */
6148 #if defined (SDB_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
6149   if (write_symbols == SDB_DEBUG || write_symbols == XCOFF_DEBUG)
6150     next_block_index = 1;
6151 #endif
6152
6153   block_vector = get_block_vector (DECL_INITIAL (fn), &n_blocks);
6154
6155   /* The top-level BLOCK isn't numbered at all.  */
6156   for (i = 1; i < n_blocks; ++i)
6157     /* We number the blocks from two.  */
6158     BLOCK_NUMBER (block_vector[i]) = next_block_index++;
6159
6160   free (block_vector);
6161
6162   return;
6163 }
6164
6165 /* If VAR is present in a subblock of BLOCK, return the subblock.  */
6166
6167 tree
6168 debug_find_var_in_block_tree (tree var, tree block)
6169 {
6170   tree t;
6171
6172   for (t = BLOCK_VARS (block); t; t = TREE_CHAIN (t))
6173     if (t == var)
6174       return block;
6175
6176   for (t = BLOCK_SUBBLOCKS (block); t; t = TREE_CHAIN (t))
6177     {
6178       tree ret = debug_find_var_in_block_tree (var, t);
6179       if (ret)
6180         return ret;
6181     }
6182
6183   return NULL_TREE;
6184 }
6185 \f
6186 /* Allocate a function structure for FNDECL and set its contents
6187    to the defaults.  */
6188
6189 void
6190 allocate_struct_function (tree fndecl)
6191 {
6192   tree result;
6193   tree fntype = fndecl ? TREE_TYPE (fndecl) : NULL_TREE;
6194
6195   cfun = ggc_alloc_cleared (sizeof (struct function));
6196
6197   max_parm_reg = LAST_VIRTUAL_REGISTER + 1;
6198
6199   cfun->stack_alignment_needed = STACK_BOUNDARY;
6200   cfun->preferred_stack_boundary = STACK_BOUNDARY;
6201
6202   current_function_funcdef_no = funcdef_no++;
6203
6204   cfun->function_frequency = FUNCTION_FREQUENCY_NORMAL;
6205
6206   init_stmt_for_function ();
6207   init_eh_for_function ();
6208
6209   lang_hooks.function.init (cfun);
6210   if (init_machine_status)
6211     cfun->machine = (*init_machine_status) ();
6212
6213   if (fndecl == NULL)
6214     return;
6215
6216   DECL_STRUCT_FUNCTION (fndecl) = cfun;
6217   cfun->decl = fndecl;
6218
6219   result = DECL_RESULT (fndecl);
6220   if (aggregate_value_p (result, fndecl))
6221     {
6222 #ifdef PCC_STATIC_STRUCT_RETURN
6223       current_function_returns_pcc_struct = 1;
6224 #endif
6225       current_function_returns_struct = 1;
6226     }
6227
6228   current_function_returns_pointer = POINTER_TYPE_P (TREE_TYPE (result));
6229
6230   current_function_stdarg
6231     = (fntype
6232        && TYPE_ARG_TYPES (fntype) != 0
6233        && (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype)))
6234            != void_type_node));
6235 }
6236
6237 /* Reset cfun, and other non-struct-function variables to defaults as
6238    appropriate for emitting rtl at the start of a function.  */
6239
6240 static void
6241 prepare_function_start (tree fndecl)
6242 {
6243   if (fndecl && DECL_STRUCT_FUNCTION (fndecl))
6244     cfun = DECL_STRUCT_FUNCTION (fndecl);
6245   else
6246     allocate_struct_function (fndecl);
6247   init_emit ();
6248   init_varasm_status (cfun);
6249   init_expr ();
6250
6251   cse_not_expected = ! optimize;
6252
6253   /* Caller save not needed yet.  */
6254   caller_save_needed = 0;
6255
6256   /* We haven't done register allocation yet.  */
6257   reg_renumber = 0;
6258
6259   /* Indicate that we need to distinguish between the return value of the
6260      present function and the return value of a function being called.  */
6261   rtx_equal_function_value_matters = 1;
6262
6263   /* Indicate that we have not instantiated virtual registers yet.  */
6264   virtuals_instantiated = 0;
6265
6266   /* Indicate that we want CONCATs now.  */
6267   generating_concat_p = 1;
6268
6269   /* Indicate we have no need of a frame pointer yet.  */
6270   frame_pointer_needed = 0;
6271 }
6272
6273 /* Initialize the rtl expansion mechanism so that we can do simple things
6274    like generate sequences.  This is used to provide a context during global
6275    initialization of some passes.  */
6276 void
6277 init_dummy_function_start (void)
6278 {
6279   prepare_function_start (NULL);
6280 }
6281
6282 /* Generate RTL for the start of the function SUBR (a FUNCTION_DECL tree node)
6283    and initialize static variables for generating RTL for the statements
6284    of the function.  */
6285
6286 void
6287 init_function_start (tree subr)
6288 {
6289   prepare_function_start (subr);
6290
6291   /* Prevent ever trying to delete the first instruction of a
6292      function.  Also tell final how to output a linenum before the
6293      function prologue.  Note linenums could be missing, e.g. when
6294      compiling a Java .class file.  */
6295   if (! DECL_IS_BUILTIN (subr))
6296     emit_line_note (DECL_SOURCE_LOCATION (subr));
6297
6298   /* Make sure first insn is a note even if we don't want linenums.
6299      This makes sure the first insn will never be deleted.
6300      Also, final expects a note to appear there.  */
6301   emit_note (NOTE_INSN_DELETED);
6302
6303   /* Warn if this value is an aggregate type,
6304      regardless of which calling convention we are using for it.  */
6305   if (warn_aggregate_return
6306       && AGGREGATE_TYPE_P (TREE_TYPE (DECL_RESULT (subr))))
6307     warning ("function returns an aggregate");
6308 }
6309
6310 /* Make sure all values used by the optimization passes have sane
6311    defaults.  */
6312 void
6313 init_function_for_compilation (void)
6314 {
6315   reg_renumber = 0;
6316
6317   /* No prologue/epilogue insns yet.  */
6318   VARRAY_GROW (prologue, 0);
6319   VARRAY_GROW (epilogue, 0);
6320   VARRAY_GROW (sibcall_epilogue, 0);
6321 }
6322
6323 /* Expand a call to __main at the beginning of a possible main function.  */
6324
6325 #if defined(INIT_SECTION_ASM_OP) && !defined(INVOKE__main)
6326 #undef HAS_INIT_SECTION
6327 #define HAS_INIT_SECTION
6328 #endif
6329
6330 void
6331 expand_main_function (void)
6332 {
6333 #ifdef FORCE_PREFERRED_STACK_BOUNDARY_IN_MAIN
6334   if (FORCE_PREFERRED_STACK_BOUNDARY_IN_MAIN)
6335     {
6336       int align = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
6337       rtx tmp, seq;
6338
6339       start_sequence ();
6340       /* Forcibly align the stack.  */
6341 #ifdef STACK_GROWS_DOWNWARD
6342       tmp = expand_simple_binop (Pmode, AND, stack_pointer_rtx, GEN_INT(-align),
6343                                  stack_pointer_rtx, 1, OPTAB_WIDEN);
6344 #else
6345       tmp = expand_simple_binop (Pmode, PLUS, stack_pointer_rtx,
6346                                  GEN_INT (align - 1), NULL_RTX, 1, OPTAB_WIDEN);
6347       tmp = expand_simple_binop (Pmode, AND, tmp, GEN_INT (-align),
6348                                  stack_pointer_rtx, 1, OPTAB_WIDEN);
6349 #endif
6350       if (tmp != stack_pointer_rtx)
6351         emit_move_insn (stack_pointer_rtx, tmp);
6352
6353       /* Enlist allocate_dynamic_stack_space to pick up the pieces.  */
6354       tmp = force_reg (Pmode, const0_rtx);
6355       allocate_dynamic_stack_space (tmp, NULL_RTX, BIGGEST_ALIGNMENT);
6356       seq = get_insns ();
6357       end_sequence ();
6358
6359       for (tmp = get_last_insn (); tmp; tmp = PREV_INSN (tmp))
6360         if (NOTE_P (tmp) && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_FUNCTION_BEG)
6361           break;
6362       if (tmp)
6363         emit_insn_before (seq, tmp);
6364       else
6365         emit_insn (seq);
6366     }
6367 #endif
6368
6369 #ifndef HAS_INIT_SECTION
6370   emit_library_call (init_one_libfunc (NAME__MAIN), LCT_NORMAL, VOIDmode, 0);
6371 #endif
6372 }
6373 \f
6374 /* The PENDING_SIZES represent the sizes of variable-sized types.
6375    Create RTL for the various sizes now (using temporary variables),
6376    so that we can refer to the sizes from the RTL we are generating
6377    for the current function.  The PENDING_SIZES are a TREE_LIST.  The
6378    TREE_VALUE of each node is a SAVE_EXPR.  */
6379
6380 void
6381 expand_pending_sizes (tree pending_sizes)
6382 {
6383   tree tem;
6384
6385   /* Evaluate now the sizes of any types declared among the arguments.  */
6386   for (tem = pending_sizes; tem; tem = TREE_CHAIN (tem))
6387     {
6388       expand_expr (TREE_VALUE (tem), const0_rtx, VOIDmode, 0);
6389       /* Flush the queue in case this parameter declaration has
6390          side-effects.  */
6391       emit_queue ();
6392     }
6393 }
6394
6395 /* Start the RTL for a new function, and set variables used for
6396    emitting RTL.
6397    SUBR is the FUNCTION_DECL node.
6398    PARMS_HAVE_CLEANUPS is nonzero if there are cleanups associated with
6399    the function's parameters, which must be run at any return statement.  */
6400
6401 void
6402 expand_function_start (tree subr, int parms_have_cleanups)
6403 {
6404   /* Make sure volatile mem refs aren't considered
6405      valid operands of arithmetic insns.  */
6406   init_recog_no_volatile ();
6407
6408   current_function_profile
6409     = (profile_flag
6410        && ! DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (subr));
6411
6412   current_function_limit_stack
6413     = (stack_limit_rtx != NULL_RTX && ! DECL_NO_LIMIT_STACK (subr));
6414
6415   /* If the parameters of this function need cleaning up, get a label
6416      for the beginning of the code which executes those cleanups.  This must
6417      be done before doing anything with return_label.  */
6418   if (parms_have_cleanups)
6419     cleanup_label = gen_label_rtx ();
6420   else
6421     cleanup_label = 0;
6422
6423   /* Make the label for return statements to jump to.  Do not special
6424      case machines with special return instructions -- they will be
6425      handled later during jump, ifcvt, or epilogue creation.  */
6426   return_label = gen_label_rtx ();
6427
6428   /* Initialize rtx used to return the value.  */
6429   /* Do this before assign_parms so that we copy the struct value address
6430      before any library calls that assign parms might generate.  */
6431
6432   /* Decide whether to return the value in memory or in a register.  */
6433   if (aggregate_value_p (DECL_RESULT (subr), subr))
6434     {
6435       /* Returning something that won't go in a register.  */
6436       rtx value_address = 0;
6437
6438 #ifdef PCC_STATIC_STRUCT_RETURN
6439       if (current_function_returns_pcc_struct)
6440         {
6441           int size = int_size_in_bytes (TREE_TYPE (DECL_RESULT (subr)));
6442           value_address = assemble_static_space (size);
6443         }
6444       else
6445 #endif
6446         {
6447           rtx sv = targetm.calls.struct_value_rtx (TREE_TYPE (subr), 1);
6448           /* Expect to be passed the address of a place to store the value.
6449              If it is passed as an argument, assign_parms will take care of
6450              it.  */
6451           if (sv)
6452             {
6453               value_address = gen_reg_rtx (Pmode);
6454               emit_move_insn (value_address, sv);
6455             }
6456         }
6457       if (value_address)
6458         {
6459           rtx x = gen_rtx_MEM (DECL_MODE (DECL_RESULT (subr)), value_address);
6460           set_mem_attributes (x, DECL_RESULT (subr), 1);
6461           SET_DECL_RTL (DECL_RESULT (subr), x);
6462         }
6463     }
6464   else if (DECL_MODE (DECL_RESULT (subr)) == VOIDmode)
6465     /* If return mode is void, this decl rtl should not be used.  */
6466     SET_DECL_RTL (DECL_RESULT (subr), NULL_RTX);
6467   else
6468     {
6469       /* Compute the return values into a pseudo reg, which we will copy
6470          into the true return register after the cleanups are done.  */
6471
6472       /* In order to figure out what mode to use for the pseudo, we
6473          figure out what the mode of the eventual return register will
6474          actually be, and use that.  */
6475       rtx hard_reg
6476         = hard_function_value (TREE_TYPE (DECL_RESULT (subr)),
6477                                subr, 1);
6478
6479       /* Structures that are returned in registers are not aggregate_value_p,
6480          so we may see a PARALLEL or a REG.  */
6481       if (REG_P (hard_reg))
6482         SET_DECL_RTL (DECL_RESULT (subr), gen_reg_rtx (GET_MODE (hard_reg)));
6483       else if (GET_CODE (hard_reg) == PARALLEL)
6484         SET_DECL_RTL (DECL_RESULT (subr), gen_group_rtx (hard_reg));
6485       else
6486         abort ();
6487
6488       /* Set DECL_REGISTER flag so that expand_function_end will copy the
6489          result to the real return register(s).  */
6490       DECL_REGISTER (DECL_RESULT (subr)) = 1;
6491     }
6492
6493   /* Initialize rtx for parameters and local variables.
6494      In some cases this requires emitting insns.  */
6495   assign_parms (subr);
6496
6497   /* If function gets a static chain arg, store it.  */
6498   if (cfun->static_chain_decl)
6499     {
6500       tree parm = cfun->static_chain_decl;
6501       rtx local = gen_reg_rtx (Pmode);
6502
6503       set_decl_incoming_rtl (parm, static_chain_incoming_rtx);
6504       SET_DECL_RTL (parm, local);
6505       maybe_set_unchanging (local, parm);
6506       mark_reg_pointer (local, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (parm))));
6507
6508       emit_move_insn (local, static_chain_incoming_rtx);
6509     }
6510
6511   /* If the function receives a non-local goto, then store the
6512      bits we need to restore the frame pointer.  */
6513   if (cfun->nonlocal_goto_save_area)
6514     {
6515       tree t_save;
6516       rtx r_save;
6517
6518       /* ??? We need to do this save early.  Unfortunately here is
6519          before the frame variable gets declared.  Help out...  */
6520       expand_var (TREE_OPERAND (cfun->nonlocal_goto_save_area, 0));
6521
6522       t_save = build (ARRAY_REF, ptr_type_node, cfun->nonlocal_goto_save_area,
6523                       integer_zero_node, NULL_TREE, NULL_TREE);
6524       r_save = expand_expr (t_save, NULL_RTX, VOIDmode, EXPAND_WRITE);
6525
6526       emit_move_insn (r_save, virtual_stack_vars_rtx);
6527       update_nonlocal_goto_save_area ();
6528     }
6529
6530   /* The following was moved from init_function_start.
6531      The move is supposed to make sdb output more accurate.  */
6532   /* Indicate the beginning of the function body,
6533      as opposed to parm setup.  */
6534   emit_note (NOTE_INSN_FUNCTION_BEG);
6535
6536   if (GET_CODE (get_last_insn ()) != NOTE)
6537     emit_note (NOTE_INSN_DELETED);
6538   parm_birth_insn = get_last_insn ();
6539
6540   if (current_function_profile)
6541     {
6542 #ifdef PROFILE_HOOK
6543       PROFILE_HOOK (current_function_funcdef_no);
6544 #endif
6545     }
6546
6547   /* After the display initializations is where the tail-recursion label
6548      should go, if we end up needing one.   Ensure we have a NOTE here
6549      since some things (like trampolines) get placed before this.  */
6550   tail_recursion_reentry = emit_note (NOTE_INSN_DELETED);
6551
6552   /* Evaluate now the sizes of any types declared among the arguments.  */
6553   expand_pending_sizes (nreverse (get_pending_sizes ()));
6554
6555   /* Make sure there is a line number after the function entry setup code.  */
6556   force_next_line_note ();
6557 }
6558 \f
6559 /* Undo the effects of init_dummy_function_start.  */
6560 void
6561 expand_dummy_function_end (void)
6562 {
6563   /* End any sequences that failed to be closed due to syntax errors.  */
6564   while (in_sequence_p ())
6565     end_sequence ();
6566
6567   /* Outside function body, can't compute type's actual size
6568      until next function's body starts.  */
6569
6570   free_after_parsing (cfun);
6571   free_after_compilation (cfun);
6572   cfun = 0;
6573 }
6574
6575 /* Call DOIT for each hard register used as a return value from
6576    the current function.  */
6577
6578 void
6579 diddle_return_value (void (*doit) (rtx, void *), void *arg)
6580 {
6581   rtx outgoing = current_function_return_rtx;
6582
6583   if (! outgoing)
6584     return;
6585
6586   if (REG_P (outgoing))
6587     (*doit) (outgoing, arg);
6588   else if (GET_CODE (outgoing) == PARALLEL)
6589     {
6590       int i;
6591
6592       for (i = 0; i < XVECLEN (outgoing, 0); i++)
6593         {
6594           rtx x = XEXP (XVECEXP (outgoing, 0, i), 0);
6595
6596           if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
6597             (*doit) (x, arg);
6598         }
6599     }
6600 }
6601
6602 static void
6603 do_clobber_return_reg (rtx reg, void *arg ATTRIBUTE_UNUSED)
6604 {
6605   emit_insn (gen_rtx_CLOBBER (VOIDmode, reg));
6606 }
6607
6608 void
6609 clobber_return_register (void)
6610 {
6611   diddle_return_value (do_clobber_return_reg, NULL);
6612
6613   /* In case we do use pseudo to return value, clobber it too.  */
6614   if (DECL_RTL_SET_P (DECL_RESULT (current_function_decl)))
6615     {
6616       tree decl_result = DECL_RESULT (current_function_decl);
6617       rtx decl_rtl = DECL_RTL (decl_result);
6618       if (REG_P (decl_rtl) && REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER)
6619         {
6620           do_clobber_return_reg (decl_rtl, NULL);
6621         }
6622     }
6623 }
6624
6625 static void
6626 do_use_return_reg (rtx reg, void *arg ATTRIBUTE_UNUSED)
6627 {
6628   emit_insn (gen_rtx_USE (VOIDmode, reg));
6629 }
6630
6631 void
6632 use_return_register (void)
6633 {
6634   diddle_return_value (do_use_return_reg, NULL);
6635 }
6636
6637 /* Possibly warn about unused parameters.  */
6638 void
6639 do_warn_unused_parameter (tree fn)
6640 {
6641   tree decl;
6642
6643   for (decl = DECL_ARGUMENTS (fn);
6644        decl; decl = TREE_CHAIN (decl))
6645     if (!TREE_USED (decl) && TREE_CODE (decl) == PARM_DECL
6646         && DECL_NAME (decl) && !DECL_ARTIFICIAL (decl))
6647       warning ("%Junused parameter '%D'", decl, decl);
6648 }
6649
6650 static GTY(()) rtx initial_trampoline;
6651
6652 /* Generate RTL for the end of the current function.  */
6653
6654 void
6655 expand_function_end (void)
6656 {
6657   rtx clobber_after;
6658
6659   finish_expr_for_function ();
6660
6661   /* If arg_pointer_save_area was referenced only from a nested
6662      function, we will not have initialized it yet.  Do that now.  */
6663   if (arg_pointer_save_area && ! cfun->arg_pointer_save_area_init)
6664     get_arg_pointer_save_area (cfun);
6665
6666 #ifdef NON_SAVING_SETJMP
6667   /* Don't put any variables in registers if we call setjmp
6668      on a machine that fails to restore the registers.  */
6669   if (NON_SAVING_SETJMP && current_function_calls_setjmp)
6670     {
6671       if (DECL_INITIAL (current_function_decl) != error_mark_node)
6672         setjmp_protect (DECL_INITIAL (current_function_decl));
6673
6674       setjmp_protect_args ();
6675     }
6676 #endif
6677
6678   /* If we are doing stack checking and this function makes calls,
6679      do a stack probe at the start of the function to ensure we have enough
6680      space for another stack frame.  */
6681   if (flag_stack_check && ! STACK_CHECK_BUILTIN)
6682     {
6683       rtx insn, seq;
6684
6685       for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
6686         if (GET_CODE (insn) == CALL_INSN)
6687           {
6688             start_sequence ();
6689             probe_stack_range (STACK_CHECK_PROTECT,
6690                                GEN_INT (STACK_CHECK_MAX_FRAME_SIZE));
6691             seq = get_insns ();
6692             end_sequence ();
6693             emit_insn_before (seq, tail_recursion_reentry);
6694             break;
6695           }
6696     }
6697
6698   /* Possibly warn about unused parameters.
6699      When frontend does unit-at-a-time, the warning is already
6700      issued at finalization time.  */
6701   if (warn_unused_parameter
6702       && !lang_hooks.callgraph.expand_function)
6703     do_warn_unused_parameter (current_function_decl);
6704
6705   /* End any sequences that failed to be closed due to syntax errors.  */
6706   while (in_sequence_p ())
6707     end_sequence ();
6708
6709   clear_pending_stack_adjust ();
6710   do_pending_stack_adjust ();
6711
6712   /* @@@ This is a kludge.  We want to ensure that instructions that
6713      may trap are not moved into the epilogue by scheduling, because
6714      we don't always emit unwind information for the epilogue.
6715      However, not all machine descriptions define a blockage insn, so
6716      emit an ASM_INPUT to act as one.  */
6717   if (flag_non_call_exceptions)
6718     emit_insn (gen_rtx_ASM_INPUT (VOIDmode, ""));
6719
6720   /* Mark the end of the function body.
6721      If control reaches this insn, the function can drop through
6722      without returning a value.  */
6723   emit_note (NOTE_INSN_FUNCTION_END);
6724
6725   /* Must mark the last line number note in the function, so that the test
6726      coverage code can avoid counting the last line twice.  This just tells
6727      the code to ignore the immediately following line note, since there
6728      already exists a copy of this note somewhere above.  This line number
6729      note is still needed for debugging though, so we can't delete it.  */
6730   if (flag_test_coverage)
6731     emit_note (NOTE_INSN_REPEATED_LINE_NUMBER);
6732
6733   /* Output a linenumber for the end of the function.
6734      SDB depends on this.  */
6735   force_next_line_note ();
6736   emit_line_note (input_location);
6737
6738   /* Before the return label (if any), clobber the return
6739      registers so that they are not propagated live to the rest of
6740      the function.  This can only happen with functions that drop
6741      through; if there had been a return statement, there would
6742      have either been a return rtx, or a jump to the return label.
6743
6744      We delay actual code generation after the current_function_value_rtx
6745      is computed.  */
6746   clobber_after = get_last_insn ();
6747
6748   /* Output the label for the actual return from the function,
6749      if one is expected.  This happens either because a function epilogue
6750      is used instead of a return instruction, or because a return was done
6751      with a goto in order to run local cleanups, or because of pcc-style
6752      structure returning.  */
6753   if (return_label)
6754     emit_label (return_label);
6755
6756   /* Let except.c know where it should emit the call to unregister
6757      the function context for sjlj exceptions.  */
6758   if (flag_exceptions && USING_SJLJ_EXCEPTIONS)
6759     sjlj_emit_function_exit_after (get_last_insn ());
6760
6761   /* If we had calls to alloca, and this machine needs
6762      an accurate stack pointer to exit the function,
6763      insert some code to save and restore the stack pointer.  */
6764   if (! EXIT_IGNORE_STACK
6765       && current_function_calls_alloca)
6766     {
6767       rtx tem = 0;
6768
6769       emit_stack_save (SAVE_FUNCTION, &tem, parm_birth_insn);
6770       emit_stack_restore (SAVE_FUNCTION, tem, NULL_RTX);
6771     }
6772
6773   /* If scalar return value was computed in a pseudo-reg, or was a named
6774      return value that got dumped to the stack, copy that to the hard
6775      return register.  */
6776   if (DECL_RTL_SET_P (DECL_RESULT (current_function_decl)))
6777     {
6778       tree decl_result = DECL_RESULT (current_function_decl);
6779       rtx decl_rtl = DECL_RTL (decl_result);
6780
6781       if (REG_P (decl_rtl)
6782           ? REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER
6783           : DECL_REGISTER (decl_result))
6784         {
6785           rtx real_decl_rtl = current_function_return_rtx;
6786
6787           /* This should be set in assign_parms.  */
6788           if (! REG_FUNCTION_VALUE_P (real_decl_rtl))
6789             abort ();
6790
6791           /* If this is a BLKmode structure being returned in registers,
6792              then use the mode computed in expand_return.  Note that if
6793              decl_rtl is memory, then its mode may have been changed,
6794              but that current_function_return_rtx has not.  */
6795           if (GET_MODE (real_decl_rtl) == BLKmode)
6796             PUT_MODE (real_decl_rtl, GET_MODE (decl_rtl));
6797
6798           /* If a named return value dumped decl_return to memory, then
6799              we may need to re-do the PROMOTE_MODE signed/unsigned
6800              extension.  */
6801           if (GET_MODE (real_decl_rtl) != GET_MODE (decl_rtl))
6802             {
6803               int unsignedp = TYPE_UNSIGNED (TREE_TYPE (decl_result));
6804
6805               if (targetm.calls.promote_function_return (TREE_TYPE (current_function_decl)))
6806                 promote_mode (TREE_TYPE (decl_result), GET_MODE (decl_rtl),
6807                               &unsignedp, 1);
6808
6809               convert_move (real_decl_rtl, decl_rtl, unsignedp);
6810             }
6811           else if (GET_CODE (real_decl_rtl) == PARALLEL)
6812             {
6813               /* If expand_function_start has created a PARALLEL for decl_rtl,
6814                  move the result to the real return registers.  Otherwise, do
6815                  a group load from decl_rtl for a named return.  */
6816               if (GET_CODE (decl_rtl) == PARALLEL)
6817                 emit_group_move (real_decl_rtl, decl_rtl);
6818               else
6819                 emit_group_load (real_decl_rtl, decl_rtl,
6820                                  TREE_TYPE (decl_result),
6821                                  int_size_in_bytes (TREE_TYPE (decl_result)));
6822             }
6823           else
6824             emit_move_insn (real_decl_rtl, decl_rtl);
6825         }
6826     }
6827
6828   /* If returning a structure, arrange to return the address of the value
6829      in a place where debuggers expect to find it.
6830
6831      If returning a structure PCC style,
6832      the caller also depends on this value.
6833      And current_function_returns_pcc_struct is not necessarily set.  */
6834   if (current_function_returns_struct
6835       || current_function_returns_pcc_struct)
6836     {
6837       rtx value_address
6838         = XEXP (DECL_RTL (DECL_RESULT (current_function_decl)), 0);
6839       tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
6840 #ifdef FUNCTION_OUTGOING_VALUE
6841       rtx outgoing
6842         = FUNCTION_OUTGOING_VALUE (build_pointer_type (type),
6843                                    current_function_decl);
6844 #else
6845       rtx outgoing
6846         = FUNCTION_VALUE (build_pointer_type (type), current_function_decl);
6847 #endif
6848
6849       /* Mark this as a function return value so integrate will delete the
6850          assignment and USE below when inlining this function.  */
6851       REG_FUNCTION_VALUE_P (outgoing) = 1;
6852
6853       /* The address may be ptr_mode and OUTGOING may be Pmode.  */
6854       value_address = convert_memory_address (GET_MODE (outgoing),
6855                                               value_address);
6856
6857       emit_move_insn (outgoing, value_address);
6858
6859       /* Show return register used to hold result (in this case the address
6860          of the result.  */
6861       current_function_return_rtx = outgoing;
6862     }
6863
6864   /* If this is an implementation of throw, do what's necessary to
6865      communicate between __builtin_eh_return and the epilogue.  */
6866   expand_eh_return ();
6867
6868   /* Emit the actual code to clobber return register.  */
6869   {
6870     rtx seq, after;
6871
6872     start_sequence ();
6873     clobber_return_register ();
6874     seq = get_insns ();
6875     end_sequence ();
6876
6877     after = emit_insn_after (seq, clobber_after);
6878   }
6879
6880   /* Output the label for the naked return from the function, if one is
6881      expected.  This is currently used only by __builtin_return.  */
6882   if (naked_return_label)
6883     emit_label (naked_return_label);
6884
6885   /* ??? This should no longer be necessary since stupid is no longer with
6886      us, but there are some parts of the compiler (eg reload_combine, and
6887      sh mach_dep_reorg) that still try and compute their own lifetime info
6888      instead of using the general framework.  */
6889   use_return_register ();
6890
6891   /* Fix up any gotos that jumped out to the outermost
6892      binding level of the function.
6893      Must follow emitting RETURN_LABEL.  */
6894
6895   /* If you have any cleanups to do at this point,
6896      and they need to create temporary variables,
6897      then you will lose.  */
6898   expand_fixups (get_insns ());
6899 }
6900
6901 rtx
6902 get_arg_pointer_save_area (struct function *f)
6903 {
6904   rtx ret = f->x_arg_pointer_save_area;
6905
6906   if (! ret)
6907     {
6908       ret = assign_stack_local_1 (Pmode, GET_MODE_SIZE (Pmode), 0, f);
6909       f->x_arg_pointer_save_area = ret;
6910     }
6911
6912   if (f == cfun && ! f->arg_pointer_save_area_init)
6913     {
6914       rtx seq;
6915
6916       /* Save the arg pointer at the beginning of the function.  The
6917          generated stack slot may not be a valid memory address, so we
6918          have to check it and fix it if necessary.  */
6919       start_sequence ();
6920       emit_move_insn (validize_mem (ret), virtual_incoming_args_rtx);
6921       seq = get_insns ();
6922       end_sequence ();
6923
6924       push_topmost_sequence ();
6925       emit_insn_after (seq, get_insns ());
6926       pop_topmost_sequence ();
6927     }
6928
6929   return ret;
6930 }
6931 \f
6932 /* Extend a vector that records the INSN_UIDs of INSNS
6933    (a list of one or more insns).  */
6934
6935 static void
6936 record_insns (rtx insns, varray_type *vecp)
6937 {
6938   int i, len;
6939   rtx tmp;
6940
6941   tmp = insns;
6942   len = 0;
6943   while (tmp != NULL_RTX)
6944     {
6945       len++;
6946       tmp = NEXT_INSN (tmp);
6947     }
6948
6949   i = VARRAY_SIZE (*vecp);
6950   VARRAY_GROW (*vecp, i + len);
6951   tmp = insns;
6952   while (tmp != NULL_RTX)
6953     {
6954       VARRAY_INT (*vecp, i) = INSN_UID (tmp);
6955       i++;
6956       tmp = NEXT_INSN (tmp);
6957     }
6958 }
6959
6960 /* Set the locator of the insn chain starting at INSN to LOC.  */
6961 static void
6962 set_insn_locators (rtx insn, int loc)
6963 {
6964   while (insn != NULL_RTX)
6965     {
6966       if (INSN_P (insn))
6967         INSN_LOCATOR (insn) = loc;
6968       insn = NEXT_INSN (insn);
6969     }
6970 }
6971
6972 /* Determine how many INSN_UIDs in VEC are part of INSN.  Because we can
6973    be running after reorg, SEQUENCE rtl is possible.  */
6974
6975 static int
6976 contains (rtx insn, varray_type vec)
6977 {
6978   int i, j;
6979
6980   if (GET_CODE (insn) == INSN
6981       && GET_CODE (PATTERN (insn)) == SEQUENCE)
6982     {
6983       int count = 0;
6984       for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
6985         for (j = VARRAY_SIZE (vec) - 1; j >= 0; --j)
6986           if (INSN_UID (XVECEXP (PATTERN (insn), 0, i)) == VARRAY_INT (vec, j))
6987             count++;
6988       return count;
6989     }
6990   else
6991     {
6992       for (j = VARRAY_SIZE (vec) - 1; j >= 0; --j)
6993         if (INSN_UID (insn) == VARRAY_INT (vec, j))
6994           return 1;
6995     }
6996   return 0;
6997 }
6998
6999 int
7000 prologue_epilogue_contains (rtx insn)
7001 {
7002   if (contains (insn, prologue))
7003     return 1;
7004   if (contains (insn, epilogue))
7005     return 1;
7006   return 0;
7007 }
7008
7009 int
7010 sibcall_epilogue_contains (rtx insn)
7011 {
7012   if (sibcall_epilogue)
7013     return contains (insn, sibcall_epilogue);
7014   return 0;
7015 }
7016
7017 #ifdef HAVE_return
7018 /* Insert gen_return at the end of block BB.  This also means updating
7019    block_for_insn appropriately.  */
7020
7021 static void
7022 emit_return_into_block (basic_block bb, rtx line_note)
7023 {
7024   emit_jump_insn_after (gen_return (), BB_END (bb));
7025   if (line_note)
7026     emit_note_copy_after (line_note, PREV_INSN (BB_END (bb)));
7027 }
7028 #endif /* HAVE_return */
7029
7030 #if defined(HAVE_epilogue) && defined(INCOMING_RETURN_ADDR_RTX)
7031
7032 /* These functions convert the epilogue into a variant that does not modify the
7033    stack pointer.  This is used in cases where a function returns an object
7034    whose size is not known until it is computed.  The called function leaves the
7035    object on the stack, leaves the stack depressed, and returns a pointer to
7036    the object.
7037
7038    What we need to do is track all modifications and references to the stack
7039    pointer, deleting the modifications and changing the references to point to
7040    the location the stack pointer would have pointed to had the modifications
7041    taken place.
7042
7043    These functions need to be portable so we need to make as few assumptions
7044    about the epilogue as we can.  However, the epilogue basically contains
7045    three things: instructions to reset the stack pointer, instructions to
7046    reload registers, possibly including the frame pointer, and an
7047    instruction to return to the caller.
7048
7049    If we can't be sure of what a relevant epilogue insn is doing, we abort.
7050    We also make no attempt to validate the insns we make since if they are
7051    invalid, we probably can't do anything valid.  The intent is that these
7052    routines get "smarter" as more and more machines start to use them and
7053    they try operating on different epilogues.
7054
7055    We use the following structure to track what the part of the epilogue that
7056    we've already processed has done.  We keep two copies of the SP equivalence,
7057    one for use during the insn we are processing and one for use in the next
7058    insn.  The difference is because one part of a PARALLEL may adjust SP
7059    and the other may use it.  */
7060
7061 struct epi_info
7062 {
7063   rtx sp_equiv_reg;             /* REG that SP is set from, perhaps SP.  */
7064   HOST_WIDE_INT sp_offset;      /* Offset from SP_EQUIV_REG of present SP.  */
7065   rtx new_sp_equiv_reg;         /* REG to be used at end of insn.  */
7066   HOST_WIDE_INT new_sp_offset;  /* Offset to be used at end of insn.  */
7067   rtx equiv_reg_src;            /* If nonzero, the value that SP_EQUIV_REG
7068                                    should be set to once we no longer need
7069                                    its value.  */
7070   rtx const_equiv[FIRST_PSEUDO_REGISTER]; /* Any known constant equivalences
7071                                              for registers.  */
7072 };
7073
7074 static void handle_epilogue_set (rtx, struct epi_info *);
7075 static void update_epilogue_consts (rtx, rtx, void *);
7076 static void emit_equiv_load (struct epi_info *);
7077
7078 /* Modify INSN, a list of one or more insns that is part of the epilogue, to
7079    no modifications to the stack pointer.  Return the new list of insns.  */
7080
7081 static rtx
7082 keep_stack_depressed (rtx insns)
7083 {
7084   int j;
7085   struct epi_info info;
7086   rtx insn, next;
7087
7088   /* If the epilogue is just a single instruction, it must be OK as is.  */
7089   if (NEXT_INSN (insns) == NULL_RTX)
7090     return insns;
7091
7092   /* Otherwise, start a sequence, initialize the information we have, and
7093      process all the insns we were given.  */
7094   start_sequence ();
7095
7096   info.sp_equiv_reg = stack_pointer_rtx;
7097   info.sp_offset = 0;
7098   info.equiv_reg_src = 0;
7099
7100   for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
7101     info.const_equiv[j] = 0;
7102
7103   insn = insns;
7104   next = NULL_RTX;
7105   while (insn != NULL_RTX)
7106     {
7107       next = NEXT_INSN (insn);
7108
7109       if (!INSN_P (insn))
7110         {
7111           add_insn (insn);
7112           insn = next;
7113           continue;
7114         }
7115
7116       /* If this insn references the register that SP is equivalent to and
7117          we have a pending load to that register, we must force out the load
7118          first and then indicate we no longer know what SP's equivalent is.  */
7119       if (info.equiv_reg_src != 0
7120           && reg_referenced_p (info.sp_equiv_reg, PATTERN (insn)))
7121         {
7122           emit_equiv_load (&info);
7123           info.sp_equiv_reg = 0;
7124         }
7125
7126       info.new_sp_equiv_reg = info.sp_equiv_reg;
7127       info.new_sp_offset = info.sp_offset;
7128
7129       /* If this is a (RETURN) and the return address is on the stack,
7130          update the address and change to an indirect jump.  */
7131       if (GET_CODE (PATTERN (insn)) == RETURN
7132           || (GET_CODE (PATTERN (insn)) == PARALLEL
7133               && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == RETURN))
7134         {
7135           rtx retaddr = INCOMING_RETURN_ADDR_RTX;
7136           rtx base = 0;
7137           HOST_WIDE_INT offset = 0;
7138           rtx jump_insn, jump_set;
7139
7140           /* If the return address is in a register, we can emit the insn
7141              unchanged.  Otherwise, it must be a MEM and we see what the
7142              base register and offset are.  In any case, we have to emit any
7143              pending load to the equivalent reg of SP, if any.  */
7144           if (REG_P (retaddr))
7145             {
7146               emit_equiv_load (&info);
7147               add_insn (insn);
7148               insn = next;
7149               continue;
7150             }
7151           else if (GET_CODE (retaddr) == MEM
7152                    && REG_P (XEXP (retaddr, 0)))
7153             base = gen_rtx_REG (Pmode, REGNO (XEXP (retaddr, 0))), offset = 0;
7154           else if (GET_CODE (retaddr) == MEM
7155                    && GET_CODE (XEXP (retaddr, 0)) == PLUS
7156                    && REG_P (XEXP (XEXP (retaddr, 0), 0))
7157                    && GET_CODE (XEXP (XEXP (retaddr, 0), 1)) == CONST_INT)
7158             {
7159               base = gen_rtx_REG (Pmode, REGNO (XEXP (XEXP (retaddr, 0), 0)));
7160               offset = INTVAL (XEXP (XEXP (retaddr, 0), 1));
7161             }
7162           else
7163             abort ();
7164
7165           /* If the base of the location containing the return pointer
7166              is SP, we must update it with the replacement address.  Otherwise,
7167              just build the necessary MEM.  */
7168           retaddr = plus_constant (base, offset);
7169           if (base == stack_pointer_rtx)
7170             retaddr = simplify_replace_rtx (retaddr, stack_pointer_rtx,
7171                                             plus_constant (info.sp_equiv_reg,
7172                                                            info.sp_offset));
7173
7174           retaddr = gen_rtx_MEM (Pmode, retaddr);
7175
7176           /* If there is a pending load to the equivalent register for SP
7177              and we reference that register, we must load our address into
7178              a scratch register and then do that load.  */
7179           if (info.equiv_reg_src
7180               && reg_overlap_mentioned_p (info.equiv_reg_src, retaddr))
7181             {
7182               unsigned int regno;
7183               rtx reg;
7184
7185               for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
7186                 if (HARD_REGNO_MODE_OK (regno, Pmode)
7187                     && !fixed_regs[regno]
7188                     && TEST_HARD_REG_BIT (regs_invalidated_by_call, regno)
7189                     && !REGNO_REG_SET_P (EXIT_BLOCK_PTR->global_live_at_start,
7190                                          regno)
7191                     && !refers_to_regno_p (regno,
7192                                            regno + hard_regno_nregs[regno]
7193                                                                    [Pmode],
7194                                            info.equiv_reg_src, NULL)
7195                     && info.const_equiv[regno] == 0)
7196                   break;
7197
7198               if (regno == FIRST_PSEUDO_REGISTER)
7199                 abort ();
7200
7201               reg = gen_rtx_REG (Pmode, regno);
7202               emit_move_insn (reg, retaddr);
7203               retaddr = reg;
7204             }
7205
7206           emit_equiv_load (&info);
7207           jump_insn = emit_jump_insn (gen_indirect_jump (retaddr));
7208
7209           /* Show the SET in the above insn is a RETURN.  */
7210           jump_set = single_set (jump_insn);
7211           if (jump_set == 0)
7212             abort ();
7213           else
7214             SET_IS_RETURN_P (jump_set) = 1;
7215         }
7216
7217       /* If SP is not mentioned in the pattern and its equivalent register, if
7218          any, is not modified, just emit it.  Otherwise, if neither is set,
7219          replace the reference to SP and emit the insn.  If none of those are
7220          true, handle each SET individually.  */
7221       else if (!reg_mentioned_p (stack_pointer_rtx, PATTERN (insn))
7222                && (info.sp_equiv_reg == stack_pointer_rtx
7223                    || !reg_set_p (info.sp_equiv_reg, insn)))
7224         add_insn (insn);
7225       else if (! reg_set_p (stack_pointer_rtx, insn)
7226                && (info.sp_equiv_reg == stack_pointer_rtx
7227                    || !reg_set_p (info.sp_equiv_reg, insn)))
7228         {
7229           if (! validate_replace_rtx (stack_pointer_rtx,
7230                                       plus_constant (info.sp_equiv_reg,
7231                                                      info.sp_offset),
7232                                       insn))
7233             abort ();
7234
7235           add_insn (insn);
7236         }
7237       else if (GET_CODE (PATTERN (insn)) == SET)
7238         handle_epilogue_set (PATTERN (insn), &info);
7239       else if (GET_CODE (PATTERN (insn)) == PARALLEL)
7240         {
7241           for (j = 0; j < XVECLEN (PATTERN (insn), 0); j++)
7242             if (GET_CODE (XVECEXP (PATTERN (insn), 0, j)) == SET)
7243               handle_epilogue_set (XVECEXP (PATTERN (insn), 0, j), &info);
7244         }
7245       else
7246         add_insn (insn);
7247
7248       info.sp_equiv_reg = info.new_sp_equiv_reg;
7249       info.sp_offset = info.new_sp_offset;
7250
7251       /* Now update any constants this insn sets.  */
7252       note_stores (PATTERN (insn), update_epilogue_consts, &info);
7253       insn = next;
7254     }
7255
7256   insns = get_insns ();
7257   end_sequence ();
7258   return insns;
7259 }
7260
7261 /* SET is a SET from an insn in the epilogue.  P is a pointer to the epi_info
7262    structure that contains information about what we've seen so far.  We
7263    process this SET by either updating that data or by emitting one or
7264    more insns.  */
7265
7266 static void
7267 handle_epilogue_set (rtx set, struct epi_info *p)
7268 {
7269   /* First handle the case where we are setting SP.  Record what it is being
7270      set from.  If unknown, abort.  */
7271   if (reg_set_p (stack_pointer_rtx, set))
7272     {
7273       if (SET_DEST (set) != stack_pointer_rtx)
7274         abort ();
7275
7276       if (GET_CODE (SET_SRC (set)) == PLUS)
7277         {
7278           p->new_sp_equiv_reg = XEXP (SET_SRC (set), 0);
7279           if (GET_CODE (XEXP (SET_SRC (set), 1)) == CONST_INT)
7280             p->new_sp_offset = INTVAL (XEXP (SET_SRC (set), 1));
7281           else if (REG_P (XEXP (SET_SRC (set), 1))
7282                    && REGNO (XEXP (SET_SRC (set), 1)) < FIRST_PSEUDO_REGISTER
7283                    && p->const_equiv[REGNO (XEXP (SET_SRC (set), 1))] != 0)
7284             p->new_sp_offset
7285               = INTVAL (p->const_equiv[REGNO (XEXP (SET_SRC (set), 1))]);
7286           else
7287             abort ();
7288         }
7289       else
7290         p->new_sp_equiv_reg = SET_SRC (set), p->new_sp_offset = 0;
7291
7292       /* If we are adjusting SP, we adjust from the old data.  */
7293       if (p->new_sp_equiv_reg == stack_pointer_rtx)
7294         {
7295           p->new_sp_equiv_reg = p->sp_equiv_reg;
7296           p->new_sp_offset += p->sp_offset;
7297         }
7298
7299       if (p->new_sp_equiv_reg == 0 || !REG_P (p->new_sp_equiv_reg))
7300         abort ();
7301
7302       return;
7303     }
7304
7305   /* Next handle the case where we are setting SP's equivalent register.
7306      If we already have a value to set it to, abort.  We could update, but
7307      there seems little point in handling that case.  Note that we have
7308      to allow for the case where we are setting the register set in
7309      the previous part of a PARALLEL inside a single insn.  But use the
7310      old offset for any updates within this insn.  We must allow for the case
7311      where the register is being set in a different (usually wider) mode than
7312      Pmode).  */
7313   else if (p->new_sp_equiv_reg != 0 && reg_set_p (p->new_sp_equiv_reg, set))
7314     {
7315       if (p->equiv_reg_src != 0
7316           || !REG_P (p->new_sp_equiv_reg)
7317           || !REG_P (SET_DEST (set))
7318           || GET_MODE_BITSIZE (GET_MODE (SET_DEST (set))) > BITS_PER_WORD
7319           || REGNO (p->new_sp_equiv_reg) != REGNO (SET_DEST (set)))
7320         abort ();
7321       else
7322         p->equiv_reg_src
7323           = simplify_replace_rtx (SET_SRC (set), stack_pointer_rtx,
7324                                   plus_constant (p->sp_equiv_reg,
7325                                                  p->sp_offset));
7326     }
7327
7328   /* Otherwise, replace any references to SP in the insn to its new value
7329      and emit the insn.  */
7330   else
7331     {
7332       SET_SRC (set) = simplify_replace_rtx (SET_SRC (set), stack_pointer_rtx,
7333                                             plus_constant (p->sp_equiv_reg,
7334                                                            p->sp_offset));
7335       SET_DEST (set) = simplify_replace_rtx (SET_DEST (set), stack_pointer_rtx,
7336                                              plus_constant (p->sp_equiv_reg,
7337                                                             p->sp_offset));
7338       emit_insn (set);
7339     }
7340 }
7341
7342 /* Update the tracking information for registers set to constants.  */
7343
7344 static void
7345 update_epilogue_consts (rtx dest, rtx x, void *data)
7346 {
7347   struct epi_info *p = (struct epi_info *) data;
7348   rtx new;
7349
7350   if (!REG_P (dest) || REGNO (dest) >= FIRST_PSEUDO_REGISTER)
7351     return;
7352
7353   /* If we are either clobbering a register or doing a partial set,
7354      show we don't know the value.  */
7355   else if (GET_CODE (x) == CLOBBER || ! rtx_equal_p (dest, SET_DEST (x)))
7356     p->const_equiv[REGNO (dest)] = 0;
7357
7358   /* If we are setting it to a constant, record that constant.  */
7359   else if (GET_CODE (SET_SRC (x)) == CONST_INT)
7360     p->const_equiv[REGNO (dest)] = SET_SRC (x);
7361
7362   /* If this is a binary operation between a register we have been tracking
7363      and a constant, see if we can compute a new constant value.  */
7364   else if (ARITHMETIC_P (SET_SRC (x))
7365            && REG_P (XEXP (SET_SRC (x), 0))
7366            && REGNO (XEXP (SET_SRC (x), 0)) < FIRST_PSEUDO_REGISTER
7367            && p->const_equiv[REGNO (XEXP (SET_SRC (x), 0))] != 0
7368            && GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
7369            && 0 != (new = simplify_binary_operation
7370                     (GET_CODE (SET_SRC (x)), GET_MODE (dest),
7371                      p->const_equiv[REGNO (XEXP (SET_SRC (x), 0))],
7372                      XEXP (SET_SRC (x), 1)))
7373            && GET_CODE (new) == CONST_INT)
7374     p->const_equiv[REGNO (dest)] = new;
7375
7376   /* Otherwise, we can't do anything with this value.  */
7377   else
7378     p->const_equiv[REGNO (dest)] = 0;
7379 }
7380
7381 /* Emit an insn to do the load shown in p->equiv_reg_src, if needed.  */
7382
7383 static void
7384 emit_equiv_load (struct epi_info *p)
7385 {
7386   if (p->equiv_reg_src != 0)
7387     {
7388       rtx dest = p->sp_equiv_reg;
7389
7390       if (GET_MODE (p->equiv_reg_src) != GET_MODE (dest))
7391         dest = gen_rtx_REG (GET_MODE (p->equiv_reg_src),
7392                             REGNO (p->sp_equiv_reg));
7393
7394       emit_move_insn (dest, p->equiv_reg_src);
7395       p->equiv_reg_src = 0;
7396     }
7397 }
7398 #endif
7399
7400 /* Generate the prologue and epilogue RTL if the machine supports it.  Thread
7401    this into place with notes indicating where the prologue ends and where
7402    the epilogue begins.  Update the basic block information when possible.  */
7403
7404 void
7405 thread_prologue_and_epilogue_insns (rtx f ATTRIBUTE_UNUSED)
7406 {
7407   int inserted = 0;
7408   edge e;
7409 #if defined (HAVE_sibcall_epilogue) || defined (HAVE_epilogue) || defined (HAVE_return) || defined (HAVE_prologue)
7410   rtx seq;
7411 #endif
7412 #ifdef HAVE_prologue
7413   rtx prologue_end = NULL_RTX;
7414 #endif
7415 #if defined (HAVE_epilogue) || defined(HAVE_return)
7416   rtx epilogue_end = NULL_RTX;
7417 #endif
7418
7419 #ifdef HAVE_prologue
7420   if (HAVE_prologue)
7421     {
7422       start_sequence ();
7423       seq = gen_prologue ();
7424       emit_insn (seq);
7425
7426       /* Retain a map of the prologue insns.  */
7427       record_insns (seq, &prologue);
7428       prologue_end = emit_note (NOTE_INSN_PROLOGUE_END);
7429
7430       seq = get_insns ();
7431       end_sequence ();
7432       set_insn_locators (seq, prologue_locator);
7433
7434       /* Can't deal with multiple successors of the entry block
7435          at the moment.  Function should always have at least one
7436          entry point.  */
7437       if (!ENTRY_BLOCK_PTR->succ || ENTRY_BLOCK_PTR->succ->succ_next)
7438         abort ();
7439
7440       insert_insn_on_edge (seq, ENTRY_BLOCK_PTR->succ);
7441       inserted = 1;
7442     }
7443 #endif
7444
7445   /* If the exit block has no non-fake predecessors, we don't need
7446      an epilogue.  */
7447   for (e = EXIT_BLOCK_PTR->pred; e; e = e->pred_next)
7448     if ((e->flags & EDGE_FAKE) == 0)
7449       break;
7450   if (e == NULL)
7451     goto epilogue_done;
7452
7453 #ifdef HAVE_return
7454   if (optimize && HAVE_return)
7455     {
7456       /* If we're allowed to generate a simple return instruction,
7457          then by definition we don't need a full epilogue.  Examine
7458          the block that falls through to EXIT.   If it does not
7459          contain any code, examine its predecessors and try to
7460          emit (conditional) return instructions.  */
7461
7462       basic_block last;
7463       edge e_next;
7464       rtx label;
7465
7466       for (e = EXIT_BLOCK_PTR->pred; e; e = e->pred_next)
7467         if (e->flags & EDGE_FALLTHRU)
7468           break;
7469       if (e == NULL)
7470         goto epilogue_done;
7471       last = e->src;
7472
7473       /* Verify that there are no active instructions in the last block.  */
7474       label = BB_END (last);
7475       while (label && GET_CODE (label) != CODE_LABEL)
7476         {
7477           if (active_insn_p (label))
7478             break;
7479           label = PREV_INSN (label);
7480         }
7481
7482       if (BB_HEAD (last) == label && GET_CODE (label) == CODE_LABEL)
7483         {
7484           rtx epilogue_line_note = NULL_RTX;
7485
7486           /* Locate the line number associated with the closing brace,
7487              if we can find one.  */
7488           for (seq = get_last_insn ();
7489                seq && ! active_insn_p (seq);
7490                seq = PREV_INSN (seq))
7491             if (GET_CODE (seq) == NOTE && NOTE_LINE_NUMBER (seq) > 0)
7492               {
7493                 epilogue_line_note = seq;
7494                 break;
7495               }
7496
7497           for (e = last->pred; e; e = e_next)
7498             {
7499               basic_block bb = e->src;
7500               rtx jump;
7501
7502               e_next = e->pred_next;
7503               if (bb == ENTRY_BLOCK_PTR)
7504                 continue;
7505
7506               jump = BB_END (bb);
7507               if ((GET_CODE (jump) != JUMP_INSN) || JUMP_LABEL (jump) != label)
7508                 continue;
7509
7510               /* If we have an unconditional jump, we can replace that
7511                  with a simple return instruction.  */
7512               if (simplejump_p (jump))
7513                 {
7514                   emit_return_into_block (bb, epilogue_line_note);
7515                   delete_insn (jump);
7516                 }
7517
7518               /* If we have a conditional jump, we can try to replace
7519                  that with a conditional return instruction.  */
7520               else if (condjump_p (jump))
7521                 {
7522                   if (! redirect_jump (jump, 0, 0))
7523                     continue;
7524
7525                   /* If this block has only one successor, it both jumps
7526                      and falls through to the fallthru block, so we can't
7527                      delete the edge.  */
7528                   if (bb->succ->succ_next == NULL)
7529                     continue;
7530                 }
7531               else
7532                 continue;
7533
7534               /* Fix up the CFG for the successful change we just made.  */
7535               redirect_edge_succ (e, EXIT_BLOCK_PTR);
7536             }
7537
7538           /* Emit a return insn for the exit fallthru block.  Whether
7539              this is still reachable will be determined later.  */
7540
7541           emit_barrier_after (BB_END (last));
7542           emit_return_into_block (last, epilogue_line_note);
7543           epilogue_end = BB_END (last);
7544           last->succ->flags &= ~EDGE_FALLTHRU;
7545           goto epilogue_done;
7546         }
7547     }
7548 #endif
7549   /* Find the edge that falls through to EXIT.  Other edges may exist
7550      due to RETURN instructions, but those don't need epilogues.
7551      There really shouldn't be a mixture -- either all should have
7552      been converted or none, however...  */
7553
7554   for (e = EXIT_BLOCK_PTR->pred; e; e = e->pred_next)
7555     if (e->flags & EDGE_FALLTHRU)
7556       break;
7557   if (e == NULL)
7558     goto epilogue_done;
7559
7560 #ifdef HAVE_epilogue
7561   if (HAVE_epilogue)
7562     {
7563       start_sequence ();
7564       epilogue_end = emit_note (NOTE_INSN_EPILOGUE_BEG);
7565
7566       seq = gen_epilogue ();
7567
7568 #ifdef INCOMING_RETURN_ADDR_RTX
7569       /* If this function returns with the stack depressed and we can support
7570          it, massage the epilogue to actually do that.  */
7571       if (TREE_CODE (TREE_TYPE (current_function_decl)) == FUNCTION_TYPE
7572           && TYPE_RETURNS_STACK_DEPRESSED (TREE_TYPE (current_function_decl)))
7573         seq = keep_stack_depressed (seq);
7574 #endif
7575
7576       emit_jump_insn (seq);
7577
7578       /* Retain a map of the epilogue insns.  */
7579       record_insns (seq, &epilogue);
7580       set_insn_locators (seq, epilogue_locator);
7581
7582       seq = get_insns ();
7583       end_sequence ();
7584
7585       insert_insn_on_edge (seq, e);
7586       inserted = 1;
7587     }
7588   else
7589 #endif
7590     {
7591       basic_block cur_bb;
7592
7593       if (! next_active_insn (BB_END (e->src)))
7594         goto epilogue_done;
7595       /* We have a fall-through edge to the exit block, the source is not
7596          at the end of the function, and there will be an assembler epilogue
7597          at the end of the function.
7598          We can't use force_nonfallthru here, because that would try to
7599          use return.  Inserting a jump 'by hand' is extremely messy, so
7600          we take advantage of cfg_layout_finalize using
7601         fixup_fallthru_exit_predecessor.  */
7602       cfg_layout_initialize ();
7603       FOR_EACH_BB (cur_bb)
7604         if (cur_bb->index >= 0 && cur_bb->next_bb->index >= 0)
7605           cur_bb->rbi->next = cur_bb->next_bb;
7606       cfg_layout_finalize ();
7607     }
7608 epilogue_done:
7609
7610   if (inserted)
7611     commit_edge_insertions ();
7612
7613 #ifdef HAVE_sibcall_epilogue
7614   /* Emit sibling epilogues before any sibling call sites.  */
7615   for (e = EXIT_BLOCK_PTR->pred; e; e = e->pred_next)
7616     {
7617       basic_block bb = e->src;
7618       rtx insn = BB_END (bb);
7619       rtx i;
7620       rtx newinsn;
7621
7622       if (GET_CODE (insn) != CALL_INSN
7623           || ! SIBLING_CALL_P (insn))
7624         continue;
7625
7626       start_sequence ();
7627       emit_insn (gen_sibcall_epilogue ());
7628       seq = get_insns ();
7629       end_sequence ();
7630
7631       /* Retain a map of the epilogue insns.  Used in life analysis to
7632          avoid getting rid of sibcall epilogue insns.  Do this before we
7633          actually emit the sequence.  */
7634       record_insns (seq, &sibcall_epilogue);
7635       set_insn_locators (seq, epilogue_locator);
7636
7637       i = PREV_INSN (insn);
7638       newinsn = emit_insn_before (seq, insn);
7639     }
7640 #endif
7641
7642 #ifdef HAVE_prologue
7643   /* This is probably all useless now that we use locators.  */
7644   if (prologue_end)
7645     {
7646       rtx insn, prev;
7647
7648       /* GDB handles `break f' by setting a breakpoint on the first
7649          line note after the prologue.  Which means (1) that if
7650          there are line number notes before where we inserted the
7651          prologue we should move them, and (2) we should generate a
7652          note before the end of the first basic block, if there isn't
7653          one already there.
7654
7655          ??? This behavior is completely broken when dealing with
7656          multiple entry functions.  We simply place the note always
7657          into first basic block and let alternate entry points
7658          to be missed.
7659        */
7660
7661       for (insn = prologue_end; insn; insn = prev)
7662         {
7663           prev = PREV_INSN (insn);
7664           if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
7665             {
7666               /* Note that we cannot reorder the first insn in the
7667                  chain, since rest_of_compilation relies on that
7668                  remaining constant.  */
7669               if (prev == NULL)
7670                 break;
7671               reorder_insns (insn, insn, prologue_end);
7672             }
7673         }
7674
7675       /* Find the last line number note in the first block.  */
7676       for (insn = BB_END (ENTRY_BLOCK_PTR->next_bb);
7677            insn != prologue_end && insn;
7678            insn = PREV_INSN (insn))
7679         if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
7680           break;
7681
7682       /* If we didn't find one, make a copy of the first line number
7683          we run across.  */
7684       if (! insn)
7685         {
7686           for (insn = next_active_insn (prologue_end);
7687                insn;
7688                insn = PREV_INSN (insn))
7689             if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
7690               {
7691                 emit_note_copy_after (insn, prologue_end);
7692                 break;
7693               }
7694         }
7695     }
7696 #endif
7697 #ifdef HAVE_epilogue
7698   if (epilogue_end)
7699     {
7700       rtx insn, next;
7701
7702       /* Similarly, move any line notes that appear after the epilogue.
7703          There is no need, however, to be quite so anal about the existence
7704          of such a note.  Also move the NOTE_INSN_FUNCTION_END and (possibly)
7705          NOTE_INSN_FUNCTION_BEG notes, as those can be relevant for debug
7706          info generation.  */
7707       for (insn = epilogue_end; insn; insn = next)
7708         {
7709           next = NEXT_INSN (insn);
7710           if (GET_CODE (insn) == NOTE 
7711               && (NOTE_LINE_NUMBER (insn) > 0
7712                   || NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG
7713                   || NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_END))
7714             reorder_insns (insn, insn, PREV_INSN (epilogue_end));
7715         }
7716     }
7717 #endif
7718 }
7719
7720 /* Reposition the prologue-end and epilogue-begin notes after instruction
7721    scheduling and delayed branch scheduling.  */
7722
7723 void
7724 reposition_prologue_and_epilogue_notes (rtx f ATTRIBUTE_UNUSED)
7725 {
7726 #if defined (HAVE_prologue) || defined (HAVE_epilogue)
7727   rtx insn, last, note;
7728   int len;
7729
7730   if ((len = VARRAY_SIZE (prologue)) > 0)
7731     {
7732       last = 0, note = 0;
7733
7734       /* Scan from the beginning until we reach the last prologue insn.
7735          We apparently can't depend on basic_block_{head,end} after
7736          reorg has run.  */
7737       for (insn = f; insn; insn = NEXT_INSN (insn))
7738         {
7739           if (GET_CODE (insn) == NOTE)
7740             {
7741               if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_PROLOGUE_END)
7742                 note = insn;
7743             }
7744           else if (contains (insn, prologue))
7745             {
7746               last = insn;
7747               if (--len == 0)
7748                 break;
7749             }
7750         }
7751
7752       if (last)
7753         {
7754           /* Find the prologue-end note if we haven't already, and
7755              move it to just after the last prologue insn.  */
7756           if (note == 0)
7757             {
7758               for (note = last; (note = NEXT_INSN (note));)
7759                 if (GET_CODE (note) == NOTE
7760                     && NOTE_LINE_NUMBER (note) == NOTE_INSN_PROLOGUE_END)
7761                   break;
7762             }
7763
7764           /* Avoid placing note between CODE_LABEL and BASIC_BLOCK note.  */
7765           if (GET_CODE (last) == CODE_LABEL)
7766             last = NEXT_INSN (last);
7767           reorder_insns (note, note, last);
7768         }
7769     }
7770
7771   if ((len = VARRAY_SIZE (epilogue)) > 0)
7772     {
7773       last = 0, note = 0;
7774
7775       /* Scan from the end until we reach the first epilogue insn.
7776          We apparently can't depend on basic_block_{head,end} after
7777          reorg has run.  */
7778       for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
7779         {
7780           if (GET_CODE (insn) == NOTE)
7781             {
7782               if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EPILOGUE_BEG)
7783                 note = insn;
7784             }
7785           else if (contains (insn, epilogue))
7786             {
7787               last = insn;
7788               if (--len == 0)
7789                 break;
7790             }
7791         }
7792
7793       if (last)
7794         {
7795           /* Find the epilogue-begin note if we haven't already, and
7796              move it to just before the first epilogue insn.  */
7797           if (note == 0)
7798             {
7799               for (note = insn; (note = PREV_INSN (note));)
7800                 if (GET_CODE (note) == NOTE
7801                     && NOTE_LINE_NUMBER (note) == NOTE_INSN_EPILOGUE_BEG)
7802                   break;
7803             }
7804
7805           if (PREV_INSN (last) != note)
7806             reorder_insns (note, note, PREV_INSN (last));
7807         }
7808     }
7809 #endif /* HAVE_prologue or HAVE_epilogue */
7810 }
7811
7812 /* Called once, at initialization, to initialize function.c.  */
7813
7814 void
7815 init_function_once (void)
7816 {
7817   VARRAY_INT_INIT (prologue, 0, "prologue");
7818   VARRAY_INT_INIT (epilogue, 0, "epilogue");
7819   VARRAY_INT_INIT (sibcall_epilogue, 0, "sibcall_epilogue");
7820 }
7821
7822 /* Resets insn_block_boundaries array.  */
7823
7824 void
7825 reset_block_changes (void)
7826 {
7827   VARRAY_TREE_INIT (cfun->ib_boundaries_block, 100, "ib_boundaries_block");
7828   VARRAY_PUSH_TREE (cfun->ib_boundaries_block, NULL_TREE);
7829 }
7830
7831 /* Record the boundary for BLOCK.  */
7832 void
7833 record_block_change (tree block)
7834 {
7835   int i, n;
7836   tree last_block;
7837
7838   if (!block)
7839     return;
7840
7841   last_block = VARRAY_TOP_TREE (cfun->ib_boundaries_block);
7842   VARRAY_POP (cfun->ib_boundaries_block);
7843   n = get_max_uid ();
7844   for (i = VARRAY_ACTIVE_SIZE (cfun->ib_boundaries_block); i < n; i++)
7845     VARRAY_PUSH_TREE (cfun->ib_boundaries_block, last_block);
7846
7847   VARRAY_PUSH_TREE (cfun->ib_boundaries_block, block);
7848 }
7849
7850 /* Finishes record of boundaries.  */
7851 void finalize_block_changes (void)
7852 {
7853   record_block_change (DECL_INITIAL (current_function_decl));
7854 }
7855
7856 /* For INSN return the BLOCK it belongs to.  */ 
7857 void
7858 check_block_change (rtx insn, tree *block)
7859 {
7860   unsigned uid = INSN_UID (insn);
7861
7862   if (uid >= VARRAY_ACTIVE_SIZE (cfun->ib_boundaries_block))
7863     return;
7864
7865   *block = VARRAY_TREE (cfun->ib_boundaries_block, uid);
7866 }
7867
7868 /* Releases the ib_boundaries_block records.  */
7869 void
7870 free_block_changes (void)
7871 {
7872   cfun->ib_boundaries_block = NULL;
7873 }
7874
7875 /* Returns the name of the current function.  */
7876 const char *
7877 current_function_name (void)
7878 {
7879   return lang_hooks.decl_printable_name (cfun->decl, 2);
7880 }
7881
7882 #include "gt-function.h"