PR rtl-optimization/57003
[official-gcc.git] / gcc / calls.c
blob9c19f38302a3e7b9fb59a3a2f2153ec9a4cae6af
1 /* Convert function calls to rtl insns, for GNU C compiler.
2 Copyright (C) 1989-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "rtl.h"
25 #include "tree.h"
26 #include "stor-layout.h"
27 #include "varasm.h"
28 #include "stringpool.h"
29 #include "attribs.h"
30 #include "basic-block.h"
31 #include "tree-ssa-alias.h"
32 #include "internal-fn.h"
33 #include "gimple-expr.h"
34 #include "is-a.h"
35 #include "gimple.h"
36 #include "flags.h"
37 #include "expr.h"
38 #include "optabs.h"
39 #include "libfuncs.h"
40 #include "function.h"
41 #include "regs.h"
42 #include "diagnostic-core.h"
43 #include "output.h"
44 #include "tm_p.h"
45 #include "timevar.h"
46 #include "sbitmap.h"
47 #include "langhooks.h"
48 #include "target.h"
49 #include "cgraph.h"
50 #include "except.h"
51 #include "dbgcnt.h"
52 #include "rtl-iter.h"
54 /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
55 #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
57 /* Data structure and subroutines used within expand_call. */
59 struct arg_data
61 /* Tree node for this argument. */
62 tree tree_value;
63 /* Mode for value; TYPE_MODE unless promoted. */
64 enum machine_mode mode;
65 /* Current RTL value for argument, or 0 if it isn't precomputed. */
66 rtx value;
67 /* Initially-compute RTL value for argument; only for const functions. */
68 rtx initial_value;
69 /* Register to pass this argument in, 0 if passed on stack, or an
70 PARALLEL if the arg is to be copied into multiple non-contiguous
71 registers. */
72 rtx reg;
73 /* Register to pass this argument in when generating tail call sequence.
74 This is not the same register as for normal calls on machines with
75 register windows. */
76 rtx tail_call_reg;
77 /* If REG is a PARALLEL, this is a copy of VALUE pulled into the correct
78 form for emit_group_move. */
79 rtx parallel_value;
80 /* If REG was promoted from the actual mode of the argument expression,
81 indicates whether the promotion is sign- or zero-extended. */
82 int unsignedp;
83 /* Number of bytes to put in registers. 0 means put the whole arg
84 in registers. Also 0 if not passed in registers. */
85 int partial;
86 /* Nonzero if argument must be passed on stack.
87 Note that some arguments may be passed on the stack
88 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
89 pass_on_stack identifies arguments that *cannot* go in registers. */
90 int pass_on_stack;
91 /* Some fields packaged up for locate_and_pad_parm. */
92 struct locate_and_pad_arg_data locate;
93 /* Location on the stack at which parameter should be stored. The store
94 has already been done if STACK == VALUE. */
95 rtx stack;
96 /* Location on the stack of the start of this argument slot. This can
97 differ from STACK if this arg pads downward. This location is known
98 to be aligned to TARGET_FUNCTION_ARG_BOUNDARY. */
99 rtx stack_slot;
100 /* Place that this stack area has been saved, if needed. */
101 rtx save_area;
102 /* If an argument's alignment does not permit direct copying into registers,
103 copy in smaller-sized pieces into pseudos. These are stored in a
104 block pointed to by this field. The next field says how many
105 word-sized pseudos we made. */
106 rtx *aligned_regs;
107 int n_aligned_regs;
110 /* A vector of one char per byte of stack space. A byte if nonzero if
111 the corresponding stack location has been used.
112 This vector is used to prevent a function call within an argument from
113 clobbering any stack already set up. */
114 static char *stack_usage_map;
116 /* Size of STACK_USAGE_MAP. */
117 static int highest_outgoing_arg_in_use;
119 /* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
120 stack location's tail call argument has been already stored into the stack.
121 This bitmap is used to prevent sibling call optimization if function tries
122 to use parent's incoming argument slots when they have been already
123 overwritten with tail call arguments. */
124 static sbitmap stored_args_map;
126 /* stack_arg_under_construction is nonzero when an argument may be
127 initialized with a constructor call (including a C function that
128 returns a BLKmode struct) and expand_call must take special action
129 to make sure the object being constructed does not overlap the
130 argument list for the constructor call. */
131 static int stack_arg_under_construction;
133 static void emit_call_1 (rtx, tree, tree, tree, HOST_WIDE_INT, HOST_WIDE_INT,
134 HOST_WIDE_INT, rtx, rtx, int, rtx, int,
135 cumulative_args_t);
136 static void precompute_register_parameters (int, struct arg_data *, int *);
137 static int store_one_arg (struct arg_data *, rtx, int, int, int);
138 static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
139 static int finalize_must_preallocate (int, int, struct arg_data *,
140 struct args_size *);
141 static void precompute_arguments (int, struct arg_data *);
142 static int compute_argument_block_size (int, struct args_size *, tree, tree, int);
143 static void initialize_argument_information (int, struct arg_data *,
144 struct args_size *, int,
145 tree, tree,
146 tree, tree, cumulative_args_t, int,
147 rtx *, int *, int *, int *,
148 bool *, bool);
149 static void compute_argument_addresses (struct arg_data *, rtx, int);
150 static rtx rtx_for_function_call (tree, tree);
151 static void load_register_parameters (struct arg_data *, int, rtx *, int,
152 int, int *);
153 static rtx emit_library_call_value_1 (int, rtx, rtx, enum libcall_type,
154 enum machine_mode, int, va_list);
155 static int special_function_p (const_tree, int);
156 static int check_sibcall_argument_overlap_1 (rtx);
157 static int check_sibcall_argument_overlap (rtx_insn *, struct arg_data *, int);
159 static int combine_pending_stack_adjustment_and_call (int, struct args_size *,
160 unsigned int);
161 static tree split_complex_types (tree);
163 #ifdef REG_PARM_STACK_SPACE
164 static rtx save_fixed_argument_area (int, rtx, int *, int *);
165 static void restore_fixed_argument_area (rtx, rtx, int, int);
166 #endif
168 /* Force FUNEXP into a form suitable for the address of a CALL,
169 and return that as an rtx. Also load the static chain register
170 if FNDECL is a nested function.
172 CALL_FUSAGE points to a variable holding the prospective
173 CALL_INSN_FUNCTION_USAGE information. */
176 prepare_call_address (tree fndecl, rtx funexp, rtx static_chain_value,
177 rtx *call_fusage, int reg_parm_seen, int sibcallp)
179 /* Make a valid memory address and copy constants through pseudo-regs,
180 but not for a constant address if -fno-function-cse. */
181 if (GET_CODE (funexp) != SYMBOL_REF)
182 /* If we are using registers for parameters, force the
183 function address into a register now. */
184 funexp = ((reg_parm_seen
185 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
186 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
187 : memory_address (FUNCTION_MODE, funexp));
188 else if (! sibcallp)
190 #ifndef NO_FUNCTION_CSE
191 if (optimize && ! flag_no_function_cse)
192 funexp = force_reg (Pmode, funexp);
193 #endif
196 if (static_chain_value != 0)
198 rtx chain;
200 gcc_assert (fndecl);
201 chain = targetm.calls.static_chain (fndecl, false);
202 static_chain_value = convert_memory_address (Pmode, static_chain_value);
204 emit_move_insn (chain, static_chain_value);
205 if (REG_P (chain))
206 use_reg (call_fusage, chain);
209 return funexp;
212 /* Generate instructions to call function FUNEXP,
213 and optionally pop the results.
214 The CALL_INSN is the first insn generated.
216 FNDECL is the declaration node of the function. This is given to the
217 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
218 its own args.
220 FUNTYPE is the data type of the function. This is given to the hook
221 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
222 own args. We used to allow an identifier for library functions, but
223 that doesn't work when the return type is an aggregate type and the
224 calling convention says that the pointer to this aggregate is to be
225 popped by the callee.
227 STACK_SIZE is the number of bytes of arguments on the stack,
228 ROUNDED_STACK_SIZE is that number rounded up to
229 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
230 both to put into the call insn and to generate explicit popping
231 code if necessary.
233 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
234 It is zero if this call doesn't want a structure value.
236 NEXT_ARG_REG is the rtx that results from executing
237 targetm.calls.function_arg (&args_so_far, VOIDmode, void_type_node, true)
238 just after all the args have had their registers assigned.
239 This could be whatever you like, but normally it is the first
240 arg-register beyond those used for args in this call,
241 or 0 if all the arg-registers are used in this call.
242 It is passed on to `gen_call' so you can put this info in the call insn.
244 VALREG is a hard register in which a value is returned,
245 or 0 if the call does not return a value.
247 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
248 the args to this call were processed.
249 We restore `inhibit_defer_pop' to that value.
251 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
252 denote registers used by the called function. */
254 static void
255 emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
256 tree funtype ATTRIBUTE_UNUSED,
257 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED,
258 HOST_WIDE_INT rounded_stack_size,
259 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED,
260 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
261 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
262 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
264 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
265 rtx_insn *call_insn;
266 rtx call, funmem;
267 int already_popped = 0;
268 HOST_WIDE_INT n_popped
269 = targetm.calls.return_pops_args (fndecl, funtype, stack_size);
271 #ifdef CALL_POPS_ARGS
272 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
273 #endif
275 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
276 and we don't want to load it into a register as an optimization,
277 because prepare_call_address already did it if it should be done. */
278 if (GET_CODE (funexp) != SYMBOL_REF)
279 funexp = memory_address (FUNCTION_MODE, funexp);
281 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
282 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
284 tree t = fndecl;
286 /* Although a built-in FUNCTION_DECL and its non-__builtin
287 counterpart compare equal and get a shared mem_attrs, they
288 produce different dump output in compare-debug compilations,
289 if an entry gets garbage collected in one compilation, then
290 adds a different (but equivalent) entry, while the other
291 doesn't run the garbage collector at the same spot and then
292 shares the mem_attr with the equivalent entry. */
293 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
295 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
296 if (t2)
297 t = t2;
300 set_mem_expr (funmem, t);
302 else if (fntree)
303 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
305 #if defined (HAVE_sibcall_pop) && defined (HAVE_sibcall_value_pop)
306 if ((ecf_flags & ECF_SIBCALL)
307 && HAVE_sibcall_pop && HAVE_sibcall_value_pop
308 && (n_popped > 0 || stack_size == 0))
310 rtx n_pop = GEN_INT (n_popped);
311 rtx pat;
313 /* If this subroutine pops its own args, record that in the call insn
314 if possible, for the sake of frame pointer elimination. */
316 if (valreg)
317 pat = GEN_SIBCALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
318 next_arg_reg, n_pop);
319 else
320 pat = GEN_SIBCALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
321 n_pop);
323 emit_call_insn (pat);
324 already_popped = 1;
326 else
327 #endif
329 #if defined (HAVE_call_pop) && defined (HAVE_call_value_pop)
330 /* If the target has "call" or "call_value" insns, then prefer them
331 if no arguments are actually popped. If the target does not have
332 "call" or "call_value" insns, then we must use the popping versions
333 even if the call has no arguments to pop. */
334 #if defined (HAVE_call) && defined (HAVE_call_value)
335 if (HAVE_call && HAVE_call_value && HAVE_call_pop && HAVE_call_value_pop
336 && n_popped > 0)
337 #else
338 if (HAVE_call_pop && HAVE_call_value_pop)
339 #endif
341 rtx n_pop = GEN_INT (n_popped);
342 rtx pat;
344 /* If this subroutine pops its own args, record that in the call insn
345 if possible, for the sake of frame pointer elimination. */
347 if (valreg)
348 pat = GEN_CALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
349 next_arg_reg, n_pop);
350 else
351 pat = GEN_CALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
352 n_pop);
354 emit_call_insn (pat);
355 already_popped = 1;
357 else
358 #endif
360 #if defined (HAVE_sibcall) && defined (HAVE_sibcall_value)
361 if ((ecf_flags & ECF_SIBCALL)
362 && HAVE_sibcall && HAVE_sibcall_value)
364 if (valreg)
365 emit_call_insn (GEN_SIBCALL_VALUE (valreg, funmem,
366 rounded_stack_size_rtx,
367 next_arg_reg, NULL_RTX));
368 else
369 emit_call_insn (GEN_SIBCALL (funmem, rounded_stack_size_rtx,
370 next_arg_reg,
371 GEN_INT (struct_value_size)));
373 else
374 #endif
376 #if defined (HAVE_call) && defined (HAVE_call_value)
377 if (HAVE_call && HAVE_call_value)
379 if (valreg)
380 emit_call_insn (GEN_CALL_VALUE (valreg, funmem, rounded_stack_size_rtx,
381 next_arg_reg, NULL_RTX));
382 else
383 emit_call_insn (GEN_CALL (funmem, rounded_stack_size_rtx, next_arg_reg,
384 GEN_INT (struct_value_size)));
386 else
387 #endif
388 gcc_unreachable ();
390 /* Find the call we just emitted. */
391 call_insn = last_call_insn ();
393 /* Some target create a fresh MEM instead of reusing the one provided
394 above. Set its MEM_EXPR. */
395 call = get_call_rtx_from (call_insn);
396 if (call
397 && MEM_EXPR (XEXP (call, 0)) == NULL_TREE
398 && MEM_EXPR (funmem) != NULL_TREE)
399 set_mem_expr (XEXP (call, 0), MEM_EXPR (funmem));
401 /* Put the register usage information there. */
402 add_function_usage_to (call_insn, call_fusage);
404 /* If this is a const call, then set the insn's unchanging bit. */
405 if (ecf_flags & ECF_CONST)
406 RTL_CONST_CALL_P (call_insn) = 1;
408 /* If this is a pure call, then set the insn's unchanging bit. */
409 if (ecf_flags & ECF_PURE)
410 RTL_PURE_CALL_P (call_insn) = 1;
412 /* If this is a const call, then set the insn's unchanging bit. */
413 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
414 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
416 /* Create a nothrow REG_EH_REGION note, if needed. */
417 make_reg_eh_region_note (call_insn, ecf_flags, 0);
419 if (ecf_flags & ECF_NORETURN)
420 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
422 if (ecf_flags & ECF_RETURNS_TWICE)
424 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
425 cfun->calls_setjmp = 1;
428 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
430 /* Restore this now, so that we do defer pops for this call's args
431 if the context of the call as a whole permits. */
432 inhibit_defer_pop = old_inhibit_defer_pop;
434 if (n_popped > 0)
436 if (!already_popped)
437 CALL_INSN_FUNCTION_USAGE (call_insn)
438 = gen_rtx_EXPR_LIST (VOIDmode,
439 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
440 CALL_INSN_FUNCTION_USAGE (call_insn));
441 rounded_stack_size -= n_popped;
442 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
443 stack_pointer_delta -= n_popped;
445 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
447 /* If popup is needed, stack realign must use DRAP */
448 if (SUPPORTS_STACK_ALIGNMENT)
449 crtl->need_drap = true;
451 /* For noreturn calls when not accumulating outgoing args force
452 REG_ARGS_SIZE note to prevent crossjumping of calls with different
453 args sizes. */
454 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
455 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
457 if (!ACCUMULATE_OUTGOING_ARGS)
459 /* If returning from the subroutine does not automatically pop the args,
460 we need an instruction to pop them sooner or later.
461 Perhaps do it now; perhaps just record how much space to pop later.
463 If returning from the subroutine does pop the args, indicate that the
464 stack pointer will be changed. */
466 if (rounded_stack_size != 0)
468 if (ecf_flags & ECF_NORETURN)
469 /* Just pretend we did the pop. */
470 stack_pointer_delta -= rounded_stack_size;
471 else if (flag_defer_pop && inhibit_defer_pop == 0
472 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
473 pending_stack_adjust += rounded_stack_size;
474 else
475 adjust_stack (rounded_stack_size_rtx);
478 /* When we accumulate outgoing args, we must avoid any stack manipulations.
479 Restore the stack pointer to its original value now. Usually
480 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
481 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
482 popping variants of functions exist as well.
484 ??? We may optimize similar to defer_pop above, but it is
485 probably not worthwhile.
487 ??? It will be worthwhile to enable combine_stack_adjustments even for
488 such machines. */
489 else if (n_popped)
490 anti_adjust_stack (GEN_INT (n_popped));
493 /* Determine if the function identified by NAME and FNDECL is one with
494 special properties we wish to know about.
496 For example, if the function might return more than one time (setjmp), then
497 set RETURNS_TWICE to a nonzero value.
499 Similarly set NORETURN if the function is in the longjmp family.
501 Set MAY_BE_ALLOCA for any memory allocation function that might allocate
502 space from the stack such as alloca. */
504 static int
505 special_function_p (const_tree fndecl, int flags)
507 if (fndecl && DECL_NAME (fndecl)
508 && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) <= 17
509 /* Exclude functions not at the file scope, or not `extern',
510 since they are not the magic functions we would otherwise
511 think they are.
512 FIXME: this should be handled with attributes, not with this
513 hacky imitation of DECL_ASSEMBLER_NAME. It's (also) wrong
514 because you can declare fork() inside a function if you
515 wish. */
516 && (DECL_CONTEXT (fndecl) == NULL_TREE
517 || TREE_CODE (DECL_CONTEXT (fndecl)) == TRANSLATION_UNIT_DECL)
518 && TREE_PUBLIC (fndecl))
520 const char *name = IDENTIFIER_POINTER (DECL_NAME (fndecl));
521 const char *tname = name;
523 /* We assume that alloca will always be called by name. It
524 makes no sense to pass it as a pointer-to-function to
525 anything that does not understand its behavior. */
526 if (((IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 6
527 && name[0] == 'a'
528 && ! strcmp (name, "alloca"))
529 || (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 16
530 && name[0] == '_'
531 && ! strcmp (name, "__builtin_alloca"))))
532 flags |= ECF_MAY_BE_ALLOCA;
534 /* Disregard prefix _, __, __x or __builtin_. */
535 if (name[0] == '_')
537 if (name[1] == '_'
538 && name[2] == 'b'
539 && !strncmp (name + 3, "uiltin_", 7))
540 tname += 10;
541 else if (name[1] == '_' && name[2] == 'x')
542 tname += 3;
543 else if (name[1] == '_')
544 tname += 2;
545 else
546 tname += 1;
549 if (tname[0] == 's')
551 if ((tname[1] == 'e'
552 && (! strcmp (tname, "setjmp")
553 || ! strcmp (tname, "setjmp_syscall")))
554 || (tname[1] == 'i'
555 && ! strcmp (tname, "sigsetjmp"))
556 || (tname[1] == 'a'
557 && ! strcmp (tname, "savectx")))
558 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
560 if (tname[1] == 'i'
561 && ! strcmp (tname, "siglongjmp"))
562 flags |= ECF_NORETURN;
564 else if ((tname[0] == 'q' && tname[1] == 's'
565 && ! strcmp (tname, "qsetjmp"))
566 || (tname[0] == 'v' && tname[1] == 'f'
567 && ! strcmp (tname, "vfork"))
568 || (tname[0] == 'g' && tname[1] == 'e'
569 && !strcmp (tname, "getcontext")))
570 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
572 else if (tname[0] == 'l' && tname[1] == 'o'
573 && ! strcmp (tname, "longjmp"))
574 flags |= ECF_NORETURN;
577 return flags;
580 /* Similar to special_function_p; return a set of ERF_ flags for the
581 function FNDECL. */
582 static int
583 decl_return_flags (tree fndecl)
585 tree attr;
586 tree type = TREE_TYPE (fndecl);
587 if (!type)
588 return 0;
590 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
591 if (!attr)
592 return 0;
594 attr = TREE_VALUE (TREE_VALUE (attr));
595 if (!attr || TREE_STRING_LENGTH (attr) < 1)
596 return 0;
598 switch (TREE_STRING_POINTER (attr)[0])
600 case '1':
601 case '2':
602 case '3':
603 case '4':
604 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
606 case 'm':
607 return ERF_NOALIAS;
609 case '.':
610 default:
611 return 0;
615 /* Return nonzero when FNDECL represents a call to setjmp. */
618 setjmp_call_p (const_tree fndecl)
620 if (DECL_IS_RETURNS_TWICE (fndecl))
621 return ECF_RETURNS_TWICE;
622 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
626 /* Return true if STMT is an alloca call. */
628 bool
629 gimple_alloca_call_p (const_gimple stmt)
631 tree fndecl;
633 if (!is_gimple_call (stmt))
634 return false;
636 fndecl = gimple_call_fndecl (stmt);
637 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
638 return true;
640 return false;
643 /* Return true when exp contains alloca call. */
645 bool
646 alloca_call_p (const_tree exp)
648 tree fndecl;
649 if (TREE_CODE (exp) == CALL_EXPR
650 && (fndecl = get_callee_fndecl (exp))
651 && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
652 return true;
653 return false;
656 /* Return TRUE if FNDECL is either a TM builtin or a TM cloned
657 function. Return FALSE otherwise. */
659 static bool
660 is_tm_builtin (const_tree fndecl)
662 if (fndecl == NULL)
663 return false;
665 if (decl_is_tm_clone (fndecl))
666 return true;
668 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
670 switch (DECL_FUNCTION_CODE (fndecl))
672 case BUILT_IN_TM_COMMIT:
673 case BUILT_IN_TM_COMMIT_EH:
674 case BUILT_IN_TM_ABORT:
675 case BUILT_IN_TM_IRREVOCABLE:
676 case BUILT_IN_TM_GETTMCLONE_IRR:
677 case BUILT_IN_TM_MEMCPY:
678 case BUILT_IN_TM_MEMMOVE:
679 case BUILT_IN_TM_MEMSET:
680 CASE_BUILT_IN_TM_STORE (1):
681 CASE_BUILT_IN_TM_STORE (2):
682 CASE_BUILT_IN_TM_STORE (4):
683 CASE_BUILT_IN_TM_STORE (8):
684 CASE_BUILT_IN_TM_STORE (FLOAT):
685 CASE_BUILT_IN_TM_STORE (DOUBLE):
686 CASE_BUILT_IN_TM_STORE (LDOUBLE):
687 CASE_BUILT_IN_TM_STORE (M64):
688 CASE_BUILT_IN_TM_STORE (M128):
689 CASE_BUILT_IN_TM_STORE (M256):
690 CASE_BUILT_IN_TM_LOAD (1):
691 CASE_BUILT_IN_TM_LOAD (2):
692 CASE_BUILT_IN_TM_LOAD (4):
693 CASE_BUILT_IN_TM_LOAD (8):
694 CASE_BUILT_IN_TM_LOAD (FLOAT):
695 CASE_BUILT_IN_TM_LOAD (DOUBLE):
696 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
697 CASE_BUILT_IN_TM_LOAD (M64):
698 CASE_BUILT_IN_TM_LOAD (M128):
699 CASE_BUILT_IN_TM_LOAD (M256):
700 case BUILT_IN_TM_LOG:
701 case BUILT_IN_TM_LOG_1:
702 case BUILT_IN_TM_LOG_2:
703 case BUILT_IN_TM_LOG_4:
704 case BUILT_IN_TM_LOG_8:
705 case BUILT_IN_TM_LOG_FLOAT:
706 case BUILT_IN_TM_LOG_DOUBLE:
707 case BUILT_IN_TM_LOG_LDOUBLE:
708 case BUILT_IN_TM_LOG_M64:
709 case BUILT_IN_TM_LOG_M128:
710 case BUILT_IN_TM_LOG_M256:
711 return true;
712 default:
713 break;
716 return false;
719 /* Detect flags (function attributes) from the function decl or type node. */
722 flags_from_decl_or_type (const_tree exp)
724 int flags = 0;
726 if (DECL_P (exp))
728 /* The function exp may have the `malloc' attribute. */
729 if (DECL_IS_MALLOC (exp))
730 flags |= ECF_MALLOC;
732 /* The function exp may have the `returns_twice' attribute. */
733 if (DECL_IS_RETURNS_TWICE (exp))
734 flags |= ECF_RETURNS_TWICE;
736 /* Process the pure and const attributes. */
737 if (TREE_READONLY (exp))
738 flags |= ECF_CONST;
739 if (DECL_PURE_P (exp))
740 flags |= ECF_PURE;
741 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
742 flags |= ECF_LOOPING_CONST_OR_PURE;
744 if (DECL_IS_NOVOPS (exp))
745 flags |= ECF_NOVOPS;
746 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
747 flags |= ECF_LEAF;
749 if (TREE_NOTHROW (exp))
750 flags |= ECF_NOTHROW;
752 if (flag_tm)
754 if (is_tm_builtin (exp))
755 flags |= ECF_TM_BUILTIN;
756 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
757 || lookup_attribute ("transaction_pure",
758 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
759 flags |= ECF_TM_PURE;
762 flags = special_function_p (exp, flags);
764 else if (TYPE_P (exp))
766 if (TYPE_READONLY (exp))
767 flags |= ECF_CONST;
769 if (flag_tm
770 && ((flags & ECF_CONST) != 0
771 || lookup_attribute ("transaction_pure", TYPE_ATTRIBUTES (exp))))
772 flags |= ECF_TM_PURE;
774 else
775 gcc_unreachable ();
777 if (TREE_THIS_VOLATILE (exp))
779 flags |= ECF_NORETURN;
780 if (flags & (ECF_CONST|ECF_PURE))
781 flags |= ECF_LOOPING_CONST_OR_PURE;
784 return flags;
787 /* Detect flags from a CALL_EXPR. */
790 call_expr_flags (const_tree t)
792 int flags;
793 tree decl = get_callee_fndecl (t);
795 if (decl)
796 flags = flags_from_decl_or_type (decl);
797 else
799 t = TREE_TYPE (CALL_EXPR_FN (t));
800 if (t && TREE_CODE (t) == POINTER_TYPE)
801 flags = flags_from_decl_or_type (TREE_TYPE (t));
802 else
803 flags = 0;
806 return flags;
809 /* Precompute all register parameters as described by ARGS, storing values
810 into fields within the ARGS array.
812 NUM_ACTUALS indicates the total number elements in the ARGS array.
814 Set REG_PARM_SEEN if we encounter a register parameter. */
816 static void
817 precompute_register_parameters (int num_actuals, struct arg_data *args,
818 int *reg_parm_seen)
820 int i;
822 *reg_parm_seen = 0;
824 for (i = 0; i < num_actuals; i++)
825 if (args[i].reg != 0 && ! args[i].pass_on_stack)
827 *reg_parm_seen = 1;
829 if (args[i].value == 0)
831 push_temp_slots ();
832 args[i].value = expand_normal (args[i].tree_value);
833 preserve_temp_slots (args[i].value);
834 pop_temp_slots ();
837 /* If we are to promote the function arg to a wider mode,
838 do it now. */
840 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
841 args[i].value
842 = convert_modes (args[i].mode,
843 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
844 args[i].value, args[i].unsignedp);
846 /* If the value is a non-legitimate constant, force it into a
847 pseudo now. TLS symbols sometimes need a call to resolve. */
848 if (CONSTANT_P (args[i].value)
849 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
850 args[i].value = force_reg (args[i].mode, args[i].value);
852 /* If we're going to have to load the value by parts, pull the
853 parts into pseudos. The part extraction process can involve
854 non-trivial computation. */
855 if (GET_CODE (args[i].reg) == PARALLEL)
857 tree type = TREE_TYPE (args[i].tree_value);
858 args[i].parallel_value
859 = emit_group_load_into_temps (args[i].reg, args[i].value,
860 type, int_size_in_bytes (type));
863 /* If the value is expensive, and we are inside an appropriately
864 short loop, put the value into a pseudo and then put the pseudo
865 into the hard reg.
867 For small register classes, also do this if this call uses
868 register parameters. This is to avoid reload conflicts while
869 loading the parameters registers. */
871 else if ((! (REG_P (args[i].value)
872 || (GET_CODE (args[i].value) == SUBREG
873 && REG_P (SUBREG_REG (args[i].value)))))
874 && args[i].mode != BLKmode
875 && set_src_cost (args[i].value, optimize_insn_for_speed_p ())
876 > COSTS_N_INSNS (1)
877 && ((*reg_parm_seen
878 && targetm.small_register_classes_for_mode_p (args[i].mode))
879 || optimize))
880 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
884 #ifdef REG_PARM_STACK_SPACE
886 /* The argument list is the property of the called routine and it
887 may clobber it. If the fixed area has been used for previous
888 parameters, we must save and restore it. */
890 static rtx
891 save_fixed_argument_area (int reg_parm_stack_space, rtx argblock, int *low_to_save, int *high_to_save)
893 int low;
894 int high;
896 /* Compute the boundary of the area that needs to be saved, if any. */
897 high = reg_parm_stack_space;
898 #ifdef ARGS_GROW_DOWNWARD
899 high += 1;
900 #endif
901 if (high > highest_outgoing_arg_in_use)
902 high = highest_outgoing_arg_in_use;
904 for (low = 0; low < high; low++)
905 if (stack_usage_map[low] != 0)
907 int num_to_save;
908 enum machine_mode save_mode;
909 int delta;
910 rtx addr;
911 rtx stack_area;
912 rtx save_area;
914 while (stack_usage_map[--high] == 0)
917 *low_to_save = low;
918 *high_to_save = high;
920 num_to_save = high - low + 1;
921 save_mode = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
923 /* If we don't have the required alignment, must do this
924 in BLKmode. */
925 if ((low & (MIN (GET_MODE_SIZE (save_mode),
926 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
927 save_mode = BLKmode;
929 #ifdef ARGS_GROW_DOWNWARD
930 delta = -high;
931 #else
932 delta = low;
933 #endif
934 addr = plus_constant (Pmode, argblock, delta);
935 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
937 set_mem_align (stack_area, PARM_BOUNDARY);
938 if (save_mode == BLKmode)
940 save_area = assign_stack_temp (BLKmode, num_to_save);
941 emit_block_move (validize_mem (save_area), stack_area,
942 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
944 else
946 save_area = gen_reg_rtx (save_mode);
947 emit_move_insn (save_area, stack_area);
950 return save_area;
953 return NULL_RTX;
956 static void
957 restore_fixed_argument_area (rtx save_area, rtx argblock, int high_to_save, int low_to_save)
959 enum machine_mode save_mode = GET_MODE (save_area);
960 int delta;
961 rtx addr, stack_area;
963 #ifdef ARGS_GROW_DOWNWARD
964 delta = -high_to_save;
965 #else
966 delta = low_to_save;
967 #endif
968 addr = plus_constant (Pmode, argblock, delta);
969 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
970 set_mem_align (stack_area, PARM_BOUNDARY);
972 if (save_mode != BLKmode)
973 emit_move_insn (stack_area, save_area);
974 else
975 emit_block_move (stack_area, validize_mem (save_area),
976 GEN_INT (high_to_save - low_to_save + 1),
977 BLOCK_OP_CALL_PARM);
979 #endif /* REG_PARM_STACK_SPACE */
981 /* If any elements in ARGS refer to parameters that are to be passed in
982 registers, but not in memory, and whose alignment does not permit a
983 direct copy into registers. Copy the values into a group of pseudos
984 which we will later copy into the appropriate hard registers.
986 Pseudos for each unaligned argument will be stored into the array
987 args[argnum].aligned_regs. The caller is responsible for deallocating
988 the aligned_regs array if it is nonzero. */
990 static void
991 store_unaligned_arguments_into_pseudos (struct arg_data *args, int num_actuals)
993 int i, j;
995 for (i = 0; i < num_actuals; i++)
996 if (args[i].reg != 0 && ! args[i].pass_on_stack
997 && GET_CODE (args[i].reg) != PARALLEL
998 && args[i].mode == BLKmode
999 && MEM_P (args[i].value)
1000 && (MEM_ALIGN (args[i].value)
1001 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
1003 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1004 int endian_correction = 0;
1006 if (args[i].partial)
1008 gcc_assert (args[i].partial % UNITS_PER_WORD == 0);
1009 args[i].n_aligned_regs = args[i].partial / UNITS_PER_WORD;
1011 else
1013 args[i].n_aligned_regs
1014 = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1017 args[i].aligned_regs = XNEWVEC (rtx, args[i].n_aligned_regs);
1019 /* Structures smaller than a word are normally aligned to the
1020 least significant byte. On a BYTES_BIG_ENDIAN machine,
1021 this means we must skip the empty high order bytes when
1022 calculating the bit offset. */
1023 if (bytes < UNITS_PER_WORD
1024 #ifdef BLOCK_REG_PADDING
1025 && (BLOCK_REG_PADDING (args[i].mode,
1026 TREE_TYPE (args[i].tree_value), 1)
1027 == downward)
1028 #else
1029 && BYTES_BIG_ENDIAN
1030 #endif
1032 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
1034 for (j = 0; j < args[i].n_aligned_regs; j++)
1036 rtx reg = gen_reg_rtx (word_mode);
1037 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1038 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
1040 args[i].aligned_regs[j] = reg;
1041 word = extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
1042 word_mode, word_mode);
1044 /* There is no need to restrict this code to loading items
1045 in TYPE_ALIGN sized hunks. The bitfield instructions can
1046 load up entire word sized registers efficiently.
1048 ??? This may not be needed anymore.
1049 We use to emit a clobber here but that doesn't let later
1050 passes optimize the instructions we emit. By storing 0 into
1051 the register later passes know the first AND to zero out the
1052 bitfield being set in the register is unnecessary. The store
1053 of 0 will be deleted as will at least the first AND. */
1055 emit_move_insn (reg, const0_rtx);
1057 bytes -= bitsize / BITS_PER_UNIT;
1058 store_bit_field (reg, bitsize, endian_correction, 0, 0,
1059 word_mode, word);
1064 /* Fill in ARGS_SIZE and ARGS array based on the parameters found in
1065 CALL_EXPR EXP.
1067 NUM_ACTUALS is the total number of parameters.
1069 N_NAMED_ARGS is the total number of named arguments.
1071 STRUCT_VALUE_ADDR_VALUE is the implicit argument for a struct return
1072 value, or null.
1074 FNDECL is the tree code for the target of this call (if known)
1076 ARGS_SO_FAR holds state needed by the target to know where to place
1077 the next argument.
1079 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1080 for arguments which are passed in registers.
1082 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1083 and may be modified by this routine.
1085 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
1086 flags which may may be modified by this routine.
1088 MAY_TAILCALL is cleared if we encounter an invisible pass-by-reference
1089 that requires allocation of stack space.
1091 CALL_FROM_THUNK_P is true if this call is the jump from a thunk to
1092 the thunked-to function. */
1094 static void
1095 initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
1096 struct arg_data *args,
1097 struct args_size *args_size,
1098 int n_named_args ATTRIBUTE_UNUSED,
1099 tree exp, tree struct_value_addr_value,
1100 tree fndecl, tree fntype,
1101 cumulative_args_t args_so_far,
1102 int reg_parm_stack_space,
1103 rtx *old_stack_level, int *old_pending_adj,
1104 int *must_preallocate, int *ecf_flags,
1105 bool *may_tailcall, bool call_from_thunk_p)
1107 CUMULATIVE_ARGS *args_so_far_pnt = get_cumulative_args (args_so_far);
1108 location_t loc = EXPR_LOCATION (exp);
1110 /* Count arg position in order args appear. */
1111 int argpos;
1113 int i;
1115 args_size->constant = 0;
1116 args_size->var = 0;
1118 /* In this loop, we consider args in the order they are written.
1119 We fill up ARGS from the back. */
1121 i = num_actuals - 1;
1123 int j = i;
1124 call_expr_arg_iterator iter;
1125 tree arg;
1127 if (struct_value_addr_value)
1129 args[j].tree_value = struct_value_addr_value;
1130 j--;
1132 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
1134 tree argtype = TREE_TYPE (arg);
1135 if (targetm.calls.split_complex_arg
1136 && argtype
1137 && TREE_CODE (argtype) == COMPLEX_TYPE
1138 && targetm.calls.split_complex_arg (argtype))
1140 tree subtype = TREE_TYPE (argtype);
1141 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
1142 j--;
1143 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
1145 else
1146 args[j].tree_value = arg;
1147 j--;
1151 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1152 for (argpos = 0; argpos < num_actuals; i--, argpos++)
1154 tree type = TREE_TYPE (args[i].tree_value);
1155 int unsignedp;
1156 enum machine_mode mode;
1158 /* Replace erroneous argument with constant zero. */
1159 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
1160 args[i].tree_value = integer_zero_node, type = integer_type_node;
1162 /* If TYPE is a transparent union or record, pass things the way
1163 we would pass the first field of the union or record. We have
1164 already verified that the modes are the same. */
1165 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
1166 && TYPE_TRANSPARENT_AGGR (type))
1167 type = TREE_TYPE (first_field (type));
1169 /* Decide where to pass this arg.
1171 args[i].reg is nonzero if all or part is passed in registers.
1173 args[i].partial is nonzero if part but not all is passed in registers,
1174 and the exact value says how many bytes are passed in registers.
1176 args[i].pass_on_stack is nonzero if the argument must at least be
1177 computed on the stack. It may then be loaded back into registers
1178 if args[i].reg is nonzero.
1180 These decisions are driven by the FUNCTION_... macros and must agree
1181 with those made by function.c. */
1183 /* See if this argument should be passed by invisible reference. */
1184 if (pass_by_reference (args_so_far_pnt, TYPE_MODE (type),
1185 type, argpos < n_named_args))
1187 bool callee_copies;
1188 tree base = NULL_TREE;
1190 callee_copies
1191 = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
1192 type, argpos < n_named_args);
1194 /* If we're compiling a thunk, pass through invisible references
1195 instead of making a copy. */
1196 if (call_from_thunk_p
1197 || (callee_copies
1198 && !TREE_ADDRESSABLE (type)
1199 && (base = get_base_address (args[i].tree_value))
1200 && TREE_CODE (base) != SSA_NAME
1201 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
1203 mark_addressable (args[i].tree_value);
1205 /* We can't use sibcalls if a callee-copied argument is
1206 stored in the current function's frame. */
1207 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
1208 *may_tailcall = false;
1210 args[i].tree_value = build_fold_addr_expr_loc (loc,
1211 args[i].tree_value);
1212 type = TREE_TYPE (args[i].tree_value);
1214 if (*ecf_flags & ECF_CONST)
1215 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
1217 else
1219 /* We make a copy of the object and pass the address to the
1220 function being called. */
1221 rtx copy;
1223 if (!COMPLETE_TYPE_P (type)
1224 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
1225 || (flag_stack_check == GENERIC_STACK_CHECK
1226 && compare_tree_int (TYPE_SIZE_UNIT (type),
1227 STACK_CHECK_MAX_VAR_SIZE) > 0))
1229 /* This is a variable-sized object. Make space on the stack
1230 for it. */
1231 rtx size_rtx = expr_size (args[i].tree_value);
1233 if (*old_stack_level == 0)
1235 emit_stack_save (SAVE_BLOCK, old_stack_level);
1236 *old_pending_adj = pending_stack_adjust;
1237 pending_stack_adjust = 0;
1240 /* We can pass TRUE as the 4th argument because we just
1241 saved the stack pointer and will restore it right after
1242 the call. */
1243 copy = allocate_dynamic_stack_space (size_rtx,
1244 TYPE_ALIGN (type),
1245 TYPE_ALIGN (type),
1246 true);
1247 copy = gen_rtx_MEM (BLKmode, copy);
1248 set_mem_attributes (copy, type, 1);
1250 else
1251 copy = assign_temp (type, 1, 0);
1253 store_expr (args[i].tree_value, copy, 0, false);
1255 /* Just change the const function to pure and then let
1256 the next test clear the pure based on
1257 callee_copies. */
1258 if (*ecf_flags & ECF_CONST)
1260 *ecf_flags &= ~ECF_CONST;
1261 *ecf_flags |= ECF_PURE;
1264 if (!callee_copies && *ecf_flags & ECF_PURE)
1265 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
1267 args[i].tree_value
1268 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
1269 type = TREE_TYPE (args[i].tree_value);
1270 *may_tailcall = false;
1274 unsignedp = TYPE_UNSIGNED (type);
1275 mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
1276 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
1278 args[i].unsignedp = unsignedp;
1279 args[i].mode = mode;
1281 args[i].reg = targetm.calls.function_arg (args_so_far, mode, type,
1282 argpos < n_named_args);
1284 /* If this is a sibling call and the machine has register windows, the
1285 register window has to be unwinded before calling the routine, so
1286 arguments have to go into the incoming registers. */
1287 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
1288 args[i].tail_call_reg
1289 = targetm.calls.function_incoming_arg (args_so_far, mode, type,
1290 argpos < n_named_args);
1291 else
1292 args[i].tail_call_reg = args[i].reg;
1294 if (args[i].reg)
1295 args[i].partial
1296 = targetm.calls.arg_partial_bytes (args_so_far, mode, type,
1297 argpos < n_named_args);
1299 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (mode, type);
1301 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1302 it means that we are to pass this arg in the register(s) designated
1303 by the PARALLEL, but also to pass it in the stack. */
1304 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1305 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1306 args[i].pass_on_stack = 1;
1308 /* If this is an addressable type, we must preallocate the stack
1309 since we must evaluate the object into its final location.
1311 If this is to be passed in both registers and the stack, it is simpler
1312 to preallocate. */
1313 if (TREE_ADDRESSABLE (type)
1314 || (args[i].pass_on_stack && args[i].reg != 0))
1315 *must_preallocate = 1;
1317 /* Compute the stack-size of this argument. */
1318 if (args[i].reg == 0 || args[i].partial != 0
1319 || reg_parm_stack_space > 0
1320 || args[i].pass_on_stack)
1321 locate_and_pad_parm (mode, type,
1322 #ifdef STACK_PARMS_IN_REG_PARM_AREA
1324 #else
1325 args[i].reg != 0,
1326 #endif
1327 reg_parm_stack_space,
1328 args[i].pass_on_stack ? 0 : args[i].partial,
1329 fndecl, args_size, &args[i].locate);
1330 #ifdef BLOCK_REG_PADDING
1331 else
1332 /* The argument is passed entirely in registers. See at which
1333 end it should be padded. */
1334 args[i].locate.where_pad =
1335 BLOCK_REG_PADDING (mode, type,
1336 int_size_in_bytes (type) <= UNITS_PER_WORD);
1337 #endif
1339 /* Update ARGS_SIZE, the total stack space for args so far. */
1341 args_size->constant += args[i].locate.size.constant;
1342 if (args[i].locate.size.var)
1343 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
1345 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1346 have been used, etc. */
1348 targetm.calls.function_arg_advance (args_so_far, TYPE_MODE (type),
1349 type, argpos < n_named_args);
1353 /* Update ARGS_SIZE to contain the total size for the argument block.
1354 Return the original constant component of the argument block's size.
1356 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1357 for arguments passed in registers. */
1359 static int
1360 compute_argument_block_size (int reg_parm_stack_space,
1361 struct args_size *args_size,
1362 tree fndecl ATTRIBUTE_UNUSED,
1363 tree fntype ATTRIBUTE_UNUSED,
1364 int preferred_stack_boundary ATTRIBUTE_UNUSED)
1366 int unadjusted_args_size = args_size->constant;
1368 /* For accumulate outgoing args mode we don't need to align, since the frame
1369 will be already aligned. Align to STACK_BOUNDARY in order to prevent
1370 backends from generating misaligned frame sizes. */
1371 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
1372 preferred_stack_boundary = STACK_BOUNDARY;
1374 /* Compute the actual size of the argument block required. The variable
1375 and constant sizes must be combined, the size may have to be rounded,
1376 and there may be a minimum required size. */
1378 if (args_size->var)
1380 args_size->var = ARGS_SIZE_TREE (*args_size);
1381 args_size->constant = 0;
1383 preferred_stack_boundary /= BITS_PER_UNIT;
1384 if (preferred_stack_boundary > 1)
1386 /* We don't handle this case yet. To handle it correctly we have
1387 to add the delta, round and subtract the delta.
1388 Currently no machine description requires this support. */
1389 gcc_assert (!(stack_pointer_delta & (preferred_stack_boundary - 1)));
1390 args_size->var = round_up (args_size->var, preferred_stack_boundary);
1393 if (reg_parm_stack_space > 0)
1395 args_size->var
1396 = size_binop (MAX_EXPR, args_size->var,
1397 ssize_int (reg_parm_stack_space));
1399 /* The area corresponding to register parameters is not to count in
1400 the size of the block we need. So make the adjustment. */
1401 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1402 args_size->var
1403 = size_binop (MINUS_EXPR, args_size->var,
1404 ssize_int (reg_parm_stack_space));
1407 else
1409 preferred_stack_boundary /= BITS_PER_UNIT;
1410 if (preferred_stack_boundary < 1)
1411 preferred_stack_boundary = 1;
1412 args_size->constant = (((args_size->constant
1413 + stack_pointer_delta
1414 + preferred_stack_boundary - 1)
1415 / preferred_stack_boundary
1416 * preferred_stack_boundary)
1417 - stack_pointer_delta);
1419 args_size->constant = MAX (args_size->constant,
1420 reg_parm_stack_space);
1422 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1423 args_size->constant -= reg_parm_stack_space;
1425 return unadjusted_args_size;
1428 /* Precompute parameters as needed for a function call.
1430 FLAGS is mask of ECF_* constants.
1432 NUM_ACTUALS is the number of arguments.
1434 ARGS is an array containing information for each argument; this
1435 routine fills in the INITIAL_VALUE and VALUE fields for each
1436 precomputed argument. */
1438 static void
1439 precompute_arguments (int num_actuals, struct arg_data *args)
1441 int i;
1443 /* If this is a libcall, then precompute all arguments so that we do not
1444 get extraneous instructions emitted as part of the libcall sequence. */
1446 /* If we preallocated the stack space, and some arguments must be passed
1447 on the stack, then we must precompute any parameter which contains a
1448 function call which will store arguments on the stack.
1449 Otherwise, evaluating the parameter may clobber previous parameters
1450 which have already been stored into the stack. (we have code to avoid
1451 such case by saving the outgoing stack arguments, but it results in
1452 worse code) */
1453 if (!ACCUMULATE_OUTGOING_ARGS)
1454 return;
1456 for (i = 0; i < num_actuals; i++)
1458 tree type;
1459 enum machine_mode mode;
1461 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
1462 continue;
1464 /* If this is an addressable type, we cannot pre-evaluate it. */
1465 type = TREE_TYPE (args[i].tree_value);
1466 gcc_assert (!TREE_ADDRESSABLE (type));
1468 args[i].initial_value = args[i].value
1469 = expand_normal (args[i].tree_value);
1471 mode = TYPE_MODE (type);
1472 if (mode != args[i].mode)
1474 int unsignedp = args[i].unsignedp;
1475 args[i].value
1476 = convert_modes (args[i].mode, mode,
1477 args[i].value, args[i].unsignedp);
1479 /* CSE will replace this only if it contains args[i].value
1480 pseudo, so convert it down to the declared mode using
1481 a SUBREG. */
1482 if (REG_P (args[i].value)
1483 && GET_MODE_CLASS (args[i].mode) == MODE_INT
1484 && promote_mode (type, mode, &unsignedp) != args[i].mode)
1486 args[i].initial_value
1487 = gen_lowpart_SUBREG (mode, args[i].value);
1488 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
1489 SUBREG_PROMOTED_SET (args[i].initial_value, args[i].unsignedp);
1495 /* Given the current state of MUST_PREALLOCATE and information about
1496 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1497 compute and return the final value for MUST_PREALLOCATE. */
1499 static int
1500 finalize_must_preallocate (int must_preallocate, int num_actuals,
1501 struct arg_data *args, struct args_size *args_size)
1503 /* See if we have or want to preallocate stack space.
1505 If we would have to push a partially-in-regs parm
1506 before other stack parms, preallocate stack space instead.
1508 If the size of some parm is not a multiple of the required stack
1509 alignment, we must preallocate.
1511 If the total size of arguments that would otherwise create a copy in
1512 a temporary (such as a CALL) is more than half the total argument list
1513 size, preallocation is faster.
1515 Another reason to preallocate is if we have a machine (like the m88k)
1516 where stack alignment is required to be maintained between every
1517 pair of insns, not just when the call is made. However, we assume here
1518 that such machines either do not have push insns (and hence preallocation
1519 would occur anyway) or the problem is taken care of with
1520 PUSH_ROUNDING. */
1522 if (! must_preallocate)
1524 int partial_seen = 0;
1525 int copy_to_evaluate_size = 0;
1526 int i;
1528 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1530 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1531 partial_seen = 1;
1532 else if (partial_seen && args[i].reg == 0)
1533 must_preallocate = 1;
1535 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1536 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1537 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1538 || TREE_CODE (args[i].tree_value) == COND_EXPR
1539 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1540 copy_to_evaluate_size
1541 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1544 if (copy_to_evaluate_size * 2 >= args_size->constant
1545 && args_size->constant > 0)
1546 must_preallocate = 1;
1548 return must_preallocate;
1551 /* If we preallocated stack space, compute the address of each argument
1552 and store it into the ARGS array.
1554 We need not ensure it is a valid memory address here; it will be
1555 validized when it is used.
1557 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1559 static void
1560 compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
1562 if (argblock)
1564 rtx arg_reg = argblock;
1565 int i, arg_offset = 0;
1567 if (GET_CODE (argblock) == PLUS)
1568 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1570 for (i = 0; i < num_actuals; i++)
1572 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
1573 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
1574 rtx addr;
1575 unsigned int align, boundary;
1576 unsigned int units_on_stack = 0;
1577 enum machine_mode partial_mode = VOIDmode;
1579 /* Skip this parm if it will not be passed on the stack. */
1580 if (! args[i].pass_on_stack
1581 && args[i].reg != 0
1582 && args[i].partial == 0)
1583 continue;
1585 if (CONST_INT_P (offset))
1586 addr = plus_constant (Pmode, arg_reg, INTVAL (offset));
1587 else
1588 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1590 addr = plus_constant (Pmode, addr, arg_offset);
1592 if (args[i].partial != 0)
1594 /* Only part of the parameter is being passed on the stack.
1595 Generate a simple memory reference of the correct size. */
1596 units_on_stack = args[i].locate.size.constant;
1597 partial_mode = mode_for_size (units_on_stack * BITS_PER_UNIT,
1598 MODE_INT, 1);
1599 args[i].stack = gen_rtx_MEM (partial_mode, addr);
1600 set_mem_size (args[i].stack, units_on_stack);
1602 else
1604 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1605 set_mem_attributes (args[i].stack,
1606 TREE_TYPE (args[i].tree_value), 1);
1608 align = BITS_PER_UNIT;
1609 boundary = args[i].locate.boundary;
1610 if (args[i].locate.where_pad != downward)
1611 align = boundary;
1612 else if (CONST_INT_P (offset))
1614 align = INTVAL (offset) * BITS_PER_UNIT | boundary;
1615 align = align & -align;
1617 set_mem_align (args[i].stack, align);
1619 if (CONST_INT_P (slot_offset))
1620 addr = plus_constant (Pmode, arg_reg, INTVAL (slot_offset));
1621 else
1622 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1624 addr = plus_constant (Pmode, addr, arg_offset);
1626 if (args[i].partial != 0)
1628 /* Only part of the parameter is being passed on the stack.
1629 Generate a simple memory reference of the correct size.
1631 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
1632 set_mem_size (args[i].stack_slot, units_on_stack);
1634 else
1636 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1637 set_mem_attributes (args[i].stack_slot,
1638 TREE_TYPE (args[i].tree_value), 1);
1640 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
1642 /* Function incoming arguments may overlap with sibling call
1643 outgoing arguments and we cannot allow reordering of reads
1644 from function arguments with stores to outgoing arguments
1645 of sibling calls. */
1646 set_mem_alias_set (args[i].stack, 0);
1647 set_mem_alias_set (args[i].stack_slot, 0);
1652 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1653 in a call instruction.
1655 FNDECL is the tree node for the target function. For an indirect call
1656 FNDECL will be NULL_TREE.
1658 ADDR is the operand 0 of CALL_EXPR for this call. */
1660 static rtx
1661 rtx_for_function_call (tree fndecl, tree addr)
1663 rtx funexp;
1665 /* Get the function to call, in the form of RTL. */
1666 if (fndecl)
1668 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
1669 TREE_USED (fndecl) = 1;
1671 /* Get a SYMBOL_REF rtx for the function address. */
1672 funexp = XEXP (DECL_RTL (fndecl), 0);
1674 else
1675 /* Generate an rtx (probably a pseudo-register) for the address. */
1677 push_temp_slots ();
1678 funexp = expand_normal (addr);
1679 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
1681 return funexp;
1684 /* Internal state for internal_arg_pointer_based_exp and its helpers. */
1685 static struct
1687 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
1688 or NULL_RTX if none has been scanned yet. */
1689 rtx_insn *scan_start;
1690 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
1691 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
1692 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
1693 with fixed offset, or PC if this is with variable or unknown offset. */
1694 vec<rtx> cache;
1695 } internal_arg_pointer_exp_state;
1697 static rtx internal_arg_pointer_based_exp (const_rtx, bool);
1699 /* Helper function for internal_arg_pointer_based_exp. Scan insns in
1700 the tail call sequence, starting with first insn that hasn't been
1701 scanned yet, and note for each pseudo on the LHS whether it is based
1702 on crtl->args.internal_arg_pointer or not, and what offset from that
1703 that pointer it has. */
1705 static void
1706 internal_arg_pointer_based_exp_scan (void)
1708 rtx_insn *insn, *scan_start = internal_arg_pointer_exp_state.scan_start;
1710 if (scan_start == NULL_RTX)
1711 insn = get_insns ();
1712 else
1713 insn = NEXT_INSN (scan_start);
1715 while (insn)
1717 rtx set = single_set (insn);
1718 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
1720 rtx val = NULL_RTX;
1721 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
1722 /* Punt on pseudos set multiple times. */
1723 if (idx < internal_arg_pointer_exp_state.cache.length ()
1724 && (internal_arg_pointer_exp_state.cache[idx]
1725 != NULL_RTX))
1726 val = pc_rtx;
1727 else
1728 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
1729 if (val != NULL_RTX)
1731 if (idx >= internal_arg_pointer_exp_state.cache.length ())
1732 internal_arg_pointer_exp_state.cache
1733 .safe_grow_cleared (idx + 1);
1734 internal_arg_pointer_exp_state.cache[idx] = val;
1737 if (NEXT_INSN (insn) == NULL_RTX)
1738 scan_start = insn;
1739 insn = NEXT_INSN (insn);
1742 internal_arg_pointer_exp_state.scan_start = scan_start;
1745 /* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
1746 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
1747 it with fixed offset, or PC if this is with variable or unknown offset.
1748 TOPLEVEL is true if the function is invoked at the topmost level. */
1750 static rtx
1751 internal_arg_pointer_based_exp (const_rtx rtl, bool toplevel)
1753 if (CONSTANT_P (rtl))
1754 return NULL_RTX;
1756 if (rtl == crtl->args.internal_arg_pointer)
1757 return const0_rtx;
1759 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
1760 return NULL_RTX;
1762 if (GET_CODE (rtl) == PLUS && CONST_INT_P (XEXP (rtl, 1)))
1764 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
1765 if (val == NULL_RTX || val == pc_rtx)
1766 return val;
1767 return plus_constant (Pmode, val, INTVAL (XEXP (rtl, 1)));
1770 /* When called at the topmost level, scan pseudo assignments in between the
1771 last scanned instruction in the tail call sequence and the latest insn
1772 in that sequence. */
1773 if (toplevel)
1774 internal_arg_pointer_based_exp_scan ();
1776 if (REG_P (rtl))
1778 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
1779 if (idx < internal_arg_pointer_exp_state.cache.length ())
1780 return internal_arg_pointer_exp_state.cache[idx];
1782 return NULL_RTX;
1785 subrtx_iterator::array_type array;
1786 FOR_EACH_SUBRTX (iter, array, rtl, NONCONST)
1788 const_rtx x = *iter;
1789 if (REG_P (x) && internal_arg_pointer_based_exp (x, false) != NULL_RTX)
1790 return pc_rtx;
1791 if (MEM_P (x))
1792 iter.skip_subrtxes ();
1795 return NULL_RTX;
1798 /* Return true if and only if SIZE storage units (usually bytes)
1799 starting from address ADDR overlap with already clobbered argument
1800 area. This function is used to determine if we should give up a
1801 sibcall. */
1803 static bool
1804 mem_overlaps_already_clobbered_arg_p (rtx addr, unsigned HOST_WIDE_INT size)
1806 HOST_WIDE_INT i;
1807 rtx val;
1809 if (bitmap_empty_p (stored_args_map))
1810 return false;
1811 val = internal_arg_pointer_based_exp (addr, true);
1812 if (val == NULL_RTX)
1813 return false;
1814 else if (val == pc_rtx)
1815 return true;
1816 else
1817 i = INTVAL (val);
1818 #ifdef STACK_GROWS_DOWNWARD
1819 i -= crtl->args.pretend_args_size;
1820 #else
1821 i += crtl->args.pretend_args_size;
1822 #endif
1824 #ifdef ARGS_GROW_DOWNWARD
1825 i = -i - size;
1826 #endif
1827 if (size > 0)
1829 unsigned HOST_WIDE_INT k;
1831 for (k = 0; k < size; k++)
1832 if (i + k < SBITMAP_SIZE (stored_args_map)
1833 && bitmap_bit_p (stored_args_map, i + k))
1834 return true;
1837 return false;
1840 /* Do the register loads required for any wholly-register parms or any
1841 parms which are passed both on the stack and in a register. Their
1842 expressions were already evaluated.
1844 Mark all register-parms as living through the call, putting these USE
1845 insns in the CALL_INSN_FUNCTION_USAGE field.
1847 When IS_SIBCALL, perform the check_sibcall_argument_overlap
1848 checking, setting *SIBCALL_FAILURE if appropriate. */
1850 static void
1851 load_register_parameters (struct arg_data *args, int num_actuals,
1852 rtx *call_fusage, int flags, int is_sibcall,
1853 int *sibcall_failure)
1855 int i, j;
1857 for (i = 0; i < num_actuals; i++)
1859 rtx reg = ((flags & ECF_SIBCALL)
1860 ? args[i].tail_call_reg : args[i].reg);
1861 if (reg)
1863 int partial = args[i].partial;
1864 int nregs;
1865 int size = 0;
1866 rtx_insn *before_arg = get_last_insn ();
1867 /* Set non-negative if we must move a word at a time, even if
1868 just one word (e.g, partial == 4 && mode == DFmode). Set
1869 to -1 if we just use a normal move insn. This value can be
1870 zero if the argument is a zero size structure. */
1871 nregs = -1;
1872 if (GET_CODE (reg) == PARALLEL)
1874 else if (partial)
1876 gcc_assert (partial % UNITS_PER_WORD == 0);
1877 nregs = partial / UNITS_PER_WORD;
1879 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
1881 size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1882 nregs = (size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
1884 else
1885 size = GET_MODE_SIZE (args[i].mode);
1887 /* Handle calls that pass values in multiple non-contiguous
1888 locations. The Irix 6 ABI has examples of this. */
1890 if (GET_CODE (reg) == PARALLEL)
1891 emit_group_move (reg, args[i].parallel_value);
1893 /* If simple case, just do move. If normal partial, store_one_arg
1894 has already loaded the register for us. In all other cases,
1895 load the register(s) from memory. */
1897 else if (nregs == -1)
1899 emit_move_insn (reg, args[i].value);
1900 #ifdef BLOCK_REG_PADDING
1901 /* Handle case where we have a value that needs shifting
1902 up to the msb. eg. a QImode value and we're padding
1903 upward on a BYTES_BIG_ENDIAN machine. */
1904 if (size < UNITS_PER_WORD
1905 && (args[i].locate.where_pad
1906 == (BYTES_BIG_ENDIAN ? upward : downward)))
1908 rtx x;
1909 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
1911 /* Assigning REG here rather than a temp makes CALL_FUSAGE
1912 report the whole reg as used. Strictly speaking, the
1913 call only uses SIZE bytes at the msb end, but it doesn't
1914 seem worth generating rtl to say that. */
1915 reg = gen_rtx_REG (word_mode, REGNO (reg));
1916 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
1917 if (x != reg)
1918 emit_move_insn (reg, x);
1920 #endif
1923 /* If we have pre-computed the values to put in the registers in
1924 the case of non-aligned structures, copy them in now. */
1926 else if (args[i].n_aligned_regs != 0)
1927 for (j = 0; j < args[i].n_aligned_regs; j++)
1928 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
1929 args[i].aligned_regs[j]);
1931 else if (partial == 0 || args[i].pass_on_stack)
1933 rtx mem = validize_mem (copy_rtx (args[i].value));
1935 /* Check for overlap with already clobbered argument area,
1936 providing that this has non-zero size. */
1937 if (is_sibcall
1938 && (size == 0
1939 || mem_overlaps_already_clobbered_arg_p
1940 (XEXP (args[i].value, 0), size)))
1941 *sibcall_failure = 1;
1943 /* Handle a BLKmode that needs shifting. */
1944 if (nregs == 1 && size < UNITS_PER_WORD
1945 #ifdef BLOCK_REG_PADDING
1946 && args[i].locate.where_pad == downward
1947 #else
1948 && BYTES_BIG_ENDIAN
1949 #endif
1952 rtx tem = operand_subword_force (mem, 0, args[i].mode);
1953 rtx ri = gen_rtx_REG (word_mode, REGNO (reg));
1954 rtx x = gen_reg_rtx (word_mode);
1955 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
1956 enum tree_code dir = BYTES_BIG_ENDIAN ? RSHIFT_EXPR
1957 : LSHIFT_EXPR;
1959 emit_move_insn (x, tem);
1960 x = expand_shift (dir, word_mode, x, shift, ri, 1);
1961 if (x != ri)
1962 emit_move_insn (ri, x);
1964 else
1965 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
1968 /* When a parameter is a block, and perhaps in other cases, it is
1969 possible that it did a load from an argument slot that was
1970 already clobbered. */
1971 if (is_sibcall
1972 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
1973 *sibcall_failure = 1;
1975 /* Handle calls that pass values in multiple non-contiguous
1976 locations. The Irix 6 ABI has examples of this. */
1977 if (GET_CODE (reg) == PARALLEL)
1978 use_group_regs (call_fusage, reg);
1979 else if (nregs == -1)
1980 use_reg_mode (call_fusage, reg,
1981 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
1982 else if (nregs > 0)
1983 use_regs (call_fusage, REGNO (reg), nregs);
1988 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
1989 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
1990 bytes, then we would need to push some additional bytes to pad the
1991 arguments. So, we compute an adjust to the stack pointer for an
1992 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
1993 bytes. Then, when the arguments are pushed the stack will be perfectly
1994 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
1995 be popped after the call. Returns the adjustment. */
1997 static int
1998 combine_pending_stack_adjustment_and_call (int unadjusted_args_size,
1999 struct args_size *args_size,
2000 unsigned int preferred_unit_stack_boundary)
2002 /* The number of bytes to pop so that the stack will be
2003 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2004 HOST_WIDE_INT adjustment;
2005 /* The alignment of the stack after the arguments are pushed, if we
2006 just pushed the arguments without adjust the stack here. */
2007 unsigned HOST_WIDE_INT unadjusted_alignment;
2009 unadjusted_alignment
2010 = ((stack_pointer_delta + unadjusted_args_size)
2011 % preferred_unit_stack_boundary);
2013 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2014 as possible -- leaving just enough left to cancel out the
2015 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2016 PENDING_STACK_ADJUST is non-negative, and congruent to
2017 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2019 /* Begin by trying to pop all the bytes. */
2020 unadjusted_alignment
2021 = (unadjusted_alignment
2022 - (pending_stack_adjust % preferred_unit_stack_boundary));
2023 adjustment = pending_stack_adjust;
2024 /* Push enough additional bytes that the stack will be aligned
2025 after the arguments are pushed. */
2026 if (preferred_unit_stack_boundary > 1)
2028 if (unadjusted_alignment > 0)
2029 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
2030 else
2031 adjustment += unadjusted_alignment;
2034 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2035 bytes after the call. The right number is the entire
2036 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2037 by the arguments in the first place. */
2038 args_size->constant
2039 = pending_stack_adjust - adjustment + unadjusted_args_size;
2041 return adjustment;
2044 /* Scan X expression if it does not dereference any argument slots
2045 we already clobbered by tail call arguments (as noted in stored_args_map
2046 bitmap).
2047 Return nonzero if X expression dereferences such argument slots,
2048 zero otherwise. */
2050 static int
2051 check_sibcall_argument_overlap_1 (rtx x)
2053 RTX_CODE code;
2054 int i, j;
2055 const char *fmt;
2057 if (x == NULL_RTX)
2058 return 0;
2060 code = GET_CODE (x);
2062 /* We need not check the operands of the CALL expression itself. */
2063 if (code == CALL)
2064 return 0;
2066 if (code == MEM)
2067 return mem_overlaps_already_clobbered_arg_p (XEXP (x, 0),
2068 GET_MODE_SIZE (GET_MODE (x)));
2070 /* Scan all subexpressions. */
2071 fmt = GET_RTX_FORMAT (code);
2072 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2074 if (*fmt == 'e')
2076 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
2077 return 1;
2079 else if (*fmt == 'E')
2081 for (j = 0; j < XVECLEN (x, i); j++)
2082 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
2083 return 1;
2086 return 0;
2089 /* Scan sequence after INSN if it does not dereference any argument slots
2090 we already clobbered by tail call arguments (as noted in stored_args_map
2091 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
2092 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
2093 should be 0). Return nonzero if sequence after INSN dereferences such argument
2094 slots, zero otherwise. */
2096 static int
2097 check_sibcall_argument_overlap (rtx_insn *insn, struct arg_data *arg,
2098 int mark_stored_args_map)
2100 int low, high;
2102 if (insn == NULL_RTX)
2103 insn = get_insns ();
2104 else
2105 insn = NEXT_INSN (insn);
2107 for (; insn; insn = NEXT_INSN (insn))
2108 if (INSN_P (insn)
2109 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
2110 break;
2112 if (mark_stored_args_map)
2114 #ifdef ARGS_GROW_DOWNWARD
2115 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
2116 #else
2117 low = arg->locate.slot_offset.constant;
2118 #endif
2120 for (high = low + arg->locate.size.constant; low < high; low++)
2121 bitmap_set_bit (stored_args_map, low);
2123 return insn != NULL_RTX;
2126 /* Given that a function returns a value of mode MODE at the most
2127 significant end of hard register VALUE, shift VALUE left or right
2128 as specified by LEFT_P. Return true if some action was needed. */
2130 bool
2131 shift_return_value (enum machine_mode mode, bool left_p, rtx value)
2133 HOST_WIDE_INT shift;
2135 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
2136 shift = GET_MODE_BITSIZE (GET_MODE (value)) - GET_MODE_BITSIZE (mode);
2137 if (shift == 0)
2138 return false;
2140 /* Use ashr rather than lshr for right shifts. This is for the benefit
2141 of the MIPS port, which requires SImode values to be sign-extended
2142 when stored in 64-bit registers. */
2143 if (!force_expand_binop (GET_MODE (value), left_p ? ashl_optab : ashr_optab,
2144 value, GEN_INT (shift), value, 1, OPTAB_WIDEN))
2145 gcc_unreachable ();
2146 return true;
2149 /* If X is a likely-spilled register value, copy it to a pseudo
2150 register and return that register. Return X otherwise. */
2152 static rtx
2153 avoid_likely_spilled_reg (rtx x)
2155 rtx new_rtx;
2157 if (REG_P (x)
2158 && HARD_REGISTER_P (x)
2159 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
2161 /* Make sure that we generate a REG rather than a CONCAT.
2162 Moves into CONCATs can need nontrivial instructions,
2163 and the whole point of this function is to avoid
2164 using the hard register directly in such a situation. */
2165 generating_concat_p = 0;
2166 new_rtx = gen_reg_rtx (GET_MODE (x));
2167 generating_concat_p = 1;
2168 emit_move_insn (new_rtx, x);
2169 return new_rtx;
2171 return x;
2174 /* Generate all the code for a CALL_EXPR exp
2175 and return an rtx for its value.
2176 Store the value in TARGET (specified as an rtx) if convenient.
2177 If the value is stored in TARGET then TARGET is returned.
2178 If IGNORE is nonzero, then we ignore the value of the function call. */
2181 expand_call (tree exp, rtx target, int ignore)
2183 /* Nonzero if we are currently expanding a call. */
2184 static int currently_expanding_call = 0;
2186 /* RTX for the function to be called. */
2187 rtx funexp;
2188 /* Sequence of insns to perform a normal "call". */
2189 rtx_insn *normal_call_insns = NULL;
2190 /* Sequence of insns to perform a tail "call". */
2191 rtx_insn *tail_call_insns = NULL;
2192 /* Data type of the function. */
2193 tree funtype;
2194 tree type_arg_types;
2195 tree rettype;
2196 /* Declaration of the function being called,
2197 or 0 if the function is computed (not known by name). */
2198 tree fndecl = 0;
2199 /* The type of the function being called. */
2200 tree fntype;
2201 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
2202 int pass;
2204 /* Register in which non-BLKmode value will be returned,
2205 or 0 if no value or if value is BLKmode. */
2206 rtx valreg;
2207 /* Address where we should return a BLKmode value;
2208 0 if value not BLKmode. */
2209 rtx structure_value_addr = 0;
2210 /* Nonzero if that address is being passed by treating it as
2211 an extra, implicit first parameter. Otherwise,
2212 it is passed by being copied directly into struct_value_rtx. */
2213 int structure_value_addr_parm = 0;
2214 /* Holds the value of implicit argument for the struct value. */
2215 tree structure_value_addr_value = NULL_TREE;
2216 /* Size of aggregate value wanted, or zero if none wanted
2217 or if we are using the non-reentrant PCC calling convention
2218 or expecting the value in registers. */
2219 HOST_WIDE_INT struct_value_size = 0;
2220 /* Nonzero if called function returns an aggregate in memory PCC style,
2221 by returning the address of where to find it. */
2222 int pcc_struct_value = 0;
2223 rtx struct_value = 0;
2225 /* Number of actual parameters in this call, including struct value addr. */
2226 int num_actuals;
2227 /* Number of named args. Args after this are anonymous ones
2228 and they must all go on the stack. */
2229 int n_named_args;
2230 /* Number of complex actual arguments that need to be split. */
2231 int num_complex_actuals = 0;
2233 /* Vector of information about each argument.
2234 Arguments are numbered in the order they will be pushed,
2235 not the order they are written. */
2236 struct arg_data *args;
2238 /* Total size in bytes of all the stack-parms scanned so far. */
2239 struct args_size args_size;
2240 struct args_size adjusted_args_size;
2241 /* Size of arguments before any adjustments (such as rounding). */
2242 int unadjusted_args_size;
2243 /* Data on reg parms scanned so far. */
2244 CUMULATIVE_ARGS args_so_far_v;
2245 cumulative_args_t args_so_far;
2246 /* Nonzero if a reg parm has been scanned. */
2247 int reg_parm_seen;
2248 /* Nonzero if this is an indirect function call. */
2250 /* Nonzero if we must avoid push-insns in the args for this call.
2251 If stack space is allocated for register parameters, but not by the
2252 caller, then it is preallocated in the fixed part of the stack frame.
2253 So the entire argument block must then be preallocated (i.e., we
2254 ignore PUSH_ROUNDING in that case). */
2256 int must_preallocate = !PUSH_ARGS;
2258 /* Size of the stack reserved for parameter registers. */
2259 int reg_parm_stack_space = 0;
2261 /* Address of space preallocated for stack parms
2262 (on machines that lack push insns), or 0 if space not preallocated. */
2263 rtx argblock = 0;
2265 /* Mask of ECF_ and ERF_ flags. */
2266 int flags = 0;
2267 int return_flags = 0;
2268 #ifdef REG_PARM_STACK_SPACE
2269 /* Define the boundary of the register parm stack space that needs to be
2270 saved, if any. */
2271 int low_to_save, high_to_save;
2272 rtx save_area = 0; /* Place that it is saved */
2273 #endif
2275 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2276 char *initial_stack_usage_map = stack_usage_map;
2277 char *stack_usage_map_buf = NULL;
2279 int old_stack_allocated;
2281 /* State variables to track stack modifications. */
2282 rtx old_stack_level = 0;
2283 int old_stack_arg_under_construction = 0;
2284 int old_pending_adj = 0;
2285 int old_inhibit_defer_pop = inhibit_defer_pop;
2287 /* Some stack pointer alterations we make are performed via
2288 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
2289 which we then also need to save/restore along the way. */
2290 int old_stack_pointer_delta = 0;
2292 rtx call_fusage;
2293 tree addr = CALL_EXPR_FN (exp);
2294 int i;
2295 /* The alignment of the stack, in bits. */
2296 unsigned HOST_WIDE_INT preferred_stack_boundary;
2297 /* The alignment of the stack, in bytes. */
2298 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
2299 /* The static chain value to use for this call. */
2300 rtx static_chain_value;
2301 /* See if this is "nothrow" function call. */
2302 if (TREE_NOTHROW (exp))
2303 flags |= ECF_NOTHROW;
2305 /* See if we can find a DECL-node for the actual function, and get the
2306 function attributes (flags) from the function decl or type node. */
2307 fndecl = get_callee_fndecl (exp);
2308 if (fndecl)
2310 fntype = TREE_TYPE (fndecl);
2311 flags |= flags_from_decl_or_type (fndecl);
2312 return_flags |= decl_return_flags (fndecl);
2314 else
2316 fntype = TREE_TYPE (TREE_TYPE (addr));
2317 flags |= flags_from_decl_or_type (fntype);
2319 rettype = TREE_TYPE (exp);
2321 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
2323 /* Warn if this value is an aggregate type,
2324 regardless of which calling convention we are using for it. */
2325 if (AGGREGATE_TYPE_P (rettype))
2326 warning (OPT_Waggregate_return, "function call has aggregate value");
2328 /* If the result of a non looping pure or const function call is
2329 ignored (or void), and none of its arguments are volatile, we can
2330 avoid expanding the call and just evaluate the arguments for
2331 side-effects. */
2332 if ((flags & (ECF_CONST | ECF_PURE))
2333 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
2334 && (ignore || target == const0_rtx
2335 || TYPE_MODE (rettype) == VOIDmode))
2337 bool volatilep = false;
2338 tree arg;
2339 call_expr_arg_iterator iter;
2341 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2342 if (TREE_THIS_VOLATILE (arg))
2344 volatilep = true;
2345 break;
2348 if (! volatilep)
2350 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2351 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
2352 return const0_rtx;
2356 #ifdef REG_PARM_STACK_SPACE
2357 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
2358 #endif
2360 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
2361 && reg_parm_stack_space > 0 && PUSH_ARGS)
2362 must_preallocate = 1;
2364 /* Set up a place to return a structure. */
2366 /* Cater to broken compilers. */
2367 if (aggregate_value_p (exp, fntype))
2369 /* This call returns a big structure. */
2370 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
2372 #ifdef PCC_STATIC_STRUCT_RETURN
2374 pcc_struct_value = 1;
2376 #else /* not PCC_STATIC_STRUCT_RETURN */
2378 struct_value_size = int_size_in_bytes (rettype);
2380 /* Even if it is semantically safe to use the target as the return
2381 slot, it may be not sufficiently aligned for the return type. */
2382 if (CALL_EXPR_RETURN_SLOT_OPT (exp)
2383 && target
2384 && MEM_P (target)
2385 && !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
2386 && SLOW_UNALIGNED_ACCESS (TYPE_MODE (rettype),
2387 MEM_ALIGN (target))))
2388 structure_value_addr = XEXP (target, 0);
2389 else
2391 /* For variable-sized objects, we must be called with a target
2392 specified. If we were to allocate space on the stack here,
2393 we would have no way of knowing when to free it. */
2394 rtx d = assign_temp (rettype, 1, 1);
2395 structure_value_addr = XEXP (d, 0);
2396 target = 0;
2399 #endif /* not PCC_STATIC_STRUCT_RETURN */
2402 /* Figure out the amount to which the stack should be aligned. */
2403 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
2404 if (fndecl)
2406 struct cgraph_rtl_info *i = cgraph_node::rtl_info (fndecl);
2407 /* Without automatic stack alignment, we can't increase preferred
2408 stack boundary. With automatic stack alignment, it is
2409 unnecessary since unless we can guarantee that all callers will
2410 align the outgoing stack properly, callee has to align its
2411 stack anyway. */
2412 if (i
2413 && i->preferred_incoming_stack_boundary
2414 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
2415 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
2418 /* Operand 0 is a pointer-to-function; get the type of the function. */
2419 funtype = TREE_TYPE (addr);
2420 gcc_assert (POINTER_TYPE_P (funtype));
2421 funtype = TREE_TYPE (funtype);
2423 /* Count whether there are actual complex arguments that need to be split
2424 into their real and imaginary parts. Munge the type_arg_types
2425 appropriately here as well. */
2426 if (targetm.calls.split_complex_arg)
2428 call_expr_arg_iterator iter;
2429 tree arg;
2430 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2432 tree type = TREE_TYPE (arg);
2433 if (type && TREE_CODE (type) == COMPLEX_TYPE
2434 && targetm.calls.split_complex_arg (type))
2435 num_complex_actuals++;
2437 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
2439 else
2440 type_arg_types = TYPE_ARG_TYPES (funtype);
2442 if (flags & ECF_MAY_BE_ALLOCA)
2443 cfun->calls_alloca = 1;
2445 /* If struct_value_rtx is 0, it means pass the address
2446 as if it were an extra parameter. Put the argument expression
2447 in structure_value_addr_value. */
2448 if (structure_value_addr && struct_value == 0)
2450 /* If structure_value_addr is a REG other than
2451 virtual_outgoing_args_rtx, we can use always use it. If it
2452 is not a REG, we must always copy it into a register.
2453 If it is virtual_outgoing_args_rtx, we must copy it to another
2454 register in some cases. */
2455 rtx temp = (!REG_P (structure_value_addr)
2456 || (ACCUMULATE_OUTGOING_ARGS
2457 && stack_arg_under_construction
2458 && structure_value_addr == virtual_outgoing_args_rtx)
2459 ? copy_addr_to_reg (convert_memory_address
2460 (Pmode, structure_value_addr))
2461 : structure_value_addr);
2463 structure_value_addr_value =
2464 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
2465 structure_value_addr_parm = 1;
2468 /* Count the arguments and set NUM_ACTUALS. */
2469 num_actuals =
2470 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
2472 /* Compute number of named args.
2473 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
2475 if (type_arg_types != 0)
2476 n_named_args
2477 = (list_length (type_arg_types)
2478 /* Count the struct value address, if it is passed as a parm. */
2479 + structure_value_addr_parm);
2480 else
2481 /* If we know nothing, treat all args as named. */
2482 n_named_args = num_actuals;
2484 /* Start updating where the next arg would go.
2486 On some machines (such as the PA) indirect calls have a different
2487 calling convention than normal calls. The fourth argument in
2488 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2489 or not. */
2490 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
2491 args_so_far = pack_cumulative_args (&args_so_far_v);
2493 /* Now possibly adjust the number of named args.
2494 Normally, don't include the last named arg if anonymous args follow.
2495 We do include the last named arg if
2496 targetm.calls.strict_argument_naming() returns nonzero.
2497 (If no anonymous args follow, the result of list_length is actually
2498 one too large. This is harmless.)
2500 If targetm.calls.pretend_outgoing_varargs_named() returns
2501 nonzero, and targetm.calls.strict_argument_naming() returns zero,
2502 this machine will be able to place unnamed args that were passed
2503 in registers into the stack. So treat all args as named. This
2504 allows the insns emitting for a specific argument list to be
2505 independent of the function declaration.
2507 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
2508 we do not have any reliable way to pass unnamed args in
2509 registers, so we must force them into memory. */
2511 if (type_arg_types != 0
2512 && targetm.calls.strict_argument_naming (args_so_far))
2514 else if (type_arg_types != 0
2515 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
2516 /* Don't include the last named arg. */
2517 --n_named_args;
2518 else
2519 /* Treat all args as named. */
2520 n_named_args = num_actuals;
2522 /* Make a vector to hold all the information about each arg. */
2523 args = XALLOCAVEC (struct arg_data, num_actuals);
2524 memset (args, 0, num_actuals * sizeof (struct arg_data));
2526 /* Build up entries in the ARGS array, compute the size of the
2527 arguments into ARGS_SIZE, etc. */
2528 initialize_argument_information (num_actuals, args, &args_size,
2529 n_named_args, exp,
2530 structure_value_addr_value, fndecl, fntype,
2531 args_so_far, reg_parm_stack_space,
2532 &old_stack_level, &old_pending_adj,
2533 &must_preallocate, &flags,
2534 &try_tail_call, CALL_FROM_THUNK_P (exp));
2536 if (args_size.var)
2537 must_preallocate = 1;
2539 /* Now make final decision about preallocating stack space. */
2540 must_preallocate = finalize_must_preallocate (must_preallocate,
2541 num_actuals, args,
2542 &args_size);
2544 /* If the structure value address will reference the stack pointer, we
2545 must stabilize it. We don't need to do this if we know that we are
2546 not going to adjust the stack pointer in processing this call. */
2548 if (structure_value_addr
2549 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2550 || reg_mentioned_p (virtual_outgoing_args_rtx,
2551 structure_value_addr))
2552 && (args_size.var
2553 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2554 structure_value_addr = copy_to_reg (structure_value_addr);
2556 /* Tail calls can make things harder to debug, and we've traditionally
2557 pushed these optimizations into -O2. Don't try if we're already
2558 expanding a call, as that means we're an argument. Don't try if
2559 there's cleanups, as we know there's code to follow the call. */
2561 if (currently_expanding_call++ != 0
2562 || !flag_optimize_sibling_calls
2563 || args_size.var
2564 || dbg_cnt (tail_call) == false)
2565 try_tail_call = 0;
2567 /* Rest of purposes for tail call optimizations to fail. */
2568 if (
2569 #ifdef HAVE_sibcall_epilogue
2570 !HAVE_sibcall_epilogue
2571 #else
2573 #endif
2574 || !try_tail_call
2575 /* Doing sibling call optimization needs some work, since
2576 structure_value_addr can be allocated on the stack.
2577 It does not seem worth the effort since few optimizable
2578 sibling calls will return a structure. */
2579 || structure_value_addr != NULL_RTX
2580 #ifdef REG_PARM_STACK_SPACE
2581 /* If outgoing reg parm stack space changes, we can not do sibcall. */
2582 || (OUTGOING_REG_PARM_STACK_SPACE (funtype)
2583 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl)))
2584 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (current_function_decl))
2585 #endif
2586 /* Check whether the target is able to optimize the call
2587 into a sibcall. */
2588 || !targetm.function_ok_for_sibcall (fndecl, exp)
2589 /* Functions that do not return exactly once may not be sibcall
2590 optimized. */
2591 || (flags & (ECF_RETURNS_TWICE | ECF_NORETURN))
2592 || TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr)))
2593 /* If the called function is nested in the current one, it might access
2594 some of the caller's arguments, but could clobber them beforehand if
2595 the argument areas are shared. */
2596 || (fndecl && decl_function_context (fndecl) == current_function_decl)
2597 /* If this function requires more stack slots than the current
2598 function, we cannot change it into a sibling call.
2599 crtl->args.pretend_args_size is not part of the
2600 stack allocated by our caller. */
2601 || args_size.constant > (crtl->args.size
2602 - crtl->args.pretend_args_size)
2603 /* If the callee pops its own arguments, then it must pop exactly
2604 the same number of arguments as the current function. */
2605 || (targetm.calls.return_pops_args (fndecl, funtype, args_size.constant)
2606 != targetm.calls.return_pops_args (current_function_decl,
2607 TREE_TYPE (current_function_decl),
2608 crtl->args.size))
2609 || !lang_hooks.decls.ok_for_sibcall (fndecl))
2610 try_tail_call = 0;
2612 /* Check if caller and callee disagree in promotion of function
2613 return value. */
2614 if (try_tail_call)
2616 enum machine_mode caller_mode, caller_promoted_mode;
2617 enum machine_mode callee_mode, callee_promoted_mode;
2618 int caller_unsignedp, callee_unsignedp;
2619 tree caller_res = DECL_RESULT (current_function_decl);
2621 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
2622 caller_mode = DECL_MODE (caller_res);
2623 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
2624 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
2625 caller_promoted_mode
2626 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
2627 &caller_unsignedp,
2628 TREE_TYPE (current_function_decl), 1);
2629 callee_promoted_mode
2630 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
2631 &callee_unsignedp,
2632 funtype, 1);
2633 if (caller_mode != VOIDmode
2634 && (caller_promoted_mode != callee_promoted_mode
2635 || ((caller_mode != caller_promoted_mode
2636 || callee_mode != callee_promoted_mode)
2637 && (caller_unsignedp != callee_unsignedp
2638 || GET_MODE_BITSIZE (caller_mode)
2639 < GET_MODE_BITSIZE (callee_mode)))))
2640 try_tail_call = 0;
2643 /* Ensure current function's preferred stack boundary is at least
2644 what we need. Stack alignment may also increase preferred stack
2645 boundary. */
2646 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
2647 crtl->preferred_stack_boundary = preferred_stack_boundary;
2648 else
2649 preferred_stack_boundary = crtl->preferred_stack_boundary;
2651 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
2653 /* We want to make two insn chains; one for a sibling call, the other
2654 for a normal call. We will select one of the two chains after
2655 initial RTL generation is complete. */
2656 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
2658 int sibcall_failure = 0;
2659 /* We want to emit any pending stack adjustments before the tail
2660 recursion "call". That way we know any adjustment after the tail
2661 recursion call can be ignored if we indeed use the tail
2662 call expansion. */
2663 saved_pending_stack_adjust save;
2664 rtx_insn *insns, *before_call, *after_args;
2665 rtx next_arg_reg;
2667 if (pass == 0)
2669 /* State variables we need to save and restore between
2670 iterations. */
2671 save_pending_stack_adjust (&save);
2673 if (pass)
2674 flags &= ~ECF_SIBCALL;
2675 else
2676 flags |= ECF_SIBCALL;
2678 /* Other state variables that we must reinitialize each time
2679 through the loop (that are not initialized by the loop itself). */
2680 argblock = 0;
2681 call_fusage = 0;
2683 /* Start a new sequence for the normal call case.
2685 From this point on, if the sibling call fails, we want to set
2686 sibcall_failure instead of continuing the loop. */
2687 start_sequence ();
2689 /* Don't let pending stack adjusts add up to too much.
2690 Also, do all pending adjustments now if there is any chance
2691 this might be a call to alloca or if we are expanding a sibling
2692 call sequence.
2693 Also do the adjustments before a throwing call, otherwise
2694 exception handling can fail; PR 19225. */
2695 if (pending_stack_adjust >= 32
2696 || (pending_stack_adjust > 0
2697 && (flags & ECF_MAY_BE_ALLOCA))
2698 || (pending_stack_adjust > 0
2699 && flag_exceptions && !(flags & ECF_NOTHROW))
2700 || pass == 0)
2701 do_pending_stack_adjust ();
2703 /* Precompute any arguments as needed. */
2704 if (pass)
2705 precompute_arguments (num_actuals, args);
2707 /* Now we are about to start emitting insns that can be deleted
2708 if a libcall is deleted. */
2709 if (pass && (flags & ECF_MALLOC))
2710 start_sequence ();
2712 if (pass == 0 && crtl->stack_protect_guard)
2713 stack_protect_epilogue ();
2715 adjusted_args_size = args_size;
2716 /* Compute the actual size of the argument block required. The variable
2717 and constant sizes must be combined, the size may have to be rounded,
2718 and there may be a minimum required size. When generating a sibcall
2719 pattern, do not round up, since we'll be re-using whatever space our
2720 caller provided. */
2721 unadjusted_args_size
2722 = compute_argument_block_size (reg_parm_stack_space,
2723 &adjusted_args_size,
2724 fndecl, fntype,
2725 (pass == 0 ? 0
2726 : preferred_stack_boundary));
2728 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
2730 /* The argument block when performing a sibling call is the
2731 incoming argument block. */
2732 if (pass == 0)
2734 argblock = crtl->args.internal_arg_pointer;
2735 argblock
2736 #ifdef STACK_GROWS_DOWNWARD
2737 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
2738 #else
2739 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
2740 #endif
2741 stored_args_map = sbitmap_alloc (args_size.constant);
2742 bitmap_clear (stored_args_map);
2745 /* If we have no actual push instructions, or shouldn't use them,
2746 make space for all args right now. */
2747 else if (adjusted_args_size.var != 0)
2749 if (old_stack_level == 0)
2751 emit_stack_save (SAVE_BLOCK, &old_stack_level);
2752 old_stack_pointer_delta = stack_pointer_delta;
2753 old_pending_adj = pending_stack_adjust;
2754 pending_stack_adjust = 0;
2755 /* stack_arg_under_construction says whether a stack arg is
2756 being constructed at the old stack level. Pushing the stack
2757 gets a clean outgoing argument block. */
2758 old_stack_arg_under_construction = stack_arg_under_construction;
2759 stack_arg_under_construction = 0;
2761 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
2762 if (flag_stack_usage_info)
2763 current_function_has_unbounded_dynamic_stack_size = 1;
2765 else
2767 /* Note that we must go through the motions of allocating an argument
2768 block even if the size is zero because we may be storing args
2769 in the area reserved for register arguments, which may be part of
2770 the stack frame. */
2772 int needed = adjusted_args_size.constant;
2774 /* Store the maximum argument space used. It will be pushed by
2775 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
2776 checking). */
2778 if (needed > crtl->outgoing_args_size)
2779 crtl->outgoing_args_size = needed;
2781 if (must_preallocate)
2783 if (ACCUMULATE_OUTGOING_ARGS)
2785 /* Since the stack pointer will never be pushed, it is
2786 possible for the evaluation of a parm to clobber
2787 something we have already written to the stack.
2788 Since most function calls on RISC machines do not use
2789 the stack, this is uncommon, but must work correctly.
2791 Therefore, we save any area of the stack that was already
2792 written and that we are using. Here we set up to do this
2793 by making a new stack usage map from the old one. The
2794 actual save will be done by store_one_arg.
2796 Another approach might be to try to reorder the argument
2797 evaluations to avoid this conflicting stack usage. */
2799 /* Since we will be writing into the entire argument area,
2800 the map must be allocated for its entire size, not just
2801 the part that is the responsibility of the caller. */
2802 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
2803 needed += reg_parm_stack_space;
2805 #ifdef ARGS_GROW_DOWNWARD
2806 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2807 needed + 1);
2808 #else
2809 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2810 needed);
2811 #endif
2812 free (stack_usage_map_buf);
2813 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
2814 stack_usage_map = stack_usage_map_buf;
2816 if (initial_highest_arg_in_use)
2817 memcpy (stack_usage_map, initial_stack_usage_map,
2818 initial_highest_arg_in_use);
2820 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
2821 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
2822 (highest_outgoing_arg_in_use
2823 - initial_highest_arg_in_use));
2824 needed = 0;
2826 /* The address of the outgoing argument list must not be
2827 copied to a register here, because argblock would be left
2828 pointing to the wrong place after the call to
2829 allocate_dynamic_stack_space below. */
2831 argblock = virtual_outgoing_args_rtx;
2833 else
2835 if (inhibit_defer_pop == 0)
2837 /* Try to reuse some or all of the pending_stack_adjust
2838 to get this space. */
2839 needed
2840 = (combine_pending_stack_adjustment_and_call
2841 (unadjusted_args_size,
2842 &adjusted_args_size,
2843 preferred_unit_stack_boundary));
2845 /* combine_pending_stack_adjustment_and_call computes
2846 an adjustment before the arguments are allocated.
2847 Account for them and see whether or not the stack
2848 needs to go up or down. */
2849 needed = unadjusted_args_size - needed;
2851 if (needed < 0)
2853 /* We're releasing stack space. */
2854 /* ??? We can avoid any adjustment at all if we're
2855 already aligned. FIXME. */
2856 pending_stack_adjust = -needed;
2857 do_pending_stack_adjust ();
2858 needed = 0;
2860 else
2861 /* We need to allocate space. We'll do that in
2862 push_block below. */
2863 pending_stack_adjust = 0;
2866 /* Special case this because overhead of `push_block' in
2867 this case is non-trivial. */
2868 if (needed == 0)
2869 argblock = virtual_outgoing_args_rtx;
2870 else
2872 argblock = push_block (GEN_INT (needed), 0, 0);
2873 #ifdef ARGS_GROW_DOWNWARD
2874 argblock = plus_constant (Pmode, argblock, needed);
2875 #endif
2878 /* We only really need to call `copy_to_reg' in the case
2879 where push insns are going to be used to pass ARGBLOCK
2880 to a function call in ARGS. In that case, the stack
2881 pointer changes value from the allocation point to the
2882 call point, and hence the value of
2883 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
2884 as well always do it. */
2885 argblock = copy_to_reg (argblock);
2890 if (ACCUMULATE_OUTGOING_ARGS)
2892 /* The save/restore code in store_one_arg handles all
2893 cases except one: a constructor call (including a C
2894 function returning a BLKmode struct) to initialize
2895 an argument. */
2896 if (stack_arg_under_construction)
2898 rtx push_size
2899 = GEN_INT (adjusted_args_size.constant
2900 + (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype
2901 : TREE_TYPE (fndecl))) ? 0
2902 : reg_parm_stack_space));
2903 if (old_stack_level == 0)
2905 emit_stack_save (SAVE_BLOCK, &old_stack_level);
2906 old_stack_pointer_delta = stack_pointer_delta;
2907 old_pending_adj = pending_stack_adjust;
2908 pending_stack_adjust = 0;
2909 /* stack_arg_under_construction says whether a stack
2910 arg is being constructed at the old stack level.
2911 Pushing the stack gets a clean outgoing argument
2912 block. */
2913 old_stack_arg_under_construction
2914 = stack_arg_under_construction;
2915 stack_arg_under_construction = 0;
2916 /* Make a new map for the new argument list. */
2917 free (stack_usage_map_buf);
2918 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
2919 stack_usage_map = stack_usage_map_buf;
2920 highest_outgoing_arg_in_use = 0;
2922 /* We can pass TRUE as the 4th argument because we just
2923 saved the stack pointer and will restore it right after
2924 the call. */
2925 allocate_dynamic_stack_space (push_size, 0,
2926 BIGGEST_ALIGNMENT, true);
2929 /* If argument evaluation might modify the stack pointer,
2930 copy the address of the argument list to a register. */
2931 for (i = 0; i < num_actuals; i++)
2932 if (args[i].pass_on_stack)
2934 argblock = copy_addr_to_reg (argblock);
2935 break;
2939 compute_argument_addresses (args, argblock, num_actuals);
2941 /* Perform stack alignment before the first push (the last arg). */
2942 if (argblock == 0
2943 && adjusted_args_size.constant > reg_parm_stack_space
2944 && adjusted_args_size.constant != unadjusted_args_size)
2946 /* When the stack adjustment is pending, we get better code
2947 by combining the adjustments. */
2948 if (pending_stack_adjust
2949 && ! inhibit_defer_pop)
2951 pending_stack_adjust
2952 = (combine_pending_stack_adjustment_and_call
2953 (unadjusted_args_size,
2954 &adjusted_args_size,
2955 preferred_unit_stack_boundary));
2956 do_pending_stack_adjust ();
2958 else if (argblock == 0)
2959 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
2960 - unadjusted_args_size));
2962 /* Now that the stack is properly aligned, pops can't safely
2963 be deferred during the evaluation of the arguments. */
2964 NO_DEFER_POP;
2966 /* Record the maximum pushed stack space size. We need to delay
2967 doing it this far to take into account the optimization done
2968 by combine_pending_stack_adjustment_and_call. */
2969 if (flag_stack_usage_info
2970 && !ACCUMULATE_OUTGOING_ARGS
2971 && pass
2972 && adjusted_args_size.var == 0)
2974 int pushed = adjusted_args_size.constant + pending_stack_adjust;
2975 if (pushed > current_function_pushed_stack_size)
2976 current_function_pushed_stack_size = pushed;
2979 funexp = rtx_for_function_call (fndecl, addr);
2981 /* Figure out the register where the value, if any, will come back. */
2982 valreg = 0;
2983 if (TYPE_MODE (rettype) != VOIDmode
2984 && ! structure_value_addr)
2986 if (pcc_struct_value)
2987 valreg = hard_function_value (build_pointer_type (rettype),
2988 fndecl, NULL, (pass == 0));
2989 else
2990 valreg = hard_function_value (rettype, fndecl, fntype,
2991 (pass == 0));
2993 /* If VALREG is a PARALLEL whose first member has a zero
2994 offset, use that. This is for targets such as m68k that
2995 return the same value in multiple places. */
2996 if (GET_CODE (valreg) == PARALLEL)
2998 rtx elem = XVECEXP (valreg, 0, 0);
2999 rtx where = XEXP (elem, 0);
3000 rtx offset = XEXP (elem, 1);
3001 if (offset == const0_rtx
3002 && GET_MODE (where) == GET_MODE (valreg))
3003 valreg = where;
3007 /* Precompute all register parameters. It isn't safe to compute anything
3008 once we have started filling any specific hard regs. */
3009 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
3011 if (CALL_EXPR_STATIC_CHAIN (exp))
3012 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
3013 else
3014 static_chain_value = 0;
3016 #ifdef REG_PARM_STACK_SPACE
3017 /* Save the fixed argument area if it's part of the caller's frame and
3018 is clobbered by argument setup for this call. */
3019 if (ACCUMULATE_OUTGOING_ARGS && pass)
3020 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3021 &low_to_save, &high_to_save);
3022 #endif
3024 /* Now store (and compute if necessary) all non-register parms.
3025 These come before register parms, since they can require block-moves,
3026 which could clobber the registers used for register parms.
3027 Parms which have partial registers are not stored here,
3028 but we do preallocate space here if they want that. */
3030 for (i = 0; i < num_actuals; i++)
3032 if (args[i].reg == 0 || args[i].pass_on_stack)
3034 rtx_insn *before_arg = get_last_insn ();
3036 /* We don't allow passing huge (> 2^30 B) arguments
3037 by value. It would cause an overflow later on. */
3038 if (adjusted_args_size.constant
3039 >= (1 << (HOST_BITS_PER_INT - 2)))
3041 sorry ("passing too large argument on stack");
3042 continue;
3045 if (store_one_arg (&args[i], argblock, flags,
3046 adjusted_args_size.var != 0,
3047 reg_parm_stack_space)
3048 || (pass == 0
3049 && check_sibcall_argument_overlap (before_arg,
3050 &args[i], 1)))
3051 sibcall_failure = 1;
3054 if (args[i].stack)
3055 call_fusage
3056 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
3057 gen_rtx_USE (VOIDmode, args[i].stack),
3058 call_fusage);
3061 /* If we have a parm that is passed in registers but not in memory
3062 and whose alignment does not permit a direct copy into registers,
3063 make a group of pseudos that correspond to each register that we
3064 will later fill. */
3065 if (STRICT_ALIGNMENT)
3066 store_unaligned_arguments_into_pseudos (args, num_actuals);
3068 /* Now store any partially-in-registers parm.
3069 This is the last place a block-move can happen. */
3070 if (reg_parm_seen)
3071 for (i = 0; i < num_actuals; i++)
3072 if (args[i].partial != 0 && ! args[i].pass_on_stack)
3074 rtx_insn *before_arg = get_last_insn ();
3076 if (store_one_arg (&args[i], argblock, flags,
3077 adjusted_args_size.var != 0,
3078 reg_parm_stack_space)
3079 || (pass == 0
3080 && check_sibcall_argument_overlap (before_arg,
3081 &args[i], 1)))
3082 sibcall_failure = 1;
3085 /* If register arguments require space on the stack and stack space
3086 was not preallocated, allocate stack space here for arguments
3087 passed in registers. */
3088 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
3089 && !ACCUMULATE_OUTGOING_ARGS
3090 && must_preallocate == 0 && reg_parm_stack_space > 0)
3091 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
3093 /* Pass the function the address in which to return a
3094 structure value. */
3095 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3097 structure_value_addr
3098 = convert_memory_address (Pmode, structure_value_addr);
3099 emit_move_insn (struct_value,
3100 force_reg (Pmode,
3101 force_operand (structure_value_addr,
3102 NULL_RTX)));
3104 if (REG_P (struct_value))
3105 use_reg (&call_fusage, struct_value);
3108 after_args = get_last_insn ();
3109 funexp = prepare_call_address (fndecl, funexp, static_chain_value,
3110 &call_fusage, reg_parm_seen, pass == 0);
3112 load_register_parameters (args, num_actuals, &call_fusage, flags,
3113 pass == 0, &sibcall_failure);
3115 /* Save a pointer to the last insn before the call, so that we can
3116 later safely search backwards to find the CALL_INSN. */
3117 before_call = get_last_insn ();
3119 /* Set up next argument register. For sibling calls on machines
3120 with register windows this should be the incoming register. */
3121 if (pass == 0)
3122 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
3123 VOIDmode,
3124 void_type_node,
3125 true);
3126 else
3127 next_arg_reg = targetm.calls.function_arg (args_so_far,
3128 VOIDmode, void_type_node,
3129 true);
3131 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
3133 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
3134 arg_nr = num_actuals - arg_nr - 1;
3135 if (arg_nr >= 0
3136 && arg_nr < num_actuals
3137 && args[arg_nr].reg
3138 && valreg
3139 && REG_P (valreg)
3140 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
3141 call_fusage
3142 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
3143 gen_rtx_SET (VOIDmode, valreg, args[arg_nr].reg),
3144 call_fusage);
3146 /* All arguments and registers used for the call must be set up by
3147 now! */
3149 /* Stack must be properly aligned now. */
3150 gcc_assert (!pass
3151 || !(stack_pointer_delta % preferred_unit_stack_boundary));
3153 /* Generate the actual call instruction. */
3154 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
3155 adjusted_args_size.constant, struct_value_size,
3156 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
3157 flags, args_so_far);
3159 if (flag_use_caller_save)
3161 rtx_call_insn *last;
3162 rtx datum = NULL_RTX;
3163 if (fndecl != NULL_TREE)
3165 datum = XEXP (DECL_RTL (fndecl), 0);
3166 gcc_assert (datum != NULL_RTX
3167 && GET_CODE (datum) == SYMBOL_REF);
3169 last = last_call_insn ();
3170 add_reg_note (last, REG_CALL_DECL, datum);
3173 /* If the call setup or the call itself overlaps with anything
3174 of the argument setup we probably clobbered our call address.
3175 In that case we can't do sibcalls. */
3176 if (pass == 0
3177 && check_sibcall_argument_overlap (after_args, 0, 0))
3178 sibcall_failure = 1;
3180 /* If a non-BLKmode value is returned at the most significant end
3181 of a register, shift the register right by the appropriate amount
3182 and update VALREG accordingly. BLKmode values are handled by the
3183 group load/store machinery below. */
3184 if (!structure_value_addr
3185 && !pcc_struct_value
3186 && TYPE_MODE (rettype) != VOIDmode
3187 && TYPE_MODE (rettype) != BLKmode
3188 && REG_P (valreg)
3189 && targetm.calls.return_in_msb (rettype))
3191 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
3192 sibcall_failure = 1;
3193 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
3196 if (pass && (flags & ECF_MALLOC))
3198 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3199 rtx_insn *last, *insns;
3201 /* The return value from a malloc-like function is a pointer. */
3202 if (TREE_CODE (rettype) == POINTER_TYPE)
3203 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
3205 emit_move_insn (temp, valreg);
3207 /* The return value from a malloc-like function can not alias
3208 anything else. */
3209 last = get_last_insn ();
3210 add_reg_note (last, REG_NOALIAS, temp);
3212 /* Write out the sequence. */
3213 insns = get_insns ();
3214 end_sequence ();
3215 emit_insn (insns);
3216 valreg = temp;
3219 /* For calls to `setjmp', etc., inform
3220 function.c:setjmp_warnings that it should complain if
3221 nonvolatile values are live. For functions that cannot
3222 return, inform flow that control does not fall through. */
3224 if ((flags & ECF_NORETURN) || pass == 0)
3226 /* The barrier must be emitted
3227 immediately after the CALL_INSN. Some ports emit more
3228 than just a CALL_INSN above, so we must search for it here. */
3230 rtx_insn *last = get_last_insn ();
3231 while (!CALL_P (last))
3233 last = PREV_INSN (last);
3234 /* There was no CALL_INSN? */
3235 gcc_assert (last != before_call);
3238 emit_barrier_after (last);
3240 /* Stack adjustments after a noreturn call are dead code.
3241 However when NO_DEFER_POP is in effect, we must preserve
3242 stack_pointer_delta. */
3243 if (inhibit_defer_pop == 0)
3245 stack_pointer_delta = old_stack_allocated;
3246 pending_stack_adjust = 0;
3250 /* If value type not void, return an rtx for the value. */
3252 if (TYPE_MODE (rettype) == VOIDmode
3253 || ignore)
3254 target = const0_rtx;
3255 else if (structure_value_addr)
3257 if (target == 0 || !MEM_P (target))
3259 target
3260 = gen_rtx_MEM (TYPE_MODE (rettype),
3261 memory_address (TYPE_MODE (rettype),
3262 structure_value_addr));
3263 set_mem_attributes (target, rettype, 1);
3266 else if (pcc_struct_value)
3268 /* This is the special C++ case where we need to
3269 know what the true target was. We take care to
3270 never use this value more than once in one expression. */
3271 target = gen_rtx_MEM (TYPE_MODE (rettype),
3272 copy_to_reg (valreg));
3273 set_mem_attributes (target, rettype, 1);
3275 /* Handle calls that return values in multiple non-contiguous locations.
3276 The Irix 6 ABI has examples of this. */
3277 else if (GET_CODE (valreg) == PARALLEL)
3279 if (target == 0)
3280 target = emit_group_move_into_temps (valreg);
3281 else if (rtx_equal_p (target, valreg))
3283 else if (GET_CODE (target) == PARALLEL)
3284 /* Handle the result of a emit_group_move_into_temps
3285 call in the previous pass. */
3286 emit_group_move (target, valreg);
3287 else
3288 emit_group_store (target, valreg, rettype,
3289 int_size_in_bytes (rettype));
3291 else if (target
3292 && GET_MODE (target) == TYPE_MODE (rettype)
3293 && GET_MODE (target) == GET_MODE (valreg))
3295 bool may_overlap = false;
3297 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
3298 reg to a plain register. */
3299 if (!REG_P (target) || HARD_REGISTER_P (target))
3300 valreg = avoid_likely_spilled_reg (valreg);
3302 /* If TARGET is a MEM in the argument area, and we have
3303 saved part of the argument area, then we can't store
3304 directly into TARGET as it may get overwritten when we
3305 restore the argument save area below. Don't work too
3306 hard though and simply force TARGET to a register if it
3307 is a MEM; the optimizer is quite likely to sort it out. */
3308 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
3309 for (i = 0; i < num_actuals; i++)
3310 if (args[i].save_area)
3312 may_overlap = true;
3313 break;
3316 if (may_overlap)
3317 target = copy_to_reg (valreg);
3318 else
3320 /* TARGET and VALREG cannot be equal at this point
3321 because the latter would not have
3322 REG_FUNCTION_VALUE_P true, while the former would if
3323 it were referring to the same register.
3325 If they refer to the same register, this move will be
3326 a no-op, except when function inlining is being
3327 done. */
3328 emit_move_insn (target, valreg);
3330 /* If we are setting a MEM, this code must be executed.
3331 Since it is emitted after the call insn, sibcall
3332 optimization cannot be performed in that case. */
3333 if (MEM_P (target))
3334 sibcall_failure = 1;
3337 else
3338 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
3340 /* If we promoted this return value, make the proper SUBREG.
3341 TARGET might be const0_rtx here, so be careful. */
3342 if (REG_P (target)
3343 && TYPE_MODE (rettype) != BLKmode
3344 && GET_MODE (target) != TYPE_MODE (rettype))
3346 tree type = rettype;
3347 int unsignedp = TYPE_UNSIGNED (type);
3348 int offset = 0;
3349 enum machine_mode pmode;
3351 /* Ensure we promote as expected, and get the new unsignedness. */
3352 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
3353 funtype, 1);
3354 gcc_assert (GET_MODE (target) == pmode);
3356 if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
3357 && (GET_MODE_SIZE (GET_MODE (target))
3358 > GET_MODE_SIZE (TYPE_MODE (type))))
3360 offset = GET_MODE_SIZE (GET_MODE (target))
3361 - GET_MODE_SIZE (TYPE_MODE (type));
3362 if (! BYTES_BIG_ENDIAN)
3363 offset = (offset / UNITS_PER_WORD) * UNITS_PER_WORD;
3364 else if (! WORDS_BIG_ENDIAN)
3365 offset %= UNITS_PER_WORD;
3368 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
3369 SUBREG_PROMOTED_VAR_P (target) = 1;
3370 SUBREG_PROMOTED_SET (target, unsignedp);
3373 /* If size of args is variable or this was a constructor call for a stack
3374 argument, restore saved stack-pointer value. */
3376 if (old_stack_level)
3378 rtx_insn *prev = get_last_insn ();
3380 emit_stack_restore (SAVE_BLOCK, old_stack_level);
3381 stack_pointer_delta = old_stack_pointer_delta;
3383 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
3385 pending_stack_adjust = old_pending_adj;
3386 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3387 stack_arg_under_construction = old_stack_arg_under_construction;
3388 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3389 stack_usage_map = initial_stack_usage_map;
3390 sibcall_failure = 1;
3392 else if (ACCUMULATE_OUTGOING_ARGS && pass)
3394 #ifdef REG_PARM_STACK_SPACE
3395 if (save_area)
3396 restore_fixed_argument_area (save_area, argblock,
3397 high_to_save, low_to_save);
3398 #endif
3400 /* If we saved any argument areas, restore them. */
3401 for (i = 0; i < num_actuals; i++)
3402 if (args[i].save_area)
3404 enum machine_mode save_mode = GET_MODE (args[i].save_area);
3405 rtx stack_area
3406 = gen_rtx_MEM (save_mode,
3407 memory_address (save_mode,
3408 XEXP (args[i].stack_slot, 0)));
3410 if (save_mode != BLKmode)
3411 emit_move_insn (stack_area, args[i].save_area);
3412 else
3413 emit_block_move (stack_area, args[i].save_area,
3414 GEN_INT (args[i].locate.size.constant),
3415 BLOCK_OP_CALL_PARM);
3418 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3419 stack_usage_map = initial_stack_usage_map;
3422 /* If this was alloca, record the new stack level for nonlocal gotos.
3423 Check for the handler slots since we might not have a save area
3424 for non-local gotos. */
3426 if ((flags & ECF_MAY_BE_ALLOCA) && cfun->nonlocal_goto_save_area != 0)
3427 update_nonlocal_goto_save_area ();
3429 /* Free up storage we no longer need. */
3430 for (i = 0; i < num_actuals; ++i)
3431 free (args[i].aligned_regs);
3433 insns = get_insns ();
3434 end_sequence ();
3436 if (pass == 0)
3438 tail_call_insns = insns;
3440 /* Restore the pending stack adjustment now that we have
3441 finished generating the sibling call sequence. */
3443 restore_pending_stack_adjust (&save);
3445 /* Prepare arg structure for next iteration. */
3446 for (i = 0; i < num_actuals; i++)
3448 args[i].value = 0;
3449 args[i].aligned_regs = 0;
3450 args[i].stack = 0;
3453 sbitmap_free (stored_args_map);
3454 internal_arg_pointer_exp_state.scan_start = NULL;
3455 internal_arg_pointer_exp_state.cache.release ();
3457 else
3459 normal_call_insns = insns;
3461 /* Verify that we've deallocated all the stack we used. */
3462 gcc_assert ((flags & ECF_NORETURN)
3463 || (old_stack_allocated
3464 == stack_pointer_delta - pending_stack_adjust));
3467 /* If something prevents making this a sibling call,
3468 zero out the sequence. */
3469 if (sibcall_failure)
3470 tail_call_insns = NULL;
3471 else
3472 break;
3475 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
3476 arguments too, as argument area is now clobbered by the call. */
3477 if (tail_call_insns)
3479 emit_insn (tail_call_insns);
3480 crtl->tail_call_emit = true;
3482 else
3483 emit_insn (normal_call_insns);
3485 currently_expanding_call--;
3487 free (stack_usage_map_buf);
3489 return target;
3492 /* A sibling call sequence invalidates any REG_EQUIV notes made for
3493 this function's incoming arguments.
3495 At the start of RTL generation we know the only REG_EQUIV notes
3496 in the rtl chain are those for incoming arguments, so we can look
3497 for REG_EQUIV notes between the start of the function and the
3498 NOTE_INSN_FUNCTION_BEG.
3500 This is (slight) overkill. We could keep track of the highest
3501 argument we clobber and be more selective in removing notes, but it
3502 does not seem to be worth the effort. */
3504 void
3505 fixup_tail_calls (void)
3507 rtx_insn *insn;
3509 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3511 rtx note;
3513 /* There are never REG_EQUIV notes for the incoming arguments
3514 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
3515 if (NOTE_P (insn)
3516 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
3517 break;
3519 note = find_reg_note (insn, REG_EQUIV, 0);
3520 if (note)
3521 remove_note (insn, note);
3522 note = find_reg_note (insn, REG_EQUIV, 0);
3523 gcc_assert (!note);
3527 /* Traverse a list of TYPES and expand all complex types into their
3528 components. */
3529 static tree
3530 split_complex_types (tree types)
3532 tree p;
3534 /* Before allocating memory, check for the common case of no complex. */
3535 for (p = types; p; p = TREE_CHAIN (p))
3537 tree type = TREE_VALUE (p);
3538 if (TREE_CODE (type) == COMPLEX_TYPE
3539 && targetm.calls.split_complex_arg (type))
3540 goto found;
3542 return types;
3544 found:
3545 types = copy_list (types);
3547 for (p = types; p; p = TREE_CHAIN (p))
3549 tree complex_type = TREE_VALUE (p);
3551 if (TREE_CODE (complex_type) == COMPLEX_TYPE
3552 && targetm.calls.split_complex_arg (complex_type))
3554 tree next, imag;
3556 /* Rewrite complex type with component type. */
3557 TREE_VALUE (p) = TREE_TYPE (complex_type);
3558 next = TREE_CHAIN (p);
3560 /* Add another component type for the imaginary part. */
3561 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
3562 TREE_CHAIN (p) = imag;
3563 TREE_CHAIN (imag) = next;
3565 /* Skip the newly created node. */
3566 p = TREE_CHAIN (p);
3570 return types;
3573 /* Output a library call to function FUN (a SYMBOL_REF rtx).
3574 The RETVAL parameter specifies whether return value needs to be saved, other
3575 parameters are documented in the emit_library_call function below. */
3577 static rtx
3578 emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
3579 enum libcall_type fn_type,
3580 enum machine_mode outmode, int nargs, va_list p)
3582 /* Total size in bytes of all the stack-parms scanned so far. */
3583 struct args_size args_size;
3584 /* Size of arguments before any adjustments (such as rounding). */
3585 struct args_size original_args_size;
3586 int argnum;
3587 rtx fun;
3588 /* Todo, choose the correct decl type of orgfun. Sadly this information
3589 isn't present here, so we default to native calling abi here. */
3590 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3591 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3592 int count;
3593 rtx argblock = 0;
3594 CUMULATIVE_ARGS args_so_far_v;
3595 cumulative_args_t args_so_far;
3596 struct arg
3598 rtx value;
3599 enum machine_mode mode;
3600 rtx reg;
3601 int partial;
3602 struct locate_and_pad_arg_data locate;
3603 rtx save_area;
3605 struct arg *argvec;
3606 int old_inhibit_defer_pop = inhibit_defer_pop;
3607 rtx call_fusage = 0;
3608 rtx mem_value = 0;
3609 rtx valreg;
3610 int pcc_struct_value = 0;
3611 int struct_value_size = 0;
3612 int flags;
3613 int reg_parm_stack_space = 0;
3614 int needed;
3615 rtx_insn *before_call;
3616 tree tfom; /* type_for_mode (outmode, 0) */
3618 #ifdef REG_PARM_STACK_SPACE
3619 /* Define the boundary of the register parm stack space that needs to be
3620 save, if any. */
3621 int low_to_save = 0, high_to_save = 0;
3622 rtx save_area = 0; /* Place that it is saved. */
3623 #endif
3625 /* Size of the stack reserved for parameter registers. */
3626 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3627 char *initial_stack_usage_map = stack_usage_map;
3628 char *stack_usage_map_buf = NULL;
3630 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
3632 #ifdef REG_PARM_STACK_SPACE
3633 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3634 #endif
3636 /* By default, library functions can not throw. */
3637 flags = ECF_NOTHROW;
3639 switch (fn_type)
3641 case LCT_NORMAL:
3642 break;
3643 case LCT_CONST:
3644 flags |= ECF_CONST;
3645 break;
3646 case LCT_PURE:
3647 flags |= ECF_PURE;
3648 break;
3649 case LCT_NORETURN:
3650 flags |= ECF_NORETURN;
3651 break;
3652 case LCT_THROW:
3653 flags = ECF_NORETURN;
3654 break;
3655 case LCT_RETURNS_TWICE:
3656 flags = ECF_RETURNS_TWICE;
3657 break;
3659 fun = orgfun;
3661 /* Ensure current function's preferred stack boundary is at least
3662 what we need. */
3663 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
3664 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3666 /* If this kind of value comes back in memory,
3667 decide where in memory it should come back. */
3668 if (outmode != VOIDmode)
3670 tfom = lang_hooks.types.type_for_mode (outmode, 0);
3671 if (aggregate_value_p (tfom, 0))
3673 #ifdef PCC_STATIC_STRUCT_RETURN
3674 rtx pointer_reg
3675 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
3676 mem_value = gen_rtx_MEM (outmode, pointer_reg);
3677 pcc_struct_value = 1;
3678 if (value == 0)
3679 value = gen_reg_rtx (outmode);
3680 #else /* not PCC_STATIC_STRUCT_RETURN */
3681 struct_value_size = GET_MODE_SIZE (outmode);
3682 if (value != 0 && MEM_P (value))
3683 mem_value = value;
3684 else
3685 mem_value = assign_temp (tfom, 1, 1);
3686 #endif
3687 /* This call returns a big structure. */
3688 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
3691 else
3692 tfom = void_type_node;
3694 /* ??? Unfinished: must pass the memory address as an argument. */
3696 /* Copy all the libcall-arguments out of the varargs data
3697 and into a vector ARGVEC.
3699 Compute how to pass each argument. We only support a very small subset
3700 of the full argument passing conventions to limit complexity here since
3701 library functions shouldn't have many args. */
3703 argvec = XALLOCAVEC (struct arg, nargs + 1);
3704 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
3706 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
3707 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
3708 #else
3709 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
3710 #endif
3711 args_so_far = pack_cumulative_args (&args_so_far_v);
3713 args_size.constant = 0;
3714 args_size.var = 0;
3716 count = 0;
3718 push_temp_slots ();
3720 /* If there's a structure value address to be passed,
3721 either pass it in the special place, or pass it as an extra argument. */
3722 if (mem_value && struct_value == 0 && ! pcc_struct_value)
3724 rtx addr = XEXP (mem_value, 0);
3726 nargs++;
3728 /* Make sure it is a reasonable operand for a move or push insn. */
3729 if (!REG_P (addr) && !MEM_P (addr)
3730 && !(CONSTANT_P (addr)
3731 && targetm.legitimate_constant_p (Pmode, addr)))
3732 addr = force_operand (addr, NULL_RTX);
3734 argvec[count].value = addr;
3735 argvec[count].mode = Pmode;
3736 argvec[count].partial = 0;
3738 argvec[count].reg = targetm.calls.function_arg (args_so_far,
3739 Pmode, NULL_TREE, true);
3740 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
3741 NULL_TREE, 1) == 0);
3743 locate_and_pad_parm (Pmode, NULL_TREE,
3744 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3746 #else
3747 argvec[count].reg != 0,
3748 #endif
3749 reg_parm_stack_space, 0,
3750 NULL_TREE, &args_size, &argvec[count].locate);
3752 if (argvec[count].reg == 0 || argvec[count].partial != 0
3753 || reg_parm_stack_space > 0)
3754 args_size.constant += argvec[count].locate.size.constant;
3756 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
3758 count++;
3761 for (; count < nargs; count++)
3763 rtx val = va_arg (p, rtx);
3764 enum machine_mode mode = (enum machine_mode) va_arg (p, int);
3765 int unsigned_p = 0;
3767 /* We cannot convert the arg value to the mode the library wants here;
3768 must do it earlier where we know the signedness of the arg. */
3769 gcc_assert (mode != BLKmode
3770 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
3772 /* Make sure it is a reasonable operand for a move or push insn. */
3773 if (!REG_P (val) && !MEM_P (val)
3774 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
3775 val = force_operand (val, NULL_RTX);
3777 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
3779 rtx slot;
3780 int must_copy
3781 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
3783 /* If this was a CONST function, it is now PURE since it now
3784 reads memory. */
3785 if (flags & ECF_CONST)
3787 flags &= ~ECF_CONST;
3788 flags |= ECF_PURE;
3791 if (MEM_P (val) && !must_copy)
3793 tree val_expr = MEM_EXPR (val);
3794 if (val_expr)
3795 mark_addressable (val_expr);
3796 slot = val;
3798 else
3800 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
3801 1, 1);
3802 emit_move_insn (slot, val);
3805 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3806 gen_rtx_USE (VOIDmode, slot),
3807 call_fusage);
3808 if (must_copy)
3809 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3810 gen_rtx_CLOBBER (VOIDmode,
3811 slot),
3812 call_fusage);
3814 mode = Pmode;
3815 val = force_operand (XEXP (slot, 0), NULL_RTX);
3818 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
3819 argvec[count].mode = mode;
3820 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
3821 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
3822 NULL_TREE, true);
3824 argvec[count].partial
3825 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
3827 if (argvec[count].reg == 0
3828 || argvec[count].partial != 0
3829 || reg_parm_stack_space > 0)
3831 locate_and_pad_parm (mode, NULL_TREE,
3832 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3834 #else
3835 argvec[count].reg != 0,
3836 #endif
3837 reg_parm_stack_space, argvec[count].partial,
3838 NULL_TREE, &args_size, &argvec[count].locate);
3839 args_size.constant += argvec[count].locate.size.constant;
3840 gcc_assert (!argvec[count].locate.size.var);
3842 #ifdef BLOCK_REG_PADDING
3843 else
3844 /* The argument is passed entirely in registers. See at which
3845 end it should be padded. */
3846 argvec[count].locate.where_pad =
3847 BLOCK_REG_PADDING (mode, NULL_TREE,
3848 GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
3849 #endif
3851 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
3854 /* If this machine requires an external definition for library
3855 functions, write one out. */
3856 assemble_external_libcall (fun);
3858 original_args_size = args_size;
3859 args_size.constant = (((args_size.constant
3860 + stack_pointer_delta
3861 + STACK_BYTES - 1)
3862 / STACK_BYTES
3863 * STACK_BYTES)
3864 - stack_pointer_delta);
3866 args_size.constant = MAX (args_size.constant,
3867 reg_parm_stack_space);
3869 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3870 args_size.constant -= reg_parm_stack_space;
3872 if (args_size.constant > crtl->outgoing_args_size)
3873 crtl->outgoing_args_size = args_size.constant;
3875 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
3877 int pushed = args_size.constant + pending_stack_adjust;
3878 if (pushed > current_function_pushed_stack_size)
3879 current_function_pushed_stack_size = pushed;
3882 if (ACCUMULATE_OUTGOING_ARGS)
3884 /* Since the stack pointer will never be pushed, it is possible for
3885 the evaluation of a parm to clobber something we have already
3886 written to the stack. Since most function calls on RISC machines
3887 do not use the stack, this is uncommon, but must work correctly.
3889 Therefore, we save any area of the stack that was already written
3890 and that we are using. Here we set up to do this by making a new
3891 stack usage map from the old one.
3893 Another approach might be to try to reorder the argument
3894 evaluations to avoid this conflicting stack usage. */
3896 needed = args_size.constant;
3898 /* Since we will be writing into the entire argument area, the
3899 map must be allocated for its entire size, not just the part that
3900 is the responsibility of the caller. */
3901 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3902 needed += reg_parm_stack_space;
3904 #ifdef ARGS_GROW_DOWNWARD
3905 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3906 needed + 1);
3907 #else
3908 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3909 needed);
3910 #endif
3911 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
3912 stack_usage_map = stack_usage_map_buf;
3914 if (initial_highest_arg_in_use)
3915 memcpy (stack_usage_map, initial_stack_usage_map,
3916 initial_highest_arg_in_use);
3918 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3919 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3920 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
3921 needed = 0;
3923 /* We must be careful to use virtual regs before they're instantiated,
3924 and real regs afterwards. Loop optimization, for example, can create
3925 new libcalls after we've instantiated the virtual regs, and if we
3926 use virtuals anyway, they won't match the rtl patterns. */
3928 if (virtuals_instantiated)
3929 argblock = plus_constant (Pmode, stack_pointer_rtx,
3930 STACK_POINTER_OFFSET);
3931 else
3932 argblock = virtual_outgoing_args_rtx;
3934 else
3936 if (!PUSH_ARGS)
3937 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
3940 /* We push args individually in reverse order, perform stack alignment
3941 before the first push (the last arg). */
3942 if (argblock == 0)
3943 anti_adjust_stack (GEN_INT (args_size.constant
3944 - original_args_size.constant));
3946 argnum = nargs - 1;
3948 #ifdef REG_PARM_STACK_SPACE
3949 if (ACCUMULATE_OUTGOING_ARGS)
3951 /* The argument list is the property of the called routine and it
3952 may clobber it. If the fixed area has been used for previous
3953 parameters, we must save and restore it. */
3954 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3955 &low_to_save, &high_to_save);
3957 #endif
3959 /* Push the args that need to be pushed. */
3961 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
3962 are to be pushed. */
3963 for (count = 0; count < nargs; count++, argnum--)
3965 enum machine_mode mode = argvec[argnum].mode;
3966 rtx val = argvec[argnum].value;
3967 rtx reg = argvec[argnum].reg;
3968 int partial = argvec[argnum].partial;
3969 unsigned int parm_align = argvec[argnum].locate.boundary;
3970 int lower_bound = 0, upper_bound = 0, i;
3972 if (! (reg != 0 && partial == 0))
3974 rtx use;
3976 if (ACCUMULATE_OUTGOING_ARGS)
3978 /* If this is being stored into a pre-allocated, fixed-size,
3979 stack area, save any previous data at that location. */
3981 #ifdef ARGS_GROW_DOWNWARD
3982 /* stack_slot is negative, but we want to index stack_usage_map
3983 with positive values. */
3984 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
3985 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
3986 #else
3987 lower_bound = argvec[argnum].locate.slot_offset.constant;
3988 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
3989 #endif
3991 i = lower_bound;
3992 /* Don't worry about things in the fixed argument area;
3993 it has already been saved. */
3994 if (i < reg_parm_stack_space)
3995 i = reg_parm_stack_space;
3996 while (i < upper_bound && stack_usage_map[i] == 0)
3997 i++;
3999 if (i < upper_bound)
4001 /* We need to make a save area. */
4002 unsigned int size
4003 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
4004 enum machine_mode save_mode
4005 = mode_for_size (size, MODE_INT, 1);
4006 rtx adr
4007 = plus_constant (Pmode, argblock,
4008 argvec[argnum].locate.offset.constant);
4009 rtx stack_area
4010 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
4012 if (save_mode == BLKmode)
4014 argvec[argnum].save_area
4015 = assign_stack_temp (BLKmode,
4016 argvec[argnum].locate.size.constant
4019 emit_block_move (validize_mem
4020 (copy_rtx (argvec[argnum].save_area)),
4021 stack_area,
4022 GEN_INT (argvec[argnum].locate.size.constant),
4023 BLOCK_OP_CALL_PARM);
4025 else
4027 argvec[argnum].save_area = gen_reg_rtx (save_mode);
4029 emit_move_insn (argvec[argnum].save_area, stack_area);
4034 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
4035 partial, reg, 0, argblock,
4036 GEN_INT (argvec[argnum].locate.offset.constant),
4037 reg_parm_stack_space,
4038 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad));
4040 /* Now mark the segment we just used. */
4041 if (ACCUMULATE_OUTGOING_ARGS)
4042 for (i = lower_bound; i < upper_bound; i++)
4043 stack_usage_map[i] = 1;
4045 NO_DEFER_POP;
4047 /* Indicate argument access so that alias.c knows that these
4048 values are live. */
4049 if (argblock)
4050 use = plus_constant (Pmode, argblock,
4051 argvec[argnum].locate.offset.constant);
4052 else
4053 /* When arguments are pushed, trying to tell alias.c where
4054 exactly this argument is won't work, because the
4055 auto-increment causes confusion. So we merely indicate
4056 that we access something with a known mode somewhere on
4057 the stack. */
4058 use = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
4059 gen_rtx_SCRATCH (Pmode));
4060 use = gen_rtx_MEM (argvec[argnum].mode, use);
4061 use = gen_rtx_USE (VOIDmode, use);
4062 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
4066 argnum = nargs - 1;
4068 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
4070 /* Now load any reg parms into their regs. */
4072 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4073 are to be pushed. */
4074 for (count = 0; count < nargs; count++, argnum--)
4076 enum machine_mode mode = argvec[argnum].mode;
4077 rtx val = argvec[argnum].value;
4078 rtx reg = argvec[argnum].reg;
4079 int partial = argvec[argnum].partial;
4080 #ifdef BLOCK_REG_PADDING
4081 int size = 0;
4082 #endif
4084 /* Handle calls that pass values in multiple non-contiguous
4085 locations. The PA64 has examples of this for library calls. */
4086 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4087 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
4088 else if (reg != 0 && partial == 0)
4090 emit_move_insn (reg, val);
4091 #ifdef BLOCK_REG_PADDING
4092 size = GET_MODE_SIZE (argvec[argnum].mode);
4094 /* Copied from load_register_parameters. */
4096 /* Handle case where we have a value that needs shifting
4097 up to the msb. eg. a QImode value and we're padding
4098 upward on a BYTES_BIG_ENDIAN machine. */
4099 if (size < UNITS_PER_WORD
4100 && (argvec[argnum].locate.where_pad
4101 == (BYTES_BIG_ENDIAN ? upward : downward)))
4103 rtx x;
4104 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
4106 /* Assigning REG here rather than a temp makes CALL_FUSAGE
4107 report the whole reg as used. Strictly speaking, the
4108 call only uses SIZE bytes at the msb end, but it doesn't
4109 seem worth generating rtl to say that. */
4110 reg = gen_rtx_REG (word_mode, REGNO (reg));
4111 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
4112 if (x != reg)
4113 emit_move_insn (reg, x);
4115 #endif
4118 NO_DEFER_POP;
4121 /* Any regs containing parms remain in use through the call. */
4122 for (count = 0; count < nargs; count++)
4124 rtx reg = argvec[count].reg;
4125 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4126 use_group_regs (&call_fusage, reg);
4127 else if (reg != 0)
4129 int partial = argvec[count].partial;
4130 if (partial)
4132 int nregs;
4133 gcc_assert (partial % UNITS_PER_WORD == 0);
4134 nregs = partial / UNITS_PER_WORD;
4135 use_regs (&call_fusage, REGNO (reg), nregs);
4137 else
4138 use_reg (&call_fusage, reg);
4142 /* Pass the function the address in which to return a structure value. */
4143 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
4145 emit_move_insn (struct_value,
4146 force_reg (Pmode,
4147 force_operand (XEXP (mem_value, 0),
4148 NULL_RTX)));
4149 if (REG_P (struct_value))
4150 use_reg (&call_fusage, struct_value);
4153 /* Don't allow popping to be deferred, since then
4154 cse'ing of library calls could delete a call and leave the pop. */
4155 NO_DEFER_POP;
4156 valreg = (mem_value == 0 && outmode != VOIDmode
4157 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
4159 /* Stack must be properly aligned now. */
4160 gcc_assert (!(stack_pointer_delta
4161 & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)));
4163 before_call = get_last_insn ();
4165 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4166 will set inhibit_defer_pop to that value. */
4167 /* The return type is needed to decide how many bytes the function pops.
4168 Signedness plays no role in that, so for simplicity, we pretend it's
4169 always signed. We also assume that the list of arguments passed has
4170 no impact, so we pretend it is unknown. */
4172 emit_call_1 (fun, NULL,
4173 get_identifier (XSTR (orgfun, 0)),
4174 build_function_type (tfom, NULL_TREE),
4175 original_args_size.constant, args_size.constant,
4176 struct_value_size,
4177 targetm.calls.function_arg (args_so_far,
4178 VOIDmode, void_type_node, true),
4179 valreg,
4180 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
4182 if (flag_use_caller_save)
4184 rtx last, datum = orgfun;
4185 gcc_assert (GET_CODE (datum) == SYMBOL_REF);
4186 last = last_call_insn ();
4187 add_reg_note (last, REG_CALL_DECL, datum);
4190 /* Right-shift returned value if necessary. */
4191 if (!pcc_struct_value
4192 && TYPE_MODE (tfom) != BLKmode
4193 && targetm.calls.return_in_msb (tfom))
4195 shift_return_value (TYPE_MODE (tfom), false, valreg);
4196 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
4199 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
4200 that it should complain if nonvolatile values are live. For
4201 functions that cannot return, inform flow that control does not
4202 fall through. */
4203 if (flags & ECF_NORETURN)
4205 /* The barrier note must be emitted
4206 immediately after the CALL_INSN. Some ports emit more than
4207 just a CALL_INSN above, so we must search for it here. */
4208 rtx_insn *last = get_last_insn ();
4209 while (!CALL_P (last))
4211 last = PREV_INSN (last);
4212 /* There was no CALL_INSN? */
4213 gcc_assert (last != before_call);
4216 emit_barrier_after (last);
4219 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
4220 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
4221 if (flags & ECF_NOTHROW)
4223 rtx_insn *last = get_last_insn ();
4224 while (!CALL_P (last))
4226 last = PREV_INSN (last);
4227 /* There was no CALL_INSN? */
4228 gcc_assert (last != before_call);
4231 make_reg_eh_region_note_nothrow_nononlocal (last);
4234 /* Now restore inhibit_defer_pop to its actual original value. */
4235 OK_DEFER_POP;
4237 pop_temp_slots ();
4239 /* Copy the value to the right place. */
4240 if (outmode != VOIDmode && retval)
4242 if (mem_value)
4244 if (value == 0)
4245 value = mem_value;
4246 if (value != mem_value)
4247 emit_move_insn (value, mem_value);
4249 else if (GET_CODE (valreg) == PARALLEL)
4251 if (value == 0)
4252 value = gen_reg_rtx (outmode);
4253 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
4255 else
4257 /* Convert to the proper mode if a promotion has been active. */
4258 if (GET_MODE (valreg) != outmode)
4260 int unsignedp = TYPE_UNSIGNED (tfom);
4262 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
4263 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
4264 == GET_MODE (valreg));
4265 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
4268 if (value != 0)
4269 emit_move_insn (value, valreg);
4270 else
4271 value = valreg;
4275 if (ACCUMULATE_OUTGOING_ARGS)
4277 #ifdef REG_PARM_STACK_SPACE
4278 if (save_area)
4279 restore_fixed_argument_area (save_area, argblock,
4280 high_to_save, low_to_save);
4281 #endif
4283 /* If we saved any argument areas, restore them. */
4284 for (count = 0; count < nargs; count++)
4285 if (argvec[count].save_area)
4287 enum machine_mode save_mode = GET_MODE (argvec[count].save_area);
4288 rtx adr = plus_constant (Pmode, argblock,
4289 argvec[count].locate.offset.constant);
4290 rtx stack_area = gen_rtx_MEM (save_mode,
4291 memory_address (save_mode, adr));
4293 if (save_mode == BLKmode)
4294 emit_block_move (stack_area,
4295 validize_mem
4296 (copy_rtx (argvec[count].save_area)),
4297 GEN_INT (argvec[count].locate.size.constant),
4298 BLOCK_OP_CALL_PARM);
4299 else
4300 emit_move_insn (stack_area, argvec[count].save_area);
4303 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4304 stack_usage_map = initial_stack_usage_map;
4307 free (stack_usage_map_buf);
4309 return value;
4313 /* Output a library call to function FUN (a SYMBOL_REF rtx)
4314 (emitting the queue unless NO_QUEUE is nonzero),
4315 for a value of mode OUTMODE,
4316 with NARGS different arguments, passed as alternating rtx values
4317 and machine_modes to convert them to.
4319 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4320 `const' calls, LCT_PURE for `pure' calls, or other LCT_ value for
4321 other types of library calls. */
4323 void
4324 emit_library_call (rtx orgfun, enum libcall_type fn_type,
4325 enum machine_mode outmode, int nargs, ...)
4327 va_list p;
4329 va_start (p, nargs);
4330 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4331 va_end (p);
4334 /* Like emit_library_call except that an extra argument, VALUE,
4335 comes second and says where to store the result.
4336 (If VALUE is zero, this function chooses a convenient way
4337 to return the value.
4339 This function returns an rtx for where the value is to be found.
4340 If VALUE is nonzero, VALUE is returned. */
4343 emit_library_call_value (rtx orgfun, rtx value,
4344 enum libcall_type fn_type,
4345 enum machine_mode outmode, int nargs, ...)
4347 rtx result;
4348 va_list p;
4350 va_start (p, nargs);
4351 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4352 nargs, p);
4353 va_end (p);
4355 return result;
4358 /* Store a single argument for a function call
4359 into the register or memory area where it must be passed.
4360 *ARG describes the argument value and where to pass it.
4362 ARGBLOCK is the address of the stack-block for all the arguments,
4363 or 0 on a machine where arguments are pushed individually.
4365 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
4366 so must be careful about how the stack is used.
4368 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4369 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4370 that we need not worry about saving and restoring the stack.
4372 FNDECL is the declaration of the function we are calling.
4374 Return nonzero if this arg should cause sibcall failure,
4375 zero otherwise. */
4377 static int
4378 store_one_arg (struct arg_data *arg, rtx argblock, int flags,
4379 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
4381 tree pval = arg->tree_value;
4382 rtx reg = 0;
4383 int partial = 0;
4384 int used = 0;
4385 int i, lower_bound = 0, upper_bound = 0;
4386 int sibcall_failure = 0;
4388 if (TREE_CODE (pval) == ERROR_MARK)
4389 return 1;
4391 /* Push a new temporary level for any temporaries we make for
4392 this argument. */
4393 push_temp_slots ();
4395 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
4397 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4398 save any previous data at that location. */
4399 if (argblock && ! variable_size && arg->stack)
4401 #ifdef ARGS_GROW_DOWNWARD
4402 /* stack_slot is negative, but we want to index stack_usage_map
4403 with positive values. */
4404 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4405 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4406 else
4407 upper_bound = 0;
4409 lower_bound = upper_bound - arg->locate.size.constant;
4410 #else
4411 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4412 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4413 else
4414 lower_bound = 0;
4416 upper_bound = lower_bound + arg->locate.size.constant;
4417 #endif
4419 i = lower_bound;
4420 /* Don't worry about things in the fixed argument area;
4421 it has already been saved. */
4422 if (i < reg_parm_stack_space)
4423 i = reg_parm_stack_space;
4424 while (i < upper_bound && stack_usage_map[i] == 0)
4425 i++;
4427 if (i < upper_bound)
4429 /* We need to make a save area. */
4430 unsigned int size = arg->locate.size.constant * BITS_PER_UNIT;
4431 enum machine_mode save_mode = mode_for_size (size, MODE_INT, 1);
4432 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
4433 rtx stack_area = gen_rtx_MEM (save_mode, adr);
4435 if (save_mode == BLKmode)
4437 arg->save_area
4438 = assign_temp (TREE_TYPE (arg->tree_value), 1, 1);
4439 preserve_temp_slots (arg->save_area);
4440 emit_block_move (validize_mem (copy_rtx (arg->save_area)),
4441 stack_area,
4442 GEN_INT (arg->locate.size.constant),
4443 BLOCK_OP_CALL_PARM);
4445 else
4447 arg->save_area = gen_reg_rtx (save_mode);
4448 emit_move_insn (arg->save_area, stack_area);
4454 /* If this isn't going to be placed on both the stack and in registers,
4455 set up the register and number of words. */
4456 if (! arg->pass_on_stack)
4458 if (flags & ECF_SIBCALL)
4459 reg = arg->tail_call_reg;
4460 else
4461 reg = arg->reg;
4462 partial = arg->partial;
4465 /* Being passed entirely in a register. We shouldn't be called in
4466 this case. */
4467 gcc_assert (reg == 0 || partial != 0);
4469 /* If this arg needs special alignment, don't load the registers
4470 here. */
4471 if (arg->n_aligned_regs != 0)
4472 reg = 0;
4474 /* If this is being passed partially in a register, we can't evaluate
4475 it directly into its stack slot. Otherwise, we can. */
4476 if (arg->value == 0)
4478 /* stack_arg_under_construction is nonzero if a function argument is
4479 being evaluated directly into the outgoing argument list and
4480 expand_call must take special action to preserve the argument list
4481 if it is called recursively.
4483 For scalar function arguments stack_usage_map is sufficient to
4484 determine which stack slots must be saved and restored. Scalar
4485 arguments in general have pass_on_stack == 0.
4487 If this argument is initialized by a function which takes the
4488 address of the argument (a C++ constructor or a C function
4489 returning a BLKmode structure), then stack_usage_map is
4490 insufficient and expand_call must push the stack around the
4491 function call. Such arguments have pass_on_stack == 1.
4493 Note that it is always safe to set stack_arg_under_construction,
4494 but this generates suboptimal code if set when not needed. */
4496 if (arg->pass_on_stack)
4497 stack_arg_under_construction++;
4499 arg->value = expand_expr (pval,
4500 (partial
4501 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4502 ? NULL_RTX : arg->stack,
4503 VOIDmode, EXPAND_STACK_PARM);
4505 /* If we are promoting object (or for any other reason) the mode
4506 doesn't agree, convert the mode. */
4508 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4509 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4510 arg->value, arg->unsignedp);
4512 if (arg->pass_on_stack)
4513 stack_arg_under_construction--;
4516 /* Check for overlap with already clobbered argument area. */
4517 if ((flags & ECF_SIBCALL)
4518 && MEM_P (arg->value)
4519 && mem_overlaps_already_clobbered_arg_p (XEXP (arg->value, 0),
4520 arg->locate.size.constant))
4521 sibcall_failure = 1;
4523 /* Don't allow anything left on stack from computation
4524 of argument to alloca. */
4525 if (flags & ECF_MAY_BE_ALLOCA)
4526 do_pending_stack_adjust ();
4528 if (arg->value == arg->stack)
4529 /* If the value is already in the stack slot, we are done. */
4531 else if (arg->mode != BLKmode)
4533 int size;
4534 unsigned int parm_align;
4536 /* Argument is a scalar, not entirely passed in registers.
4537 (If part is passed in registers, arg->partial says how much
4538 and emit_push_insn will take care of putting it there.)
4540 Push it, and if its size is less than the
4541 amount of space allocated to it,
4542 also bump stack pointer by the additional space.
4543 Note that in C the default argument promotions
4544 will prevent such mismatches. */
4546 size = GET_MODE_SIZE (arg->mode);
4547 /* Compute how much space the push instruction will push.
4548 On many machines, pushing a byte will advance the stack
4549 pointer by a halfword. */
4550 #ifdef PUSH_ROUNDING
4551 size = PUSH_ROUNDING (size);
4552 #endif
4553 used = size;
4555 /* Compute how much space the argument should get:
4556 round up to a multiple of the alignment for arguments. */
4557 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
4558 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
4559 / (PARM_BOUNDARY / BITS_PER_UNIT))
4560 * (PARM_BOUNDARY / BITS_PER_UNIT));
4562 /* Compute the alignment of the pushed argument. */
4563 parm_align = arg->locate.boundary;
4564 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4566 int pad = used - size;
4567 if (pad)
4569 unsigned int pad_align = (pad & -pad) * BITS_PER_UNIT;
4570 parm_align = MIN (parm_align, pad_align);
4574 /* This isn't already where we want it on the stack, so put it there.
4575 This can either be done with push or copy insns. */
4576 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
4577 parm_align, partial, reg, used - size, argblock,
4578 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4579 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4581 /* Unless this is a partially-in-register argument, the argument is now
4582 in the stack. */
4583 if (partial == 0)
4584 arg->value = arg->stack;
4586 else
4588 /* BLKmode, at least partly to be pushed. */
4590 unsigned int parm_align;
4591 int excess;
4592 rtx size_rtx;
4594 /* Pushing a nonscalar.
4595 If part is passed in registers, PARTIAL says how much
4596 and emit_push_insn will take care of putting it there. */
4598 /* Round its size up to a multiple
4599 of the allocation unit for arguments. */
4601 if (arg->locate.size.var != 0)
4603 excess = 0;
4604 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
4606 else
4608 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
4609 for BLKmode is careful to avoid it. */
4610 excess = (arg->locate.size.constant
4611 - int_size_in_bytes (TREE_TYPE (pval))
4612 + partial);
4613 size_rtx = expand_expr (size_in_bytes (TREE_TYPE (pval)),
4614 NULL_RTX, TYPE_MODE (sizetype),
4615 EXPAND_NORMAL);
4618 parm_align = arg->locate.boundary;
4620 /* When an argument is padded down, the block is aligned to
4621 PARM_BOUNDARY, but the actual argument isn't. */
4622 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4624 if (arg->locate.size.var)
4625 parm_align = BITS_PER_UNIT;
4626 else if (excess)
4628 unsigned int excess_align = (excess & -excess) * BITS_PER_UNIT;
4629 parm_align = MIN (parm_align, excess_align);
4633 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
4635 /* emit_push_insn might not work properly if arg->value and
4636 argblock + arg->locate.offset areas overlap. */
4637 rtx x = arg->value;
4638 int i = 0;
4640 if (XEXP (x, 0) == crtl->args.internal_arg_pointer
4641 || (GET_CODE (XEXP (x, 0)) == PLUS
4642 && XEXP (XEXP (x, 0), 0) ==
4643 crtl->args.internal_arg_pointer
4644 && CONST_INT_P (XEXP (XEXP (x, 0), 1))))
4646 if (XEXP (x, 0) != crtl->args.internal_arg_pointer)
4647 i = INTVAL (XEXP (XEXP (x, 0), 1));
4649 /* expand_call should ensure this. */
4650 gcc_assert (!arg->locate.offset.var
4651 && arg->locate.size.var == 0
4652 && CONST_INT_P (size_rtx));
4654 if (arg->locate.offset.constant > i)
4656 if (arg->locate.offset.constant < i + INTVAL (size_rtx))
4657 sibcall_failure = 1;
4659 else if (arg->locate.offset.constant < i)
4661 /* Use arg->locate.size.constant instead of size_rtx
4662 because we only care about the part of the argument
4663 on the stack. */
4664 if (i < (arg->locate.offset.constant
4665 + arg->locate.size.constant))
4666 sibcall_failure = 1;
4668 else
4670 /* Even though they appear to be at the same location,
4671 if part of the outgoing argument is in registers,
4672 they aren't really at the same location. Check for
4673 this by making sure that the incoming size is the
4674 same as the outgoing size. */
4675 if (arg->locate.size.constant != INTVAL (size_rtx))
4676 sibcall_failure = 1;
4681 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
4682 parm_align, partial, reg, excess, argblock,
4683 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4684 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4686 /* Unless this is a partially-in-register argument, the argument is now
4687 in the stack.
4689 ??? Unlike the case above, in which we want the actual
4690 address of the data, so that we can load it directly into a
4691 register, here we want the address of the stack slot, so that
4692 it's properly aligned for word-by-word copying or something
4693 like that. It's not clear that this is always correct. */
4694 if (partial == 0)
4695 arg->value = arg->stack_slot;
4698 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
4700 tree type = TREE_TYPE (arg->tree_value);
4701 arg->parallel_value
4702 = emit_group_load_into_temps (arg->reg, arg->value, type,
4703 int_size_in_bytes (type));
4706 /* Mark all slots this store used. */
4707 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
4708 && argblock && ! variable_size && arg->stack)
4709 for (i = lower_bound; i < upper_bound; i++)
4710 stack_usage_map[i] = 1;
4712 /* Once we have pushed something, pops can't safely
4713 be deferred during the rest of the arguments. */
4714 NO_DEFER_POP;
4716 /* Free any temporary slots made in processing this argument. */
4717 pop_temp_slots ();
4719 return sibcall_failure;
4722 /* Nonzero if we do not know how to pass TYPE solely in registers. */
4724 bool
4725 must_pass_in_stack_var_size (enum machine_mode mode ATTRIBUTE_UNUSED,
4726 const_tree type)
4728 if (!type)
4729 return false;
4731 /* If the type has variable size... */
4732 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4733 return true;
4735 /* If the type is marked as addressable (it is required
4736 to be constructed into the stack)... */
4737 if (TREE_ADDRESSABLE (type))
4738 return true;
4740 return false;
4743 /* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
4744 takes trailing padding of a structure into account. */
4745 /* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
4747 bool
4748 must_pass_in_stack_var_size_or_pad (enum machine_mode mode, const_tree type)
4750 if (!type)
4751 return false;
4753 /* If the type has variable size... */
4754 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4755 return true;
4757 /* If the type is marked as addressable (it is required
4758 to be constructed into the stack)... */
4759 if (TREE_ADDRESSABLE (type))
4760 return true;
4762 /* If the padding and mode of the type is such that a copy into
4763 a register would put it into the wrong part of the register. */
4764 if (mode == BLKmode
4765 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
4766 && (FUNCTION_ARG_PADDING (mode, type)
4767 == (BYTES_BIG_ENDIAN ? upward : downward)))
4768 return true;
4770 return false;