OSDN Git Service

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