OSDN Git Service

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