OSDN Git Service

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