OSDN Git Service

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