Fix typo in ChangeLog entry date.
[official-gcc.git] / gcc / function.c
blob9d9d3ad5066296bfd4a3c5f254568decd95ca13b
1 /* Expands front end tree to back end RTL for GCC.
2 Copyright (C) 1987, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
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.
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.
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. */
36 #include "config.h"
37 #include "system.h"
38 #include "coretypes.h"
39 #include "tm.h"
40 #include "rtl.h"
41 #include "tree.h"
42 #include "flags.h"
43 #include "except.h"
44 #include "function.h"
45 #include "expr.h"
46 #include "optabs.h"
47 #include "libfuncs.h"
48 #include "regs.h"
49 #include "hard-reg-set.h"
50 #include "insn-config.h"
51 #include "recog.h"
52 #include "output.h"
53 #include "basic-block.h"
54 #include "toplev.h"
55 #include "hashtab.h"
56 #include "ggc.h"
57 #include "tm_p.h"
58 #include "integrate.h"
59 #include "langhooks.h"
60 #include "target.h"
61 #include "cfglayout.h"
62 #include "gimple.h"
63 #include "tree-pass.h"
64 #include "predict.h"
65 #include "df.h"
66 #include "timevar.h"
67 #include "vecprim.h"
69 /* So we can assign to cfun in this file. */
70 #undef cfun
72 #ifndef STACK_ALIGNMENT_NEEDED
73 #define STACK_ALIGNMENT_NEEDED 1
74 #endif
76 #define STACK_BYTES (STACK_BOUNDARY / BITS_PER_UNIT)
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
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))
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))
95 /* Nonzero if function being compiled doesn't contain any calls
96 (ignoring the prologue and epilogue). This is set prior to
97 local register allocation and is valid for the remaining
98 compiler passes. */
99 int current_function_is_leaf;
101 /* Nonzero if function being compiled doesn't modify the stack pointer
102 (ignoring the prologue and epilogue). This is only valid after
103 pass_stack_ptr_mod has run. */
104 int current_function_sp_is_unchanging;
106 /* Nonzero if the function being compiled is a leaf function which only
107 uses leaf registers. This is valid after reload (specifically after
108 sched2) and is useful only if the port defines LEAF_REGISTERS. */
109 int current_function_uses_only_leaf_regs;
111 /* Nonzero once virtual register instantiation has been done.
112 assign_stack_local uses frame_pointer_rtx when this is nonzero.
113 calls.c:emit_library_call_value_1 uses it to set up
114 post-instantiation libcalls. */
115 int virtuals_instantiated;
117 /* Assign unique numbers to labels generated for profiling, debugging, etc. */
118 static GTY(()) int funcdef_no;
120 /* These variables hold pointers to functions to create and destroy
121 target specific, per-function data structures. */
122 struct machine_function * (*init_machine_status) (void);
124 /* The currently compiled function. */
125 struct function *cfun = 0;
127 /* These arrays record the INSN_UIDs of the prologue and epilogue insns. */
128 static VEC(int,heap) *prologue;
129 static VEC(int,heap) *epilogue;
131 /* Array of INSN_UIDs to hold the INSN_UIDs for each sibcall epilogue
132 in this function. */
133 static VEC(int,heap) *sibcall_epilogue;
135 /* Forward declarations. */
137 static struct temp_slot *find_temp_slot_from_address (rtx);
138 static void pad_to_arg_alignment (struct args_size *, int, struct args_size *);
139 static void pad_below (struct args_size *, enum machine_mode, tree);
140 static void reorder_blocks_1 (rtx, tree, VEC(tree,heap) **);
141 static int all_blocks (tree, tree *);
142 static tree *get_block_vector (tree, int *);
143 extern tree debug_find_var_in_block_tree (tree, tree);
144 /* We always define `record_insns' even if it's not used so that we
145 can always export `prologue_epilogue_contains'. */
146 static void record_insns (rtx, VEC(int,heap) **) ATTRIBUTE_UNUSED;
147 static int contains (const_rtx, VEC(int,heap) **);
148 #ifdef HAVE_return
149 static void emit_return_into_block (basic_block);
150 #endif
151 static void prepare_function_start (void);
152 static void do_clobber_return_reg (rtx, void *);
153 static void do_use_return_reg (rtx, void *);
154 static void set_insn_locators (rtx, int) ATTRIBUTE_UNUSED;
156 /* Stack of nested functions. */
157 /* Keep track of the cfun stack. */
159 typedef struct function *function_p;
161 DEF_VEC_P(function_p);
162 DEF_VEC_ALLOC_P(function_p,heap);
163 static VEC(function_p,heap) *function_context_stack;
165 /* Save the current context for compilation of a nested function.
166 This is called from language-specific code. */
168 void
169 push_function_context (void)
171 if (cfun == 0)
172 allocate_struct_function (NULL, false);
174 VEC_safe_push (function_p, heap, function_context_stack, cfun);
175 set_cfun (NULL);
178 /* Restore the last saved context, at the end of a nested function.
179 This function is called from language-specific code. */
181 void
182 pop_function_context (void)
184 struct function *p = VEC_pop (function_p, function_context_stack);
185 set_cfun (p);
186 current_function_decl = p->decl;
188 /* Reset variables that have known state during rtx generation. */
189 virtuals_instantiated = 0;
190 generating_concat_p = 1;
193 /* Clear out all parts of the state in F that can safely be discarded
194 after the function has been parsed, but not compiled, to let
195 garbage collection reclaim the memory. */
197 void
198 free_after_parsing (struct function *f)
200 f->language = 0;
203 /* Clear out all parts of the state in F that can safely be discarded
204 after the function has been compiled, to let garbage collection
205 reclaim the memory. */
207 void
208 free_after_compilation (struct function *f)
210 VEC_free (int, heap, prologue);
211 VEC_free (int, heap, epilogue);
212 VEC_free (int, heap, sibcall_epilogue);
213 if (crtl->emit.regno_pointer_align)
214 free (crtl->emit.regno_pointer_align);
216 memset (crtl, 0, sizeof (struct rtl_data));
217 f->eh = NULL;
218 f->machine = NULL;
219 f->cfg = NULL;
221 regno_reg_rtx = NULL;
222 insn_locators_free ();
225 /* Return size needed for stack frame based on slots so far allocated.
226 This size counts from zero. It is not rounded to PREFERRED_STACK_BOUNDARY;
227 the caller may have to do that. */
229 HOST_WIDE_INT
230 get_frame_size (void)
232 if (FRAME_GROWS_DOWNWARD)
233 return -frame_offset;
234 else
235 return frame_offset;
238 /* Issue an error message and return TRUE if frame OFFSET overflows in
239 the signed target pointer arithmetics for function FUNC. Otherwise
240 return FALSE. */
242 bool
243 frame_offset_overflow (HOST_WIDE_INT offset, tree func)
245 unsigned HOST_WIDE_INT size = FRAME_GROWS_DOWNWARD ? -offset : offset;
247 if (size > ((unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (Pmode) - 1))
248 /* Leave room for the fixed part of the frame. */
249 - 64 * UNITS_PER_WORD)
251 error ("%Jtotal size of local objects too large", func);
252 return TRUE;
255 return FALSE;
258 /* Return stack slot alignment in bits for TYPE and MODE. */
260 static unsigned int
261 get_stack_local_alignment (tree type, enum machine_mode mode)
263 unsigned int alignment;
265 if (mode == BLKmode)
266 alignment = BIGGEST_ALIGNMENT;
267 else
268 alignment = GET_MODE_ALIGNMENT (mode);
270 /* Allow the frond-end to (possibly) increase the alignment of this
271 stack slot. */
272 if (! type)
273 type = lang_hooks.types.type_for_mode (mode, 0);
275 return STACK_SLOT_ALIGNMENT (type, mode, alignment);
278 /* Allocate a stack slot of SIZE bytes and return a MEM rtx for it
279 with machine mode MODE.
281 ALIGN controls the amount of alignment for the address of the slot:
282 0 means according to MODE,
283 -1 means use BIGGEST_ALIGNMENT and round size to multiple of that,
284 -2 means use BITS_PER_UNIT,
285 positive specifies alignment boundary in bits.
287 If REDUCE_ALIGNMENT_OK is true, it is OK to reduce alignment.
289 We do not round to stack_boundary here. */
292 assign_stack_local_1 (enum machine_mode mode, HOST_WIDE_INT size,
293 int align,
294 bool reduce_alignment_ok ATTRIBUTE_UNUSED)
296 rtx x, addr;
297 int bigend_correction = 0;
298 unsigned int alignment, alignment_in_bits;
299 int frame_off, frame_alignment, frame_phase;
301 if (align == 0)
303 alignment = get_stack_local_alignment (NULL, mode);
304 alignment /= BITS_PER_UNIT;
306 else if (align == -1)
308 alignment = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
309 size = CEIL_ROUND (size, alignment);
311 else if (align == -2)
312 alignment = 1; /* BITS_PER_UNIT / BITS_PER_UNIT */
313 else
314 alignment = align / BITS_PER_UNIT;
316 alignment_in_bits = alignment * BITS_PER_UNIT;
318 if (FRAME_GROWS_DOWNWARD)
319 frame_offset -= size;
321 /* Ignore alignment if it exceeds MAX_SUPPORTED_STACK_ALIGNMENT. */
322 if (alignment_in_bits > MAX_SUPPORTED_STACK_ALIGNMENT)
324 alignment_in_bits = MAX_SUPPORTED_STACK_ALIGNMENT;
325 alignment = alignment_in_bits / BITS_PER_UNIT;
328 if (SUPPORTS_STACK_ALIGNMENT)
330 if (crtl->stack_alignment_estimated < alignment_in_bits)
332 if (!crtl->stack_realign_processed)
333 crtl->stack_alignment_estimated = alignment_in_bits;
334 else
336 /* If stack is realigned and stack alignment value
337 hasn't been finalized, it is OK not to increase
338 stack_alignment_estimated. The bigger alignment
339 requirement is recorded in stack_alignment_needed
340 below. */
341 gcc_assert (!crtl->stack_realign_finalized);
342 if (!crtl->stack_realign_needed)
344 /* It is OK to reduce the alignment as long as the
345 requested size is 0 or the estimated stack
346 alignment >= mode alignment. */
347 gcc_assert (reduce_alignment_ok
348 || size == 0
349 || (crtl->stack_alignment_estimated
350 >= GET_MODE_ALIGNMENT (mode)));
351 alignment_in_bits = crtl->stack_alignment_estimated;
352 alignment = alignment_in_bits / BITS_PER_UNIT;
358 if (crtl->stack_alignment_needed < alignment_in_bits)
359 crtl->stack_alignment_needed = alignment_in_bits;
360 if (crtl->max_used_stack_slot_alignment < crtl->stack_alignment_needed)
361 crtl->max_used_stack_slot_alignment = crtl->stack_alignment_needed;
363 /* Calculate how many bytes the start of local variables is off from
364 stack alignment. */
365 frame_alignment = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
366 frame_off = STARTING_FRAME_OFFSET % frame_alignment;
367 frame_phase = frame_off ? frame_alignment - frame_off : 0;
369 /* Round the frame offset to the specified alignment. The default is
370 to always honor requests to align the stack but a port may choose to
371 do its own stack alignment by defining STACK_ALIGNMENT_NEEDED. */
372 if (STACK_ALIGNMENT_NEEDED
373 || mode != BLKmode
374 || size != 0)
376 /* We must be careful here, since FRAME_OFFSET might be negative and
377 division with a negative dividend isn't as well defined as we might
378 like. So we instead assume that ALIGNMENT is a power of two and
379 use logical operations which are unambiguous. */
380 if (FRAME_GROWS_DOWNWARD)
381 frame_offset
382 = (FLOOR_ROUND (frame_offset - frame_phase,
383 (unsigned HOST_WIDE_INT) alignment)
384 + frame_phase);
385 else
386 frame_offset
387 = (CEIL_ROUND (frame_offset - frame_phase,
388 (unsigned HOST_WIDE_INT) alignment)
389 + frame_phase);
392 /* On a big-endian machine, if we are allocating more space than we will use,
393 use the least significant bytes of those that are allocated. */
394 if (BYTES_BIG_ENDIAN && mode != BLKmode && GET_MODE_SIZE (mode) < size)
395 bigend_correction = size - GET_MODE_SIZE (mode);
397 /* If we have already instantiated virtual registers, return the actual
398 address relative to the frame pointer. */
399 if (virtuals_instantiated)
400 addr = plus_constant (frame_pointer_rtx,
401 trunc_int_for_mode
402 (frame_offset + bigend_correction
403 + STARTING_FRAME_OFFSET, Pmode));
404 else
405 addr = plus_constant (virtual_stack_vars_rtx,
406 trunc_int_for_mode
407 (frame_offset + bigend_correction,
408 Pmode));
410 if (!FRAME_GROWS_DOWNWARD)
411 frame_offset += size;
413 x = gen_rtx_MEM (mode, addr);
414 set_mem_align (x, alignment_in_bits);
415 MEM_NOTRAP_P (x) = 1;
417 stack_slot_list
418 = gen_rtx_EXPR_LIST (VOIDmode, x, stack_slot_list);
420 if (frame_offset_overflow (frame_offset, current_function_decl))
421 frame_offset = 0;
423 return x;
426 /* Wrap up assign_stack_local_1 with last parameter as false. */
429 assign_stack_local (enum machine_mode mode, HOST_WIDE_INT size, int align)
431 return assign_stack_local_1 (mode, size, align, false);
435 /* In order to evaluate some expressions, such as function calls returning
436 structures in memory, we need to temporarily allocate stack locations.
437 We record each allocated temporary in the following structure.
439 Associated with each temporary slot is a nesting level. When we pop up
440 one level, all temporaries associated with the previous level are freed.
441 Normally, all temporaries are freed after the execution of the statement
442 in which they were created. However, if we are inside a ({...}) grouping,
443 the result may be in a temporary and hence must be preserved. If the
444 result could be in a temporary, we preserve it if we can determine which
445 one it is in. If we cannot determine which temporary may contain the
446 result, all temporaries are preserved. A temporary is preserved by
447 pretending it was allocated at the previous nesting level.
449 Automatic variables are also assigned temporary slots, at the nesting
450 level where they are defined. They are marked a "kept" so that
451 free_temp_slots will not free them. */
453 struct GTY(()) temp_slot {
454 /* Points to next temporary slot. */
455 struct temp_slot *next;
456 /* Points to previous temporary slot. */
457 struct temp_slot *prev;
458 /* The rtx to used to reference the slot. */
459 rtx slot;
460 /* The size, in units, of the slot. */
461 HOST_WIDE_INT size;
462 /* The type of the object in the slot, or zero if it doesn't correspond
463 to a type. We use this to determine whether a slot can be reused.
464 It can be reused if objects of the type of the new slot will always
465 conflict with objects of the type of the old slot. */
466 tree type;
467 /* The alignment (in bits) of the slot. */
468 unsigned int align;
469 /* Nonzero if this temporary is currently in use. */
470 char in_use;
471 /* Nonzero if this temporary has its address taken. */
472 char addr_taken;
473 /* Nesting level at which this slot is being used. */
474 int level;
475 /* Nonzero if this should survive a call to free_temp_slots. */
476 int keep;
477 /* The offset of the slot from the frame_pointer, including extra space
478 for alignment. This info is for combine_temp_slots. */
479 HOST_WIDE_INT base_offset;
480 /* The size of the slot, including extra space for alignment. This
481 info is for combine_temp_slots. */
482 HOST_WIDE_INT full_size;
485 /* A table of addresses that represent a stack slot. The table is a mapping
486 from address RTXen to a temp slot. */
487 static GTY((param_is(struct temp_slot_address_entry))) htab_t temp_slot_address_table;
489 /* Entry for the above hash table. */
490 struct GTY(()) temp_slot_address_entry {
491 hashval_t hash;
492 rtx address;
493 struct temp_slot *temp_slot;
496 /* Removes temporary slot TEMP from LIST. */
498 static void
499 cut_slot_from_list (struct temp_slot *temp, struct temp_slot **list)
501 if (temp->next)
502 temp->next->prev = temp->prev;
503 if (temp->prev)
504 temp->prev->next = temp->next;
505 else
506 *list = temp->next;
508 temp->prev = temp->next = NULL;
511 /* Inserts temporary slot TEMP to LIST. */
513 static void
514 insert_slot_to_list (struct temp_slot *temp, struct temp_slot **list)
516 temp->next = *list;
517 if (*list)
518 (*list)->prev = temp;
519 temp->prev = NULL;
520 *list = temp;
523 /* Returns the list of used temp slots at LEVEL. */
525 static struct temp_slot **
526 temp_slots_at_level (int level)
528 if (level >= (int) VEC_length (temp_slot_p, used_temp_slots))
529 VEC_safe_grow_cleared (temp_slot_p, gc, used_temp_slots, level + 1);
531 return &(VEC_address (temp_slot_p, used_temp_slots)[level]);
534 /* Returns the maximal temporary slot level. */
536 static int
537 max_slot_level (void)
539 if (!used_temp_slots)
540 return -1;
542 return VEC_length (temp_slot_p, used_temp_slots) - 1;
545 /* Moves temporary slot TEMP to LEVEL. */
547 static void
548 move_slot_to_level (struct temp_slot *temp, int level)
550 cut_slot_from_list (temp, temp_slots_at_level (temp->level));
551 insert_slot_to_list (temp, temp_slots_at_level (level));
552 temp->level = level;
555 /* Make temporary slot TEMP available. */
557 static void
558 make_slot_available (struct temp_slot *temp)
560 cut_slot_from_list (temp, temp_slots_at_level (temp->level));
561 insert_slot_to_list (temp, &avail_temp_slots);
562 temp->in_use = 0;
563 temp->level = -1;
566 /* Compute the hash value for an address -> temp slot mapping.
567 The value is cached on the mapping entry. */
568 static hashval_t
569 temp_slot_address_compute_hash (struct temp_slot_address_entry *t)
571 int do_not_record = 0;
572 return hash_rtx (t->address, GET_MODE (t->address),
573 &do_not_record, NULL, false);
576 /* Return the hash value for an address -> temp slot mapping. */
577 static hashval_t
578 temp_slot_address_hash (const void *p)
580 const struct temp_slot_address_entry *t;
581 t = (const struct temp_slot_address_entry *) p;
582 return t->hash;
585 /* Compare two address -> temp slot mapping entries. */
586 static int
587 temp_slot_address_eq (const void *p1, const void *p2)
589 const struct temp_slot_address_entry *t1, *t2;
590 t1 = (const struct temp_slot_address_entry *) p1;
591 t2 = (const struct temp_slot_address_entry *) p2;
592 return exp_equiv_p (t1->address, t2->address, 0, true);
595 /* Add ADDRESS as an alias of TEMP_SLOT to the addess -> temp slot mapping. */
596 static void
597 insert_temp_slot_address (rtx address, struct temp_slot *temp_slot)
599 void **slot;
600 struct temp_slot_address_entry *t = GGC_NEW (struct temp_slot_address_entry);
601 t->address = address;
602 t->temp_slot = temp_slot;
603 t->hash = temp_slot_address_compute_hash (t);
604 slot = htab_find_slot_with_hash (temp_slot_address_table, t, t->hash, INSERT);
605 *slot = t;
608 /* Remove an address -> temp slot mapping entry if the temp slot is
609 not in use anymore. Callback for remove_unused_temp_slot_addresses. */
610 static int
611 remove_unused_temp_slot_addresses_1 (void **slot, void *data ATTRIBUTE_UNUSED)
613 const struct temp_slot_address_entry *t;
614 t = (const struct temp_slot_address_entry *) *slot;
615 if (! t->temp_slot->in_use)
616 *slot = NULL;
617 return 1;
620 /* Remove all mappings of addresses to unused temp slots. */
621 static void
622 remove_unused_temp_slot_addresses (void)
624 htab_traverse (temp_slot_address_table,
625 remove_unused_temp_slot_addresses_1,
626 NULL);
629 /* Find the temp slot corresponding to the object at address X. */
631 static struct temp_slot *
632 find_temp_slot_from_address (rtx x)
634 struct temp_slot *p;
635 struct temp_slot_address_entry tmp, *t;
637 /* First try the easy way:
638 See if X exists in the address -> temp slot mapping. */
639 tmp.address = x;
640 tmp.temp_slot = NULL;
641 tmp.hash = temp_slot_address_compute_hash (&tmp);
642 t = (struct temp_slot_address_entry *)
643 htab_find_with_hash (temp_slot_address_table, &tmp, tmp.hash);
644 if (t)
645 return t->temp_slot;
647 /* If we have a sum involving a register, see if it points to a temp
648 slot. */
649 if (GET_CODE (x) == PLUS && REG_P (XEXP (x, 0))
650 && (p = find_temp_slot_from_address (XEXP (x, 0))) != 0)
651 return p;
652 else if (GET_CODE (x) == PLUS && REG_P (XEXP (x, 1))
653 && (p = find_temp_slot_from_address (XEXP (x, 1))) != 0)
654 return p;
656 /* Last resort: Address is a virtual stack var address. */
657 if (GET_CODE (x) == PLUS
658 && XEXP (x, 0) == virtual_stack_vars_rtx
659 && GET_CODE (XEXP (x, 1)) == CONST_INT)
661 int i;
662 for (i = max_slot_level (); i >= 0; i--)
663 for (p = *temp_slots_at_level (i); p; p = p->next)
665 if (INTVAL (XEXP (x, 1)) >= p->base_offset
666 && INTVAL (XEXP (x, 1)) < p->base_offset + p->full_size)
667 return p;
671 return NULL;
674 /* Allocate a temporary stack slot and record it for possible later
675 reuse.
677 MODE is the machine mode to be given to the returned rtx.
679 SIZE is the size in units of the space required. We do no rounding here
680 since assign_stack_local will do any required rounding.
682 KEEP is 1 if this slot is to be retained after a call to
683 free_temp_slots. Automatic variables for a block are allocated
684 with this flag. KEEP values of 2 or 3 were needed respectively
685 for variables whose lifetime is controlled by CLEANUP_POINT_EXPRs
686 or for SAVE_EXPRs, but they are now unused.
688 TYPE is the type that will be used for the stack slot. */
691 assign_stack_temp_for_type (enum machine_mode mode, HOST_WIDE_INT size,
692 int keep, tree type)
694 unsigned int align;
695 struct temp_slot *p, *best_p = 0, *selected = NULL, **pp;
696 rtx slot;
698 /* If SIZE is -1 it means that somebody tried to allocate a temporary
699 of a variable size. */
700 gcc_assert (size != -1);
702 /* These are now unused. */
703 gcc_assert (keep <= 1);
705 align = get_stack_local_alignment (type, mode);
707 /* Try to find an available, already-allocated temporary of the proper
708 mode which meets the size and alignment requirements. Choose the
709 smallest one with the closest alignment.
711 If assign_stack_temp is called outside of the tree->rtl expansion,
712 we cannot reuse the stack slots (that may still refer to
713 VIRTUAL_STACK_VARS_REGNUM). */
714 if (!virtuals_instantiated)
716 for (p = avail_temp_slots; p; p = p->next)
718 if (p->align >= align && p->size >= size
719 && GET_MODE (p->slot) == mode
720 && objects_must_conflict_p (p->type, type)
721 && (best_p == 0 || best_p->size > p->size
722 || (best_p->size == p->size && best_p->align > p->align)))
724 if (p->align == align && p->size == size)
726 selected = p;
727 cut_slot_from_list (selected, &avail_temp_slots);
728 best_p = 0;
729 break;
731 best_p = p;
736 /* Make our best, if any, the one to use. */
737 if (best_p)
739 selected = best_p;
740 cut_slot_from_list (selected, &avail_temp_slots);
742 /* If there are enough aligned bytes left over, make them into a new
743 temp_slot so that the extra bytes don't get wasted. Do this only
744 for BLKmode slots, so that we can be sure of the alignment. */
745 if (GET_MODE (best_p->slot) == BLKmode)
747 int alignment = best_p->align / BITS_PER_UNIT;
748 HOST_WIDE_INT rounded_size = CEIL_ROUND (size, alignment);
750 if (best_p->size - rounded_size >= alignment)
752 p = GGC_NEW (struct temp_slot);
753 p->in_use = p->addr_taken = 0;
754 p->size = best_p->size - rounded_size;
755 p->base_offset = best_p->base_offset + rounded_size;
756 p->full_size = best_p->full_size - rounded_size;
757 p->slot = adjust_address_nv (best_p->slot, BLKmode, rounded_size);
758 p->align = best_p->align;
759 p->type = best_p->type;
760 insert_slot_to_list (p, &avail_temp_slots);
762 stack_slot_list = gen_rtx_EXPR_LIST (VOIDmode, p->slot,
763 stack_slot_list);
765 best_p->size = rounded_size;
766 best_p->full_size = rounded_size;
771 /* If we still didn't find one, make a new temporary. */
772 if (selected == 0)
774 HOST_WIDE_INT frame_offset_old = frame_offset;
776 p = GGC_NEW (struct temp_slot);
778 /* We are passing an explicit alignment request to assign_stack_local.
779 One side effect of that is assign_stack_local will not round SIZE
780 to ensure the frame offset remains suitably aligned.
782 So for requests which depended on the rounding of SIZE, we go ahead
783 and round it now. We also make sure ALIGNMENT is at least
784 BIGGEST_ALIGNMENT. */
785 gcc_assert (mode != BLKmode || align == BIGGEST_ALIGNMENT);
786 p->slot = assign_stack_local (mode,
787 (mode == BLKmode
788 ? CEIL_ROUND (size, (int) align / BITS_PER_UNIT)
789 : size),
790 align);
792 p->align = align;
794 /* The following slot size computation is necessary because we don't
795 know the actual size of the temporary slot until assign_stack_local
796 has performed all the frame alignment and size rounding for the
797 requested temporary. Note that extra space added for alignment
798 can be either above or below this stack slot depending on which
799 way the frame grows. We include the extra space if and only if it
800 is above this slot. */
801 if (FRAME_GROWS_DOWNWARD)
802 p->size = frame_offset_old - frame_offset;
803 else
804 p->size = size;
806 /* Now define the fields used by combine_temp_slots. */
807 if (FRAME_GROWS_DOWNWARD)
809 p->base_offset = frame_offset;
810 p->full_size = frame_offset_old - frame_offset;
812 else
814 p->base_offset = frame_offset_old;
815 p->full_size = frame_offset - frame_offset_old;
818 selected = p;
821 p = selected;
822 p->in_use = 1;
823 p->addr_taken = 0;
824 p->type = type;
825 p->level = temp_slot_level;
826 p->keep = keep;
828 pp = temp_slots_at_level (p->level);
829 insert_slot_to_list (p, pp);
830 insert_temp_slot_address (XEXP (p->slot, 0), p);
832 /* Create a new MEM rtx to avoid clobbering MEM flags of old slots. */
833 slot = gen_rtx_MEM (mode, XEXP (p->slot, 0));
834 stack_slot_list = gen_rtx_EXPR_LIST (VOIDmode, slot, stack_slot_list);
836 /* If we know the alias set for the memory that will be used, use
837 it. If there's no TYPE, then we don't know anything about the
838 alias set for the memory. */
839 set_mem_alias_set (slot, type ? get_alias_set (type) : 0);
840 set_mem_align (slot, align);
842 /* If a type is specified, set the relevant flags. */
843 if (type != 0)
845 MEM_VOLATILE_P (slot) = TYPE_VOLATILE (type);
846 MEM_SET_IN_STRUCT_P (slot, (AGGREGATE_TYPE_P (type)
847 || TREE_CODE (type) == COMPLEX_TYPE));
849 MEM_NOTRAP_P (slot) = 1;
851 return slot;
854 /* Allocate a temporary stack slot and record it for possible later
855 reuse. First three arguments are same as in preceding function. */
858 assign_stack_temp (enum machine_mode mode, HOST_WIDE_INT size, int keep)
860 return assign_stack_temp_for_type (mode, size, keep, NULL_TREE);
863 /* Assign a temporary.
864 If TYPE_OR_DECL is a decl, then we are doing it on behalf of the decl
865 and so that should be used in error messages. In either case, we
866 allocate of the given type.
867 KEEP is as for assign_stack_temp.
868 MEMORY_REQUIRED is 1 if the result must be addressable stack memory;
869 it is 0 if a register is OK.
870 DONT_PROMOTE is 1 if we should not promote values in register
871 to wider modes. */
874 assign_temp (tree type_or_decl, int keep, int memory_required,
875 int dont_promote ATTRIBUTE_UNUSED)
877 tree type, decl;
878 enum machine_mode mode;
879 #ifdef PROMOTE_MODE
880 int unsignedp;
881 #endif
883 if (DECL_P (type_or_decl))
884 decl = type_or_decl, type = TREE_TYPE (decl);
885 else
886 decl = NULL, type = type_or_decl;
888 mode = TYPE_MODE (type);
889 #ifdef PROMOTE_MODE
890 unsignedp = TYPE_UNSIGNED (type);
891 #endif
893 if (mode == BLKmode || memory_required)
895 HOST_WIDE_INT size = int_size_in_bytes (type);
896 rtx tmp;
898 /* Zero sized arrays are GNU C extension. Set size to 1 to avoid
899 problems with allocating the stack space. */
900 if (size == 0)
901 size = 1;
903 /* Unfortunately, we don't yet know how to allocate variable-sized
904 temporaries. However, sometimes we can find a fixed upper limit on
905 the size, so try that instead. */
906 else if (size == -1)
907 size = max_int_size_in_bytes (type);
909 /* The size of the temporary may be too large to fit into an integer. */
910 /* ??? Not sure this should happen except for user silliness, so limit
911 this to things that aren't compiler-generated temporaries. The
912 rest of the time we'll die in assign_stack_temp_for_type. */
913 if (decl && size == -1
914 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST)
916 error ("size of variable %q+D is too large", decl);
917 size = 1;
920 tmp = assign_stack_temp_for_type (mode, size, keep, type);
921 return tmp;
924 #ifdef PROMOTE_MODE
925 if (! dont_promote)
926 mode = promote_mode (type, mode, &unsignedp, 0);
927 #endif
929 return gen_reg_rtx (mode);
932 /* Combine temporary stack slots which are adjacent on the stack.
934 This allows for better use of already allocated stack space. This is only
935 done for BLKmode slots because we can be sure that we won't have alignment
936 problems in this case. */
938 static void
939 combine_temp_slots (void)
941 struct temp_slot *p, *q, *next, *next_q;
942 int num_slots;
944 /* We can't combine slots, because the information about which slot
945 is in which alias set will be lost. */
946 if (flag_strict_aliasing)
947 return;
949 /* If there are a lot of temp slots, don't do anything unless
950 high levels of optimization. */
951 if (! flag_expensive_optimizations)
952 for (p = avail_temp_slots, num_slots = 0; p; p = p->next, num_slots++)
953 if (num_slots > 100 || (num_slots > 10 && optimize == 0))
954 return;
956 for (p = avail_temp_slots; p; p = next)
958 int delete_p = 0;
960 next = p->next;
962 if (GET_MODE (p->slot) != BLKmode)
963 continue;
965 for (q = p->next; q; q = next_q)
967 int delete_q = 0;
969 next_q = q->next;
971 if (GET_MODE (q->slot) != BLKmode)
972 continue;
974 if (p->base_offset + p->full_size == q->base_offset)
976 /* Q comes after P; combine Q into P. */
977 p->size += q->size;
978 p->full_size += q->full_size;
979 delete_q = 1;
981 else if (q->base_offset + q->full_size == p->base_offset)
983 /* P comes after Q; combine P into Q. */
984 q->size += p->size;
985 q->full_size += p->full_size;
986 delete_p = 1;
987 break;
989 if (delete_q)
990 cut_slot_from_list (q, &avail_temp_slots);
993 /* Either delete P or advance past it. */
994 if (delete_p)
995 cut_slot_from_list (p, &avail_temp_slots);
999 /* Indicate that NEW_RTX is an alternate way of referring to the temp
1000 slot that previously was known by OLD_RTX. */
1002 void
1003 update_temp_slot_address (rtx old_rtx, rtx new_rtx)
1005 struct temp_slot *p;
1007 if (rtx_equal_p (old_rtx, new_rtx))
1008 return;
1010 p = find_temp_slot_from_address (old_rtx);
1012 /* If we didn't find one, see if both OLD_RTX is a PLUS. If so, and
1013 NEW_RTX is a register, see if one operand of the PLUS is a
1014 temporary location. If so, NEW_RTX points into it. Otherwise,
1015 if both OLD_RTX and NEW_RTX are a PLUS and if there is a register
1016 in common between them. If so, try a recursive call on those
1017 values. */
1018 if (p == 0)
1020 if (GET_CODE (old_rtx) != PLUS)
1021 return;
1023 if (REG_P (new_rtx))
1025 update_temp_slot_address (XEXP (old_rtx, 0), new_rtx);
1026 update_temp_slot_address (XEXP (old_rtx, 1), new_rtx);
1027 return;
1029 else if (GET_CODE (new_rtx) != PLUS)
1030 return;
1032 if (rtx_equal_p (XEXP (old_rtx, 0), XEXP (new_rtx, 0)))
1033 update_temp_slot_address (XEXP (old_rtx, 1), XEXP (new_rtx, 1));
1034 else if (rtx_equal_p (XEXP (old_rtx, 1), XEXP (new_rtx, 0)))
1035 update_temp_slot_address (XEXP (old_rtx, 0), XEXP (new_rtx, 1));
1036 else if (rtx_equal_p (XEXP (old_rtx, 0), XEXP (new_rtx, 1)))
1037 update_temp_slot_address (XEXP (old_rtx, 1), XEXP (new_rtx, 0));
1038 else if (rtx_equal_p (XEXP (old_rtx, 1), XEXP (new_rtx, 1)))
1039 update_temp_slot_address (XEXP (old_rtx, 0), XEXP (new_rtx, 0));
1041 return;
1044 /* Otherwise add an alias for the temp's address. */
1045 insert_temp_slot_address (new_rtx, p);
1048 /* If X could be a reference to a temporary slot, mark the fact that its
1049 address was taken. */
1051 void
1052 mark_temp_addr_taken (rtx x)
1054 struct temp_slot *p;
1056 if (x == 0)
1057 return;
1059 /* If X is not in memory or is at a constant address, it cannot be in
1060 a temporary slot. */
1061 if (!MEM_P (x) || CONSTANT_P (XEXP (x, 0)))
1062 return;
1064 p = find_temp_slot_from_address (XEXP (x, 0));
1065 if (p != 0)
1066 p->addr_taken = 1;
1069 /* If X could be a reference to a temporary slot, mark that slot as
1070 belonging to the to one level higher than the current level. If X
1071 matched one of our slots, just mark that one. Otherwise, we can't
1072 easily predict which it is, so upgrade all of them. Kept slots
1073 need not be touched.
1075 This is called when an ({...}) construct occurs and a statement
1076 returns a value in memory. */
1078 void
1079 preserve_temp_slots (rtx x)
1081 struct temp_slot *p = 0, *next;
1083 /* If there is no result, we still might have some objects whose address
1084 were taken, so we need to make sure they stay around. */
1085 if (x == 0)
1087 for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1089 next = p->next;
1091 if (p->addr_taken)
1092 move_slot_to_level (p, temp_slot_level - 1);
1095 return;
1098 /* If X is a register that is being used as a pointer, see if we have
1099 a temporary slot we know it points to. To be consistent with
1100 the code below, we really should preserve all non-kept slots
1101 if we can't find a match, but that seems to be much too costly. */
1102 if (REG_P (x) && REG_POINTER (x))
1103 p = find_temp_slot_from_address (x);
1105 /* If X is not in memory or is at a constant address, it cannot be in
1106 a temporary slot, but it can contain something whose address was
1107 taken. */
1108 if (p == 0 && (!MEM_P (x) || CONSTANT_P (XEXP (x, 0))))
1110 for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1112 next = p->next;
1114 if (p->addr_taken)
1115 move_slot_to_level (p, temp_slot_level - 1);
1118 return;
1121 /* First see if we can find a match. */
1122 if (p == 0)
1123 p = find_temp_slot_from_address (XEXP (x, 0));
1125 if (p != 0)
1127 /* Move everything at our level whose address was taken to our new
1128 level in case we used its address. */
1129 struct temp_slot *q;
1131 if (p->level == temp_slot_level)
1133 for (q = *temp_slots_at_level (temp_slot_level); q; q = next)
1135 next = q->next;
1137 if (p != q && q->addr_taken)
1138 move_slot_to_level (q, temp_slot_level - 1);
1141 move_slot_to_level (p, temp_slot_level - 1);
1142 p->addr_taken = 0;
1144 return;
1147 /* Otherwise, preserve all non-kept slots at this level. */
1148 for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1150 next = p->next;
1152 if (!p->keep)
1153 move_slot_to_level (p, temp_slot_level - 1);
1157 /* Free all temporaries used so far. This is normally called at the
1158 end of generating code for a statement. */
1160 void
1161 free_temp_slots (void)
1163 struct temp_slot *p, *next;
1165 for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1167 next = p->next;
1169 if (!p->keep)
1170 make_slot_available (p);
1173 remove_unused_temp_slot_addresses ();
1174 combine_temp_slots ();
1177 /* Push deeper into the nesting level for stack temporaries. */
1179 void
1180 push_temp_slots (void)
1182 temp_slot_level++;
1185 /* Pop a temporary nesting level. All slots in use in the current level
1186 are freed. */
1188 void
1189 pop_temp_slots (void)
1191 struct temp_slot *p, *next;
1193 for (p = *temp_slots_at_level (temp_slot_level); p; p = next)
1195 next = p->next;
1196 make_slot_available (p);
1199 remove_unused_temp_slot_addresses ();
1200 combine_temp_slots ();
1202 temp_slot_level--;
1205 /* Initialize temporary slots. */
1207 void
1208 init_temp_slots (void)
1210 /* We have not allocated any temporaries yet. */
1211 avail_temp_slots = 0;
1212 used_temp_slots = 0;
1213 temp_slot_level = 0;
1215 /* Set up the table to map addresses to temp slots. */
1216 if (! temp_slot_address_table)
1217 temp_slot_address_table = htab_create_ggc (32,
1218 temp_slot_address_hash,
1219 temp_slot_address_eq,
1220 NULL);
1221 else
1222 htab_empty (temp_slot_address_table);
1225 /* These routines are responsible for converting virtual register references
1226 to the actual hard register references once RTL generation is complete.
1228 The following four variables are used for communication between the
1229 routines. They contain the offsets of the virtual registers from their
1230 respective hard registers. */
1232 static int in_arg_offset;
1233 static int var_offset;
1234 static int dynamic_offset;
1235 static int out_arg_offset;
1236 static int cfa_offset;
1238 /* In most machines, the stack pointer register is equivalent to the bottom
1239 of the stack. */
1241 #ifndef STACK_POINTER_OFFSET
1242 #define STACK_POINTER_OFFSET 0
1243 #endif
1245 /* If not defined, pick an appropriate default for the offset of dynamically
1246 allocated memory depending on the value of ACCUMULATE_OUTGOING_ARGS,
1247 REG_PARM_STACK_SPACE, and OUTGOING_REG_PARM_STACK_SPACE. */
1249 #ifndef STACK_DYNAMIC_OFFSET
1251 /* The bottom of the stack points to the actual arguments. If
1252 REG_PARM_STACK_SPACE is defined, this includes the space for the register
1253 parameters. However, if OUTGOING_REG_PARM_STACK space is not defined,
1254 stack space for register parameters is not pushed by the caller, but
1255 rather part of the fixed stack areas and hence not included in
1256 `crtl->outgoing_args_size'. Nevertheless, we must allow
1257 for it when allocating stack dynamic objects. */
1259 #if defined(REG_PARM_STACK_SPACE)
1260 #define STACK_DYNAMIC_OFFSET(FNDECL) \
1261 ((ACCUMULATE_OUTGOING_ARGS \
1262 ? (crtl->outgoing_args_size \
1263 + (OUTGOING_REG_PARM_STACK_SPACE ((!(FNDECL) ? NULL_TREE : TREE_TYPE (FNDECL))) ? 0 \
1264 : REG_PARM_STACK_SPACE (FNDECL))) \
1265 : 0) + (STACK_POINTER_OFFSET))
1266 #else
1267 #define STACK_DYNAMIC_OFFSET(FNDECL) \
1268 ((ACCUMULATE_OUTGOING_ARGS ? crtl->outgoing_args_size : 0) \
1269 + (STACK_POINTER_OFFSET))
1270 #endif
1271 #endif
1274 /* Given a piece of RTX and a pointer to a HOST_WIDE_INT, if the RTX
1275 is a virtual register, return the equivalent hard register and set the
1276 offset indirectly through the pointer. Otherwise, return 0. */
1278 static rtx
1279 instantiate_new_reg (rtx x, HOST_WIDE_INT *poffset)
1281 rtx new_rtx;
1282 HOST_WIDE_INT offset;
1284 if (x == virtual_incoming_args_rtx)
1286 if (stack_realign_drap)
1288 /* Replace virtual_incoming_args_rtx with internal arg
1289 pointer if DRAP is used to realign stack. */
1290 new_rtx = crtl->args.internal_arg_pointer;
1291 offset = 0;
1293 else
1294 new_rtx = arg_pointer_rtx, offset = in_arg_offset;
1296 else if (x == virtual_stack_vars_rtx)
1297 new_rtx = frame_pointer_rtx, offset = var_offset;
1298 else if (x == virtual_stack_dynamic_rtx)
1299 new_rtx = stack_pointer_rtx, offset = dynamic_offset;
1300 else if (x == virtual_outgoing_args_rtx)
1301 new_rtx = stack_pointer_rtx, offset = out_arg_offset;
1302 else if (x == virtual_cfa_rtx)
1304 #ifdef FRAME_POINTER_CFA_OFFSET
1305 new_rtx = frame_pointer_rtx;
1306 #else
1307 new_rtx = arg_pointer_rtx;
1308 #endif
1309 offset = cfa_offset;
1311 else
1312 return NULL_RTX;
1314 *poffset = offset;
1315 return new_rtx;
1318 /* A subroutine of instantiate_virtual_regs, called via for_each_rtx.
1319 Instantiate any virtual registers present inside of *LOC. The expression
1320 is simplified, as much as possible, but is not to be considered "valid"
1321 in any sense implied by the target. If any change is made, set CHANGED
1322 to true. */
1324 static int
1325 instantiate_virtual_regs_in_rtx (rtx *loc, void *data)
1327 HOST_WIDE_INT offset;
1328 bool *changed = (bool *) data;
1329 rtx x, new_rtx;
1331 x = *loc;
1332 if (x == 0)
1333 return 0;
1335 switch (GET_CODE (x))
1337 case REG:
1338 new_rtx = instantiate_new_reg (x, &offset);
1339 if (new_rtx)
1341 *loc = plus_constant (new_rtx, offset);
1342 if (changed)
1343 *changed = true;
1345 return -1;
1347 case PLUS:
1348 new_rtx = instantiate_new_reg (XEXP (x, 0), &offset);
1349 if (new_rtx)
1351 new_rtx = plus_constant (new_rtx, offset);
1352 *loc = simplify_gen_binary (PLUS, GET_MODE (x), new_rtx, XEXP (x, 1));
1353 if (changed)
1354 *changed = true;
1355 return -1;
1358 /* FIXME -- from old code */
1359 /* If we have (plus (subreg (virtual-reg)) (const_int)), we know
1360 we can commute the PLUS and SUBREG because pointers into the
1361 frame are well-behaved. */
1362 break;
1364 default:
1365 break;
1368 return 0;
1371 /* A subroutine of instantiate_virtual_regs_in_insn. Return true if X
1372 matches the predicate for insn CODE operand OPERAND. */
1374 static int
1375 safe_insn_predicate (int code, int operand, rtx x)
1377 const struct insn_operand_data *op_data;
1379 if (code < 0)
1380 return true;
1382 op_data = &insn_data[code].operand[operand];
1383 if (op_data->predicate == NULL)
1384 return true;
1386 return op_data->predicate (x, op_data->mode);
1389 /* A subroutine of instantiate_virtual_regs. Instantiate any virtual
1390 registers present inside of insn. The result will be a valid insn. */
1392 static void
1393 instantiate_virtual_regs_in_insn (rtx insn)
1395 HOST_WIDE_INT offset;
1396 int insn_code, i;
1397 bool any_change = false;
1398 rtx set, new_rtx, x, seq;
1400 /* There are some special cases to be handled first. */
1401 set = single_set (insn);
1402 if (set)
1404 /* We're allowed to assign to a virtual register. This is interpreted
1405 to mean that the underlying register gets assigned the inverse
1406 transformation. This is used, for example, in the handling of
1407 non-local gotos. */
1408 new_rtx = instantiate_new_reg (SET_DEST (set), &offset);
1409 if (new_rtx)
1411 start_sequence ();
1413 for_each_rtx (&SET_SRC (set), instantiate_virtual_regs_in_rtx, NULL);
1414 x = simplify_gen_binary (PLUS, GET_MODE (new_rtx), SET_SRC (set),
1415 GEN_INT (-offset));
1416 x = force_operand (x, new_rtx);
1417 if (x != new_rtx)
1418 emit_move_insn (new_rtx, x);
1420 seq = get_insns ();
1421 end_sequence ();
1423 emit_insn_before (seq, insn);
1424 delete_insn (insn);
1425 return;
1428 /* Handle a straight copy from a virtual register by generating a
1429 new add insn. The difference between this and falling through
1430 to the generic case is avoiding a new pseudo and eliminating a
1431 move insn in the initial rtl stream. */
1432 new_rtx = instantiate_new_reg (SET_SRC (set), &offset);
1433 if (new_rtx && offset != 0
1434 && REG_P (SET_DEST (set))
1435 && REGNO (SET_DEST (set)) > LAST_VIRTUAL_REGISTER)
1437 start_sequence ();
1439 x = expand_simple_binop (GET_MODE (SET_DEST (set)), PLUS,
1440 new_rtx, GEN_INT (offset), SET_DEST (set),
1441 1, OPTAB_LIB_WIDEN);
1442 if (x != SET_DEST (set))
1443 emit_move_insn (SET_DEST (set), x);
1445 seq = get_insns ();
1446 end_sequence ();
1448 emit_insn_before (seq, insn);
1449 delete_insn (insn);
1450 return;
1453 extract_insn (insn);
1454 insn_code = INSN_CODE (insn);
1456 /* Handle a plus involving a virtual register by determining if the
1457 operands remain valid if they're modified in place. */
1458 if (GET_CODE (SET_SRC (set)) == PLUS
1459 && recog_data.n_operands >= 3
1460 && recog_data.operand_loc[1] == &XEXP (SET_SRC (set), 0)
1461 && recog_data.operand_loc[2] == &XEXP (SET_SRC (set), 1)
1462 && GET_CODE (recog_data.operand[2]) == CONST_INT
1463 && (new_rtx = instantiate_new_reg (recog_data.operand[1], &offset)))
1465 offset += INTVAL (recog_data.operand[2]);
1467 /* If the sum is zero, then replace with a plain move. */
1468 if (offset == 0
1469 && REG_P (SET_DEST (set))
1470 && REGNO (SET_DEST (set)) > LAST_VIRTUAL_REGISTER)
1472 start_sequence ();
1473 emit_move_insn (SET_DEST (set), new_rtx);
1474 seq = get_insns ();
1475 end_sequence ();
1477 emit_insn_before (seq, insn);
1478 delete_insn (insn);
1479 return;
1482 x = gen_int_mode (offset, recog_data.operand_mode[2]);
1484 /* Using validate_change and apply_change_group here leaves
1485 recog_data in an invalid state. Since we know exactly what
1486 we want to check, do those two by hand. */
1487 if (safe_insn_predicate (insn_code, 1, new_rtx)
1488 && safe_insn_predicate (insn_code, 2, x))
1490 *recog_data.operand_loc[1] = recog_data.operand[1] = new_rtx;
1491 *recog_data.operand_loc[2] = recog_data.operand[2] = x;
1492 any_change = true;
1494 /* Fall through into the regular operand fixup loop in
1495 order to take care of operands other than 1 and 2. */
1499 else
1501 extract_insn (insn);
1502 insn_code = INSN_CODE (insn);
1505 /* In the general case, we expect virtual registers to appear only in
1506 operands, and then only as either bare registers or inside memories. */
1507 for (i = 0; i < recog_data.n_operands; ++i)
1509 x = recog_data.operand[i];
1510 switch (GET_CODE (x))
1512 case MEM:
1514 rtx addr = XEXP (x, 0);
1515 bool changed = false;
1517 for_each_rtx (&addr, instantiate_virtual_regs_in_rtx, &changed);
1518 if (!changed)
1519 continue;
1521 start_sequence ();
1522 x = replace_equiv_address (x, addr);
1523 /* It may happen that the address with the virtual reg
1524 was valid (e.g. based on the virtual stack reg, which might
1525 be acceptable to the predicates with all offsets), whereas
1526 the address now isn't anymore, for instance when the address
1527 is still offsetted, but the base reg isn't virtual-stack-reg
1528 anymore. Below we would do a force_reg on the whole operand,
1529 but this insn might actually only accept memory. Hence,
1530 before doing that last resort, try to reload the address into
1531 a register, so this operand stays a MEM. */
1532 if (!safe_insn_predicate (insn_code, i, x))
1534 addr = force_reg (GET_MODE (addr), addr);
1535 x = replace_equiv_address (x, addr);
1537 seq = get_insns ();
1538 end_sequence ();
1539 if (seq)
1540 emit_insn_before (seq, insn);
1542 break;
1544 case REG:
1545 new_rtx = instantiate_new_reg (x, &offset);
1546 if (new_rtx == NULL)
1547 continue;
1548 if (offset == 0)
1549 x = new_rtx;
1550 else
1552 start_sequence ();
1554 /* Careful, special mode predicates may have stuff in
1555 insn_data[insn_code].operand[i].mode that isn't useful
1556 to us for computing a new value. */
1557 /* ??? Recognize address_operand and/or "p" constraints
1558 to see if (plus new offset) is a valid before we put
1559 this through expand_simple_binop. */
1560 x = expand_simple_binop (GET_MODE (x), PLUS, new_rtx,
1561 GEN_INT (offset), NULL_RTX,
1562 1, OPTAB_LIB_WIDEN);
1563 seq = get_insns ();
1564 end_sequence ();
1565 emit_insn_before (seq, insn);
1567 break;
1569 case SUBREG:
1570 new_rtx = instantiate_new_reg (SUBREG_REG (x), &offset);
1571 if (new_rtx == NULL)
1572 continue;
1573 if (offset != 0)
1575 start_sequence ();
1576 new_rtx = expand_simple_binop (GET_MODE (new_rtx), PLUS, new_rtx,
1577 GEN_INT (offset), NULL_RTX,
1578 1, OPTAB_LIB_WIDEN);
1579 seq = get_insns ();
1580 end_sequence ();
1581 emit_insn_before (seq, insn);
1583 x = simplify_gen_subreg (recog_data.operand_mode[i], new_rtx,
1584 GET_MODE (new_rtx), SUBREG_BYTE (x));
1585 gcc_assert (x);
1586 break;
1588 default:
1589 continue;
1592 /* At this point, X contains the new value for the operand.
1593 Validate the new value vs the insn predicate. Note that
1594 asm insns will have insn_code -1 here. */
1595 if (!safe_insn_predicate (insn_code, i, x))
1597 start_sequence ();
1598 x = force_reg (insn_data[insn_code].operand[i].mode, x);
1599 seq = get_insns ();
1600 end_sequence ();
1601 if (seq)
1602 emit_insn_before (seq, insn);
1605 *recog_data.operand_loc[i] = recog_data.operand[i] = x;
1606 any_change = true;
1609 if (any_change)
1611 /* Propagate operand changes into the duplicates. */
1612 for (i = 0; i < recog_data.n_dups; ++i)
1613 *recog_data.dup_loc[i]
1614 = copy_rtx (recog_data.operand[(unsigned)recog_data.dup_num[i]]);
1616 /* Force re-recognition of the instruction for validation. */
1617 INSN_CODE (insn) = -1;
1620 if (asm_noperands (PATTERN (insn)) >= 0)
1622 if (!check_asm_operands (PATTERN (insn)))
1624 error_for_asm (insn, "impossible constraint in %<asm%>");
1625 delete_insn (insn);
1628 else
1630 if (recog_memoized (insn) < 0)
1631 fatal_insn_not_found (insn);
1635 /* Subroutine of instantiate_decls. Given RTL representing a decl,
1636 do any instantiation required. */
1638 void
1639 instantiate_decl_rtl (rtx x)
1641 rtx addr;
1643 if (x == 0)
1644 return;
1646 /* If this is a CONCAT, recurse for the pieces. */
1647 if (GET_CODE (x) == CONCAT)
1649 instantiate_decl_rtl (XEXP (x, 0));
1650 instantiate_decl_rtl (XEXP (x, 1));
1651 return;
1654 /* If this is not a MEM, no need to do anything. Similarly if the
1655 address is a constant or a register that is not a virtual register. */
1656 if (!MEM_P (x))
1657 return;
1659 addr = XEXP (x, 0);
1660 if (CONSTANT_P (addr)
1661 || (REG_P (addr)
1662 && (REGNO (addr) < FIRST_VIRTUAL_REGISTER
1663 || REGNO (addr) > LAST_VIRTUAL_REGISTER)))
1664 return;
1666 for_each_rtx (&XEXP (x, 0), instantiate_virtual_regs_in_rtx, NULL);
1669 /* Helper for instantiate_decls called via walk_tree: Process all decls
1670 in the given DECL_VALUE_EXPR. */
1672 static tree
1673 instantiate_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1675 tree t = *tp;
1676 if (! EXPR_P (t))
1678 *walk_subtrees = 0;
1679 if (DECL_P (t) && DECL_RTL_SET_P (t))
1680 instantiate_decl_rtl (DECL_RTL (t));
1682 return NULL;
1685 /* Subroutine of instantiate_decls: Process all decls in the given
1686 BLOCK node and all its subblocks. */
1688 static void
1689 instantiate_decls_1 (tree let)
1691 tree t;
1693 for (t = BLOCK_VARS (let); t; t = TREE_CHAIN (t))
1695 if (DECL_RTL_SET_P (t))
1696 instantiate_decl_rtl (DECL_RTL (t));
1697 if (TREE_CODE (t) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (t))
1699 tree v = DECL_VALUE_EXPR (t);
1700 walk_tree (&v, instantiate_expr, NULL, NULL);
1704 /* Process all subblocks. */
1705 for (t = BLOCK_SUBBLOCKS (let); t; t = BLOCK_CHAIN (t))
1706 instantiate_decls_1 (t);
1709 /* Scan all decls in FNDECL (both variables and parameters) and instantiate
1710 all virtual registers in their DECL_RTL's. */
1712 static void
1713 instantiate_decls (tree fndecl)
1715 tree decl, t, next;
1717 /* Process all parameters of the function. */
1718 for (decl = DECL_ARGUMENTS (fndecl); decl; decl = TREE_CHAIN (decl))
1720 instantiate_decl_rtl (DECL_RTL (decl));
1721 instantiate_decl_rtl (DECL_INCOMING_RTL (decl));
1722 if (DECL_HAS_VALUE_EXPR_P (decl))
1724 tree v = DECL_VALUE_EXPR (decl);
1725 walk_tree (&v, instantiate_expr, NULL, NULL);
1729 /* Now process all variables defined in the function or its subblocks. */
1730 instantiate_decls_1 (DECL_INITIAL (fndecl));
1732 t = cfun->local_decls;
1733 cfun->local_decls = NULL_TREE;
1734 for (; t; t = next)
1736 next = TREE_CHAIN (t);
1737 decl = TREE_VALUE (t);
1738 if (DECL_RTL_SET_P (decl))
1739 instantiate_decl_rtl (DECL_RTL (decl));
1740 ggc_free (t);
1744 /* Pass through the INSNS of function FNDECL and convert virtual register
1745 references to hard register references. */
1747 static unsigned int
1748 instantiate_virtual_regs (void)
1750 rtx insn;
1752 /* Compute the offsets to use for this function. */
1753 in_arg_offset = FIRST_PARM_OFFSET (current_function_decl);
1754 var_offset = STARTING_FRAME_OFFSET;
1755 dynamic_offset = STACK_DYNAMIC_OFFSET (current_function_decl);
1756 out_arg_offset = STACK_POINTER_OFFSET;
1757 #ifdef FRAME_POINTER_CFA_OFFSET
1758 cfa_offset = FRAME_POINTER_CFA_OFFSET (current_function_decl);
1759 #else
1760 cfa_offset = ARG_POINTER_CFA_OFFSET (current_function_decl);
1761 #endif
1763 /* Initialize recognition, indicating that volatile is OK. */
1764 init_recog ();
1766 /* Scan through all the insns, instantiating every virtual register still
1767 present. */
1768 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
1769 if (INSN_P (insn))
1771 /* These patterns in the instruction stream can never be recognized.
1772 Fortunately, they shouldn't contain virtual registers either. */
1773 if (GET_CODE (PATTERN (insn)) == USE
1774 || GET_CODE (PATTERN (insn)) == CLOBBER
1775 || GET_CODE (PATTERN (insn)) == ADDR_VEC
1776 || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC
1777 || GET_CODE (PATTERN (insn)) == ASM_INPUT)
1778 continue;
1780 instantiate_virtual_regs_in_insn (insn);
1782 if (INSN_DELETED_P (insn))
1783 continue;
1785 for_each_rtx (&REG_NOTES (insn), instantiate_virtual_regs_in_rtx, NULL);
1787 /* Instantiate any virtual registers in CALL_INSN_FUNCTION_USAGE. */
1788 if (GET_CODE (insn) == CALL_INSN)
1789 for_each_rtx (&CALL_INSN_FUNCTION_USAGE (insn),
1790 instantiate_virtual_regs_in_rtx, NULL);
1793 /* Instantiate the virtual registers in the DECLs for debugging purposes. */
1794 instantiate_decls (current_function_decl);
1796 targetm.instantiate_decls ();
1798 /* Indicate that, from now on, assign_stack_local should use
1799 frame_pointer_rtx. */
1800 virtuals_instantiated = 1;
1801 return 0;
1804 struct rtl_opt_pass pass_instantiate_virtual_regs =
1807 RTL_PASS,
1808 "vregs", /* name */
1809 NULL, /* gate */
1810 instantiate_virtual_regs, /* execute */
1811 NULL, /* sub */
1812 NULL, /* next */
1813 0, /* static_pass_number */
1814 TV_NONE, /* tv_id */
1815 0, /* properties_required */
1816 0, /* properties_provided */
1817 0, /* properties_destroyed */
1818 0, /* todo_flags_start */
1819 TODO_dump_func /* todo_flags_finish */
1824 /* Return 1 if EXP is an aggregate type (or a value with aggregate type).
1825 This means a type for which function calls must pass an address to the
1826 function or get an address back from the function.
1827 EXP may be a type node or an expression (whose type is tested). */
1830 aggregate_value_p (const_tree exp, const_tree fntype)
1832 int i, regno, nregs;
1833 rtx reg;
1835 const_tree type = (TYPE_P (exp)) ? exp : TREE_TYPE (exp);
1837 /* DECL node associated with FNTYPE when relevant, which we might need to
1838 check for by-invisible-reference returns, typically for CALL_EXPR input
1839 EXPressions. */
1840 const_tree fndecl = NULL_TREE;
1842 if (fntype)
1843 switch (TREE_CODE (fntype))
1845 case CALL_EXPR:
1846 fndecl = get_callee_fndecl (fntype);
1847 fntype = (fndecl
1848 ? TREE_TYPE (fndecl)
1849 : TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (fntype))));
1850 break;
1851 case FUNCTION_DECL:
1852 fndecl = fntype;
1853 fntype = TREE_TYPE (fndecl);
1854 break;
1855 case FUNCTION_TYPE:
1856 case METHOD_TYPE:
1857 break;
1858 case IDENTIFIER_NODE:
1859 fntype = 0;
1860 break;
1861 default:
1862 /* We don't expect other rtl types here. */
1863 gcc_unreachable ();
1866 if (TREE_CODE (type) == VOID_TYPE)
1867 return 0;
1869 /* If the front end has decided that this needs to be passed by
1870 reference, do so. */
1871 if ((TREE_CODE (exp) == PARM_DECL || TREE_CODE (exp) == RESULT_DECL)
1872 && DECL_BY_REFERENCE (exp))
1873 return 1;
1875 /* If the EXPression is a CALL_EXPR, honor DECL_BY_REFERENCE set on the
1876 called function RESULT_DECL, meaning the function returns in memory by
1877 invisible reference. This check lets front-ends not set TREE_ADDRESSABLE
1878 on the function type, which used to be the way to request such a return
1879 mechanism but might now be causing troubles at gimplification time if
1880 temporaries with the function type need to be created. */
1881 if (TREE_CODE (exp) == CALL_EXPR && fndecl && DECL_RESULT (fndecl)
1882 && DECL_BY_REFERENCE (DECL_RESULT (fndecl)))
1883 return 1;
1885 if (targetm.calls.return_in_memory (type, fntype))
1886 return 1;
1887 /* Types that are TREE_ADDRESSABLE must be constructed in memory,
1888 and thus can't be returned in registers. */
1889 if (TREE_ADDRESSABLE (type))
1890 return 1;
1891 if (flag_pcc_struct_return && AGGREGATE_TYPE_P (type))
1892 return 1;
1893 /* Make sure we have suitable call-clobbered regs to return
1894 the value in; if not, we must return it in memory. */
1895 reg = hard_function_value (type, 0, fntype, 0);
1897 /* If we have something other than a REG (e.g. a PARALLEL), then assume
1898 it is OK. */
1899 if (!REG_P (reg))
1900 return 0;
1902 regno = REGNO (reg);
1903 nregs = hard_regno_nregs[regno][TYPE_MODE (type)];
1904 for (i = 0; i < nregs; i++)
1905 if (! call_used_regs[regno + i])
1906 return 1;
1907 return 0;
1910 /* Return true if we should assign DECL a pseudo register; false if it
1911 should live on the local stack. */
1913 bool
1914 use_register_for_decl (const_tree decl)
1916 if (!targetm.calls.allocate_stack_slots_for_args())
1917 return true;
1919 /* Honor volatile. */
1920 if (TREE_SIDE_EFFECTS (decl))
1921 return false;
1923 /* Honor addressability. */
1924 if (TREE_ADDRESSABLE (decl))
1925 return false;
1927 /* Only register-like things go in registers. */
1928 if (DECL_MODE (decl) == BLKmode)
1929 return false;
1931 /* If -ffloat-store specified, don't put explicit float variables
1932 into registers. */
1933 /* ??? This should be checked after DECL_ARTIFICIAL, but tree-ssa
1934 propagates values across these stores, and it probably shouldn't. */
1935 if (flag_float_store && FLOAT_TYPE_P (TREE_TYPE (decl)))
1936 return false;
1938 /* If we're not interested in tracking debugging information for
1939 this decl, then we can certainly put it in a register. */
1940 if (DECL_IGNORED_P (decl))
1941 return true;
1943 if (optimize)
1944 return true;
1946 if (!DECL_REGISTER (decl))
1947 return false;
1949 switch (TREE_CODE (TREE_TYPE (decl)))
1951 case RECORD_TYPE:
1952 case UNION_TYPE:
1953 case QUAL_UNION_TYPE:
1954 /* When not optimizing, disregard register keyword for variables with
1955 types containing methods, otherwise the methods won't be callable
1956 from the debugger. */
1957 if (TYPE_METHODS (TREE_TYPE (decl)))
1958 return false;
1959 break;
1960 default:
1961 break;
1964 return true;
1967 /* Return true if TYPE should be passed by invisible reference. */
1969 bool
1970 pass_by_reference (CUMULATIVE_ARGS *ca, enum machine_mode mode,
1971 tree type, bool named_arg)
1973 if (type)
1975 /* If this type contains non-trivial constructors, then it is
1976 forbidden for the middle-end to create any new copies. */
1977 if (TREE_ADDRESSABLE (type))
1978 return true;
1980 /* GCC post 3.4 passes *all* variable sized types by reference. */
1981 if (!TYPE_SIZE (type) || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
1982 return true;
1985 return targetm.calls.pass_by_reference (ca, mode, type, named_arg);
1988 /* Return true if TYPE, which is passed by reference, should be callee
1989 copied instead of caller copied. */
1991 bool
1992 reference_callee_copied (CUMULATIVE_ARGS *ca, enum machine_mode mode,
1993 tree type, bool named_arg)
1995 if (type && TREE_ADDRESSABLE (type))
1996 return false;
1997 return targetm.calls.callee_copies (ca, mode, type, named_arg);
2000 /* Structures to communicate between the subroutines of assign_parms.
2001 The first holds data persistent across all parameters, the second
2002 is cleared out for each parameter. */
2004 struct assign_parm_data_all
2006 CUMULATIVE_ARGS args_so_far;
2007 struct args_size stack_args_size;
2008 tree function_result_decl;
2009 tree orig_fnargs;
2010 rtx first_conversion_insn;
2011 rtx last_conversion_insn;
2012 HOST_WIDE_INT pretend_args_size;
2013 HOST_WIDE_INT extra_pretend_bytes;
2014 int reg_parm_stack_space;
2017 struct assign_parm_data_one
2019 tree nominal_type;
2020 tree passed_type;
2021 rtx entry_parm;
2022 rtx stack_parm;
2023 enum machine_mode nominal_mode;
2024 enum machine_mode passed_mode;
2025 enum machine_mode promoted_mode;
2026 struct locate_and_pad_arg_data locate;
2027 int partial;
2028 BOOL_BITFIELD named_arg : 1;
2029 BOOL_BITFIELD passed_pointer : 1;
2030 BOOL_BITFIELD on_stack : 1;
2031 BOOL_BITFIELD loaded_in_reg : 1;
2034 /* A subroutine of assign_parms. Initialize ALL. */
2036 static void
2037 assign_parms_initialize_all (struct assign_parm_data_all *all)
2039 tree fntype;
2041 memset (all, 0, sizeof (*all));
2043 fntype = TREE_TYPE (current_function_decl);
2045 #ifdef INIT_CUMULATIVE_INCOMING_ARGS
2046 INIT_CUMULATIVE_INCOMING_ARGS (all->args_so_far, fntype, NULL_RTX);
2047 #else
2048 INIT_CUMULATIVE_ARGS (all->args_so_far, fntype, NULL_RTX,
2049 current_function_decl, -1);
2050 #endif
2052 #ifdef REG_PARM_STACK_SPACE
2053 all->reg_parm_stack_space = REG_PARM_STACK_SPACE (current_function_decl);
2054 #endif
2057 /* If ARGS contains entries with complex types, split the entry into two
2058 entries of the component type. Return a new list of substitutions are
2059 needed, else the old list. */
2061 static tree
2062 split_complex_args (tree args)
2064 tree p;
2066 /* Before allocating memory, check for the common case of no complex. */
2067 for (p = args; p; p = TREE_CHAIN (p))
2069 tree type = TREE_TYPE (p);
2070 if (TREE_CODE (type) == COMPLEX_TYPE
2071 && targetm.calls.split_complex_arg (type))
2072 goto found;
2074 return args;
2076 found:
2077 args = copy_list (args);
2079 for (p = args; p; p = TREE_CHAIN (p))
2081 tree type = TREE_TYPE (p);
2082 if (TREE_CODE (type) == COMPLEX_TYPE
2083 && targetm.calls.split_complex_arg (type))
2085 tree decl;
2086 tree subtype = TREE_TYPE (type);
2087 bool addressable = TREE_ADDRESSABLE (p);
2089 /* Rewrite the PARM_DECL's type with its component. */
2090 TREE_TYPE (p) = subtype;
2091 DECL_ARG_TYPE (p) = TREE_TYPE (DECL_ARG_TYPE (p));
2092 DECL_MODE (p) = VOIDmode;
2093 DECL_SIZE (p) = NULL;
2094 DECL_SIZE_UNIT (p) = NULL;
2095 /* If this arg must go in memory, put it in a pseudo here.
2096 We can't allow it to go in memory as per normal parms,
2097 because the usual place might not have the imag part
2098 adjacent to the real part. */
2099 DECL_ARTIFICIAL (p) = addressable;
2100 DECL_IGNORED_P (p) = addressable;
2101 TREE_ADDRESSABLE (p) = 0;
2102 layout_decl (p, 0);
2104 /* Build a second synthetic decl. */
2105 decl = build_decl (PARM_DECL, NULL_TREE, subtype);
2106 DECL_ARG_TYPE (decl) = DECL_ARG_TYPE (p);
2107 DECL_ARTIFICIAL (decl) = addressable;
2108 DECL_IGNORED_P (decl) = addressable;
2109 layout_decl (decl, 0);
2111 /* Splice it in; skip the new decl. */
2112 TREE_CHAIN (decl) = TREE_CHAIN (p);
2113 TREE_CHAIN (p) = decl;
2114 p = decl;
2118 return args;
2121 /* A subroutine of assign_parms. Adjust the parameter list to incorporate
2122 the hidden struct return argument, and (abi willing) complex args.
2123 Return the new parameter list. */
2125 static tree
2126 assign_parms_augmented_arg_list (struct assign_parm_data_all *all)
2128 tree fndecl = current_function_decl;
2129 tree fntype = TREE_TYPE (fndecl);
2130 tree fnargs = DECL_ARGUMENTS (fndecl);
2132 /* If struct value address is treated as the first argument, make it so. */
2133 if (aggregate_value_p (DECL_RESULT (fndecl), fndecl)
2134 && ! cfun->returns_pcc_struct
2135 && targetm.calls.struct_value_rtx (TREE_TYPE (fndecl), 1) == 0)
2137 tree type = build_pointer_type (TREE_TYPE (fntype));
2138 tree decl;
2140 decl = build_decl (PARM_DECL, NULL_TREE, type);
2141 DECL_ARG_TYPE (decl) = type;
2142 DECL_ARTIFICIAL (decl) = 1;
2143 DECL_IGNORED_P (decl) = 1;
2145 TREE_CHAIN (decl) = fnargs;
2146 fnargs = decl;
2147 all->function_result_decl = decl;
2150 all->orig_fnargs = fnargs;
2152 /* If the target wants to split complex arguments into scalars, do so. */
2153 if (targetm.calls.split_complex_arg)
2154 fnargs = split_complex_args (fnargs);
2156 return fnargs;
2159 /* A subroutine of assign_parms. Examine PARM and pull out type and mode
2160 data for the parameter. Incorporate ABI specifics such as pass-by-
2161 reference and type promotion. */
2163 static void
2164 assign_parm_find_data_types (struct assign_parm_data_all *all, tree parm,
2165 struct assign_parm_data_one *data)
2167 tree nominal_type, passed_type;
2168 enum machine_mode nominal_mode, passed_mode, promoted_mode;
2170 memset (data, 0, sizeof (*data));
2172 /* NAMED_ARG is a misnomer. We really mean 'non-variadic'. */
2173 if (!cfun->stdarg)
2174 data->named_arg = 1; /* No variadic parms. */
2175 else if (TREE_CHAIN (parm))
2176 data->named_arg = 1; /* Not the last non-variadic parm. */
2177 else if (targetm.calls.strict_argument_naming (&all->args_so_far))
2178 data->named_arg = 1; /* Only variadic ones are unnamed. */
2179 else
2180 data->named_arg = 0; /* Treat as variadic. */
2182 nominal_type = TREE_TYPE (parm);
2183 passed_type = DECL_ARG_TYPE (parm);
2185 /* Look out for errors propagating this far. Also, if the parameter's
2186 type is void then its value doesn't matter. */
2187 if (TREE_TYPE (parm) == error_mark_node
2188 /* This can happen after weird syntax errors
2189 or if an enum type is defined among the parms. */
2190 || TREE_CODE (parm) != PARM_DECL
2191 || passed_type == NULL
2192 || VOID_TYPE_P (nominal_type))
2194 nominal_type = passed_type = void_type_node;
2195 nominal_mode = passed_mode = promoted_mode = VOIDmode;
2196 goto egress;
2199 /* Find mode of arg as it is passed, and mode of arg as it should be
2200 during execution of this function. */
2201 passed_mode = TYPE_MODE (passed_type);
2202 nominal_mode = TYPE_MODE (nominal_type);
2204 /* If the parm is to be passed as a transparent union, use the type of
2205 the first field for the tests below. We have already verified that
2206 the modes are the same. */
2207 if (TREE_CODE (passed_type) == UNION_TYPE
2208 && TYPE_TRANSPARENT_UNION (passed_type))
2209 passed_type = TREE_TYPE (TYPE_FIELDS (passed_type));
2211 /* See if this arg was passed by invisible reference. */
2212 if (pass_by_reference (&all->args_so_far, passed_mode,
2213 passed_type, data->named_arg))
2215 passed_type = nominal_type = build_pointer_type (passed_type);
2216 data->passed_pointer = true;
2217 passed_mode = nominal_mode = Pmode;
2220 /* Find mode as it is passed by the ABI. */
2221 promoted_mode = passed_mode;
2222 if (targetm.calls.promote_function_args (TREE_TYPE (current_function_decl)))
2224 int unsignedp = TYPE_UNSIGNED (passed_type);
2225 promoted_mode = promote_mode (passed_type, promoted_mode,
2226 &unsignedp, 1);
2229 egress:
2230 data->nominal_type = nominal_type;
2231 data->passed_type = passed_type;
2232 data->nominal_mode = nominal_mode;
2233 data->passed_mode = passed_mode;
2234 data->promoted_mode = promoted_mode;
2237 /* A subroutine of assign_parms. Invoke setup_incoming_varargs. */
2239 static void
2240 assign_parms_setup_varargs (struct assign_parm_data_all *all,
2241 struct assign_parm_data_one *data, bool no_rtl)
2243 int varargs_pretend_bytes = 0;
2245 targetm.calls.setup_incoming_varargs (&all->args_so_far,
2246 data->promoted_mode,
2247 data->passed_type,
2248 &varargs_pretend_bytes, no_rtl);
2250 /* If the back-end has requested extra stack space, record how much is
2251 needed. Do not change pretend_args_size otherwise since it may be
2252 nonzero from an earlier partial argument. */
2253 if (varargs_pretend_bytes > 0)
2254 all->pretend_args_size = varargs_pretend_bytes;
2257 /* A subroutine of assign_parms. Set DATA->ENTRY_PARM corresponding to
2258 the incoming location of the current parameter. */
2260 static void
2261 assign_parm_find_entry_rtl (struct assign_parm_data_all *all,
2262 struct assign_parm_data_one *data)
2264 HOST_WIDE_INT pretend_bytes = 0;
2265 rtx entry_parm;
2266 bool in_regs;
2268 if (data->promoted_mode == VOIDmode)
2270 data->entry_parm = data->stack_parm = const0_rtx;
2271 return;
2274 #ifdef FUNCTION_INCOMING_ARG
2275 entry_parm = FUNCTION_INCOMING_ARG (all->args_so_far, data->promoted_mode,
2276 data->passed_type, data->named_arg);
2277 #else
2278 entry_parm = FUNCTION_ARG (all->args_so_far, data->promoted_mode,
2279 data->passed_type, data->named_arg);
2280 #endif
2282 if (entry_parm == 0)
2283 data->promoted_mode = data->passed_mode;
2285 /* Determine parm's home in the stack, in case it arrives in the stack
2286 or we should pretend it did. Compute the stack position and rtx where
2287 the argument arrives and its size.
2289 There is one complexity here: If this was a parameter that would
2290 have been passed in registers, but wasn't only because it is
2291 __builtin_va_alist, we want locate_and_pad_parm to treat it as if
2292 it came in a register so that REG_PARM_STACK_SPACE isn't skipped.
2293 In this case, we call FUNCTION_ARG with NAMED set to 1 instead of 0
2294 as it was the previous time. */
2295 in_regs = entry_parm != 0;
2296 #ifdef STACK_PARMS_IN_REG_PARM_AREA
2297 in_regs = true;
2298 #endif
2299 if (!in_regs && !data->named_arg)
2301 if (targetm.calls.pretend_outgoing_varargs_named (&all->args_so_far))
2303 rtx tem;
2304 #ifdef FUNCTION_INCOMING_ARG
2305 tem = FUNCTION_INCOMING_ARG (all->args_so_far, data->promoted_mode,
2306 data->passed_type, true);
2307 #else
2308 tem = FUNCTION_ARG (all->args_so_far, data->promoted_mode,
2309 data->passed_type, true);
2310 #endif
2311 in_regs = tem != NULL;
2315 /* If this parameter was passed both in registers and in the stack, use
2316 the copy on the stack. */
2317 if (targetm.calls.must_pass_in_stack (data->promoted_mode,
2318 data->passed_type))
2319 entry_parm = 0;
2321 if (entry_parm)
2323 int partial;
2325 partial = targetm.calls.arg_partial_bytes (&all->args_so_far,
2326 data->promoted_mode,
2327 data->passed_type,
2328 data->named_arg);
2329 data->partial = partial;
2331 /* The caller might already have allocated stack space for the
2332 register parameters. */
2333 if (partial != 0 && all->reg_parm_stack_space == 0)
2335 /* Part of this argument is passed in registers and part
2336 is passed on the stack. Ask the prologue code to extend
2337 the stack part so that we can recreate the full value.
2339 PRETEND_BYTES is the size of the registers we need to store.
2340 CURRENT_FUNCTION_PRETEND_ARGS_SIZE is the amount of extra
2341 stack space that the prologue should allocate.
2343 Internally, gcc assumes that the argument pointer is aligned
2344 to STACK_BOUNDARY bits. This is used both for alignment
2345 optimizations (see init_emit) and to locate arguments that are
2346 aligned to more than PARM_BOUNDARY bits. We must preserve this
2347 invariant by rounding CURRENT_FUNCTION_PRETEND_ARGS_SIZE up to
2348 a stack boundary. */
2350 /* We assume at most one partial arg, and it must be the first
2351 argument on the stack. */
2352 gcc_assert (!all->extra_pretend_bytes && !all->pretend_args_size);
2354 pretend_bytes = partial;
2355 all->pretend_args_size = CEIL_ROUND (pretend_bytes, STACK_BYTES);
2357 /* We want to align relative to the actual stack pointer, so
2358 don't include this in the stack size until later. */
2359 all->extra_pretend_bytes = all->pretend_args_size;
2363 locate_and_pad_parm (data->promoted_mode, data->passed_type, in_regs,
2364 entry_parm ? data->partial : 0, current_function_decl,
2365 &all->stack_args_size, &data->locate);
2367 /* Update parm_stack_boundary if this parameter is passed in the
2368 stack. */
2369 if (!in_regs && crtl->parm_stack_boundary < data->locate.boundary)
2370 crtl->parm_stack_boundary = data->locate.boundary;
2372 /* Adjust offsets to include the pretend args. */
2373 pretend_bytes = all->extra_pretend_bytes - pretend_bytes;
2374 data->locate.slot_offset.constant += pretend_bytes;
2375 data->locate.offset.constant += pretend_bytes;
2377 data->entry_parm = entry_parm;
2380 /* A subroutine of assign_parms. If there is actually space on the stack
2381 for this parm, count it in stack_args_size and return true. */
2383 static bool
2384 assign_parm_is_stack_parm (struct assign_parm_data_all *all,
2385 struct assign_parm_data_one *data)
2387 /* Trivially true if we've no incoming register. */
2388 if (data->entry_parm == NULL)
2390 /* Also true if we're partially in registers and partially not,
2391 since we've arranged to drop the entire argument on the stack. */
2392 else if (data->partial != 0)
2394 /* Also true if the target says that it's passed in both registers
2395 and on the stack. */
2396 else if (GET_CODE (data->entry_parm) == PARALLEL
2397 && XEXP (XVECEXP (data->entry_parm, 0, 0), 0) == NULL_RTX)
2399 /* Also true if the target says that there's stack allocated for
2400 all register parameters. */
2401 else if (all->reg_parm_stack_space > 0)
2403 /* Otherwise, no, this parameter has no ABI defined stack slot. */
2404 else
2405 return false;
2407 all->stack_args_size.constant += data->locate.size.constant;
2408 if (data->locate.size.var)
2409 ADD_PARM_SIZE (all->stack_args_size, data->locate.size.var);
2411 return true;
2414 /* A subroutine of assign_parms. Given that this parameter is allocated
2415 stack space by the ABI, find it. */
2417 static void
2418 assign_parm_find_stack_rtl (tree parm, struct assign_parm_data_one *data)
2420 rtx offset_rtx, stack_parm;
2421 unsigned int align, boundary;
2423 /* If we're passing this arg using a reg, make its stack home the
2424 aligned stack slot. */
2425 if (data->entry_parm)
2426 offset_rtx = ARGS_SIZE_RTX (data->locate.slot_offset);
2427 else
2428 offset_rtx = ARGS_SIZE_RTX (data->locate.offset);
2430 stack_parm = crtl->args.internal_arg_pointer;
2431 if (offset_rtx != const0_rtx)
2432 stack_parm = gen_rtx_PLUS (Pmode, stack_parm, offset_rtx);
2433 stack_parm = gen_rtx_MEM (data->promoted_mode, stack_parm);
2435 set_mem_attributes (stack_parm, parm, 1);
2436 /* set_mem_attributes could set MEM_SIZE to the passed mode's size,
2437 while promoted mode's size is needed. */
2438 if (data->promoted_mode != BLKmode
2439 && data->promoted_mode != DECL_MODE (parm))
2441 set_mem_size (stack_parm, GEN_INT (GET_MODE_SIZE (data->promoted_mode)));
2442 if (MEM_EXPR (stack_parm) && MEM_OFFSET (stack_parm))
2444 int offset = subreg_lowpart_offset (DECL_MODE (parm),
2445 data->promoted_mode);
2446 if (offset)
2447 set_mem_offset (stack_parm,
2448 plus_constant (MEM_OFFSET (stack_parm), -offset));
2452 boundary = data->locate.boundary;
2453 align = BITS_PER_UNIT;
2455 /* If we're padding upward, we know that the alignment of the slot
2456 is FUNCTION_ARG_BOUNDARY. If we're using slot_offset, we're
2457 intentionally forcing upward padding. Otherwise we have to come
2458 up with a guess at the alignment based on OFFSET_RTX. */
2459 if (data->locate.where_pad != downward || data->entry_parm)
2460 align = boundary;
2461 else if (GET_CODE (offset_rtx) == CONST_INT)
2463 align = INTVAL (offset_rtx) * BITS_PER_UNIT | boundary;
2464 align = align & -align;
2466 set_mem_align (stack_parm, align);
2468 if (data->entry_parm)
2469 set_reg_attrs_for_parm (data->entry_parm, stack_parm);
2471 data->stack_parm = stack_parm;
2474 /* A subroutine of assign_parms. Adjust DATA->ENTRY_RTL such that it's
2475 always valid and contiguous. */
2477 static void
2478 assign_parm_adjust_entry_rtl (struct assign_parm_data_one *data)
2480 rtx entry_parm = data->entry_parm;
2481 rtx stack_parm = data->stack_parm;
2483 /* If this parm was passed part in regs and part in memory, pretend it
2484 arrived entirely in memory by pushing the register-part onto the stack.
2485 In the special case of a DImode or DFmode that is split, we could put
2486 it together in a pseudoreg directly, but for now that's not worth
2487 bothering with. */
2488 if (data->partial != 0)
2490 /* Handle calls that pass values in multiple non-contiguous
2491 locations. The Irix 6 ABI has examples of this. */
2492 if (GET_CODE (entry_parm) == PARALLEL)
2493 emit_group_store (validize_mem (stack_parm), entry_parm,
2494 data->passed_type,
2495 int_size_in_bytes (data->passed_type));
2496 else
2498 gcc_assert (data->partial % UNITS_PER_WORD == 0);
2499 move_block_from_reg (REGNO (entry_parm), validize_mem (stack_parm),
2500 data->partial / UNITS_PER_WORD);
2503 entry_parm = stack_parm;
2506 /* If we didn't decide this parm came in a register, by default it came
2507 on the stack. */
2508 else if (entry_parm == NULL)
2509 entry_parm = stack_parm;
2511 /* When an argument is passed in multiple locations, we can't make use
2512 of this information, but we can save some copying if the whole argument
2513 is passed in a single register. */
2514 else if (GET_CODE (entry_parm) == PARALLEL
2515 && data->nominal_mode != BLKmode
2516 && data->passed_mode != BLKmode)
2518 size_t i, len = XVECLEN (entry_parm, 0);
2520 for (i = 0; i < len; i++)
2521 if (XEXP (XVECEXP (entry_parm, 0, i), 0) != NULL_RTX
2522 && REG_P (XEXP (XVECEXP (entry_parm, 0, i), 0))
2523 && (GET_MODE (XEXP (XVECEXP (entry_parm, 0, i), 0))
2524 == data->passed_mode)
2525 && INTVAL (XEXP (XVECEXP (entry_parm, 0, i), 1)) == 0)
2527 entry_parm = XEXP (XVECEXP (entry_parm, 0, i), 0);
2528 break;
2532 data->entry_parm = entry_parm;
2535 /* A subroutine of assign_parms. Reconstitute any values which were
2536 passed in multiple registers and would fit in a single register. */
2538 static void
2539 assign_parm_remove_parallels (struct assign_parm_data_one *data)
2541 rtx entry_parm = data->entry_parm;
2543 /* Convert the PARALLEL to a REG of the same mode as the parallel.
2544 This can be done with register operations rather than on the
2545 stack, even if we will store the reconstituted parameter on the
2546 stack later. */
2547 if (GET_CODE (entry_parm) == PARALLEL && GET_MODE (entry_parm) != BLKmode)
2549 rtx parmreg = gen_reg_rtx (GET_MODE (entry_parm));
2550 emit_group_store (parmreg, entry_parm, data->passed_type,
2551 GET_MODE_SIZE (GET_MODE (entry_parm)));
2552 entry_parm = parmreg;
2555 data->entry_parm = entry_parm;
2558 /* A subroutine of assign_parms. Adjust DATA->STACK_RTL such that it's
2559 always valid and properly aligned. */
2561 static void
2562 assign_parm_adjust_stack_rtl (struct assign_parm_data_one *data)
2564 rtx stack_parm = data->stack_parm;
2566 /* If we can't trust the parm stack slot to be aligned enough for its
2567 ultimate type, don't use that slot after entry. We'll make another
2568 stack slot, if we need one. */
2569 if (stack_parm
2570 && ((STRICT_ALIGNMENT
2571 && GET_MODE_ALIGNMENT (data->nominal_mode) > MEM_ALIGN (stack_parm))
2572 || (data->nominal_type
2573 && TYPE_ALIGN (data->nominal_type) > MEM_ALIGN (stack_parm)
2574 && MEM_ALIGN (stack_parm) < PREFERRED_STACK_BOUNDARY)))
2575 stack_parm = NULL;
2577 /* If parm was passed in memory, and we need to convert it on entry,
2578 don't store it back in that same slot. */
2579 else if (data->entry_parm == stack_parm
2580 && data->nominal_mode != BLKmode
2581 && data->nominal_mode != data->passed_mode)
2582 stack_parm = NULL;
2584 /* If stack protection is in effect for this function, don't leave any
2585 pointers in their passed stack slots. */
2586 else if (crtl->stack_protect_guard
2587 && (flag_stack_protect == 2
2588 || data->passed_pointer
2589 || POINTER_TYPE_P (data->nominal_type)))
2590 stack_parm = NULL;
2592 data->stack_parm = stack_parm;
2595 /* A subroutine of assign_parms. Return true if the current parameter
2596 should be stored as a BLKmode in the current frame. */
2598 static bool
2599 assign_parm_setup_block_p (struct assign_parm_data_one *data)
2601 if (data->nominal_mode == BLKmode)
2602 return true;
2603 if (GET_MODE (data->entry_parm) == BLKmode)
2604 return true;
2606 #ifdef BLOCK_REG_PADDING
2607 /* Only assign_parm_setup_block knows how to deal with register arguments
2608 that are padded at the least significant end. */
2609 if (REG_P (data->entry_parm)
2610 && GET_MODE_SIZE (data->promoted_mode) < UNITS_PER_WORD
2611 && (BLOCK_REG_PADDING (data->passed_mode, data->passed_type, 1)
2612 == (BYTES_BIG_ENDIAN ? upward : downward)))
2613 return true;
2614 #endif
2616 return false;
2619 /* A subroutine of assign_parms. Arrange for the parameter to be
2620 present and valid in DATA->STACK_RTL. */
2622 static void
2623 assign_parm_setup_block (struct assign_parm_data_all *all,
2624 tree parm, struct assign_parm_data_one *data)
2626 rtx entry_parm = data->entry_parm;
2627 rtx stack_parm = data->stack_parm;
2628 HOST_WIDE_INT size;
2629 HOST_WIDE_INT size_stored;
2631 if (GET_CODE (entry_parm) == PARALLEL)
2632 entry_parm = emit_group_move_into_temps (entry_parm);
2634 size = int_size_in_bytes (data->passed_type);
2635 size_stored = CEIL_ROUND (size, UNITS_PER_WORD);
2636 if (stack_parm == 0)
2638 DECL_ALIGN (parm) = MAX (DECL_ALIGN (parm), BITS_PER_WORD);
2639 stack_parm = assign_stack_local (BLKmode, size_stored,
2640 DECL_ALIGN (parm));
2641 if (GET_MODE_SIZE (GET_MODE (entry_parm)) == size)
2642 PUT_MODE (stack_parm, GET_MODE (entry_parm));
2643 set_mem_attributes (stack_parm, parm, 1);
2646 /* If a BLKmode arrives in registers, copy it to a stack slot. Handle
2647 calls that pass values in multiple non-contiguous locations. */
2648 if (REG_P (entry_parm) || GET_CODE (entry_parm) == PARALLEL)
2650 rtx mem;
2652 /* Note that we will be storing an integral number of words.
2653 So we have to be careful to ensure that we allocate an
2654 integral number of words. We do this above when we call
2655 assign_stack_local if space was not allocated in the argument
2656 list. If it was, this will not work if PARM_BOUNDARY is not
2657 a multiple of BITS_PER_WORD. It isn't clear how to fix this
2658 if it becomes a problem. Exception is when BLKmode arrives
2659 with arguments not conforming to word_mode. */
2661 if (data->stack_parm == 0)
2663 else if (GET_CODE (entry_parm) == PARALLEL)
2665 else
2666 gcc_assert (!size || !(PARM_BOUNDARY % BITS_PER_WORD));
2668 mem = validize_mem (stack_parm);
2670 /* Handle values in multiple non-contiguous locations. */
2671 if (GET_CODE (entry_parm) == PARALLEL)
2673 push_to_sequence2 (all->first_conversion_insn,
2674 all->last_conversion_insn);
2675 emit_group_store (mem, entry_parm, data->passed_type, size);
2676 all->first_conversion_insn = get_insns ();
2677 all->last_conversion_insn = get_last_insn ();
2678 end_sequence ();
2681 else if (size == 0)
2684 /* If SIZE is that of a mode no bigger than a word, just use
2685 that mode's store operation. */
2686 else if (size <= UNITS_PER_WORD)
2688 enum machine_mode mode
2689 = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
2691 if (mode != BLKmode
2692 #ifdef BLOCK_REG_PADDING
2693 && (size == UNITS_PER_WORD
2694 || (BLOCK_REG_PADDING (mode, data->passed_type, 1)
2695 != (BYTES_BIG_ENDIAN ? upward : downward)))
2696 #endif
2699 rtx reg;
2701 /* We are really truncating a word_mode value containing
2702 SIZE bytes into a value of mode MODE. If such an
2703 operation requires no actual instructions, we can refer
2704 to the value directly in mode MODE, otherwise we must
2705 start with the register in word_mode and explicitly
2706 convert it. */
2707 if (TRULY_NOOP_TRUNCATION (size * BITS_PER_UNIT, BITS_PER_WORD))
2708 reg = gen_rtx_REG (mode, REGNO (entry_parm));
2709 else
2711 reg = gen_rtx_REG (word_mode, REGNO (entry_parm));
2712 reg = convert_to_mode (mode, copy_to_reg (reg), 1);
2714 emit_move_insn (change_address (mem, mode, 0), reg);
2717 /* Blocks smaller than a word on a BYTES_BIG_ENDIAN
2718 machine must be aligned to the left before storing
2719 to memory. Note that the previous test doesn't
2720 handle all cases (e.g. SIZE == 3). */
2721 else if (size != UNITS_PER_WORD
2722 #ifdef BLOCK_REG_PADDING
2723 && (BLOCK_REG_PADDING (mode, data->passed_type, 1)
2724 == downward)
2725 #else
2726 && BYTES_BIG_ENDIAN
2727 #endif
2730 rtx tem, x;
2731 int by = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2732 rtx reg = gen_rtx_REG (word_mode, REGNO (entry_parm));
2734 x = expand_shift (LSHIFT_EXPR, word_mode, reg,
2735 build_int_cst (NULL_TREE, by),
2736 NULL_RTX, 1);
2737 tem = change_address (mem, word_mode, 0);
2738 emit_move_insn (tem, x);
2740 else
2741 move_block_from_reg (REGNO (entry_parm), mem,
2742 size_stored / UNITS_PER_WORD);
2744 else
2745 move_block_from_reg (REGNO (entry_parm), mem,
2746 size_stored / UNITS_PER_WORD);
2748 else if (data->stack_parm == 0)
2750 push_to_sequence2 (all->first_conversion_insn, all->last_conversion_insn);
2751 emit_block_move (stack_parm, data->entry_parm, GEN_INT (size),
2752 BLOCK_OP_NORMAL);
2753 all->first_conversion_insn = get_insns ();
2754 all->last_conversion_insn = get_last_insn ();
2755 end_sequence ();
2758 data->stack_parm = stack_parm;
2759 SET_DECL_RTL (parm, stack_parm);
2762 /* A subroutine of assign_parms. Allocate a pseudo to hold the current
2763 parameter. Get it there. Perform all ABI specified conversions. */
2765 static void
2766 assign_parm_setup_reg (struct assign_parm_data_all *all, tree parm,
2767 struct assign_parm_data_one *data)
2769 rtx parmreg;
2770 enum machine_mode promoted_nominal_mode;
2771 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (parm));
2772 bool did_conversion = false;
2774 /* Store the parm in a pseudoregister during the function, but we may
2775 need to do it in a wider mode. */
2777 /* This is not really promoting for a call. However we need to be
2778 consistent with assign_parm_find_data_types and expand_expr_real_1. */
2779 promoted_nominal_mode
2780 = promote_mode (data->nominal_type, data->nominal_mode, &unsignedp, 1);
2782 parmreg = gen_reg_rtx (promoted_nominal_mode);
2784 if (!DECL_ARTIFICIAL (parm))
2785 mark_user_reg (parmreg);
2787 /* If this was an item that we received a pointer to,
2788 set DECL_RTL appropriately. */
2789 if (data->passed_pointer)
2791 rtx x = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (data->passed_type)), parmreg);
2792 set_mem_attributes (x, parm, 1);
2793 SET_DECL_RTL (parm, x);
2795 else
2796 SET_DECL_RTL (parm, parmreg);
2798 assign_parm_remove_parallels (data);
2800 /* Copy the value into the register. */
2801 if (data->nominal_mode != data->passed_mode
2802 || promoted_nominal_mode != data->promoted_mode)
2804 int save_tree_used;
2806 /* ENTRY_PARM has been converted to PROMOTED_MODE, its
2807 mode, by the caller. We now have to convert it to
2808 NOMINAL_MODE, if different. However, PARMREG may be in
2809 a different mode than NOMINAL_MODE if it is being stored
2810 promoted.
2812 If ENTRY_PARM is a hard register, it might be in a register
2813 not valid for operating in its mode (e.g., an odd-numbered
2814 register for a DFmode). In that case, moves are the only
2815 thing valid, so we can't do a convert from there. This
2816 occurs when the calling sequence allow such misaligned
2817 usages.
2819 In addition, the conversion may involve a call, which could
2820 clobber parameters which haven't been copied to pseudo
2821 registers yet. Therefore, we must first copy the parm to
2822 a pseudo reg here, and save the conversion until after all
2823 parameters have been moved. */
2825 rtx tempreg = gen_reg_rtx (GET_MODE (data->entry_parm));
2827 emit_move_insn (tempreg, validize_mem (data->entry_parm));
2829 push_to_sequence2 (all->first_conversion_insn, all->last_conversion_insn);
2830 tempreg = convert_to_mode (data->nominal_mode, tempreg, unsignedp);
2832 if (GET_CODE (tempreg) == SUBREG
2833 && GET_MODE (tempreg) == data->nominal_mode
2834 && REG_P (SUBREG_REG (tempreg))
2835 && data->nominal_mode == data->passed_mode
2836 && GET_MODE (SUBREG_REG (tempreg)) == GET_MODE (data->entry_parm)
2837 && GET_MODE_SIZE (GET_MODE (tempreg))
2838 < GET_MODE_SIZE (GET_MODE (data->entry_parm)))
2840 /* The argument is already sign/zero extended, so note it
2841 into the subreg. */
2842 SUBREG_PROMOTED_VAR_P (tempreg) = 1;
2843 SUBREG_PROMOTED_UNSIGNED_SET (tempreg, unsignedp);
2846 /* TREE_USED gets set erroneously during expand_assignment. */
2847 save_tree_used = TREE_USED (parm);
2848 expand_assignment (parm, make_tree (data->nominal_type, tempreg), false);
2849 TREE_USED (parm) = save_tree_used;
2850 all->first_conversion_insn = get_insns ();
2851 all->last_conversion_insn = get_last_insn ();
2852 end_sequence ();
2854 did_conversion = true;
2856 else
2857 emit_move_insn (parmreg, validize_mem (data->entry_parm));
2859 /* If we were passed a pointer but the actual value can safely live
2860 in a register, put it in one. */
2861 if (data->passed_pointer
2862 && TYPE_MODE (TREE_TYPE (parm)) != BLKmode
2863 /* If by-reference argument was promoted, demote it. */
2864 && (TYPE_MODE (TREE_TYPE (parm)) != GET_MODE (DECL_RTL (parm))
2865 || use_register_for_decl (parm)))
2867 /* We can't use nominal_mode, because it will have been set to
2868 Pmode above. We must use the actual mode of the parm. */
2869 parmreg = gen_reg_rtx (TYPE_MODE (TREE_TYPE (parm)));
2870 mark_user_reg (parmreg);
2872 if (GET_MODE (parmreg) != GET_MODE (DECL_RTL (parm)))
2874 rtx tempreg = gen_reg_rtx (GET_MODE (DECL_RTL (parm)));
2875 int unsigned_p = TYPE_UNSIGNED (TREE_TYPE (parm));
2877 push_to_sequence2 (all->first_conversion_insn,
2878 all->last_conversion_insn);
2879 emit_move_insn (tempreg, DECL_RTL (parm));
2880 tempreg = convert_to_mode (GET_MODE (parmreg), tempreg, unsigned_p);
2881 emit_move_insn (parmreg, tempreg);
2882 all->first_conversion_insn = get_insns ();
2883 all->last_conversion_insn = get_last_insn ();
2884 end_sequence ();
2886 did_conversion = true;
2888 else
2889 emit_move_insn (parmreg, DECL_RTL (parm));
2891 SET_DECL_RTL (parm, parmreg);
2893 /* STACK_PARM is the pointer, not the parm, and PARMREG is
2894 now the parm. */
2895 data->stack_parm = NULL;
2898 /* Mark the register as eliminable if we did no conversion and it was
2899 copied from memory at a fixed offset, and the arg pointer was not
2900 copied to a pseudo-reg. If the arg pointer is a pseudo reg or the
2901 offset formed an invalid address, such memory-equivalences as we
2902 make here would screw up life analysis for it. */
2903 if (data->nominal_mode == data->passed_mode
2904 && !did_conversion
2905 && data->stack_parm != 0
2906 && MEM_P (data->stack_parm)
2907 && data->locate.offset.var == 0
2908 && reg_mentioned_p (virtual_incoming_args_rtx,
2909 XEXP (data->stack_parm, 0)))
2911 rtx linsn = get_last_insn ();
2912 rtx sinsn, set;
2914 /* Mark complex types separately. */
2915 if (GET_CODE (parmreg) == CONCAT)
2917 enum machine_mode submode
2918 = GET_MODE_INNER (GET_MODE (parmreg));
2919 int regnor = REGNO (XEXP (parmreg, 0));
2920 int regnoi = REGNO (XEXP (parmreg, 1));
2921 rtx stackr = adjust_address_nv (data->stack_parm, submode, 0);
2922 rtx stacki = adjust_address_nv (data->stack_parm, submode,
2923 GET_MODE_SIZE (submode));
2925 /* Scan backwards for the set of the real and
2926 imaginary parts. */
2927 for (sinsn = linsn; sinsn != 0;
2928 sinsn = prev_nonnote_insn (sinsn))
2930 set = single_set (sinsn);
2931 if (set == 0)
2932 continue;
2934 if (SET_DEST (set) == regno_reg_rtx [regnoi])
2935 set_unique_reg_note (sinsn, REG_EQUIV, stacki);
2936 else if (SET_DEST (set) == regno_reg_rtx [regnor])
2937 set_unique_reg_note (sinsn, REG_EQUIV, stackr);
2940 else if ((set = single_set (linsn)) != 0
2941 && SET_DEST (set) == parmreg)
2942 set_unique_reg_note (linsn, REG_EQUIV, data->stack_parm);
2945 /* For pointer data type, suggest pointer register. */
2946 if (POINTER_TYPE_P (TREE_TYPE (parm)))
2947 mark_reg_pointer (parmreg,
2948 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (parm))));
2951 /* A subroutine of assign_parms. Allocate stack space to hold the current
2952 parameter. Get it there. Perform all ABI specified conversions. */
2954 static void
2955 assign_parm_setup_stack (struct assign_parm_data_all *all, tree parm,
2956 struct assign_parm_data_one *data)
2958 /* Value must be stored in the stack slot STACK_PARM during function
2959 execution. */
2960 bool to_conversion = false;
2962 assign_parm_remove_parallels (data);
2964 if (data->promoted_mode != data->nominal_mode)
2966 /* Conversion is required. */
2967 rtx tempreg = gen_reg_rtx (GET_MODE (data->entry_parm));
2969 emit_move_insn (tempreg, validize_mem (data->entry_parm));
2971 push_to_sequence2 (all->first_conversion_insn, all->last_conversion_insn);
2972 to_conversion = true;
2974 data->entry_parm = convert_to_mode (data->nominal_mode, tempreg,
2975 TYPE_UNSIGNED (TREE_TYPE (parm)));
2977 if (data->stack_parm)
2978 /* ??? This may need a big-endian conversion on sparc64. */
2979 data->stack_parm
2980 = adjust_address (data->stack_parm, data->nominal_mode, 0);
2983 if (data->entry_parm != data->stack_parm)
2985 rtx src, dest;
2987 if (data->stack_parm == 0)
2989 int align = STACK_SLOT_ALIGNMENT (data->passed_type,
2990 GET_MODE (data->entry_parm),
2991 TYPE_ALIGN (data->passed_type));
2992 data->stack_parm
2993 = assign_stack_local (GET_MODE (data->entry_parm),
2994 GET_MODE_SIZE (GET_MODE (data->entry_parm)),
2995 align);
2996 set_mem_attributes (data->stack_parm, parm, 1);
2999 dest = validize_mem (data->stack_parm);
3000 src = validize_mem (data->entry_parm);
3002 if (MEM_P (src))
3004 /* Use a block move to handle potentially misaligned entry_parm. */
3005 if (!to_conversion)
3006 push_to_sequence2 (all->first_conversion_insn,
3007 all->last_conversion_insn);
3008 to_conversion = true;
3010 emit_block_move (dest, src,
3011 GEN_INT (int_size_in_bytes (data->passed_type)),
3012 BLOCK_OP_NORMAL);
3014 else
3015 emit_move_insn (dest, src);
3018 if (to_conversion)
3020 all->first_conversion_insn = get_insns ();
3021 all->last_conversion_insn = get_last_insn ();
3022 end_sequence ();
3025 SET_DECL_RTL (parm, data->stack_parm);
3028 /* A subroutine of assign_parms. If the ABI splits complex arguments, then
3029 undo the frobbing that we did in assign_parms_augmented_arg_list. */
3031 static void
3032 assign_parms_unsplit_complex (struct assign_parm_data_all *all, tree fnargs)
3034 tree parm;
3035 tree orig_fnargs = all->orig_fnargs;
3037 for (parm = orig_fnargs; parm; parm = TREE_CHAIN (parm))
3039 if (TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
3040 && targetm.calls.split_complex_arg (TREE_TYPE (parm)))
3042 rtx tmp, real, imag;
3043 enum machine_mode inner = GET_MODE_INNER (DECL_MODE (parm));
3045 real = DECL_RTL (fnargs);
3046 imag = DECL_RTL (TREE_CHAIN (fnargs));
3047 if (inner != GET_MODE (real))
3049 real = gen_lowpart_SUBREG (inner, real);
3050 imag = gen_lowpart_SUBREG (inner, imag);
3053 if (TREE_ADDRESSABLE (parm))
3055 rtx rmem, imem;
3056 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (parm));
3057 int align = STACK_SLOT_ALIGNMENT (TREE_TYPE (parm),
3058 DECL_MODE (parm),
3059 TYPE_ALIGN (TREE_TYPE (parm)));
3061 /* split_complex_arg put the real and imag parts in
3062 pseudos. Move them to memory. */
3063 tmp = assign_stack_local (DECL_MODE (parm), size, align);
3064 set_mem_attributes (tmp, parm, 1);
3065 rmem = adjust_address_nv (tmp, inner, 0);
3066 imem = adjust_address_nv (tmp, inner, GET_MODE_SIZE (inner));
3067 push_to_sequence2 (all->first_conversion_insn,
3068 all->last_conversion_insn);
3069 emit_move_insn (rmem, real);
3070 emit_move_insn (imem, imag);
3071 all->first_conversion_insn = get_insns ();
3072 all->last_conversion_insn = get_last_insn ();
3073 end_sequence ();
3075 else
3076 tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag);
3077 SET_DECL_RTL (parm, tmp);
3079 real = DECL_INCOMING_RTL (fnargs);
3080 imag = DECL_INCOMING_RTL (TREE_CHAIN (fnargs));
3081 if (inner != GET_MODE (real))
3083 real = gen_lowpart_SUBREG (inner, real);
3084 imag = gen_lowpart_SUBREG (inner, imag);
3086 tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag);
3087 set_decl_incoming_rtl (parm, tmp, false);
3088 fnargs = TREE_CHAIN (fnargs);
3090 else
3092 SET_DECL_RTL (parm, DECL_RTL (fnargs));
3093 set_decl_incoming_rtl (parm, DECL_INCOMING_RTL (fnargs), false);
3095 /* Set MEM_EXPR to the original decl, i.e. to PARM,
3096 instead of the copy of decl, i.e. FNARGS. */
3097 if (DECL_INCOMING_RTL (parm) && MEM_P (DECL_INCOMING_RTL (parm)))
3098 set_mem_expr (DECL_INCOMING_RTL (parm), parm);
3101 fnargs = TREE_CHAIN (fnargs);
3105 /* Assign RTL expressions to the function's parameters. This may involve
3106 copying them into registers and using those registers as the DECL_RTL. */
3108 static void
3109 assign_parms (tree fndecl)
3111 struct assign_parm_data_all all;
3112 tree fnargs, parm;
3114 crtl->args.internal_arg_pointer
3115 = targetm.calls.internal_arg_pointer ();
3117 assign_parms_initialize_all (&all);
3118 fnargs = assign_parms_augmented_arg_list (&all);
3120 for (parm = fnargs; parm; parm = TREE_CHAIN (parm))
3122 struct assign_parm_data_one data;
3124 /* Extract the type of PARM; adjust it according to ABI. */
3125 assign_parm_find_data_types (&all, parm, &data);
3127 /* Early out for errors and void parameters. */
3128 if (data.passed_mode == VOIDmode)
3130 SET_DECL_RTL (parm, const0_rtx);
3131 DECL_INCOMING_RTL (parm) = DECL_RTL (parm);
3132 continue;
3135 /* Estimate stack alignment from parameter alignment. */
3136 if (SUPPORTS_STACK_ALIGNMENT)
3138 unsigned int align = FUNCTION_ARG_BOUNDARY (data.promoted_mode,
3139 data.passed_type);
3140 if (TYPE_ALIGN (data.nominal_type) > align)
3141 align = TYPE_ALIGN (data.passed_type);
3142 if (crtl->stack_alignment_estimated < align)
3144 gcc_assert (!crtl->stack_realign_processed);
3145 crtl->stack_alignment_estimated = align;
3149 if (cfun->stdarg && !TREE_CHAIN (parm))
3150 assign_parms_setup_varargs (&all, &data, false);
3152 /* Find out where the parameter arrives in this function. */
3153 assign_parm_find_entry_rtl (&all, &data);
3155 /* Find out where stack space for this parameter might be. */
3156 if (assign_parm_is_stack_parm (&all, &data))
3158 assign_parm_find_stack_rtl (parm, &data);
3159 assign_parm_adjust_entry_rtl (&data);
3162 /* Record permanently how this parm was passed. */
3163 set_decl_incoming_rtl (parm, data.entry_parm, data.passed_pointer);
3165 /* Update info on where next arg arrives in registers. */
3166 FUNCTION_ARG_ADVANCE (all.args_so_far, data.promoted_mode,
3167 data.passed_type, data.named_arg);
3169 assign_parm_adjust_stack_rtl (&data);
3171 if (assign_parm_setup_block_p (&data))
3172 assign_parm_setup_block (&all, parm, &data);
3173 else if (data.passed_pointer || use_register_for_decl (parm))
3174 assign_parm_setup_reg (&all, parm, &data);
3175 else
3176 assign_parm_setup_stack (&all, parm, &data);
3179 if (targetm.calls.split_complex_arg && fnargs != all.orig_fnargs)
3180 assign_parms_unsplit_complex (&all, fnargs);
3182 /* Output all parameter conversion instructions (possibly including calls)
3183 now that all parameters have been copied out of hard registers. */
3184 emit_insn (all.first_conversion_insn);
3186 /* Estimate reload stack alignment from scalar return mode. */
3187 if (SUPPORTS_STACK_ALIGNMENT)
3189 if (DECL_RESULT (fndecl))
3191 tree type = TREE_TYPE (DECL_RESULT (fndecl));
3192 enum machine_mode mode = TYPE_MODE (type);
3194 if (mode != BLKmode
3195 && mode != VOIDmode
3196 && !AGGREGATE_TYPE_P (type))
3198 unsigned int align = GET_MODE_ALIGNMENT (mode);
3199 if (crtl->stack_alignment_estimated < align)
3201 gcc_assert (!crtl->stack_realign_processed);
3202 crtl->stack_alignment_estimated = align;
3208 /* If we are receiving a struct value address as the first argument, set up
3209 the RTL for the function result. As this might require code to convert
3210 the transmitted address to Pmode, we do this here to ensure that possible
3211 preliminary conversions of the address have been emitted already. */
3212 if (all.function_result_decl)
3214 tree result = DECL_RESULT (current_function_decl);
3215 rtx addr = DECL_RTL (all.function_result_decl);
3216 rtx x;
3218 if (DECL_BY_REFERENCE (result))
3219 x = addr;
3220 else
3222 addr = convert_memory_address (Pmode, addr);
3223 x = gen_rtx_MEM (DECL_MODE (result), addr);
3224 set_mem_attributes (x, result, 1);
3226 SET_DECL_RTL (result, x);
3229 /* We have aligned all the args, so add space for the pretend args. */
3230 crtl->args.pretend_args_size = all.pretend_args_size;
3231 all.stack_args_size.constant += all.extra_pretend_bytes;
3232 crtl->args.size = all.stack_args_size.constant;
3234 /* Adjust function incoming argument size for alignment and
3235 minimum length. */
3237 #ifdef REG_PARM_STACK_SPACE
3238 crtl->args.size = MAX (crtl->args.size,
3239 REG_PARM_STACK_SPACE (fndecl));
3240 #endif
3242 crtl->args.size = CEIL_ROUND (crtl->args.size,
3243 PARM_BOUNDARY / BITS_PER_UNIT);
3245 #ifdef ARGS_GROW_DOWNWARD
3246 crtl->args.arg_offset_rtx
3247 = (all.stack_args_size.var == 0 ? GEN_INT (-all.stack_args_size.constant)
3248 : expand_expr (size_diffop (all.stack_args_size.var,
3249 size_int (-all.stack_args_size.constant)),
3250 NULL_RTX, VOIDmode, EXPAND_NORMAL));
3251 #else
3252 crtl->args.arg_offset_rtx = ARGS_SIZE_RTX (all.stack_args_size);
3253 #endif
3255 /* See how many bytes, if any, of its args a function should try to pop
3256 on return. */
3258 crtl->args.pops_args = RETURN_POPS_ARGS (fndecl, TREE_TYPE (fndecl),
3259 crtl->args.size);
3261 /* For stdarg.h function, save info about
3262 regs and stack space used by the named args. */
3264 crtl->args.info = all.args_so_far;
3266 /* Set the rtx used for the function return value. Put this in its
3267 own variable so any optimizers that need this information don't have
3268 to include tree.h. Do this here so it gets done when an inlined
3269 function gets output. */
3271 crtl->return_rtx
3272 = (DECL_RTL_SET_P (DECL_RESULT (fndecl))
3273 ? DECL_RTL (DECL_RESULT (fndecl)) : NULL_RTX);
3275 /* If scalar return value was computed in a pseudo-reg, or was a named
3276 return value that got dumped to the stack, copy that to the hard
3277 return register. */
3278 if (DECL_RTL_SET_P (DECL_RESULT (fndecl)))
3280 tree decl_result = DECL_RESULT (fndecl);
3281 rtx decl_rtl = DECL_RTL (decl_result);
3283 if (REG_P (decl_rtl)
3284 ? REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER
3285 : DECL_REGISTER (decl_result))
3287 rtx real_decl_rtl;
3289 real_decl_rtl = targetm.calls.function_value (TREE_TYPE (decl_result),
3290 fndecl, true);
3291 REG_FUNCTION_VALUE_P (real_decl_rtl) = 1;
3292 /* The delay slot scheduler assumes that crtl->return_rtx
3293 holds the hard register containing the return value, not a
3294 temporary pseudo. */
3295 crtl->return_rtx = real_decl_rtl;
3300 /* A subroutine of gimplify_parameters, invoked via walk_tree.
3301 For all seen types, gimplify their sizes. */
3303 static tree
3304 gimplify_parm_type (tree *tp, int *walk_subtrees, void *data)
3306 tree t = *tp;
3308 *walk_subtrees = 0;
3309 if (TYPE_P (t))
3311 if (POINTER_TYPE_P (t))
3312 *walk_subtrees = 1;
3313 else if (TYPE_SIZE (t) && !TREE_CONSTANT (TYPE_SIZE (t))
3314 && !TYPE_SIZES_GIMPLIFIED (t))
3316 gimplify_type_sizes (t, (gimple_seq *) data);
3317 *walk_subtrees = 1;
3321 return NULL;
3324 /* Gimplify the parameter list for current_function_decl. This involves
3325 evaluating SAVE_EXPRs of variable sized parameters and generating code
3326 to implement callee-copies reference parameters. Returns a sequence of
3327 statements to add to the beginning of the function. */
3329 gimple_seq
3330 gimplify_parameters (void)
3332 struct assign_parm_data_all all;
3333 tree fnargs, parm;
3334 gimple_seq stmts = NULL;
3336 assign_parms_initialize_all (&all);
3337 fnargs = assign_parms_augmented_arg_list (&all);
3339 for (parm = fnargs; parm; parm = TREE_CHAIN (parm))
3341 struct assign_parm_data_one data;
3343 /* Extract the type of PARM; adjust it according to ABI. */
3344 assign_parm_find_data_types (&all, parm, &data);
3346 /* Early out for errors and void parameters. */
3347 if (data.passed_mode == VOIDmode || DECL_SIZE (parm) == NULL)
3348 continue;
3350 /* Update info on where next arg arrives in registers. */
3351 FUNCTION_ARG_ADVANCE (all.args_so_far, data.promoted_mode,
3352 data.passed_type, data.named_arg);
3354 /* ??? Once upon a time variable_size stuffed parameter list
3355 SAVE_EXPRs (amongst others) onto a pending sizes list. This
3356 turned out to be less than manageable in the gimple world.
3357 Now we have to hunt them down ourselves. */
3358 walk_tree_without_duplicates (&data.passed_type,
3359 gimplify_parm_type, &stmts);
3361 if (TREE_CODE (DECL_SIZE_UNIT (parm)) != INTEGER_CST)
3363 gimplify_one_sizepos (&DECL_SIZE (parm), &stmts);
3364 gimplify_one_sizepos (&DECL_SIZE_UNIT (parm), &stmts);
3367 if (data.passed_pointer)
3369 tree type = TREE_TYPE (data.passed_type);
3370 if (reference_callee_copied (&all.args_so_far, TYPE_MODE (type),
3371 type, data.named_arg))
3373 tree local, t;
3375 /* For constant-sized objects, this is trivial; for
3376 variable-sized objects, we have to play games. */
3377 if (TREE_CODE (DECL_SIZE_UNIT (parm)) == INTEGER_CST
3378 && !(flag_stack_check == GENERIC_STACK_CHECK
3379 && compare_tree_int (DECL_SIZE_UNIT (parm),
3380 STACK_CHECK_MAX_VAR_SIZE) > 0))
3382 local = create_tmp_var (type, get_name (parm));
3383 DECL_IGNORED_P (local) = 0;
3384 /* If PARM was addressable, move that flag over
3385 to the local copy, as its address will be taken,
3386 not the PARMs. */
3387 if (TREE_ADDRESSABLE (parm))
3389 TREE_ADDRESSABLE (parm) = 0;
3390 TREE_ADDRESSABLE (local) = 1;
3393 else
3395 tree ptr_type, addr;
3397 ptr_type = build_pointer_type (type);
3398 addr = create_tmp_var (ptr_type, get_name (parm));
3399 DECL_IGNORED_P (addr) = 0;
3400 local = build_fold_indirect_ref (addr);
3402 t = built_in_decls[BUILT_IN_ALLOCA];
3403 t = build_call_expr (t, 1, DECL_SIZE_UNIT (parm));
3404 t = fold_convert (ptr_type, t);
3405 t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
3406 gimplify_and_add (t, &stmts);
3409 gimplify_assign (local, parm, &stmts);
3411 SET_DECL_VALUE_EXPR (parm, local);
3412 DECL_HAS_VALUE_EXPR_P (parm) = 1;
3417 return stmts;
3420 /* Compute the size and offset from the start of the stacked arguments for a
3421 parm passed in mode PASSED_MODE and with type TYPE.
3423 INITIAL_OFFSET_PTR points to the current offset into the stacked
3424 arguments.
3426 The starting offset and size for this parm are returned in
3427 LOCATE->OFFSET and LOCATE->SIZE, respectively. When IN_REGS is
3428 nonzero, the offset is that of stack slot, which is returned in
3429 LOCATE->SLOT_OFFSET. LOCATE->ALIGNMENT_PAD is the amount of
3430 padding required from the initial offset ptr to the stack slot.
3432 IN_REGS is nonzero if the argument will be passed in registers. It will
3433 never be set if REG_PARM_STACK_SPACE is not defined.
3435 FNDECL is the function in which the argument was defined.
3437 There are two types of rounding that are done. The first, controlled by
3438 FUNCTION_ARG_BOUNDARY, forces the offset from the start of the argument
3439 list to be aligned to the specific boundary (in bits). This rounding
3440 affects the initial and starting offsets, but not the argument size.
3442 The second, controlled by FUNCTION_ARG_PADDING and PARM_BOUNDARY,
3443 optionally rounds the size of the parm to PARM_BOUNDARY. The
3444 initial offset is not affected by this rounding, while the size always
3445 is and the starting offset may be. */
3447 /* LOCATE->OFFSET will be negative for ARGS_GROW_DOWNWARD case;
3448 INITIAL_OFFSET_PTR is positive because locate_and_pad_parm's
3449 callers pass in the total size of args so far as
3450 INITIAL_OFFSET_PTR. LOCATE->SIZE is always positive. */
3452 void
3453 locate_and_pad_parm (enum machine_mode passed_mode, tree type, int in_regs,
3454 int partial, tree fndecl ATTRIBUTE_UNUSED,
3455 struct args_size *initial_offset_ptr,
3456 struct locate_and_pad_arg_data *locate)
3458 tree sizetree;
3459 enum direction where_pad;
3460 unsigned int boundary;
3461 int reg_parm_stack_space = 0;
3462 int part_size_in_regs;
3464 #ifdef REG_PARM_STACK_SPACE
3465 reg_parm_stack_space = REG_PARM_STACK_SPACE (fndecl);
3467 /* If we have found a stack parm before we reach the end of the
3468 area reserved for registers, skip that area. */
3469 if (! in_regs)
3471 if (reg_parm_stack_space > 0)
3473 if (initial_offset_ptr->var)
3475 initial_offset_ptr->var
3476 = size_binop (MAX_EXPR, ARGS_SIZE_TREE (*initial_offset_ptr),
3477 ssize_int (reg_parm_stack_space));
3478 initial_offset_ptr->constant = 0;
3480 else if (initial_offset_ptr->constant < reg_parm_stack_space)
3481 initial_offset_ptr->constant = reg_parm_stack_space;
3484 #endif /* REG_PARM_STACK_SPACE */
3486 part_size_in_regs = (reg_parm_stack_space == 0 ? partial : 0);
3488 sizetree
3489 = type ? size_in_bytes (type) : size_int (GET_MODE_SIZE (passed_mode));
3490 where_pad = FUNCTION_ARG_PADDING (passed_mode, type);
3491 boundary = FUNCTION_ARG_BOUNDARY (passed_mode, type);
3492 locate->where_pad = where_pad;
3494 /* Alignment can't exceed MAX_SUPPORTED_STACK_ALIGNMENT. */
3495 if (boundary > MAX_SUPPORTED_STACK_ALIGNMENT)
3496 boundary = MAX_SUPPORTED_STACK_ALIGNMENT;
3498 locate->boundary = boundary;
3500 if (SUPPORTS_STACK_ALIGNMENT)
3502 /* stack_alignment_estimated can't change after stack has been
3503 realigned. */
3504 if (crtl->stack_alignment_estimated < boundary)
3506 if (!crtl->stack_realign_processed)
3507 crtl->stack_alignment_estimated = boundary;
3508 else
3510 /* If stack is realigned and stack alignment value
3511 hasn't been finalized, it is OK not to increase
3512 stack_alignment_estimated. The bigger alignment
3513 requirement is recorded in stack_alignment_needed
3514 below. */
3515 gcc_assert (!crtl->stack_realign_finalized
3516 && crtl->stack_realign_needed);
3521 /* Remember if the outgoing parameter requires extra alignment on the
3522 calling function side. */
3523 if (crtl->stack_alignment_needed < boundary)
3524 crtl->stack_alignment_needed = boundary;
3525 if (crtl->max_used_stack_slot_alignment < crtl->stack_alignment_needed)
3526 crtl->max_used_stack_slot_alignment = crtl->stack_alignment_needed;
3527 if (crtl->preferred_stack_boundary < boundary)
3528 crtl->preferred_stack_boundary = boundary;
3530 #ifdef ARGS_GROW_DOWNWARD
3531 locate->slot_offset.constant = -initial_offset_ptr->constant;
3532 if (initial_offset_ptr->var)
3533 locate->slot_offset.var = size_binop (MINUS_EXPR, ssize_int (0),
3534 initial_offset_ptr->var);
3537 tree s2 = sizetree;
3538 if (where_pad != none
3539 && (!host_integerp (sizetree, 1)
3540 || (tree_low_cst (sizetree, 1) * BITS_PER_UNIT) % PARM_BOUNDARY))
3541 s2 = round_up (s2, PARM_BOUNDARY / BITS_PER_UNIT);
3542 SUB_PARM_SIZE (locate->slot_offset, s2);
3545 locate->slot_offset.constant += part_size_in_regs;
3547 if (!in_regs
3548 #ifdef REG_PARM_STACK_SPACE
3549 || REG_PARM_STACK_SPACE (fndecl) > 0
3550 #endif
3552 pad_to_arg_alignment (&locate->slot_offset, boundary,
3553 &locate->alignment_pad);
3555 locate->size.constant = (-initial_offset_ptr->constant
3556 - locate->slot_offset.constant);
3557 if (initial_offset_ptr->var)
3558 locate->size.var = size_binop (MINUS_EXPR,
3559 size_binop (MINUS_EXPR,
3560 ssize_int (0),
3561 initial_offset_ptr->var),
3562 locate->slot_offset.var);
3564 /* Pad_below needs the pre-rounded size to know how much to pad
3565 below. */
3566 locate->offset = locate->slot_offset;
3567 if (where_pad == downward)
3568 pad_below (&locate->offset, passed_mode, sizetree);
3570 #else /* !ARGS_GROW_DOWNWARD */
3571 if (!in_regs
3572 #ifdef REG_PARM_STACK_SPACE
3573 || REG_PARM_STACK_SPACE (fndecl) > 0
3574 #endif
3576 pad_to_arg_alignment (initial_offset_ptr, boundary,
3577 &locate->alignment_pad);
3578 locate->slot_offset = *initial_offset_ptr;
3580 #ifdef PUSH_ROUNDING
3581 if (passed_mode != BLKmode)
3582 sizetree = size_int (PUSH_ROUNDING (TREE_INT_CST_LOW (sizetree)));
3583 #endif
3585 /* Pad_below needs the pre-rounded size to know how much to pad below
3586 so this must be done before rounding up. */
3587 locate->offset = locate->slot_offset;
3588 if (where_pad == downward)
3589 pad_below (&locate->offset, passed_mode, sizetree);
3591 if (where_pad != none
3592 && (!host_integerp (sizetree, 1)
3593 || (tree_low_cst (sizetree, 1) * BITS_PER_UNIT) % PARM_BOUNDARY))
3594 sizetree = round_up (sizetree, PARM_BOUNDARY / BITS_PER_UNIT);
3596 ADD_PARM_SIZE (locate->size, sizetree);
3598 locate->size.constant -= part_size_in_regs;
3599 #endif /* ARGS_GROW_DOWNWARD */
3601 #ifdef FUNCTION_ARG_OFFSET
3602 locate->offset.constant += FUNCTION_ARG_OFFSET (passed_mode, type);
3603 #endif
3606 /* Round the stack offset in *OFFSET_PTR up to a multiple of BOUNDARY.
3607 BOUNDARY is measured in bits, but must be a multiple of a storage unit. */
3609 static void
3610 pad_to_arg_alignment (struct args_size *offset_ptr, int boundary,
3611 struct args_size *alignment_pad)
3613 tree save_var = NULL_TREE;
3614 HOST_WIDE_INT save_constant = 0;
3615 int boundary_in_bytes = boundary / BITS_PER_UNIT;
3616 HOST_WIDE_INT sp_offset = STACK_POINTER_OFFSET;
3618 #ifdef SPARC_STACK_BOUNDARY_HACK
3619 /* ??? The SPARC port may claim a STACK_BOUNDARY higher than
3620 the real alignment of %sp. However, when it does this, the
3621 alignment of %sp+STACK_POINTER_OFFSET is STACK_BOUNDARY. */
3622 if (SPARC_STACK_BOUNDARY_HACK)
3623 sp_offset = 0;
3624 #endif
3626 if (boundary > PARM_BOUNDARY)
3628 save_var = offset_ptr->var;
3629 save_constant = offset_ptr->constant;
3632 alignment_pad->var = NULL_TREE;
3633 alignment_pad->constant = 0;
3635 if (boundary > BITS_PER_UNIT)
3637 if (offset_ptr->var)
3639 tree sp_offset_tree = ssize_int (sp_offset);
3640 tree offset = size_binop (PLUS_EXPR,
3641 ARGS_SIZE_TREE (*offset_ptr),
3642 sp_offset_tree);
3643 #ifdef ARGS_GROW_DOWNWARD
3644 tree rounded = round_down (offset, boundary / BITS_PER_UNIT);
3645 #else
3646 tree rounded = round_up (offset, boundary / BITS_PER_UNIT);
3647 #endif
3649 offset_ptr->var = size_binop (MINUS_EXPR, rounded, sp_offset_tree);
3650 /* ARGS_SIZE_TREE includes constant term. */
3651 offset_ptr->constant = 0;
3652 if (boundary > PARM_BOUNDARY)
3653 alignment_pad->var = size_binop (MINUS_EXPR, offset_ptr->var,
3654 save_var);
3656 else
3658 offset_ptr->constant = -sp_offset +
3659 #ifdef ARGS_GROW_DOWNWARD
3660 FLOOR_ROUND (offset_ptr->constant + sp_offset, boundary_in_bytes);
3661 #else
3662 CEIL_ROUND (offset_ptr->constant + sp_offset, boundary_in_bytes);
3663 #endif
3664 if (boundary > PARM_BOUNDARY)
3665 alignment_pad->constant = offset_ptr->constant - save_constant;
3670 static void
3671 pad_below (struct args_size *offset_ptr, enum machine_mode passed_mode, tree sizetree)
3673 if (passed_mode != BLKmode)
3675 if (GET_MODE_BITSIZE (passed_mode) % PARM_BOUNDARY)
3676 offset_ptr->constant
3677 += (((GET_MODE_BITSIZE (passed_mode) + PARM_BOUNDARY - 1)
3678 / PARM_BOUNDARY * PARM_BOUNDARY / BITS_PER_UNIT)
3679 - GET_MODE_SIZE (passed_mode));
3681 else
3683 if (TREE_CODE (sizetree) != INTEGER_CST
3684 || (TREE_INT_CST_LOW (sizetree) * BITS_PER_UNIT) % PARM_BOUNDARY)
3686 /* Round the size up to multiple of PARM_BOUNDARY bits. */
3687 tree s2 = round_up (sizetree, PARM_BOUNDARY / BITS_PER_UNIT);
3688 /* Add it in. */
3689 ADD_PARM_SIZE (*offset_ptr, s2);
3690 SUB_PARM_SIZE (*offset_ptr, sizetree);
3696 /* True if register REGNO was alive at a place where `setjmp' was
3697 called and was set more than once or is an argument. Such regs may
3698 be clobbered by `longjmp'. */
3700 static bool
3701 regno_clobbered_at_setjmp (bitmap setjmp_crosses, int regno)
3703 /* There appear to be cases where some local vars never reach the
3704 backend but have bogus regnos. */
3705 if (regno >= max_reg_num ())
3706 return false;
3708 return ((REG_N_SETS (regno) > 1
3709 || REGNO_REG_SET_P (df_get_live_out (ENTRY_BLOCK_PTR), regno))
3710 && REGNO_REG_SET_P (setjmp_crosses, regno));
3713 /* Walk the tree of blocks describing the binding levels within a
3714 function and warn about variables the might be killed by setjmp or
3715 vfork. This is done after calling flow_analysis before register
3716 allocation since that will clobber the pseudo-regs to hard
3717 regs. */
3719 static void
3720 setjmp_vars_warning (bitmap setjmp_crosses, tree block)
3722 tree decl, sub;
3724 for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
3726 if (TREE_CODE (decl) == VAR_DECL
3727 && DECL_RTL_SET_P (decl)
3728 && REG_P (DECL_RTL (decl))
3729 && regno_clobbered_at_setjmp (setjmp_crosses, REGNO (DECL_RTL (decl))))
3730 warning (OPT_Wclobbered, "variable %q+D might be clobbered by"
3731 " %<longjmp%> or %<vfork%>", decl);
3734 for (sub = BLOCK_SUBBLOCKS (block); sub; sub = BLOCK_CHAIN (sub))
3735 setjmp_vars_warning (setjmp_crosses, sub);
3738 /* Do the appropriate part of setjmp_vars_warning
3739 but for arguments instead of local variables. */
3741 static void
3742 setjmp_args_warning (bitmap setjmp_crosses)
3744 tree decl;
3745 for (decl = DECL_ARGUMENTS (current_function_decl);
3746 decl; decl = TREE_CHAIN (decl))
3747 if (DECL_RTL (decl) != 0
3748 && REG_P (DECL_RTL (decl))
3749 && regno_clobbered_at_setjmp (setjmp_crosses, REGNO (DECL_RTL (decl))))
3750 warning (OPT_Wclobbered,
3751 "argument %q+D might be clobbered by %<longjmp%> or %<vfork%>",
3752 decl);
3755 /* Generate warning messages for variables live across setjmp. */
3757 void
3758 generate_setjmp_warnings (void)
3760 bitmap setjmp_crosses = regstat_get_setjmp_crosses ();
3762 if (n_basic_blocks == NUM_FIXED_BLOCKS
3763 || bitmap_empty_p (setjmp_crosses))
3764 return;
3766 setjmp_vars_warning (setjmp_crosses, DECL_INITIAL (current_function_decl));
3767 setjmp_args_warning (setjmp_crosses);
3771 /* Identify BLOCKs referenced by more than one NOTE_INSN_BLOCK_{BEG,END},
3772 and create duplicate blocks. */
3773 /* ??? Need an option to either create block fragments or to create
3774 abstract origin duplicates of a source block. It really depends
3775 on what optimization has been performed. */
3777 void
3778 reorder_blocks (void)
3780 tree block = DECL_INITIAL (current_function_decl);
3781 VEC(tree,heap) *block_stack;
3783 if (block == NULL_TREE)
3784 return;
3786 block_stack = VEC_alloc (tree, heap, 10);
3788 /* Reset the TREE_ASM_WRITTEN bit for all blocks. */
3789 clear_block_marks (block);
3791 /* Prune the old trees away, so that they don't get in the way. */
3792 BLOCK_SUBBLOCKS (block) = NULL_TREE;
3793 BLOCK_CHAIN (block) = NULL_TREE;
3795 /* Recreate the block tree from the note nesting. */
3796 reorder_blocks_1 (get_insns (), block, &block_stack);
3797 BLOCK_SUBBLOCKS (block) = blocks_nreverse (BLOCK_SUBBLOCKS (block));
3799 VEC_free (tree, heap, block_stack);
3802 /* Helper function for reorder_blocks. Reset TREE_ASM_WRITTEN. */
3804 void
3805 clear_block_marks (tree block)
3807 while (block)
3809 TREE_ASM_WRITTEN (block) = 0;
3810 clear_block_marks (BLOCK_SUBBLOCKS (block));
3811 block = BLOCK_CHAIN (block);
3815 static void
3816 reorder_blocks_1 (rtx insns, tree current_block, VEC(tree,heap) **p_block_stack)
3818 rtx insn;
3820 for (insn = insns; insn; insn = NEXT_INSN (insn))
3822 if (NOTE_P (insn))
3824 if (NOTE_KIND (insn) == NOTE_INSN_BLOCK_BEG)
3826 tree block = NOTE_BLOCK (insn);
3827 tree origin;
3829 origin = (BLOCK_FRAGMENT_ORIGIN (block)
3830 ? BLOCK_FRAGMENT_ORIGIN (block)
3831 : block);
3833 /* If we have seen this block before, that means it now
3834 spans multiple address regions. Create a new fragment. */
3835 if (TREE_ASM_WRITTEN (block))
3837 tree new_block = copy_node (block);
3839 BLOCK_FRAGMENT_ORIGIN (new_block) = origin;
3840 BLOCK_FRAGMENT_CHAIN (new_block)
3841 = BLOCK_FRAGMENT_CHAIN (origin);
3842 BLOCK_FRAGMENT_CHAIN (origin) = new_block;
3844 NOTE_BLOCK (insn) = new_block;
3845 block = new_block;
3848 BLOCK_SUBBLOCKS (block) = 0;
3849 TREE_ASM_WRITTEN (block) = 1;
3850 /* When there's only one block for the entire function,
3851 current_block == block and we mustn't do this, it
3852 will cause infinite recursion. */
3853 if (block != current_block)
3855 if (block != origin)
3856 gcc_assert (BLOCK_SUPERCONTEXT (origin) == current_block);
3858 BLOCK_SUPERCONTEXT (block) = current_block;
3859 BLOCK_CHAIN (block) = BLOCK_SUBBLOCKS (current_block);
3860 BLOCK_SUBBLOCKS (current_block) = block;
3861 current_block = origin;
3863 VEC_safe_push (tree, heap, *p_block_stack, block);
3865 else if (NOTE_KIND (insn) == NOTE_INSN_BLOCK_END)
3867 NOTE_BLOCK (insn) = VEC_pop (tree, *p_block_stack);
3868 BLOCK_SUBBLOCKS (current_block)
3869 = blocks_nreverse (BLOCK_SUBBLOCKS (current_block));
3870 current_block = BLOCK_SUPERCONTEXT (current_block);
3876 /* Reverse the order of elements in the chain T of blocks,
3877 and return the new head of the chain (old last element). */
3879 tree
3880 blocks_nreverse (tree t)
3882 tree prev = 0, decl, next;
3883 for (decl = t; decl; decl = next)
3885 next = BLOCK_CHAIN (decl);
3886 BLOCK_CHAIN (decl) = prev;
3887 prev = decl;
3889 return prev;
3892 /* Count the subblocks of the list starting with BLOCK. If VECTOR is
3893 non-NULL, list them all into VECTOR, in a depth-first preorder
3894 traversal of the block tree. Also clear TREE_ASM_WRITTEN in all
3895 blocks. */
3897 static int
3898 all_blocks (tree block, tree *vector)
3900 int n_blocks = 0;
3902 while (block)
3904 TREE_ASM_WRITTEN (block) = 0;
3906 /* Record this block. */
3907 if (vector)
3908 vector[n_blocks] = block;
3910 ++n_blocks;
3912 /* Record the subblocks, and their subblocks... */
3913 n_blocks += all_blocks (BLOCK_SUBBLOCKS (block),
3914 vector ? vector + n_blocks : 0);
3915 block = BLOCK_CHAIN (block);
3918 return n_blocks;
3921 /* Return a vector containing all the blocks rooted at BLOCK. The
3922 number of elements in the vector is stored in N_BLOCKS_P. The
3923 vector is dynamically allocated; it is the caller's responsibility
3924 to call `free' on the pointer returned. */
3926 static tree *
3927 get_block_vector (tree block, int *n_blocks_p)
3929 tree *block_vector;
3931 *n_blocks_p = all_blocks (block, NULL);
3932 block_vector = XNEWVEC (tree, *n_blocks_p);
3933 all_blocks (block, block_vector);
3935 return block_vector;
3938 static GTY(()) int next_block_index = 2;
3940 /* Set BLOCK_NUMBER for all the blocks in FN. */
3942 void
3943 number_blocks (tree fn)
3945 int i;
3946 int n_blocks;
3947 tree *block_vector;
3949 /* For SDB and XCOFF debugging output, we start numbering the blocks
3950 from 1 within each function, rather than keeping a running
3951 count. */
3952 #if defined (SDB_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
3953 if (write_symbols == SDB_DEBUG || write_symbols == XCOFF_DEBUG)
3954 next_block_index = 1;
3955 #endif
3957 block_vector = get_block_vector (DECL_INITIAL (fn), &n_blocks);
3959 /* The top-level BLOCK isn't numbered at all. */
3960 for (i = 1; i < n_blocks; ++i)
3961 /* We number the blocks from two. */
3962 BLOCK_NUMBER (block_vector[i]) = next_block_index++;
3964 free (block_vector);
3966 return;
3969 /* If VAR is present in a subblock of BLOCK, return the subblock. */
3971 tree
3972 debug_find_var_in_block_tree (tree var, tree block)
3974 tree t;
3976 for (t = BLOCK_VARS (block); t; t = TREE_CHAIN (t))
3977 if (t == var)
3978 return block;
3980 for (t = BLOCK_SUBBLOCKS (block); t; t = TREE_CHAIN (t))
3982 tree ret = debug_find_var_in_block_tree (var, t);
3983 if (ret)
3984 return ret;
3987 return NULL_TREE;
3990 /* Keep track of whether we're in a dummy function context. If we are,
3991 we don't want to invoke the set_current_function hook, because we'll
3992 get into trouble if the hook calls target_reinit () recursively or
3993 when the initial initialization is not yet complete. */
3995 static bool in_dummy_function;
3997 /* Invoke the target hook when setting cfun. Update the optimization options
3998 if the function uses different options than the default. */
4000 static void
4001 invoke_set_current_function_hook (tree fndecl)
4003 if (!in_dummy_function)
4005 tree opts = ((fndecl)
4006 ? DECL_FUNCTION_SPECIFIC_OPTIMIZATION (fndecl)
4007 : optimization_default_node);
4009 if (!opts)
4010 opts = optimization_default_node;
4012 /* Change optimization options if needed. */
4013 if (optimization_current_node != opts)
4015 optimization_current_node = opts;
4016 cl_optimization_restore (TREE_OPTIMIZATION (opts));
4019 targetm.set_current_function (fndecl);
4023 /* cfun should never be set directly; use this function. */
4025 void
4026 set_cfun (struct function *new_cfun)
4028 if (cfun != new_cfun)
4030 cfun = new_cfun;
4031 invoke_set_current_function_hook (new_cfun ? new_cfun->decl : NULL_TREE);
4035 /* Initialized with NOGC, making this poisonous to the garbage collector. */
4037 static VEC(function_p,heap) *cfun_stack;
4039 /* Push the current cfun onto the stack, and set cfun to new_cfun. */
4041 void
4042 push_cfun (struct function *new_cfun)
4044 VEC_safe_push (function_p, heap, cfun_stack, cfun);
4045 set_cfun (new_cfun);
4048 /* Pop cfun from the stack. */
4050 void
4051 pop_cfun (void)
4053 struct function *new_cfun = VEC_pop (function_p, cfun_stack);
4054 set_cfun (new_cfun);
4057 /* Return value of funcdef and increase it. */
4059 get_next_funcdef_no (void)
4061 return funcdef_no++;
4064 /* Allocate a function structure for FNDECL and set its contents
4065 to the defaults. Set cfun to the newly-allocated object.
4066 Some of the helper functions invoked during initialization assume
4067 that cfun has already been set. Therefore, assign the new object
4068 directly into cfun and invoke the back end hook explicitly at the
4069 very end, rather than initializing a temporary and calling set_cfun
4070 on it.
4072 ABSTRACT_P is true if this is a function that will never be seen by
4073 the middle-end. Such functions are front-end concepts (like C++
4074 function templates) that do not correspond directly to functions
4075 placed in object files. */
4077 void
4078 allocate_struct_function (tree fndecl, bool abstract_p)
4080 tree result;
4081 tree fntype = fndecl ? TREE_TYPE (fndecl) : NULL_TREE;
4083 cfun = GGC_CNEW (struct function);
4085 cfun->function_frequency = FUNCTION_FREQUENCY_NORMAL;
4087 init_eh_for_function ();
4089 if (init_machine_status)
4090 cfun->machine = (*init_machine_status) ();
4092 #ifdef OVERRIDE_ABI_FORMAT
4093 OVERRIDE_ABI_FORMAT (fndecl);
4094 #endif
4096 invoke_set_current_function_hook (fndecl);
4098 if (fndecl != NULL_TREE)
4100 DECL_STRUCT_FUNCTION (fndecl) = cfun;
4101 cfun->decl = fndecl;
4102 current_function_funcdef_no = get_next_funcdef_no ();
4104 result = DECL_RESULT (fndecl);
4105 if (!abstract_p && aggregate_value_p (result, fndecl))
4107 #ifdef PCC_STATIC_STRUCT_RETURN
4108 cfun->returns_pcc_struct = 1;
4109 #endif
4110 cfun->returns_struct = 1;
4113 cfun->stdarg
4114 = (fntype
4115 && TYPE_ARG_TYPES (fntype) != 0
4116 && (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype)))
4117 != void_type_node));
4119 /* Assume all registers in stdarg functions need to be saved. */
4120 cfun->va_list_gpr_size = VA_LIST_MAX_GPR_SIZE;
4121 cfun->va_list_fpr_size = VA_LIST_MAX_FPR_SIZE;
4125 /* This is like allocate_struct_function, but pushes a new cfun for FNDECL
4126 instead of just setting it. */
4128 void
4129 push_struct_function (tree fndecl)
4131 VEC_safe_push (function_p, heap, cfun_stack, cfun);
4132 allocate_struct_function (fndecl, false);
4135 /* Reset cfun, and other non-struct-function variables to defaults as
4136 appropriate for emitting rtl at the start of a function. */
4138 static void
4139 prepare_function_start (void)
4141 gcc_assert (!crtl->emit.x_last_insn);
4142 init_temp_slots ();
4143 init_emit ();
4144 init_varasm_status ();
4145 init_expr ();
4146 default_rtl_profile ();
4148 cse_not_expected = ! optimize;
4150 /* Caller save not needed yet. */
4151 caller_save_needed = 0;
4153 /* We haven't done register allocation yet. */
4154 reg_renumber = 0;
4156 /* Indicate that we have not instantiated virtual registers yet. */
4157 virtuals_instantiated = 0;
4159 /* Indicate that we want CONCATs now. */
4160 generating_concat_p = 1;
4162 /* Indicate we have no need of a frame pointer yet. */
4163 frame_pointer_needed = 0;
4166 /* Initialize the rtl expansion mechanism so that we can do simple things
4167 like generate sequences. This is used to provide a context during global
4168 initialization of some passes. You must call expand_dummy_function_end
4169 to exit this context. */
4171 void
4172 init_dummy_function_start (void)
4174 gcc_assert (!in_dummy_function);
4175 in_dummy_function = true;
4176 push_struct_function (NULL_TREE);
4177 prepare_function_start ();
4180 /* Generate RTL for the start of the function SUBR (a FUNCTION_DECL tree node)
4181 and initialize static variables for generating RTL for the statements
4182 of the function. */
4184 void
4185 init_function_start (tree subr)
4187 if (subr && DECL_STRUCT_FUNCTION (subr))
4188 set_cfun (DECL_STRUCT_FUNCTION (subr));
4189 else
4190 allocate_struct_function (subr, false);
4191 prepare_function_start ();
4193 /* Warn if this value is an aggregate type,
4194 regardless of which calling convention we are using for it. */
4195 if (AGGREGATE_TYPE_P (TREE_TYPE (DECL_RESULT (subr))))
4196 warning (OPT_Waggregate_return, "function returns an aggregate");
4199 /* Make sure all values used by the optimization passes have sane
4200 defaults. */
4201 unsigned int
4202 init_function_for_compilation (void)
4204 reg_renumber = 0;
4206 /* No prologue/epilogue insns yet. Make sure that these vectors are
4207 empty. */
4208 gcc_assert (VEC_length (int, prologue) == 0);
4209 gcc_assert (VEC_length (int, epilogue) == 0);
4210 gcc_assert (VEC_length (int, sibcall_epilogue) == 0);
4211 return 0;
4214 struct rtl_opt_pass pass_init_function =
4217 RTL_PASS,
4218 NULL, /* name */
4219 NULL, /* gate */
4220 init_function_for_compilation, /* execute */
4221 NULL, /* sub */
4222 NULL, /* next */
4223 0, /* static_pass_number */
4224 TV_NONE, /* tv_id */
4225 0, /* properties_required */
4226 0, /* properties_provided */
4227 0, /* properties_destroyed */
4228 0, /* todo_flags_start */
4229 0 /* todo_flags_finish */
4234 void
4235 expand_main_function (void)
4237 #if (defined(INVOKE__main) \
4238 || (!defined(HAS_INIT_SECTION) \
4239 && !defined(INIT_SECTION_ASM_OP) \
4240 && !defined(INIT_ARRAY_SECTION_ASM_OP)))
4241 emit_library_call (init_one_libfunc (NAME__MAIN), LCT_NORMAL, VOIDmode, 0);
4242 #endif
4245 /* Expand code to initialize the stack_protect_guard. This is invoked at
4246 the beginning of a function to be protected. */
4248 #ifndef HAVE_stack_protect_set
4249 # define HAVE_stack_protect_set 0
4250 # define gen_stack_protect_set(x,y) (gcc_unreachable (), NULL_RTX)
4251 #endif
4253 void
4254 stack_protect_prologue (void)
4256 tree guard_decl = targetm.stack_protect_guard ();
4257 rtx x, y;
4259 /* Avoid expand_expr here, because we don't want guard_decl pulled
4260 into registers unless absolutely necessary. And we know that
4261 crtl->stack_protect_guard is a local stack slot, so this skips
4262 all the fluff. */
4263 x = validize_mem (DECL_RTL (crtl->stack_protect_guard));
4264 y = validize_mem (DECL_RTL (guard_decl));
4266 /* Allow the target to copy from Y to X without leaking Y into a
4267 register. */
4268 if (HAVE_stack_protect_set)
4270 rtx insn = gen_stack_protect_set (x, y);
4271 if (insn)
4273 emit_insn (insn);
4274 return;
4278 /* Otherwise do a straight move. */
4279 emit_move_insn (x, y);
4282 /* Expand code to verify the stack_protect_guard. This is invoked at
4283 the end of a function to be protected. */
4285 #ifndef HAVE_stack_protect_test
4286 # define HAVE_stack_protect_test 0
4287 # define gen_stack_protect_test(x, y, z) (gcc_unreachable (), NULL_RTX)
4288 #endif
4290 void
4291 stack_protect_epilogue (void)
4293 tree guard_decl = targetm.stack_protect_guard ();
4294 rtx label = gen_label_rtx ();
4295 rtx x, y, tmp;
4297 /* Avoid expand_expr here, because we don't want guard_decl pulled
4298 into registers unless absolutely necessary. And we know that
4299 crtl->stack_protect_guard is a local stack slot, so this skips
4300 all the fluff. */
4301 x = validize_mem (DECL_RTL (crtl->stack_protect_guard));
4302 y = validize_mem (DECL_RTL (guard_decl));
4304 /* Allow the target to compare Y with X without leaking either into
4305 a register. */
4306 switch (HAVE_stack_protect_test != 0)
4308 case 1:
4309 tmp = gen_stack_protect_test (x, y, label);
4310 if (tmp)
4312 emit_insn (tmp);
4313 break;
4315 /* FALLTHRU */
4317 default:
4318 emit_cmp_and_jump_insns (x, y, EQ, NULL_RTX, ptr_mode, 1, label);
4319 break;
4322 /* The noreturn predictor has been moved to the tree level. The rtl-level
4323 predictors estimate this branch about 20%, which isn't enough to get
4324 things moved out of line. Since this is the only extant case of adding
4325 a noreturn function at the rtl level, it doesn't seem worth doing ought
4326 except adding the prediction by hand. */
4327 tmp = get_last_insn ();
4328 if (JUMP_P (tmp))
4329 predict_insn_def (tmp, PRED_NORETURN, TAKEN);
4331 expand_expr_stmt (targetm.stack_protect_fail ());
4332 emit_label (label);
4335 /* Start the RTL for a new function, and set variables used for
4336 emitting RTL.
4337 SUBR is the FUNCTION_DECL node.
4338 PARMS_HAVE_CLEANUPS is nonzero if there are cleanups associated with
4339 the function's parameters, which must be run at any return statement. */
4341 void
4342 expand_function_start (tree subr)
4344 /* Make sure volatile mem refs aren't considered
4345 valid operands of arithmetic insns. */
4346 init_recog_no_volatile ();
4348 crtl->profile
4349 = (profile_flag
4350 && ! DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (subr));
4352 crtl->limit_stack
4353 = (stack_limit_rtx != NULL_RTX && ! DECL_NO_LIMIT_STACK (subr));
4355 /* Make the label for return statements to jump to. Do not special
4356 case machines with special return instructions -- they will be
4357 handled later during jump, ifcvt, or epilogue creation. */
4358 return_label = gen_label_rtx ();
4360 /* Initialize rtx used to return the value. */
4361 /* Do this before assign_parms so that we copy the struct value address
4362 before any library calls that assign parms might generate. */
4364 /* Decide whether to return the value in memory or in a register. */
4365 if (aggregate_value_p (DECL_RESULT (subr), subr))
4367 /* Returning something that won't go in a register. */
4368 rtx value_address = 0;
4370 #ifdef PCC_STATIC_STRUCT_RETURN
4371 if (cfun->returns_pcc_struct)
4373 int size = int_size_in_bytes (TREE_TYPE (DECL_RESULT (subr)));
4374 value_address = assemble_static_space (size);
4376 else
4377 #endif
4379 rtx sv = targetm.calls.struct_value_rtx (TREE_TYPE (subr), 2);
4380 /* Expect to be passed the address of a place to store the value.
4381 If it is passed as an argument, assign_parms will take care of
4382 it. */
4383 if (sv)
4385 value_address = gen_reg_rtx (Pmode);
4386 emit_move_insn (value_address, sv);
4389 if (value_address)
4391 rtx x = value_address;
4392 if (!DECL_BY_REFERENCE (DECL_RESULT (subr)))
4394 x = gen_rtx_MEM (DECL_MODE (DECL_RESULT (subr)), x);
4395 set_mem_attributes (x, DECL_RESULT (subr), 1);
4397 SET_DECL_RTL (DECL_RESULT (subr), x);
4400 else if (DECL_MODE (DECL_RESULT (subr)) == VOIDmode)
4401 /* If return mode is void, this decl rtl should not be used. */
4402 SET_DECL_RTL (DECL_RESULT (subr), NULL_RTX);
4403 else
4405 /* Compute the return values into a pseudo reg, which we will copy
4406 into the true return register after the cleanups are done. */
4407 tree return_type = TREE_TYPE (DECL_RESULT (subr));
4408 if (TYPE_MODE (return_type) != BLKmode
4409 && targetm.calls.return_in_msb (return_type))
4410 /* expand_function_end will insert the appropriate padding in
4411 this case. Use the return value's natural (unpadded) mode
4412 within the function proper. */
4413 SET_DECL_RTL (DECL_RESULT (subr),
4414 gen_reg_rtx (TYPE_MODE (return_type)));
4415 else
4417 /* In order to figure out what mode to use for the pseudo, we
4418 figure out what the mode of the eventual return register will
4419 actually be, and use that. */
4420 rtx hard_reg = hard_function_value (return_type, subr, 0, 1);
4422 /* Structures that are returned in registers are not
4423 aggregate_value_p, so we may see a PARALLEL or a REG. */
4424 if (REG_P (hard_reg))
4425 SET_DECL_RTL (DECL_RESULT (subr),
4426 gen_reg_rtx (GET_MODE (hard_reg)));
4427 else
4429 gcc_assert (GET_CODE (hard_reg) == PARALLEL);
4430 SET_DECL_RTL (DECL_RESULT (subr), gen_group_rtx (hard_reg));
4434 /* Set DECL_REGISTER flag so that expand_function_end will copy the
4435 result to the real return register(s). */
4436 DECL_REGISTER (DECL_RESULT (subr)) = 1;
4439 /* Initialize rtx for parameters and local variables.
4440 In some cases this requires emitting insns. */
4441 assign_parms (subr);
4443 /* If function gets a static chain arg, store it. */
4444 if (cfun->static_chain_decl)
4446 tree parm = cfun->static_chain_decl;
4447 rtx local = gen_reg_rtx (Pmode);
4449 set_decl_incoming_rtl (parm, static_chain_incoming_rtx, false);
4450 SET_DECL_RTL (parm, local);
4451 mark_reg_pointer (local, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (parm))));
4453 emit_move_insn (local, static_chain_incoming_rtx);
4456 /* If the function receives a non-local goto, then store the
4457 bits we need to restore the frame pointer. */
4458 if (cfun->nonlocal_goto_save_area)
4460 tree t_save;
4461 rtx r_save;
4463 /* ??? We need to do this save early. Unfortunately here is
4464 before the frame variable gets declared. Help out... */
4465 tree var = TREE_OPERAND (cfun->nonlocal_goto_save_area, 0);
4466 if (!DECL_RTL_SET_P (var))
4467 expand_decl (var);
4469 t_save = build4 (ARRAY_REF, ptr_type_node,
4470 cfun->nonlocal_goto_save_area,
4471 integer_zero_node, NULL_TREE, NULL_TREE);
4472 r_save = expand_expr (t_save, NULL_RTX, VOIDmode, EXPAND_WRITE);
4473 r_save = convert_memory_address (Pmode, r_save);
4475 emit_move_insn (r_save, targetm.builtin_setjmp_frame_value ());
4476 update_nonlocal_goto_save_area ();
4479 /* The following was moved from init_function_start.
4480 The move is supposed to make sdb output more accurate. */
4481 /* Indicate the beginning of the function body,
4482 as opposed to parm setup. */
4483 emit_note (NOTE_INSN_FUNCTION_BEG);
4485 gcc_assert (NOTE_P (get_last_insn ()));
4487 parm_birth_insn = get_last_insn ();
4489 if (crtl->profile)
4491 #ifdef PROFILE_HOOK
4492 PROFILE_HOOK (current_function_funcdef_no);
4493 #endif
4496 /* After the display initializations is where the stack checking
4497 probe should go. */
4498 if(flag_stack_check)
4499 stack_check_probe_note = emit_note (NOTE_INSN_DELETED);
4501 /* Make sure there is a line number after the function entry setup code. */
4502 force_next_line_note ();
4505 /* Undo the effects of init_dummy_function_start. */
4506 void
4507 expand_dummy_function_end (void)
4509 gcc_assert (in_dummy_function);
4511 /* End any sequences that failed to be closed due to syntax errors. */
4512 while (in_sequence_p ())
4513 end_sequence ();
4515 /* Outside function body, can't compute type's actual size
4516 until next function's body starts. */
4518 free_after_parsing (cfun);
4519 free_after_compilation (cfun);
4520 pop_cfun ();
4521 in_dummy_function = false;
4524 /* Call DOIT for each hard register used as a return value from
4525 the current function. */
4527 void
4528 diddle_return_value (void (*doit) (rtx, void *), void *arg)
4530 rtx outgoing = crtl->return_rtx;
4532 if (! outgoing)
4533 return;
4535 if (REG_P (outgoing))
4536 (*doit) (outgoing, arg);
4537 else if (GET_CODE (outgoing) == PARALLEL)
4539 int i;
4541 for (i = 0; i < XVECLEN (outgoing, 0); i++)
4543 rtx x = XEXP (XVECEXP (outgoing, 0, i), 0);
4545 if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
4546 (*doit) (x, arg);
4551 static void
4552 do_clobber_return_reg (rtx reg, void *arg ATTRIBUTE_UNUSED)
4554 emit_clobber (reg);
4557 void
4558 clobber_return_register (void)
4560 diddle_return_value (do_clobber_return_reg, NULL);
4562 /* In case we do use pseudo to return value, clobber it too. */
4563 if (DECL_RTL_SET_P (DECL_RESULT (current_function_decl)))
4565 tree decl_result = DECL_RESULT (current_function_decl);
4566 rtx decl_rtl = DECL_RTL (decl_result);
4567 if (REG_P (decl_rtl) && REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER)
4569 do_clobber_return_reg (decl_rtl, NULL);
4574 static void
4575 do_use_return_reg (rtx reg, void *arg ATTRIBUTE_UNUSED)
4577 emit_use (reg);
4580 static void
4581 use_return_register (void)
4583 diddle_return_value (do_use_return_reg, NULL);
4586 /* Possibly warn about unused parameters. */
4587 void
4588 do_warn_unused_parameter (tree fn)
4590 tree decl;
4592 for (decl = DECL_ARGUMENTS (fn);
4593 decl; decl = TREE_CHAIN (decl))
4594 if (!TREE_USED (decl) && TREE_CODE (decl) == PARM_DECL
4595 && DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)
4596 && !TREE_NO_WARNING (decl))
4597 warning (OPT_Wunused_parameter, "unused parameter %q+D", decl);
4600 static GTY(()) rtx initial_trampoline;
4602 /* Generate RTL for the end of the current function. */
4604 void
4605 expand_function_end (void)
4607 rtx clobber_after;
4609 /* If arg_pointer_save_area was referenced only from a nested
4610 function, we will not have initialized it yet. Do that now. */
4611 if (arg_pointer_save_area && ! crtl->arg_pointer_save_area_init)
4612 get_arg_pointer_save_area ();
4614 /* If we are doing generic stack checking and this function makes calls,
4615 do a stack probe at the start of the function to ensure we have enough
4616 space for another stack frame. */
4617 if (flag_stack_check == GENERIC_STACK_CHECK)
4619 rtx insn, seq;
4621 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4622 if (CALL_P (insn))
4624 start_sequence ();
4625 probe_stack_range (STACK_OLD_CHECK_PROTECT,
4626 GEN_INT (STACK_CHECK_MAX_FRAME_SIZE));
4627 seq = get_insns ();
4628 end_sequence ();
4629 emit_insn_before (seq, stack_check_probe_note);
4630 break;
4634 /* End any sequences that failed to be closed due to syntax errors. */
4635 while (in_sequence_p ())
4636 end_sequence ();
4638 clear_pending_stack_adjust ();
4639 do_pending_stack_adjust ();
4641 /* Output a linenumber for the end of the function.
4642 SDB depends on this. */
4643 force_next_line_note ();
4644 set_curr_insn_source_location (input_location);
4646 /* Before the return label (if any), clobber the return
4647 registers so that they are not propagated live to the rest of
4648 the function. This can only happen with functions that drop
4649 through; if there had been a return statement, there would
4650 have either been a return rtx, or a jump to the return label.
4652 We delay actual code generation after the current_function_value_rtx
4653 is computed. */
4654 clobber_after = get_last_insn ();
4656 /* Output the label for the actual return from the function. */
4657 emit_label (return_label);
4659 if (USING_SJLJ_EXCEPTIONS)
4661 /* Let except.c know where it should emit the call to unregister
4662 the function context for sjlj exceptions. */
4663 if (flag_exceptions)
4664 sjlj_emit_function_exit_after (get_last_insn ());
4666 else
4668 /* We want to ensure that instructions that may trap are not
4669 moved into the epilogue by scheduling, because we don't
4670 always emit unwind information for the epilogue. */
4671 if (flag_non_call_exceptions)
4672 emit_insn (gen_blockage ());
4675 /* If this is an implementation of throw, do what's necessary to
4676 communicate between __builtin_eh_return and the epilogue. */
4677 expand_eh_return ();
4679 /* If scalar return value was computed in a pseudo-reg, or was a named
4680 return value that got dumped to the stack, copy that to the hard
4681 return register. */
4682 if (DECL_RTL_SET_P (DECL_RESULT (current_function_decl)))
4684 tree decl_result = DECL_RESULT (current_function_decl);
4685 rtx decl_rtl = DECL_RTL (decl_result);
4687 if (REG_P (decl_rtl)
4688 ? REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER
4689 : DECL_REGISTER (decl_result))
4691 rtx real_decl_rtl = crtl->return_rtx;
4693 /* This should be set in assign_parms. */
4694 gcc_assert (REG_FUNCTION_VALUE_P (real_decl_rtl));
4696 /* If this is a BLKmode structure being returned in registers,
4697 then use the mode computed in expand_return. Note that if
4698 decl_rtl is memory, then its mode may have been changed,
4699 but that crtl->return_rtx has not. */
4700 if (GET_MODE (real_decl_rtl) == BLKmode)
4701 PUT_MODE (real_decl_rtl, GET_MODE (decl_rtl));
4703 /* If a non-BLKmode return value should be padded at the least
4704 significant end of the register, shift it left by the appropriate
4705 amount. BLKmode results are handled using the group load/store
4706 machinery. */
4707 if (TYPE_MODE (TREE_TYPE (decl_result)) != BLKmode
4708 && targetm.calls.return_in_msb (TREE_TYPE (decl_result)))
4710 emit_move_insn (gen_rtx_REG (GET_MODE (decl_rtl),
4711 REGNO (real_decl_rtl)),
4712 decl_rtl);
4713 shift_return_value (GET_MODE (decl_rtl), true, real_decl_rtl);
4715 /* If a named return value dumped decl_return to memory, then
4716 we may need to re-do the PROMOTE_MODE signed/unsigned
4717 extension. */
4718 else if (GET_MODE (real_decl_rtl) != GET_MODE (decl_rtl))
4720 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (decl_result));
4722 if (targetm.calls.promote_function_return (TREE_TYPE (current_function_decl)))
4723 promote_mode (TREE_TYPE (decl_result), GET_MODE (decl_rtl),
4724 &unsignedp, 1);
4726 convert_move (real_decl_rtl, decl_rtl, unsignedp);
4728 else if (GET_CODE (real_decl_rtl) == PARALLEL)
4730 /* If expand_function_start has created a PARALLEL for decl_rtl,
4731 move the result to the real return registers. Otherwise, do
4732 a group load from decl_rtl for a named return. */
4733 if (GET_CODE (decl_rtl) == PARALLEL)
4734 emit_group_move (real_decl_rtl, decl_rtl);
4735 else
4736 emit_group_load (real_decl_rtl, decl_rtl,
4737 TREE_TYPE (decl_result),
4738 int_size_in_bytes (TREE_TYPE (decl_result)));
4740 /* In the case of complex integer modes smaller than a word, we'll
4741 need to generate some non-trivial bitfield insertions. Do that
4742 on a pseudo and not the hard register. */
4743 else if (GET_CODE (decl_rtl) == CONCAT
4744 && GET_MODE_CLASS (GET_MODE (decl_rtl)) == MODE_COMPLEX_INT
4745 && GET_MODE_BITSIZE (GET_MODE (decl_rtl)) <= BITS_PER_WORD)
4747 int old_generating_concat_p;
4748 rtx tmp;
4750 old_generating_concat_p = generating_concat_p;
4751 generating_concat_p = 0;
4752 tmp = gen_reg_rtx (GET_MODE (decl_rtl));
4753 generating_concat_p = old_generating_concat_p;
4755 emit_move_insn (tmp, decl_rtl);
4756 emit_move_insn (real_decl_rtl, tmp);
4758 else
4759 emit_move_insn (real_decl_rtl, decl_rtl);
4763 /* If returning a structure, arrange to return the address of the value
4764 in a place where debuggers expect to find it.
4766 If returning a structure PCC style,
4767 the caller also depends on this value.
4768 And cfun->returns_pcc_struct is not necessarily set. */
4769 if (cfun->returns_struct
4770 || cfun->returns_pcc_struct)
4772 rtx value_address = DECL_RTL (DECL_RESULT (current_function_decl));
4773 tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
4774 rtx outgoing;
4776 if (DECL_BY_REFERENCE (DECL_RESULT (current_function_decl)))
4777 type = TREE_TYPE (type);
4778 else
4779 value_address = XEXP (value_address, 0);
4781 outgoing = targetm.calls.function_value (build_pointer_type (type),
4782 current_function_decl, true);
4784 /* Mark this as a function return value so integrate will delete the
4785 assignment and USE below when inlining this function. */
4786 REG_FUNCTION_VALUE_P (outgoing) = 1;
4788 /* The address may be ptr_mode and OUTGOING may be Pmode. */
4789 value_address = convert_memory_address (GET_MODE (outgoing),
4790 value_address);
4792 emit_move_insn (outgoing, value_address);
4794 /* Show return register used to hold result (in this case the address
4795 of the result. */
4796 crtl->return_rtx = outgoing;
4799 /* Emit the actual code to clobber return register. */
4801 rtx seq;
4803 start_sequence ();
4804 clobber_return_register ();
4805 seq = get_insns ();
4806 end_sequence ();
4808 emit_insn_after (seq, clobber_after);
4811 /* Output the label for the naked return from the function. */
4812 if (naked_return_label)
4813 emit_label (naked_return_label);
4815 /* @@@ This is a kludge. We want to ensure that instructions that
4816 may trap are not moved into the epilogue by scheduling, because
4817 we don't always emit unwind information for the epilogue. */
4818 if (! USING_SJLJ_EXCEPTIONS && flag_non_call_exceptions)
4819 emit_insn (gen_blockage ());
4821 /* If stack protection is enabled for this function, check the guard. */
4822 if (crtl->stack_protect_guard)
4823 stack_protect_epilogue ();
4825 /* If we had calls to alloca, and this machine needs
4826 an accurate stack pointer to exit the function,
4827 insert some code to save and restore the stack pointer. */
4828 if (! EXIT_IGNORE_STACK
4829 && cfun->calls_alloca)
4831 rtx tem = 0;
4833 emit_stack_save (SAVE_FUNCTION, &tem, parm_birth_insn);
4834 emit_stack_restore (SAVE_FUNCTION, tem, NULL_RTX);
4837 /* ??? This should no longer be necessary since stupid is no longer with
4838 us, but there are some parts of the compiler (eg reload_combine, and
4839 sh mach_dep_reorg) that still try and compute their own lifetime info
4840 instead of using the general framework. */
4841 use_return_register ();
4845 get_arg_pointer_save_area (void)
4847 rtx ret = arg_pointer_save_area;
4849 if (! ret)
4851 ret = assign_stack_local (Pmode, GET_MODE_SIZE (Pmode), 0);
4852 arg_pointer_save_area = ret;
4855 if (! crtl->arg_pointer_save_area_init)
4857 rtx seq;
4859 /* Save the arg pointer at the beginning of the function. The
4860 generated stack slot may not be a valid memory address, so we
4861 have to check it and fix it if necessary. */
4862 start_sequence ();
4863 emit_move_insn (validize_mem (ret),
4864 crtl->args.internal_arg_pointer);
4865 seq = get_insns ();
4866 end_sequence ();
4868 push_topmost_sequence ();
4869 emit_insn_after (seq, entry_of_function ());
4870 pop_topmost_sequence ();
4873 return ret;
4876 /* Extend a vector that records the INSN_UIDs of INSNS
4877 (a list of one or more insns). */
4879 static void
4880 record_insns (rtx insns, VEC(int,heap) **vecp)
4882 rtx tmp;
4884 for (tmp = insns; tmp != NULL_RTX; tmp = NEXT_INSN (tmp))
4885 VEC_safe_push (int, heap, *vecp, INSN_UID (tmp));
4888 /* Set the locator of the insn chain starting at INSN to LOC. */
4889 static void
4890 set_insn_locators (rtx insn, int loc)
4892 while (insn != NULL_RTX)
4894 if (INSN_P (insn))
4895 INSN_LOCATOR (insn) = loc;
4896 insn = NEXT_INSN (insn);
4900 /* Determine how many INSN_UIDs in VEC are part of INSN. Because we can
4901 be running after reorg, SEQUENCE rtl is possible. */
4903 static int
4904 contains (const_rtx insn, VEC(int,heap) **vec)
4906 int i, j;
4908 if (NONJUMP_INSN_P (insn)
4909 && GET_CODE (PATTERN (insn)) == SEQUENCE)
4911 int count = 0;
4912 for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
4913 for (j = VEC_length (int, *vec) - 1; j >= 0; --j)
4914 if (INSN_UID (XVECEXP (PATTERN (insn), 0, i))
4915 == VEC_index (int, *vec, j))
4916 count++;
4917 return count;
4919 else
4921 for (j = VEC_length (int, *vec) - 1; j >= 0; --j)
4922 if (INSN_UID (insn) == VEC_index (int, *vec, j))
4923 return 1;
4925 return 0;
4929 prologue_epilogue_contains (const_rtx insn)
4931 if (contains (insn, &prologue))
4932 return 1;
4933 if (contains (insn, &epilogue))
4934 return 1;
4935 return 0;
4939 sibcall_epilogue_contains (const_rtx insn)
4941 if (sibcall_epilogue)
4942 return contains (insn, &sibcall_epilogue);
4943 return 0;
4946 #ifdef HAVE_return
4947 /* Insert gen_return at the end of block BB. This also means updating
4948 block_for_insn appropriately. */
4950 static void
4951 emit_return_into_block (basic_block bb)
4953 emit_jump_insn_after (gen_return (), BB_END (bb));
4955 #endif /* HAVE_return */
4957 /* Generate the prologue and epilogue RTL if the machine supports it. Thread
4958 this into place with notes indicating where the prologue ends and where
4959 the epilogue begins. Update the basic block information when possible. */
4961 static void
4962 thread_prologue_and_epilogue_insns (void)
4964 int inserted = 0;
4965 edge e;
4966 #if defined (HAVE_sibcall_epilogue) || defined (HAVE_epilogue) || defined (HAVE_return) || defined (HAVE_prologue)
4967 rtx seq;
4968 #endif
4969 #if defined (HAVE_epilogue) || defined(HAVE_return)
4970 rtx epilogue_end = NULL_RTX;
4971 #endif
4972 edge_iterator ei;
4974 rtl_profile_for_bb (ENTRY_BLOCK_PTR);
4975 #ifdef HAVE_prologue
4976 if (HAVE_prologue)
4978 start_sequence ();
4979 seq = gen_prologue ();
4980 emit_insn (seq);
4982 /* Insert an explicit USE for the frame pointer
4983 if the profiling is on and the frame pointer is required. */
4984 if (crtl->profile && frame_pointer_needed)
4985 emit_use (hard_frame_pointer_rtx);
4987 /* Retain a map of the prologue insns. */
4988 record_insns (seq, &prologue);
4989 emit_note (NOTE_INSN_PROLOGUE_END);
4991 #ifndef PROFILE_BEFORE_PROLOGUE
4992 /* Ensure that instructions are not moved into the prologue when
4993 profiling is on. The call to the profiling routine can be
4994 emitted within the live range of a call-clobbered register. */
4995 if (crtl->profile)
4996 emit_insn (gen_blockage ());
4997 #endif
4999 seq = get_insns ();
5000 end_sequence ();
5001 set_insn_locators (seq, prologue_locator);
5003 /* Can't deal with multiple successors of the entry block
5004 at the moment. Function should always have at least one
5005 entry point. */
5006 gcc_assert (single_succ_p (ENTRY_BLOCK_PTR));
5008 insert_insn_on_edge (seq, single_succ_edge (ENTRY_BLOCK_PTR));
5009 inserted = 1;
5011 #endif
5013 /* If the exit block has no non-fake predecessors, we don't need
5014 an epilogue. */
5015 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5016 if ((e->flags & EDGE_FAKE) == 0)
5017 break;
5018 if (e == NULL)
5019 goto epilogue_done;
5021 rtl_profile_for_bb (EXIT_BLOCK_PTR);
5022 #ifdef HAVE_return
5023 if (optimize && HAVE_return)
5025 /* If we're allowed to generate a simple return instruction,
5026 then by definition we don't need a full epilogue. Examine
5027 the block that falls through to EXIT. If it does not
5028 contain any code, examine its predecessors and try to
5029 emit (conditional) return instructions. */
5031 basic_block last;
5032 rtx label;
5034 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5035 if (e->flags & EDGE_FALLTHRU)
5036 break;
5037 if (e == NULL)
5038 goto epilogue_done;
5039 last = e->src;
5041 /* Verify that there are no active instructions in the last block. */
5042 label = BB_END (last);
5043 while (label && !LABEL_P (label))
5045 if (active_insn_p (label))
5046 break;
5047 label = PREV_INSN (label);
5050 if (BB_HEAD (last) == label && LABEL_P (label))
5052 edge_iterator ei2;
5054 for (ei2 = ei_start (last->preds); (e = ei_safe_edge (ei2)); )
5056 basic_block bb = e->src;
5057 rtx jump;
5059 if (bb == ENTRY_BLOCK_PTR)
5061 ei_next (&ei2);
5062 continue;
5065 jump = BB_END (bb);
5066 if (!JUMP_P (jump) || JUMP_LABEL (jump) != label)
5068 ei_next (&ei2);
5069 continue;
5072 /* If we have an unconditional jump, we can replace that
5073 with a simple return instruction. */
5074 if (simplejump_p (jump))
5076 emit_return_into_block (bb);
5077 delete_insn (jump);
5080 /* If we have a conditional jump, we can try to replace
5081 that with a conditional return instruction. */
5082 else if (condjump_p (jump))
5084 if (! redirect_jump (jump, 0, 0))
5086 ei_next (&ei2);
5087 continue;
5090 /* If this block has only one successor, it both jumps
5091 and falls through to the fallthru block, so we can't
5092 delete the edge. */
5093 if (single_succ_p (bb))
5095 ei_next (&ei2);
5096 continue;
5099 else
5101 ei_next (&ei2);
5102 continue;
5105 /* Fix up the CFG for the successful change we just made. */
5106 redirect_edge_succ (e, EXIT_BLOCK_PTR);
5109 /* Emit a return insn for the exit fallthru block. Whether
5110 this is still reachable will be determined later. */
5112 emit_barrier_after (BB_END (last));
5113 emit_return_into_block (last);
5114 epilogue_end = BB_END (last);
5115 single_succ_edge (last)->flags &= ~EDGE_FALLTHRU;
5116 goto epilogue_done;
5119 #endif
5120 /* Find the edge that falls through to EXIT. Other edges may exist
5121 due to RETURN instructions, but those don't need epilogues.
5122 There really shouldn't be a mixture -- either all should have
5123 been converted or none, however... */
5125 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5126 if (e->flags & EDGE_FALLTHRU)
5127 break;
5128 if (e == NULL)
5129 goto epilogue_done;
5131 #ifdef HAVE_epilogue
5132 if (HAVE_epilogue)
5134 start_sequence ();
5135 epilogue_end = emit_note (NOTE_INSN_EPILOGUE_BEG);
5136 seq = gen_epilogue ();
5137 emit_jump_insn (seq);
5139 /* Retain a map of the epilogue insns. */
5140 record_insns (seq, &epilogue);
5141 set_insn_locators (seq, epilogue_locator);
5143 seq = get_insns ();
5144 end_sequence ();
5146 insert_insn_on_edge (seq, e);
5147 inserted = 1;
5149 else
5150 #endif
5152 basic_block cur_bb;
5154 if (! next_active_insn (BB_END (e->src)))
5155 goto epilogue_done;
5156 /* We have a fall-through edge to the exit block, the source is not
5157 at the end of the function, and there will be an assembler epilogue
5158 at the end of the function.
5159 We can't use force_nonfallthru here, because that would try to
5160 use return. Inserting a jump 'by hand' is extremely messy, so
5161 we take advantage of cfg_layout_finalize using
5162 fixup_fallthru_exit_predecessor. */
5163 cfg_layout_initialize (0);
5164 FOR_EACH_BB (cur_bb)
5165 if (cur_bb->index >= NUM_FIXED_BLOCKS
5166 && cur_bb->next_bb->index >= NUM_FIXED_BLOCKS)
5167 cur_bb->aux = cur_bb->next_bb;
5168 cfg_layout_finalize ();
5170 epilogue_done:
5171 default_rtl_profile ();
5173 if (inserted)
5175 commit_edge_insertions ();
5177 /* The epilogue insns we inserted may cause the exit edge to no longer
5178 be fallthru. */
5179 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5181 if (((e->flags & EDGE_FALLTHRU) != 0)
5182 && returnjump_p (BB_END (e->src)))
5183 e->flags &= ~EDGE_FALLTHRU;
5187 #ifdef HAVE_sibcall_epilogue
5188 /* Emit sibling epilogues before any sibling call sites. */
5189 for (ei = ei_start (EXIT_BLOCK_PTR->preds); (e = ei_safe_edge (ei)); )
5191 basic_block bb = e->src;
5192 rtx insn = BB_END (bb);
5194 if (!CALL_P (insn)
5195 || ! SIBLING_CALL_P (insn))
5197 ei_next (&ei);
5198 continue;
5201 start_sequence ();
5202 emit_insn (gen_sibcall_epilogue ());
5203 seq = get_insns ();
5204 end_sequence ();
5206 /* Retain a map of the epilogue insns. Used in life analysis to
5207 avoid getting rid of sibcall epilogue insns. Do this before we
5208 actually emit the sequence. */
5209 record_insns (seq, &sibcall_epilogue);
5210 set_insn_locators (seq, epilogue_locator);
5212 emit_insn_before (seq, insn);
5213 ei_next (&ei);
5215 #endif
5217 #ifdef HAVE_epilogue
5218 if (epilogue_end)
5220 rtx insn, next;
5222 /* Similarly, move any line notes that appear after the epilogue.
5223 There is no need, however, to be quite so anal about the existence
5224 of such a note. Also possibly move
5225 NOTE_INSN_FUNCTION_BEG notes, as those can be relevant for debug
5226 info generation. */
5227 for (insn = epilogue_end; insn; insn = next)
5229 next = NEXT_INSN (insn);
5230 if (NOTE_P (insn)
5231 && (NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG))
5232 reorder_insns (insn, insn, PREV_INSN (epilogue_end));
5235 #endif
5237 /* Threading the prologue and epilogue changes the artificial refs
5238 in the entry and exit blocks. */
5239 epilogue_completed = 1;
5240 df_update_entry_exit_and_calls ();
5243 /* Reposition the prologue-end and epilogue-begin notes after instruction
5244 scheduling and delayed branch scheduling. */
5246 void
5247 reposition_prologue_and_epilogue_notes (void)
5249 #if defined (HAVE_prologue) || defined (HAVE_epilogue)
5250 rtx insn, last, note;
5251 int len;
5253 if ((len = VEC_length (int, prologue)) > 0)
5255 last = 0, note = 0;
5257 /* Scan from the beginning until we reach the last prologue insn.
5258 We apparently can't depend on basic_block_{head,end} after
5259 reorg has run. */
5260 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
5262 if (NOTE_P (insn))
5264 if (NOTE_KIND (insn) == NOTE_INSN_PROLOGUE_END)
5265 note = insn;
5267 else if (contains (insn, &prologue))
5269 last = insn;
5270 if (--len == 0)
5271 break;
5275 if (last)
5277 /* Find the prologue-end note if we haven't already, and
5278 move it to just after the last prologue insn. */
5279 if (note == 0)
5281 for (note = last; (note = NEXT_INSN (note));)
5282 if (NOTE_P (note)
5283 && NOTE_KIND (note) == NOTE_INSN_PROLOGUE_END)
5284 break;
5287 /* Avoid placing note between CODE_LABEL and BASIC_BLOCK note. */
5288 if (LABEL_P (last))
5289 last = NEXT_INSN (last);
5290 reorder_insns (note, note, last);
5294 if ((len = VEC_length (int, epilogue)) > 0)
5296 last = 0, note = 0;
5298 /* Scan from the end until we reach the first epilogue insn.
5299 We apparently can't depend on basic_block_{head,end} after
5300 reorg has run. */
5301 for (insn = get_last_insn (); insn; insn = PREV_INSN (insn))
5303 if (NOTE_P (insn))
5305 if (NOTE_KIND (insn) == NOTE_INSN_EPILOGUE_BEG)
5306 note = insn;
5308 else if (contains (insn, &epilogue))
5310 last = insn;
5311 if (--len == 0)
5312 break;
5316 if (last)
5318 /* Find the epilogue-begin note if we haven't already, and
5319 move it to just before the first epilogue insn. */
5320 if (note == 0)
5322 for (note = insn; (note = PREV_INSN (note));)
5323 if (NOTE_P (note)
5324 && NOTE_KIND (note) == NOTE_INSN_EPILOGUE_BEG)
5325 break;
5328 if (PREV_INSN (last) != note)
5329 reorder_insns (note, note, PREV_INSN (last));
5332 #endif /* HAVE_prologue or HAVE_epilogue */
5335 /* Returns the name of the current function. */
5336 const char *
5337 current_function_name (void)
5339 return lang_hooks.decl_printable_name (cfun->decl, 2);
5343 static unsigned int
5344 rest_of_handle_check_leaf_regs (void)
5346 #ifdef LEAF_REGISTERS
5347 current_function_uses_only_leaf_regs
5348 = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
5349 #endif
5350 return 0;
5353 /* Insert a TYPE into the used types hash table of CFUN. */
5354 static void
5355 used_types_insert_helper (tree type, struct function *func)
5357 if (type != NULL && func != NULL)
5359 void **slot;
5361 if (func->used_types_hash == NULL)
5362 func->used_types_hash = htab_create_ggc (37, htab_hash_pointer,
5363 htab_eq_pointer, NULL);
5364 slot = htab_find_slot (func->used_types_hash, type, INSERT);
5365 if (*slot == NULL)
5366 *slot = type;
5370 /* Given a type, insert it into the used hash table in cfun. */
5371 void
5372 used_types_insert (tree t)
5374 while (POINTER_TYPE_P (t) || TREE_CODE (t) == ARRAY_TYPE)
5375 t = TREE_TYPE (t);
5376 t = TYPE_MAIN_VARIANT (t);
5377 if (debug_info_level > DINFO_LEVEL_NONE)
5378 used_types_insert_helper (t, cfun);
5381 struct rtl_opt_pass pass_leaf_regs =
5384 RTL_PASS,
5385 NULL, /* name */
5386 NULL, /* gate */
5387 rest_of_handle_check_leaf_regs, /* execute */
5388 NULL, /* sub */
5389 NULL, /* next */
5390 0, /* static_pass_number */
5391 TV_NONE, /* tv_id */
5392 0, /* properties_required */
5393 0, /* properties_provided */
5394 0, /* properties_destroyed */
5395 0, /* todo_flags_start */
5396 0 /* todo_flags_finish */
5400 static unsigned int
5401 rest_of_handle_thread_prologue_and_epilogue (void)
5403 if (optimize)
5404 cleanup_cfg (CLEANUP_EXPENSIVE);
5405 /* On some machines, the prologue and epilogue code, or parts thereof,
5406 can be represented as RTL. Doing so lets us schedule insns between
5407 it and the rest of the code and also allows delayed branch
5408 scheduling to operate in the epilogue. */
5410 thread_prologue_and_epilogue_insns ();
5411 return 0;
5414 struct rtl_opt_pass pass_thread_prologue_and_epilogue =
5417 RTL_PASS,
5418 "pro_and_epilogue", /* name */
5419 NULL, /* gate */
5420 rest_of_handle_thread_prologue_and_epilogue, /* execute */
5421 NULL, /* sub */
5422 NULL, /* next */
5423 0, /* static_pass_number */
5424 TV_THREAD_PROLOGUE_AND_EPILOGUE, /* tv_id */
5425 0, /* properties_required */
5426 0, /* properties_provided */
5427 0, /* properties_destroyed */
5428 TODO_verify_flow, /* todo_flags_start */
5429 TODO_dump_func |
5430 TODO_df_verify |
5431 TODO_df_finish | TODO_verify_rtl_sharing |
5432 TODO_ggc_collect /* todo_flags_finish */
5437 /* This mini-pass fixes fall-out from SSA in asm statements that have
5438 in-out constraints. Say you start with
5440 orig = inout;
5441 asm ("": "+mr" (inout));
5442 use (orig);
5444 which is transformed very early to use explicit output and match operands:
5446 orig = inout;
5447 asm ("": "=mr" (inout) : "0" (inout));
5448 use (orig);
5450 Or, after SSA and copyprop,
5452 asm ("": "=mr" (inout_2) : "0" (inout_1));
5453 use (inout_1);
5455 Clearly inout_2 and inout_1 can't be coalesced easily anymore, as
5456 they represent two separate values, so they will get different pseudo
5457 registers during expansion. Then, since the two operands need to match
5458 per the constraints, but use different pseudo registers, reload can
5459 only register a reload for these operands. But reloads can only be
5460 satisfied by hardregs, not by memory, so we need a register for this
5461 reload, just because we are presented with non-matching operands.
5462 So, even though we allow memory for this operand, no memory can be
5463 used for it, just because the two operands don't match. This can
5464 cause reload failures on register-starved targets.
5466 So it's a symptom of reload not being able to use memory for reloads
5467 or, alternatively it's also a symptom of both operands not coming into
5468 reload as matching (in which case the pseudo could go to memory just
5469 fine, as the alternative allows it, and no reload would be necessary).
5470 We fix the latter problem here, by transforming
5472 asm ("": "=mr" (inout_2) : "0" (inout_1));
5474 back to
5476 inout_2 = inout_1;
5477 asm ("": "=mr" (inout_2) : "0" (inout_2)); */
5479 static void
5480 match_asm_constraints_1 (rtx insn, rtx *p_sets, int noutputs)
5482 int i;
5483 bool changed = false;
5484 rtx op = SET_SRC (p_sets[0]);
5485 int ninputs = ASM_OPERANDS_INPUT_LENGTH (op);
5486 rtvec inputs = ASM_OPERANDS_INPUT_VEC (op);
5487 bool *output_matched = XALLOCAVEC (bool, noutputs);
5489 memset (output_matched, 0, noutputs * sizeof (bool));
5490 for (i = 0; i < ninputs; i++)
5492 rtx input, output, insns;
5493 const char *constraint = ASM_OPERANDS_INPUT_CONSTRAINT (op, i);
5494 char *end;
5495 int match, j;
5497 if (*constraint == '%')
5498 constraint++;
5500 match = strtoul (constraint, &end, 10);
5501 if (end == constraint)
5502 continue;
5504 gcc_assert (match < noutputs);
5505 output = SET_DEST (p_sets[match]);
5506 input = RTVEC_ELT (inputs, i);
5507 /* Only do the transformation for pseudos. */
5508 if (! REG_P (output)
5509 || rtx_equal_p (output, input)
5510 || (GET_MODE (input) != VOIDmode
5511 && GET_MODE (input) != GET_MODE (output)))
5512 continue;
5514 /* We can't do anything if the output is also used as input,
5515 as we're going to overwrite it. */
5516 for (j = 0; j < ninputs; j++)
5517 if (reg_overlap_mentioned_p (output, RTVEC_ELT (inputs, j)))
5518 break;
5519 if (j != ninputs)
5520 continue;
5522 /* Avoid changing the same input several times. For
5523 asm ("" : "=mr" (out1), "=mr" (out2) : "0" (in), "1" (in));
5524 only change in once (to out1), rather than changing it
5525 first to out1 and afterwards to out2. */
5526 if (i > 0)
5528 for (j = 0; j < noutputs; j++)
5529 if (output_matched[j] && input == SET_DEST (p_sets[j]))
5530 break;
5531 if (j != noutputs)
5532 continue;
5534 output_matched[match] = true;
5536 start_sequence ();
5537 emit_move_insn (output, input);
5538 insns = get_insns ();
5539 end_sequence ();
5540 emit_insn_before (insns, insn);
5542 /* Now replace all mentions of the input with output. We can't
5543 just replace the occurrence in inputs[i], as the register might
5544 also be used in some other input (or even in an address of an
5545 output), which would mean possibly increasing the number of
5546 inputs by one (namely 'output' in addition), which might pose
5547 a too complicated problem for reload to solve. E.g. this situation:
5549 asm ("" : "=r" (output), "=m" (input) : "0" (input))
5551 Here 'input' is used in two occurrences as input (once for the
5552 input operand, once for the address in the second output operand).
5553 If we would replace only the occurrence of the input operand (to
5554 make the matching) we would be left with this:
5556 output = input
5557 asm ("" : "=r" (output), "=m" (input) : "0" (output))
5559 Now we suddenly have two different input values (containing the same
5560 value, but different pseudos) where we formerly had only one.
5561 With more complicated asms this might lead to reload failures
5562 which wouldn't have happen without this pass. So, iterate over
5563 all operands and replace all occurrences of the register used. */
5564 for (j = 0; j < noutputs; j++)
5565 if (!rtx_equal_p (SET_DEST (p_sets[j]), input)
5566 && reg_overlap_mentioned_p (input, SET_DEST (p_sets[j])))
5567 SET_DEST (p_sets[j]) = replace_rtx (SET_DEST (p_sets[j]),
5568 input, output);
5569 for (j = 0; j < ninputs; j++)
5570 if (reg_overlap_mentioned_p (input, RTVEC_ELT (inputs, j)))
5571 RTVEC_ELT (inputs, j) = replace_rtx (RTVEC_ELT (inputs, j),
5572 input, output);
5574 changed = true;
5577 if (changed)
5578 df_insn_rescan (insn);
5581 static unsigned
5582 rest_of_match_asm_constraints (void)
5584 basic_block bb;
5585 rtx insn, pat, *p_sets;
5586 int noutputs;
5588 if (!crtl->has_asm_statement)
5589 return 0;
5591 df_set_flags (DF_DEFER_INSN_RESCAN);
5592 FOR_EACH_BB (bb)
5594 FOR_BB_INSNS (bb, insn)
5596 if (!INSN_P (insn))
5597 continue;
5599 pat = PATTERN (insn);
5600 if (GET_CODE (pat) == PARALLEL)
5601 p_sets = &XVECEXP (pat, 0, 0), noutputs = XVECLEN (pat, 0);
5602 else if (GET_CODE (pat) == SET)
5603 p_sets = &PATTERN (insn), noutputs = 1;
5604 else
5605 continue;
5607 if (GET_CODE (*p_sets) == SET
5608 && GET_CODE (SET_SRC (*p_sets)) == ASM_OPERANDS)
5609 match_asm_constraints_1 (insn, p_sets, noutputs);
5613 return TODO_df_finish;
5616 struct rtl_opt_pass pass_match_asm_constraints =
5619 RTL_PASS,
5620 "asmcons", /* name */
5621 NULL, /* gate */
5622 rest_of_match_asm_constraints, /* execute */
5623 NULL, /* sub */
5624 NULL, /* next */
5625 0, /* static_pass_number */
5626 TV_NONE, /* tv_id */
5627 0, /* properties_required */
5628 0, /* properties_provided */
5629 0, /* properties_destroyed */
5630 0, /* todo_flags_start */
5631 TODO_dump_func /* todo_flags_finish */
5636 #include "gt-function.h"