OSDN Git Service

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