* gcc.dg/tree-ssa/loop-19.c: Exclude classic FPU Power targets.
[official-gcc.git] / gcc / calls.c
blob03ed9c8e303a6337cf49d3ce575de109216bd45e
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 if (promoted_for_signed_and_unsigned_p (args[i].tree_value, mode))
1490 SUBREG_PROMOTED_SET (args[i].initial_value, SRP_SIGNED_AND_UNSIGNED);
1491 else
1492 SUBREG_PROMOTED_SET (args[i].initial_value, args[i].unsignedp);
1498 /* Given the current state of MUST_PREALLOCATE and information about
1499 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1500 compute and return the final value for MUST_PREALLOCATE. */
1502 static int
1503 finalize_must_preallocate (int must_preallocate, int num_actuals,
1504 struct arg_data *args, struct args_size *args_size)
1506 /* See if we have or want to preallocate stack space.
1508 If we would have to push a partially-in-regs parm
1509 before other stack parms, preallocate stack space instead.
1511 If the size of some parm is not a multiple of the required stack
1512 alignment, we must preallocate.
1514 If the total size of arguments that would otherwise create a copy in
1515 a temporary (such as a CALL) is more than half the total argument list
1516 size, preallocation is faster.
1518 Another reason to preallocate is if we have a machine (like the m88k)
1519 where stack alignment is required to be maintained between every
1520 pair of insns, not just when the call is made. However, we assume here
1521 that such machines either do not have push insns (and hence preallocation
1522 would occur anyway) or the problem is taken care of with
1523 PUSH_ROUNDING. */
1525 if (! must_preallocate)
1527 int partial_seen = 0;
1528 int copy_to_evaluate_size = 0;
1529 int i;
1531 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1533 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1534 partial_seen = 1;
1535 else if (partial_seen && args[i].reg == 0)
1536 must_preallocate = 1;
1538 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1539 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1540 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1541 || TREE_CODE (args[i].tree_value) == COND_EXPR
1542 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1543 copy_to_evaluate_size
1544 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1547 if (copy_to_evaluate_size * 2 >= args_size->constant
1548 && args_size->constant > 0)
1549 must_preallocate = 1;
1551 return must_preallocate;
1554 /* If we preallocated stack space, compute the address of each argument
1555 and store it into the ARGS array.
1557 We need not ensure it is a valid memory address here; it will be
1558 validized when it is used.
1560 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1562 static void
1563 compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
1565 if (argblock)
1567 rtx arg_reg = argblock;
1568 int i, arg_offset = 0;
1570 if (GET_CODE (argblock) == PLUS)
1571 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1573 for (i = 0; i < num_actuals; i++)
1575 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
1576 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
1577 rtx addr;
1578 unsigned int align, boundary;
1579 unsigned int units_on_stack = 0;
1580 enum machine_mode partial_mode = VOIDmode;
1582 /* Skip this parm if it will not be passed on the stack. */
1583 if (! args[i].pass_on_stack
1584 && args[i].reg != 0
1585 && args[i].partial == 0)
1586 continue;
1588 if (CONST_INT_P (offset))
1589 addr = plus_constant (Pmode, arg_reg, INTVAL (offset));
1590 else
1591 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1593 addr = plus_constant (Pmode, addr, arg_offset);
1595 if (args[i].partial != 0)
1597 /* Only part of the parameter is being passed on the stack.
1598 Generate a simple memory reference of the correct size. */
1599 units_on_stack = args[i].locate.size.constant;
1600 partial_mode = mode_for_size (units_on_stack * BITS_PER_UNIT,
1601 MODE_INT, 1);
1602 args[i].stack = gen_rtx_MEM (partial_mode, addr);
1603 set_mem_size (args[i].stack, units_on_stack);
1605 else
1607 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1608 set_mem_attributes (args[i].stack,
1609 TREE_TYPE (args[i].tree_value), 1);
1611 align = BITS_PER_UNIT;
1612 boundary = args[i].locate.boundary;
1613 if (args[i].locate.where_pad != downward)
1614 align = boundary;
1615 else if (CONST_INT_P (offset))
1617 align = INTVAL (offset) * BITS_PER_UNIT | boundary;
1618 align = align & -align;
1620 set_mem_align (args[i].stack, align);
1622 if (CONST_INT_P (slot_offset))
1623 addr = plus_constant (Pmode, arg_reg, INTVAL (slot_offset));
1624 else
1625 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1627 addr = plus_constant (Pmode, addr, arg_offset);
1629 if (args[i].partial != 0)
1631 /* Only part of the parameter is being passed on the stack.
1632 Generate a simple memory reference of the correct size.
1634 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
1635 set_mem_size (args[i].stack_slot, units_on_stack);
1637 else
1639 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1640 set_mem_attributes (args[i].stack_slot,
1641 TREE_TYPE (args[i].tree_value), 1);
1643 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
1645 /* Function incoming arguments may overlap with sibling call
1646 outgoing arguments and we cannot allow reordering of reads
1647 from function arguments with stores to outgoing arguments
1648 of sibling calls. */
1649 set_mem_alias_set (args[i].stack, 0);
1650 set_mem_alias_set (args[i].stack_slot, 0);
1655 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1656 in a call instruction.
1658 FNDECL is the tree node for the target function. For an indirect call
1659 FNDECL will be NULL_TREE.
1661 ADDR is the operand 0 of CALL_EXPR for this call. */
1663 static rtx
1664 rtx_for_function_call (tree fndecl, tree addr)
1666 rtx funexp;
1668 /* Get the function to call, in the form of RTL. */
1669 if (fndecl)
1671 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
1672 TREE_USED (fndecl) = 1;
1674 /* Get a SYMBOL_REF rtx for the function address. */
1675 funexp = XEXP (DECL_RTL (fndecl), 0);
1677 else
1678 /* Generate an rtx (probably a pseudo-register) for the address. */
1680 push_temp_slots ();
1681 funexp = expand_normal (addr);
1682 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
1684 return funexp;
1687 /* Internal state for internal_arg_pointer_based_exp and its helpers. */
1688 static struct
1690 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
1691 or NULL_RTX if none has been scanned yet. */
1692 rtx_insn *scan_start;
1693 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
1694 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
1695 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
1696 with fixed offset, or PC if this is with variable or unknown offset. */
1697 vec<rtx> cache;
1698 } internal_arg_pointer_exp_state;
1700 static rtx internal_arg_pointer_based_exp (const_rtx, bool);
1702 /* Helper function for internal_arg_pointer_based_exp. Scan insns in
1703 the tail call sequence, starting with first insn that hasn't been
1704 scanned yet, and note for each pseudo on the LHS whether it is based
1705 on crtl->args.internal_arg_pointer or not, and what offset from that
1706 that pointer it has. */
1708 static void
1709 internal_arg_pointer_based_exp_scan (void)
1711 rtx_insn *insn, *scan_start = internal_arg_pointer_exp_state.scan_start;
1713 if (scan_start == NULL_RTX)
1714 insn = get_insns ();
1715 else
1716 insn = NEXT_INSN (scan_start);
1718 while (insn)
1720 rtx set = single_set (insn);
1721 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
1723 rtx val = NULL_RTX;
1724 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
1725 /* Punt on pseudos set multiple times. */
1726 if (idx < internal_arg_pointer_exp_state.cache.length ()
1727 && (internal_arg_pointer_exp_state.cache[idx]
1728 != NULL_RTX))
1729 val = pc_rtx;
1730 else
1731 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
1732 if (val != NULL_RTX)
1734 if (idx >= internal_arg_pointer_exp_state.cache.length ())
1735 internal_arg_pointer_exp_state.cache
1736 .safe_grow_cleared (idx + 1);
1737 internal_arg_pointer_exp_state.cache[idx] = val;
1740 if (NEXT_INSN (insn) == NULL_RTX)
1741 scan_start = insn;
1742 insn = NEXT_INSN (insn);
1745 internal_arg_pointer_exp_state.scan_start = scan_start;
1748 /* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
1749 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
1750 it with fixed offset, or PC if this is with variable or unknown offset.
1751 TOPLEVEL is true if the function is invoked at the topmost level. */
1753 static rtx
1754 internal_arg_pointer_based_exp (const_rtx rtl, bool toplevel)
1756 if (CONSTANT_P (rtl))
1757 return NULL_RTX;
1759 if (rtl == crtl->args.internal_arg_pointer)
1760 return const0_rtx;
1762 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
1763 return NULL_RTX;
1765 if (GET_CODE (rtl) == PLUS && CONST_INT_P (XEXP (rtl, 1)))
1767 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
1768 if (val == NULL_RTX || val == pc_rtx)
1769 return val;
1770 return plus_constant (Pmode, val, INTVAL (XEXP (rtl, 1)));
1773 /* When called at the topmost level, scan pseudo assignments in between the
1774 last scanned instruction in the tail call sequence and the latest insn
1775 in that sequence. */
1776 if (toplevel)
1777 internal_arg_pointer_based_exp_scan ();
1779 if (REG_P (rtl))
1781 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
1782 if (idx < internal_arg_pointer_exp_state.cache.length ())
1783 return internal_arg_pointer_exp_state.cache[idx];
1785 return NULL_RTX;
1788 subrtx_iterator::array_type array;
1789 FOR_EACH_SUBRTX (iter, array, rtl, NONCONST)
1791 const_rtx x = *iter;
1792 if (REG_P (x) && internal_arg_pointer_based_exp (x, false) != NULL_RTX)
1793 return pc_rtx;
1794 if (MEM_P (x))
1795 iter.skip_subrtxes ();
1798 return NULL_RTX;
1801 /* Return true if and only if SIZE storage units (usually bytes)
1802 starting from address ADDR overlap with already clobbered argument
1803 area. This function is used to determine if we should give up a
1804 sibcall. */
1806 static bool
1807 mem_overlaps_already_clobbered_arg_p (rtx addr, unsigned HOST_WIDE_INT size)
1809 HOST_WIDE_INT i;
1810 rtx val;
1812 if (bitmap_empty_p (stored_args_map))
1813 return false;
1814 val = internal_arg_pointer_based_exp (addr, true);
1815 if (val == NULL_RTX)
1816 return false;
1817 else if (val == pc_rtx)
1818 return true;
1819 else
1820 i = INTVAL (val);
1821 #ifdef STACK_GROWS_DOWNWARD
1822 i -= crtl->args.pretend_args_size;
1823 #else
1824 i += crtl->args.pretend_args_size;
1825 #endif
1827 #ifdef ARGS_GROW_DOWNWARD
1828 i = -i - size;
1829 #endif
1830 if (size > 0)
1832 unsigned HOST_WIDE_INT k;
1834 for (k = 0; k < size; k++)
1835 if (i + k < SBITMAP_SIZE (stored_args_map)
1836 && bitmap_bit_p (stored_args_map, i + k))
1837 return true;
1840 return false;
1843 /* Do the register loads required for any wholly-register parms or any
1844 parms which are passed both on the stack and in a register. Their
1845 expressions were already evaluated.
1847 Mark all register-parms as living through the call, putting these USE
1848 insns in the CALL_INSN_FUNCTION_USAGE field.
1850 When IS_SIBCALL, perform the check_sibcall_argument_overlap
1851 checking, setting *SIBCALL_FAILURE if appropriate. */
1853 static void
1854 load_register_parameters (struct arg_data *args, int num_actuals,
1855 rtx *call_fusage, int flags, int is_sibcall,
1856 int *sibcall_failure)
1858 int i, j;
1860 for (i = 0; i < num_actuals; i++)
1862 rtx reg = ((flags & ECF_SIBCALL)
1863 ? args[i].tail_call_reg : args[i].reg);
1864 if (reg)
1866 int partial = args[i].partial;
1867 int nregs;
1868 int size = 0;
1869 rtx_insn *before_arg = get_last_insn ();
1870 /* Set non-negative if we must move a word at a time, even if
1871 just one word (e.g, partial == 4 && mode == DFmode). Set
1872 to -1 if we just use a normal move insn. This value can be
1873 zero if the argument is a zero size structure. */
1874 nregs = -1;
1875 if (GET_CODE (reg) == PARALLEL)
1877 else if (partial)
1879 gcc_assert (partial % UNITS_PER_WORD == 0);
1880 nregs = partial / UNITS_PER_WORD;
1882 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
1884 size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1885 nregs = (size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
1887 else
1888 size = GET_MODE_SIZE (args[i].mode);
1890 /* Handle calls that pass values in multiple non-contiguous
1891 locations. The Irix 6 ABI has examples of this. */
1893 if (GET_CODE (reg) == PARALLEL)
1894 emit_group_move (reg, args[i].parallel_value);
1896 /* If simple case, just do move. If normal partial, store_one_arg
1897 has already loaded the register for us. In all other cases,
1898 load the register(s) from memory. */
1900 else if (nregs == -1)
1902 emit_move_insn (reg, args[i].value);
1903 #ifdef BLOCK_REG_PADDING
1904 /* Handle case where we have a value that needs shifting
1905 up to the msb. eg. a QImode value and we're padding
1906 upward on a BYTES_BIG_ENDIAN machine. */
1907 if (size < UNITS_PER_WORD
1908 && (args[i].locate.where_pad
1909 == (BYTES_BIG_ENDIAN ? upward : downward)))
1911 rtx x;
1912 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
1914 /* Assigning REG here rather than a temp makes CALL_FUSAGE
1915 report the whole reg as used. Strictly speaking, the
1916 call only uses SIZE bytes at the msb end, but it doesn't
1917 seem worth generating rtl to say that. */
1918 reg = gen_rtx_REG (word_mode, REGNO (reg));
1919 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
1920 if (x != reg)
1921 emit_move_insn (reg, x);
1923 #endif
1926 /* If we have pre-computed the values to put in the registers in
1927 the case of non-aligned structures, copy them in now. */
1929 else if (args[i].n_aligned_regs != 0)
1930 for (j = 0; j < args[i].n_aligned_regs; j++)
1931 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
1932 args[i].aligned_regs[j]);
1934 else if (partial == 0 || args[i].pass_on_stack)
1936 rtx mem = validize_mem (copy_rtx (args[i].value));
1938 /* Check for overlap with already clobbered argument area,
1939 providing that this has non-zero size. */
1940 if (is_sibcall
1941 && (size == 0
1942 || mem_overlaps_already_clobbered_arg_p
1943 (XEXP (args[i].value, 0), size)))
1944 *sibcall_failure = 1;
1946 /* Handle a BLKmode that needs shifting. */
1947 if (nregs == 1 && size < UNITS_PER_WORD
1948 #ifdef BLOCK_REG_PADDING
1949 && args[i].locate.where_pad == downward
1950 #else
1951 && BYTES_BIG_ENDIAN
1952 #endif
1955 rtx tem = operand_subword_force (mem, 0, args[i].mode);
1956 rtx ri = gen_rtx_REG (word_mode, REGNO (reg));
1957 rtx x = gen_reg_rtx (word_mode);
1958 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
1959 enum tree_code dir = BYTES_BIG_ENDIAN ? RSHIFT_EXPR
1960 : LSHIFT_EXPR;
1962 emit_move_insn (x, tem);
1963 x = expand_shift (dir, word_mode, x, shift, ri, 1);
1964 if (x != ri)
1965 emit_move_insn (ri, x);
1967 else
1968 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
1971 /* When a parameter is a block, and perhaps in other cases, it is
1972 possible that it did a load from an argument slot that was
1973 already clobbered. */
1974 if (is_sibcall
1975 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
1976 *sibcall_failure = 1;
1978 /* Handle calls that pass values in multiple non-contiguous
1979 locations. The Irix 6 ABI has examples of this. */
1980 if (GET_CODE (reg) == PARALLEL)
1981 use_group_regs (call_fusage, reg);
1982 else if (nregs == -1)
1983 use_reg_mode (call_fusage, reg,
1984 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
1985 else if (nregs > 0)
1986 use_regs (call_fusage, REGNO (reg), nregs);
1991 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
1992 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
1993 bytes, then we would need to push some additional bytes to pad the
1994 arguments. So, we compute an adjust to the stack pointer for an
1995 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
1996 bytes. Then, when the arguments are pushed the stack will be perfectly
1997 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
1998 be popped after the call. Returns the adjustment. */
2000 static int
2001 combine_pending_stack_adjustment_and_call (int unadjusted_args_size,
2002 struct args_size *args_size,
2003 unsigned int preferred_unit_stack_boundary)
2005 /* The number of bytes to pop so that the stack will be
2006 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2007 HOST_WIDE_INT adjustment;
2008 /* The alignment of the stack after the arguments are pushed, if we
2009 just pushed the arguments without adjust the stack here. */
2010 unsigned HOST_WIDE_INT unadjusted_alignment;
2012 unadjusted_alignment
2013 = ((stack_pointer_delta + unadjusted_args_size)
2014 % preferred_unit_stack_boundary);
2016 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2017 as possible -- leaving just enough left to cancel out the
2018 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2019 PENDING_STACK_ADJUST is non-negative, and congruent to
2020 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2022 /* Begin by trying to pop all the bytes. */
2023 unadjusted_alignment
2024 = (unadjusted_alignment
2025 - (pending_stack_adjust % preferred_unit_stack_boundary));
2026 adjustment = pending_stack_adjust;
2027 /* Push enough additional bytes that the stack will be aligned
2028 after the arguments are pushed. */
2029 if (preferred_unit_stack_boundary > 1)
2031 if (unadjusted_alignment > 0)
2032 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
2033 else
2034 adjustment += unadjusted_alignment;
2037 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2038 bytes after the call. The right number is the entire
2039 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2040 by the arguments in the first place. */
2041 args_size->constant
2042 = pending_stack_adjust - adjustment + unadjusted_args_size;
2044 return adjustment;
2047 /* Scan X expression if it does not dereference any argument slots
2048 we already clobbered by tail call arguments (as noted in stored_args_map
2049 bitmap).
2050 Return nonzero if X expression dereferences such argument slots,
2051 zero otherwise. */
2053 static int
2054 check_sibcall_argument_overlap_1 (rtx x)
2056 RTX_CODE code;
2057 int i, j;
2058 const char *fmt;
2060 if (x == NULL_RTX)
2061 return 0;
2063 code = GET_CODE (x);
2065 /* We need not check the operands of the CALL expression itself. */
2066 if (code == CALL)
2067 return 0;
2069 if (code == MEM)
2070 return mem_overlaps_already_clobbered_arg_p (XEXP (x, 0),
2071 GET_MODE_SIZE (GET_MODE (x)));
2073 /* Scan all subexpressions. */
2074 fmt = GET_RTX_FORMAT (code);
2075 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2077 if (*fmt == 'e')
2079 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
2080 return 1;
2082 else if (*fmt == 'E')
2084 for (j = 0; j < XVECLEN (x, i); j++)
2085 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
2086 return 1;
2089 return 0;
2092 /* Scan sequence after INSN if it does not dereference any argument slots
2093 we already clobbered by tail call arguments (as noted in stored_args_map
2094 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
2095 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
2096 should be 0). Return nonzero if sequence after INSN dereferences such argument
2097 slots, zero otherwise. */
2099 static int
2100 check_sibcall_argument_overlap (rtx_insn *insn, struct arg_data *arg,
2101 int mark_stored_args_map)
2103 int low, high;
2105 if (insn == NULL_RTX)
2106 insn = get_insns ();
2107 else
2108 insn = NEXT_INSN (insn);
2110 for (; insn; insn = NEXT_INSN (insn))
2111 if (INSN_P (insn)
2112 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
2113 break;
2115 if (mark_stored_args_map)
2117 #ifdef ARGS_GROW_DOWNWARD
2118 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
2119 #else
2120 low = arg->locate.slot_offset.constant;
2121 #endif
2123 for (high = low + arg->locate.size.constant; low < high; low++)
2124 bitmap_set_bit (stored_args_map, low);
2126 return insn != NULL_RTX;
2129 /* Given that a function returns a value of mode MODE at the most
2130 significant end of hard register VALUE, shift VALUE left or right
2131 as specified by LEFT_P. Return true if some action was needed. */
2133 bool
2134 shift_return_value (enum machine_mode mode, bool left_p, rtx value)
2136 HOST_WIDE_INT shift;
2138 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
2139 shift = GET_MODE_BITSIZE (GET_MODE (value)) - GET_MODE_BITSIZE (mode);
2140 if (shift == 0)
2141 return false;
2143 /* Use ashr rather than lshr for right shifts. This is for the benefit
2144 of the MIPS port, which requires SImode values to be sign-extended
2145 when stored in 64-bit registers. */
2146 if (!force_expand_binop (GET_MODE (value), left_p ? ashl_optab : ashr_optab,
2147 value, GEN_INT (shift), value, 1, OPTAB_WIDEN))
2148 gcc_unreachable ();
2149 return true;
2152 /* If X is a likely-spilled register value, copy it to a pseudo
2153 register and return that register. Return X otherwise. */
2155 static rtx
2156 avoid_likely_spilled_reg (rtx x)
2158 rtx new_rtx;
2160 if (REG_P (x)
2161 && HARD_REGISTER_P (x)
2162 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
2164 /* Make sure that we generate a REG rather than a CONCAT.
2165 Moves into CONCATs can need nontrivial instructions,
2166 and the whole point of this function is to avoid
2167 using the hard register directly in such a situation. */
2168 generating_concat_p = 0;
2169 new_rtx = gen_reg_rtx (GET_MODE (x));
2170 generating_concat_p = 1;
2171 emit_move_insn (new_rtx, x);
2172 return new_rtx;
2174 return x;
2177 /* Generate all the code for a CALL_EXPR exp
2178 and return an rtx for its value.
2179 Store the value in TARGET (specified as an rtx) if convenient.
2180 If the value is stored in TARGET then TARGET is returned.
2181 If IGNORE is nonzero, then we ignore the value of the function call. */
2184 expand_call (tree exp, rtx target, int ignore)
2186 /* Nonzero if we are currently expanding a call. */
2187 static int currently_expanding_call = 0;
2189 /* RTX for the function to be called. */
2190 rtx funexp;
2191 /* Sequence of insns to perform a normal "call". */
2192 rtx_insn *normal_call_insns = NULL;
2193 /* Sequence of insns to perform a tail "call". */
2194 rtx_insn *tail_call_insns = NULL;
2195 /* Data type of the function. */
2196 tree funtype;
2197 tree type_arg_types;
2198 tree rettype;
2199 /* Declaration of the function being called,
2200 or 0 if the function is computed (not known by name). */
2201 tree fndecl = 0;
2202 /* The type of the function being called. */
2203 tree fntype;
2204 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
2205 int pass;
2207 /* Register in which non-BLKmode value will be returned,
2208 or 0 if no value or if value is BLKmode. */
2209 rtx valreg;
2210 /* Address where we should return a BLKmode value;
2211 0 if value not BLKmode. */
2212 rtx structure_value_addr = 0;
2213 /* Nonzero if that address is being passed by treating it as
2214 an extra, implicit first parameter. Otherwise,
2215 it is passed by being copied directly into struct_value_rtx. */
2216 int structure_value_addr_parm = 0;
2217 /* Holds the value of implicit argument for the struct value. */
2218 tree structure_value_addr_value = NULL_TREE;
2219 /* Size of aggregate value wanted, or zero if none wanted
2220 or if we are using the non-reentrant PCC calling convention
2221 or expecting the value in registers. */
2222 HOST_WIDE_INT struct_value_size = 0;
2223 /* Nonzero if called function returns an aggregate in memory PCC style,
2224 by returning the address of where to find it. */
2225 int pcc_struct_value = 0;
2226 rtx struct_value = 0;
2228 /* Number of actual parameters in this call, including struct value addr. */
2229 int num_actuals;
2230 /* Number of named args. Args after this are anonymous ones
2231 and they must all go on the stack. */
2232 int n_named_args;
2233 /* Number of complex actual arguments that need to be split. */
2234 int num_complex_actuals = 0;
2236 /* Vector of information about each argument.
2237 Arguments are numbered in the order they will be pushed,
2238 not the order they are written. */
2239 struct arg_data *args;
2241 /* Total size in bytes of all the stack-parms scanned so far. */
2242 struct args_size args_size;
2243 struct args_size adjusted_args_size;
2244 /* Size of arguments before any adjustments (such as rounding). */
2245 int unadjusted_args_size;
2246 /* Data on reg parms scanned so far. */
2247 CUMULATIVE_ARGS args_so_far_v;
2248 cumulative_args_t args_so_far;
2249 /* Nonzero if a reg parm has been scanned. */
2250 int reg_parm_seen;
2251 /* Nonzero if this is an indirect function call. */
2253 /* Nonzero if we must avoid push-insns in the args for this call.
2254 If stack space is allocated for register parameters, but not by the
2255 caller, then it is preallocated in the fixed part of the stack frame.
2256 So the entire argument block must then be preallocated (i.e., we
2257 ignore PUSH_ROUNDING in that case). */
2259 int must_preallocate = !PUSH_ARGS;
2261 /* Size of the stack reserved for parameter registers. */
2262 int reg_parm_stack_space = 0;
2264 /* Address of space preallocated for stack parms
2265 (on machines that lack push insns), or 0 if space not preallocated. */
2266 rtx argblock = 0;
2268 /* Mask of ECF_ and ERF_ flags. */
2269 int flags = 0;
2270 int return_flags = 0;
2271 #ifdef REG_PARM_STACK_SPACE
2272 /* Define the boundary of the register parm stack space that needs to be
2273 saved, if any. */
2274 int low_to_save, high_to_save;
2275 rtx save_area = 0; /* Place that it is saved */
2276 #endif
2278 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2279 char *initial_stack_usage_map = stack_usage_map;
2280 char *stack_usage_map_buf = NULL;
2282 int old_stack_allocated;
2284 /* State variables to track stack modifications. */
2285 rtx old_stack_level = 0;
2286 int old_stack_arg_under_construction = 0;
2287 int old_pending_adj = 0;
2288 int old_inhibit_defer_pop = inhibit_defer_pop;
2290 /* Some stack pointer alterations we make are performed via
2291 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
2292 which we then also need to save/restore along the way. */
2293 int old_stack_pointer_delta = 0;
2295 rtx call_fusage;
2296 tree addr = CALL_EXPR_FN (exp);
2297 int i;
2298 /* The alignment of the stack, in bits. */
2299 unsigned HOST_WIDE_INT preferred_stack_boundary;
2300 /* The alignment of the stack, in bytes. */
2301 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
2302 /* The static chain value to use for this call. */
2303 rtx static_chain_value;
2304 /* See if this is "nothrow" function call. */
2305 if (TREE_NOTHROW (exp))
2306 flags |= ECF_NOTHROW;
2308 /* See if we can find a DECL-node for the actual function, and get the
2309 function attributes (flags) from the function decl or type node. */
2310 fndecl = get_callee_fndecl (exp);
2311 if (fndecl)
2313 fntype = TREE_TYPE (fndecl);
2314 flags |= flags_from_decl_or_type (fndecl);
2315 return_flags |= decl_return_flags (fndecl);
2317 else
2319 fntype = TREE_TYPE (TREE_TYPE (addr));
2320 flags |= flags_from_decl_or_type (fntype);
2322 rettype = TREE_TYPE (exp);
2324 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
2326 /* Warn if this value is an aggregate type,
2327 regardless of which calling convention we are using for it. */
2328 if (AGGREGATE_TYPE_P (rettype))
2329 warning (OPT_Waggregate_return, "function call has aggregate value");
2331 /* If the result of a non looping pure or const function call is
2332 ignored (or void), and none of its arguments are volatile, we can
2333 avoid expanding the call and just evaluate the arguments for
2334 side-effects. */
2335 if ((flags & (ECF_CONST | ECF_PURE))
2336 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
2337 && (ignore || target == const0_rtx
2338 || TYPE_MODE (rettype) == VOIDmode))
2340 bool volatilep = false;
2341 tree arg;
2342 call_expr_arg_iterator iter;
2344 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2345 if (TREE_THIS_VOLATILE (arg))
2347 volatilep = true;
2348 break;
2351 if (! volatilep)
2353 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2354 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
2355 return const0_rtx;
2359 #ifdef REG_PARM_STACK_SPACE
2360 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
2361 #endif
2363 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
2364 && reg_parm_stack_space > 0 && PUSH_ARGS)
2365 must_preallocate = 1;
2367 /* Set up a place to return a structure. */
2369 /* Cater to broken compilers. */
2370 if (aggregate_value_p (exp, fntype))
2372 /* This call returns a big structure. */
2373 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
2375 #ifdef PCC_STATIC_STRUCT_RETURN
2377 pcc_struct_value = 1;
2379 #else /* not PCC_STATIC_STRUCT_RETURN */
2381 struct_value_size = int_size_in_bytes (rettype);
2383 if (target && MEM_P (target) && CALL_EXPR_RETURN_SLOT_OPT (exp))
2384 structure_value_addr = XEXP (target, 0);
2385 else
2387 /* For variable-sized objects, we must be called with a target
2388 specified. If we were to allocate space on the stack here,
2389 we would have no way of knowing when to free it. */
2390 rtx d = assign_temp (rettype, 1, 1);
2391 structure_value_addr = XEXP (d, 0);
2392 target = 0;
2395 #endif /* not PCC_STATIC_STRUCT_RETURN */
2398 /* Figure out the amount to which the stack should be aligned. */
2399 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
2400 if (fndecl)
2402 struct cgraph_rtl_info *i = cgraph_node::rtl_info (fndecl);
2403 /* Without automatic stack alignment, we can't increase preferred
2404 stack boundary. With automatic stack alignment, it is
2405 unnecessary since unless we can guarantee that all callers will
2406 align the outgoing stack properly, callee has to align its
2407 stack anyway. */
2408 if (i
2409 && i->preferred_incoming_stack_boundary
2410 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
2411 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
2414 /* Operand 0 is a pointer-to-function; get the type of the function. */
2415 funtype = TREE_TYPE (addr);
2416 gcc_assert (POINTER_TYPE_P (funtype));
2417 funtype = TREE_TYPE (funtype);
2419 /* Count whether there are actual complex arguments that need to be split
2420 into their real and imaginary parts. Munge the type_arg_types
2421 appropriately here as well. */
2422 if (targetm.calls.split_complex_arg)
2424 call_expr_arg_iterator iter;
2425 tree arg;
2426 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2428 tree type = TREE_TYPE (arg);
2429 if (type && TREE_CODE (type) == COMPLEX_TYPE
2430 && targetm.calls.split_complex_arg (type))
2431 num_complex_actuals++;
2433 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
2435 else
2436 type_arg_types = TYPE_ARG_TYPES (funtype);
2438 if (flags & ECF_MAY_BE_ALLOCA)
2439 cfun->calls_alloca = 1;
2441 /* If struct_value_rtx is 0, it means pass the address
2442 as if it were an extra parameter. Put the argument expression
2443 in structure_value_addr_value. */
2444 if (structure_value_addr && struct_value == 0)
2446 /* If structure_value_addr is a REG other than
2447 virtual_outgoing_args_rtx, we can use always use it. If it
2448 is not a REG, we must always copy it into a register.
2449 If it is virtual_outgoing_args_rtx, we must copy it to another
2450 register in some cases. */
2451 rtx temp = (!REG_P (structure_value_addr)
2452 || (ACCUMULATE_OUTGOING_ARGS
2453 && stack_arg_under_construction
2454 && structure_value_addr == virtual_outgoing_args_rtx)
2455 ? copy_addr_to_reg (convert_memory_address
2456 (Pmode, structure_value_addr))
2457 : structure_value_addr);
2459 structure_value_addr_value =
2460 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
2461 structure_value_addr_parm = 1;
2464 /* Count the arguments and set NUM_ACTUALS. */
2465 num_actuals =
2466 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
2468 /* Compute number of named args.
2469 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
2471 if (type_arg_types != 0)
2472 n_named_args
2473 = (list_length (type_arg_types)
2474 /* Count the struct value address, if it is passed as a parm. */
2475 + structure_value_addr_parm);
2476 else
2477 /* If we know nothing, treat all args as named. */
2478 n_named_args = num_actuals;
2480 /* Start updating where the next arg would go.
2482 On some machines (such as the PA) indirect calls have a different
2483 calling convention than normal calls. The fourth argument in
2484 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2485 or not. */
2486 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
2487 args_so_far = pack_cumulative_args (&args_so_far_v);
2489 /* Now possibly adjust the number of named args.
2490 Normally, don't include the last named arg if anonymous args follow.
2491 We do include the last named arg if
2492 targetm.calls.strict_argument_naming() returns nonzero.
2493 (If no anonymous args follow, the result of list_length is actually
2494 one too large. This is harmless.)
2496 If targetm.calls.pretend_outgoing_varargs_named() returns
2497 nonzero, and targetm.calls.strict_argument_naming() returns zero,
2498 this machine will be able to place unnamed args that were passed
2499 in registers into the stack. So treat all args as named. This
2500 allows the insns emitting for a specific argument list to be
2501 independent of the function declaration.
2503 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
2504 we do not have any reliable way to pass unnamed args in
2505 registers, so we must force them into memory. */
2507 if (type_arg_types != 0
2508 && targetm.calls.strict_argument_naming (args_so_far))
2510 else if (type_arg_types != 0
2511 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
2512 /* Don't include the last named arg. */
2513 --n_named_args;
2514 else
2515 /* Treat all args as named. */
2516 n_named_args = num_actuals;
2518 /* Make a vector to hold all the information about each arg. */
2519 args = XALLOCAVEC (struct arg_data, num_actuals);
2520 memset (args, 0, num_actuals * sizeof (struct arg_data));
2522 /* Build up entries in the ARGS array, compute the size of the
2523 arguments into ARGS_SIZE, etc. */
2524 initialize_argument_information (num_actuals, args, &args_size,
2525 n_named_args, exp,
2526 structure_value_addr_value, fndecl, fntype,
2527 args_so_far, reg_parm_stack_space,
2528 &old_stack_level, &old_pending_adj,
2529 &must_preallocate, &flags,
2530 &try_tail_call, CALL_FROM_THUNK_P (exp));
2532 if (args_size.var)
2533 must_preallocate = 1;
2535 /* Now make final decision about preallocating stack space. */
2536 must_preallocate = finalize_must_preallocate (must_preallocate,
2537 num_actuals, args,
2538 &args_size);
2540 /* If the structure value address will reference the stack pointer, we
2541 must stabilize it. We don't need to do this if we know that we are
2542 not going to adjust the stack pointer in processing this call. */
2544 if (structure_value_addr
2545 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2546 || reg_mentioned_p (virtual_outgoing_args_rtx,
2547 structure_value_addr))
2548 && (args_size.var
2549 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2550 structure_value_addr = copy_to_reg (structure_value_addr);
2552 /* Tail calls can make things harder to debug, and we've traditionally
2553 pushed these optimizations into -O2. Don't try if we're already
2554 expanding a call, as that means we're an argument. Don't try if
2555 there's cleanups, as we know there's code to follow the call. */
2557 if (currently_expanding_call++ != 0
2558 || !flag_optimize_sibling_calls
2559 || args_size.var
2560 || dbg_cnt (tail_call) == false)
2561 try_tail_call = 0;
2563 /* Rest of purposes for tail call optimizations to fail. */
2564 if (
2565 #ifdef HAVE_sibcall_epilogue
2566 !HAVE_sibcall_epilogue
2567 #else
2569 #endif
2570 || !try_tail_call
2571 /* Doing sibling call optimization needs some work, since
2572 structure_value_addr can be allocated on the stack.
2573 It does not seem worth the effort since few optimizable
2574 sibling calls will return a structure. */
2575 || structure_value_addr != NULL_RTX
2576 #ifdef REG_PARM_STACK_SPACE
2577 /* If outgoing reg parm stack space changes, we can not do sibcall. */
2578 || (OUTGOING_REG_PARM_STACK_SPACE (funtype)
2579 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl)))
2580 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (current_function_decl))
2581 #endif
2582 /* Check whether the target is able to optimize the call
2583 into a sibcall. */
2584 || !targetm.function_ok_for_sibcall (fndecl, exp)
2585 /* Functions that do not return exactly once may not be sibcall
2586 optimized. */
2587 || (flags & (ECF_RETURNS_TWICE | ECF_NORETURN))
2588 || TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr)))
2589 /* If the called function is nested in the current one, it might access
2590 some of the caller's arguments, but could clobber them beforehand if
2591 the argument areas are shared. */
2592 || (fndecl && decl_function_context (fndecl) == current_function_decl)
2593 /* If this function requires more stack slots than the current
2594 function, we cannot change it into a sibling call.
2595 crtl->args.pretend_args_size is not part of the
2596 stack allocated by our caller. */
2597 || args_size.constant > (crtl->args.size
2598 - crtl->args.pretend_args_size)
2599 /* If the callee pops its own arguments, then it must pop exactly
2600 the same number of arguments as the current function. */
2601 || (targetm.calls.return_pops_args (fndecl, funtype, args_size.constant)
2602 != targetm.calls.return_pops_args (current_function_decl,
2603 TREE_TYPE (current_function_decl),
2604 crtl->args.size))
2605 || !lang_hooks.decls.ok_for_sibcall (fndecl))
2606 try_tail_call = 0;
2608 /* Check if caller and callee disagree in promotion of function
2609 return value. */
2610 if (try_tail_call)
2612 enum machine_mode caller_mode, caller_promoted_mode;
2613 enum machine_mode callee_mode, callee_promoted_mode;
2614 int caller_unsignedp, callee_unsignedp;
2615 tree caller_res = DECL_RESULT (current_function_decl);
2617 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
2618 caller_mode = DECL_MODE (caller_res);
2619 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
2620 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
2621 caller_promoted_mode
2622 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
2623 &caller_unsignedp,
2624 TREE_TYPE (current_function_decl), 1);
2625 callee_promoted_mode
2626 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
2627 &callee_unsignedp,
2628 funtype, 1);
2629 if (caller_mode != VOIDmode
2630 && (caller_promoted_mode != callee_promoted_mode
2631 || ((caller_mode != caller_promoted_mode
2632 || callee_mode != callee_promoted_mode)
2633 && (caller_unsignedp != callee_unsignedp
2634 || GET_MODE_BITSIZE (caller_mode)
2635 < GET_MODE_BITSIZE (callee_mode)))))
2636 try_tail_call = 0;
2639 /* Ensure current function's preferred stack boundary is at least
2640 what we need. Stack alignment may also increase preferred stack
2641 boundary. */
2642 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
2643 crtl->preferred_stack_boundary = preferred_stack_boundary;
2644 else
2645 preferred_stack_boundary = crtl->preferred_stack_boundary;
2647 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
2649 /* We want to make two insn chains; one for a sibling call, the other
2650 for a normal call. We will select one of the two chains after
2651 initial RTL generation is complete. */
2652 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
2654 int sibcall_failure = 0;
2655 /* We want to emit any pending stack adjustments before the tail
2656 recursion "call". That way we know any adjustment after the tail
2657 recursion call can be ignored if we indeed use the tail
2658 call expansion. */
2659 saved_pending_stack_adjust save;
2660 rtx_insn *insns, *before_call, *after_args;
2661 rtx next_arg_reg;
2663 if (pass == 0)
2665 /* State variables we need to save and restore between
2666 iterations. */
2667 save_pending_stack_adjust (&save);
2669 if (pass)
2670 flags &= ~ECF_SIBCALL;
2671 else
2672 flags |= ECF_SIBCALL;
2674 /* Other state variables that we must reinitialize each time
2675 through the loop (that are not initialized by the loop itself). */
2676 argblock = 0;
2677 call_fusage = 0;
2679 /* Start a new sequence for the normal call case.
2681 From this point on, if the sibling call fails, we want to set
2682 sibcall_failure instead of continuing the loop. */
2683 start_sequence ();
2685 /* Don't let pending stack adjusts add up to too much.
2686 Also, do all pending adjustments now if there is any chance
2687 this might be a call to alloca or if we are expanding a sibling
2688 call sequence.
2689 Also do the adjustments before a throwing call, otherwise
2690 exception handling can fail; PR 19225. */
2691 if (pending_stack_adjust >= 32
2692 || (pending_stack_adjust > 0
2693 && (flags & ECF_MAY_BE_ALLOCA))
2694 || (pending_stack_adjust > 0
2695 && flag_exceptions && !(flags & ECF_NOTHROW))
2696 || pass == 0)
2697 do_pending_stack_adjust ();
2699 /* Precompute any arguments as needed. */
2700 if (pass)
2701 precompute_arguments (num_actuals, args);
2703 /* Now we are about to start emitting insns that can be deleted
2704 if a libcall is deleted. */
2705 if (pass && (flags & ECF_MALLOC))
2706 start_sequence ();
2708 if (pass == 0 && crtl->stack_protect_guard)
2709 stack_protect_epilogue ();
2711 adjusted_args_size = args_size;
2712 /* Compute the actual size of the argument block required. The variable
2713 and constant sizes must be combined, the size may have to be rounded,
2714 and there may be a minimum required size. When generating a sibcall
2715 pattern, do not round up, since we'll be re-using whatever space our
2716 caller provided. */
2717 unadjusted_args_size
2718 = compute_argument_block_size (reg_parm_stack_space,
2719 &adjusted_args_size,
2720 fndecl, fntype,
2721 (pass == 0 ? 0
2722 : preferred_stack_boundary));
2724 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
2726 /* The argument block when performing a sibling call is the
2727 incoming argument block. */
2728 if (pass == 0)
2730 argblock = crtl->args.internal_arg_pointer;
2731 argblock
2732 #ifdef STACK_GROWS_DOWNWARD
2733 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
2734 #else
2735 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
2736 #endif
2737 stored_args_map = sbitmap_alloc (args_size.constant);
2738 bitmap_clear (stored_args_map);
2741 /* If we have no actual push instructions, or shouldn't use them,
2742 make space for all args right now. */
2743 else if (adjusted_args_size.var != 0)
2745 if (old_stack_level == 0)
2747 emit_stack_save (SAVE_BLOCK, &old_stack_level);
2748 old_stack_pointer_delta = stack_pointer_delta;
2749 old_pending_adj = pending_stack_adjust;
2750 pending_stack_adjust = 0;
2751 /* stack_arg_under_construction says whether a stack arg is
2752 being constructed at the old stack level. Pushing the stack
2753 gets a clean outgoing argument block. */
2754 old_stack_arg_under_construction = stack_arg_under_construction;
2755 stack_arg_under_construction = 0;
2757 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
2758 if (flag_stack_usage_info)
2759 current_function_has_unbounded_dynamic_stack_size = 1;
2761 else
2763 /* Note that we must go through the motions of allocating an argument
2764 block even if the size is zero because we may be storing args
2765 in the area reserved for register arguments, which may be part of
2766 the stack frame. */
2768 int needed = adjusted_args_size.constant;
2770 /* Store the maximum argument space used. It will be pushed by
2771 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
2772 checking). */
2774 if (needed > crtl->outgoing_args_size)
2775 crtl->outgoing_args_size = needed;
2777 if (must_preallocate)
2779 if (ACCUMULATE_OUTGOING_ARGS)
2781 /* Since the stack pointer will never be pushed, it is
2782 possible for the evaluation of a parm to clobber
2783 something we have already written to the stack.
2784 Since most function calls on RISC machines do not use
2785 the stack, this is uncommon, but must work correctly.
2787 Therefore, we save any area of the stack that was already
2788 written and that we are using. Here we set up to do this
2789 by making a new stack usage map from the old one. The
2790 actual save will be done by store_one_arg.
2792 Another approach might be to try to reorder the argument
2793 evaluations to avoid this conflicting stack usage. */
2795 /* Since we will be writing into the entire argument area,
2796 the map must be allocated for its entire size, not just
2797 the part that is the responsibility of the caller. */
2798 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
2799 needed += reg_parm_stack_space;
2801 #ifdef ARGS_GROW_DOWNWARD
2802 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2803 needed + 1);
2804 #else
2805 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2806 needed);
2807 #endif
2808 free (stack_usage_map_buf);
2809 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
2810 stack_usage_map = stack_usage_map_buf;
2812 if (initial_highest_arg_in_use)
2813 memcpy (stack_usage_map, initial_stack_usage_map,
2814 initial_highest_arg_in_use);
2816 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
2817 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
2818 (highest_outgoing_arg_in_use
2819 - initial_highest_arg_in_use));
2820 needed = 0;
2822 /* The address of the outgoing argument list must not be
2823 copied to a register here, because argblock would be left
2824 pointing to the wrong place after the call to
2825 allocate_dynamic_stack_space below. */
2827 argblock = virtual_outgoing_args_rtx;
2829 else
2831 if (inhibit_defer_pop == 0)
2833 /* Try to reuse some or all of the pending_stack_adjust
2834 to get this space. */
2835 needed
2836 = (combine_pending_stack_adjustment_and_call
2837 (unadjusted_args_size,
2838 &adjusted_args_size,
2839 preferred_unit_stack_boundary));
2841 /* combine_pending_stack_adjustment_and_call computes
2842 an adjustment before the arguments are allocated.
2843 Account for them and see whether or not the stack
2844 needs to go up or down. */
2845 needed = unadjusted_args_size - needed;
2847 if (needed < 0)
2849 /* We're releasing stack space. */
2850 /* ??? We can avoid any adjustment at all if we're
2851 already aligned. FIXME. */
2852 pending_stack_adjust = -needed;
2853 do_pending_stack_adjust ();
2854 needed = 0;
2856 else
2857 /* We need to allocate space. We'll do that in
2858 push_block below. */
2859 pending_stack_adjust = 0;
2862 /* Special case this because overhead of `push_block' in
2863 this case is non-trivial. */
2864 if (needed == 0)
2865 argblock = virtual_outgoing_args_rtx;
2866 else
2868 argblock = push_block (GEN_INT (needed), 0, 0);
2869 #ifdef ARGS_GROW_DOWNWARD
2870 argblock = plus_constant (Pmode, argblock, needed);
2871 #endif
2874 /* We only really need to call `copy_to_reg' in the case
2875 where push insns are going to be used to pass ARGBLOCK
2876 to a function call in ARGS. In that case, the stack
2877 pointer changes value from the allocation point to the
2878 call point, and hence the value of
2879 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
2880 as well always do it. */
2881 argblock = copy_to_reg (argblock);
2886 if (ACCUMULATE_OUTGOING_ARGS)
2888 /* The save/restore code in store_one_arg handles all
2889 cases except one: a constructor call (including a C
2890 function returning a BLKmode struct) to initialize
2891 an argument. */
2892 if (stack_arg_under_construction)
2894 rtx push_size
2895 = GEN_INT (adjusted_args_size.constant
2896 + (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype
2897 : TREE_TYPE (fndecl))) ? 0
2898 : reg_parm_stack_space));
2899 if (old_stack_level == 0)
2901 emit_stack_save (SAVE_BLOCK, &old_stack_level);
2902 old_stack_pointer_delta = stack_pointer_delta;
2903 old_pending_adj = pending_stack_adjust;
2904 pending_stack_adjust = 0;
2905 /* stack_arg_under_construction says whether a stack
2906 arg is being constructed at the old stack level.
2907 Pushing the stack gets a clean outgoing argument
2908 block. */
2909 old_stack_arg_under_construction
2910 = stack_arg_under_construction;
2911 stack_arg_under_construction = 0;
2912 /* Make a new map for the new argument list. */
2913 free (stack_usage_map_buf);
2914 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
2915 stack_usage_map = stack_usage_map_buf;
2916 highest_outgoing_arg_in_use = 0;
2918 /* We can pass TRUE as the 4th argument because we just
2919 saved the stack pointer and will restore it right after
2920 the call. */
2921 allocate_dynamic_stack_space (push_size, 0,
2922 BIGGEST_ALIGNMENT, true);
2925 /* If argument evaluation might modify the stack pointer,
2926 copy the address of the argument list to a register. */
2927 for (i = 0; i < num_actuals; i++)
2928 if (args[i].pass_on_stack)
2930 argblock = copy_addr_to_reg (argblock);
2931 break;
2935 compute_argument_addresses (args, argblock, num_actuals);
2937 /* Perform stack alignment before the first push (the last arg). */
2938 if (argblock == 0
2939 && adjusted_args_size.constant > reg_parm_stack_space
2940 && adjusted_args_size.constant != unadjusted_args_size)
2942 /* When the stack adjustment is pending, we get better code
2943 by combining the adjustments. */
2944 if (pending_stack_adjust
2945 && ! inhibit_defer_pop)
2947 pending_stack_adjust
2948 = (combine_pending_stack_adjustment_and_call
2949 (unadjusted_args_size,
2950 &adjusted_args_size,
2951 preferred_unit_stack_boundary));
2952 do_pending_stack_adjust ();
2954 else if (argblock == 0)
2955 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
2956 - unadjusted_args_size));
2958 /* Now that the stack is properly aligned, pops can't safely
2959 be deferred during the evaluation of the arguments. */
2960 NO_DEFER_POP;
2962 /* Record the maximum pushed stack space size. We need to delay
2963 doing it this far to take into account the optimization done
2964 by combine_pending_stack_adjustment_and_call. */
2965 if (flag_stack_usage_info
2966 && !ACCUMULATE_OUTGOING_ARGS
2967 && pass
2968 && adjusted_args_size.var == 0)
2970 int pushed = adjusted_args_size.constant + pending_stack_adjust;
2971 if (pushed > current_function_pushed_stack_size)
2972 current_function_pushed_stack_size = pushed;
2975 funexp = rtx_for_function_call (fndecl, addr);
2977 /* Figure out the register where the value, if any, will come back. */
2978 valreg = 0;
2979 if (TYPE_MODE (rettype) != VOIDmode
2980 && ! structure_value_addr)
2982 if (pcc_struct_value)
2983 valreg = hard_function_value (build_pointer_type (rettype),
2984 fndecl, NULL, (pass == 0));
2985 else
2986 valreg = hard_function_value (rettype, fndecl, fntype,
2987 (pass == 0));
2989 /* If VALREG is a PARALLEL whose first member has a zero
2990 offset, use that. This is for targets such as m68k that
2991 return the same value in multiple places. */
2992 if (GET_CODE (valreg) == PARALLEL)
2994 rtx elem = XVECEXP (valreg, 0, 0);
2995 rtx where = XEXP (elem, 0);
2996 rtx offset = XEXP (elem, 1);
2997 if (offset == const0_rtx
2998 && GET_MODE (where) == GET_MODE (valreg))
2999 valreg = where;
3003 /* Precompute all register parameters. It isn't safe to compute anything
3004 once we have started filling any specific hard regs. */
3005 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
3007 if (CALL_EXPR_STATIC_CHAIN (exp))
3008 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
3009 else
3010 static_chain_value = 0;
3012 #ifdef REG_PARM_STACK_SPACE
3013 /* Save the fixed argument area if it's part of the caller's frame and
3014 is clobbered by argument setup for this call. */
3015 if (ACCUMULATE_OUTGOING_ARGS && pass)
3016 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3017 &low_to_save, &high_to_save);
3018 #endif
3020 /* Now store (and compute if necessary) all non-register parms.
3021 These come before register parms, since they can require block-moves,
3022 which could clobber the registers used for register parms.
3023 Parms which have partial registers are not stored here,
3024 but we do preallocate space here if they want that. */
3026 for (i = 0; i < num_actuals; i++)
3028 if (args[i].reg == 0 || args[i].pass_on_stack)
3030 rtx_insn *before_arg = get_last_insn ();
3032 /* We don't allow passing huge (> 2^30 B) arguments
3033 by value. It would cause an overflow later on. */
3034 if (adjusted_args_size.constant
3035 >= (1 << (HOST_BITS_PER_INT - 2)))
3037 sorry ("passing too large argument on stack");
3038 continue;
3041 if (store_one_arg (&args[i], argblock, flags,
3042 adjusted_args_size.var != 0,
3043 reg_parm_stack_space)
3044 || (pass == 0
3045 && check_sibcall_argument_overlap (before_arg,
3046 &args[i], 1)))
3047 sibcall_failure = 1;
3050 if (args[i].stack)
3051 call_fusage
3052 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
3053 gen_rtx_USE (VOIDmode, args[i].stack),
3054 call_fusage);
3057 /* If we have a parm that is passed in registers but not in memory
3058 and whose alignment does not permit a direct copy into registers,
3059 make a group of pseudos that correspond to each register that we
3060 will later fill. */
3061 if (STRICT_ALIGNMENT)
3062 store_unaligned_arguments_into_pseudos (args, num_actuals);
3064 /* Now store any partially-in-registers parm.
3065 This is the last place a block-move can happen. */
3066 if (reg_parm_seen)
3067 for (i = 0; i < num_actuals; i++)
3068 if (args[i].partial != 0 && ! args[i].pass_on_stack)
3070 rtx_insn *before_arg = get_last_insn ();
3072 if (store_one_arg (&args[i], argblock, flags,
3073 adjusted_args_size.var != 0,
3074 reg_parm_stack_space)
3075 || (pass == 0
3076 && check_sibcall_argument_overlap (before_arg,
3077 &args[i], 1)))
3078 sibcall_failure = 1;
3081 /* If register arguments require space on the stack and stack space
3082 was not preallocated, allocate stack space here for arguments
3083 passed in registers. */
3084 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
3085 && !ACCUMULATE_OUTGOING_ARGS
3086 && must_preallocate == 0 && reg_parm_stack_space > 0)
3087 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
3089 /* Pass the function the address in which to return a
3090 structure value. */
3091 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3093 structure_value_addr
3094 = convert_memory_address (Pmode, structure_value_addr);
3095 emit_move_insn (struct_value,
3096 force_reg (Pmode,
3097 force_operand (structure_value_addr,
3098 NULL_RTX)));
3100 if (REG_P (struct_value))
3101 use_reg (&call_fusage, struct_value);
3104 after_args = get_last_insn ();
3105 funexp = prepare_call_address (fndecl, funexp, static_chain_value,
3106 &call_fusage, reg_parm_seen, pass == 0);
3108 load_register_parameters (args, num_actuals, &call_fusage, flags,
3109 pass == 0, &sibcall_failure);
3111 /* Save a pointer to the last insn before the call, so that we can
3112 later safely search backwards to find the CALL_INSN. */
3113 before_call = get_last_insn ();
3115 /* Set up next argument register. For sibling calls on machines
3116 with register windows this should be the incoming register. */
3117 if (pass == 0)
3118 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
3119 VOIDmode,
3120 void_type_node,
3121 true);
3122 else
3123 next_arg_reg = targetm.calls.function_arg (args_so_far,
3124 VOIDmode, void_type_node,
3125 true);
3127 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
3129 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
3130 arg_nr = num_actuals - arg_nr - 1;
3131 if (arg_nr >= 0
3132 && arg_nr < num_actuals
3133 && args[arg_nr].reg
3134 && valreg
3135 && REG_P (valreg)
3136 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
3137 call_fusage
3138 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
3139 gen_rtx_SET (VOIDmode, valreg, args[arg_nr].reg),
3140 call_fusage);
3142 /* All arguments and registers used for the call must be set up by
3143 now! */
3145 /* Stack must be properly aligned now. */
3146 gcc_assert (!pass
3147 || !(stack_pointer_delta % preferred_unit_stack_boundary));
3149 /* Generate the actual call instruction. */
3150 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
3151 adjusted_args_size.constant, struct_value_size,
3152 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
3153 flags, args_so_far);
3155 if (flag_use_caller_save)
3157 rtx_call_insn *last;
3158 rtx datum = NULL_RTX;
3159 if (fndecl != NULL_TREE)
3161 datum = XEXP (DECL_RTL (fndecl), 0);
3162 gcc_assert (datum != NULL_RTX
3163 && GET_CODE (datum) == SYMBOL_REF);
3165 last = last_call_insn ();
3166 add_reg_note (last, REG_CALL_DECL, datum);
3169 /* If the call setup or the call itself overlaps with anything
3170 of the argument setup we probably clobbered our call address.
3171 In that case we can't do sibcalls. */
3172 if (pass == 0
3173 && check_sibcall_argument_overlap (after_args, 0, 0))
3174 sibcall_failure = 1;
3176 /* If a non-BLKmode value is returned at the most significant end
3177 of a register, shift the register right by the appropriate amount
3178 and update VALREG accordingly. BLKmode values are handled by the
3179 group load/store machinery below. */
3180 if (!structure_value_addr
3181 && !pcc_struct_value
3182 && TYPE_MODE (rettype) != VOIDmode
3183 && TYPE_MODE (rettype) != BLKmode
3184 && REG_P (valreg)
3185 && targetm.calls.return_in_msb (rettype))
3187 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
3188 sibcall_failure = 1;
3189 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
3192 if (pass && (flags & ECF_MALLOC))
3194 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3195 rtx_insn *last, *insns;
3197 /* The return value from a malloc-like function is a pointer. */
3198 if (TREE_CODE (rettype) == POINTER_TYPE)
3199 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
3201 emit_move_insn (temp, valreg);
3203 /* The return value from a malloc-like function can not alias
3204 anything else. */
3205 last = get_last_insn ();
3206 add_reg_note (last, REG_NOALIAS, temp);
3208 /* Write out the sequence. */
3209 insns = get_insns ();
3210 end_sequence ();
3211 emit_insn (insns);
3212 valreg = temp;
3215 /* For calls to `setjmp', etc., inform
3216 function.c:setjmp_warnings that it should complain if
3217 nonvolatile values are live. For functions that cannot
3218 return, inform flow that control does not fall through. */
3220 if ((flags & ECF_NORETURN) || pass == 0)
3222 /* The barrier must be emitted
3223 immediately after the CALL_INSN. Some ports emit more
3224 than just a CALL_INSN above, so we must search for it here. */
3226 rtx_insn *last = get_last_insn ();
3227 while (!CALL_P (last))
3229 last = PREV_INSN (last);
3230 /* There was no CALL_INSN? */
3231 gcc_assert (last != before_call);
3234 emit_barrier_after (last);
3236 /* Stack adjustments after a noreturn call are dead code.
3237 However when NO_DEFER_POP is in effect, we must preserve
3238 stack_pointer_delta. */
3239 if (inhibit_defer_pop == 0)
3241 stack_pointer_delta = old_stack_allocated;
3242 pending_stack_adjust = 0;
3246 /* If value type not void, return an rtx for the value. */
3248 if (TYPE_MODE (rettype) == VOIDmode
3249 || ignore)
3250 target = const0_rtx;
3251 else if (structure_value_addr)
3253 if (target == 0 || !MEM_P (target))
3255 target
3256 = gen_rtx_MEM (TYPE_MODE (rettype),
3257 memory_address (TYPE_MODE (rettype),
3258 structure_value_addr));
3259 set_mem_attributes (target, rettype, 1);
3262 else if (pcc_struct_value)
3264 /* This is the special C++ case where we need to
3265 know what the true target was. We take care to
3266 never use this value more than once in one expression. */
3267 target = gen_rtx_MEM (TYPE_MODE (rettype),
3268 copy_to_reg (valreg));
3269 set_mem_attributes (target, rettype, 1);
3271 /* Handle calls that return values in multiple non-contiguous locations.
3272 The Irix 6 ABI has examples of this. */
3273 else if (GET_CODE (valreg) == PARALLEL)
3275 if (target == 0)
3276 target = emit_group_move_into_temps (valreg);
3277 else if (rtx_equal_p (target, valreg))
3279 else if (GET_CODE (target) == PARALLEL)
3280 /* Handle the result of a emit_group_move_into_temps
3281 call in the previous pass. */
3282 emit_group_move (target, valreg);
3283 else
3284 emit_group_store (target, valreg, rettype,
3285 int_size_in_bytes (rettype));
3287 else if (target
3288 && GET_MODE (target) == TYPE_MODE (rettype)
3289 && GET_MODE (target) == GET_MODE (valreg))
3291 bool may_overlap = false;
3293 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
3294 reg to a plain register. */
3295 if (!REG_P (target) || HARD_REGISTER_P (target))
3296 valreg = avoid_likely_spilled_reg (valreg);
3298 /* If TARGET is a MEM in the argument area, and we have
3299 saved part of the argument area, then we can't store
3300 directly into TARGET as it may get overwritten when we
3301 restore the argument save area below. Don't work too
3302 hard though and simply force TARGET to a register if it
3303 is a MEM; the optimizer is quite likely to sort it out. */
3304 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
3305 for (i = 0; i < num_actuals; i++)
3306 if (args[i].save_area)
3308 may_overlap = true;
3309 break;
3312 if (may_overlap)
3313 target = copy_to_reg (valreg);
3314 else
3316 /* TARGET and VALREG cannot be equal at this point
3317 because the latter would not have
3318 REG_FUNCTION_VALUE_P true, while the former would if
3319 it were referring to the same register.
3321 If they refer to the same register, this move will be
3322 a no-op, except when function inlining is being
3323 done. */
3324 emit_move_insn (target, valreg);
3326 /* If we are setting a MEM, this code must be executed.
3327 Since it is emitted after the call insn, sibcall
3328 optimization cannot be performed in that case. */
3329 if (MEM_P (target))
3330 sibcall_failure = 1;
3333 else
3334 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
3336 /* If we promoted this return value, make the proper SUBREG.
3337 TARGET might be const0_rtx here, so be careful. */
3338 if (REG_P (target)
3339 && TYPE_MODE (rettype) != BLKmode
3340 && GET_MODE (target) != TYPE_MODE (rettype))
3342 tree type = rettype;
3343 int unsignedp = TYPE_UNSIGNED (type);
3344 int offset = 0;
3345 enum machine_mode pmode;
3347 /* Ensure we promote as expected, and get the new unsignedness. */
3348 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
3349 funtype, 1);
3350 gcc_assert (GET_MODE (target) == pmode);
3352 if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
3353 && (GET_MODE_SIZE (GET_MODE (target))
3354 > GET_MODE_SIZE (TYPE_MODE (type))))
3356 offset = GET_MODE_SIZE (GET_MODE (target))
3357 - GET_MODE_SIZE (TYPE_MODE (type));
3358 if (! BYTES_BIG_ENDIAN)
3359 offset = (offset / UNITS_PER_WORD) * UNITS_PER_WORD;
3360 else if (! WORDS_BIG_ENDIAN)
3361 offset %= UNITS_PER_WORD;
3364 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
3365 SUBREG_PROMOTED_VAR_P (target) = 1;
3366 SUBREG_PROMOTED_SET (target, unsignedp);
3369 /* If size of args is variable or this was a constructor call for a stack
3370 argument, restore saved stack-pointer value. */
3372 if (old_stack_level)
3374 rtx_insn *prev = get_last_insn ();
3376 emit_stack_restore (SAVE_BLOCK, old_stack_level);
3377 stack_pointer_delta = old_stack_pointer_delta;
3379 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
3381 pending_stack_adjust = old_pending_adj;
3382 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3383 stack_arg_under_construction = old_stack_arg_under_construction;
3384 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3385 stack_usage_map = initial_stack_usage_map;
3386 sibcall_failure = 1;
3388 else if (ACCUMULATE_OUTGOING_ARGS && pass)
3390 #ifdef REG_PARM_STACK_SPACE
3391 if (save_area)
3392 restore_fixed_argument_area (save_area, argblock,
3393 high_to_save, low_to_save);
3394 #endif
3396 /* If we saved any argument areas, restore them. */
3397 for (i = 0; i < num_actuals; i++)
3398 if (args[i].save_area)
3400 enum machine_mode save_mode = GET_MODE (args[i].save_area);
3401 rtx stack_area
3402 = gen_rtx_MEM (save_mode,
3403 memory_address (save_mode,
3404 XEXP (args[i].stack_slot, 0)));
3406 if (save_mode != BLKmode)
3407 emit_move_insn (stack_area, args[i].save_area);
3408 else
3409 emit_block_move (stack_area, args[i].save_area,
3410 GEN_INT (args[i].locate.size.constant),
3411 BLOCK_OP_CALL_PARM);
3414 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3415 stack_usage_map = initial_stack_usage_map;
3418 /* If this was alloca, record the new stack level for nonlocal gotos.
3419 Check for the handler slots since we might not have a save area
3420 for non-local gotos. */
3422 if ((flags & ECF_MAY_BE_ALLOCA) && cfun->nonlocal_goto_save_area != 0)
3423 update_nonlocal_goto_save_area ();
3425 /* Free up storage we no longer need. */
3426 for (i = 0; i < num_actuals; ++i)
3427 free (args[i].aligned_regs);
3429 insns = get_insns ();
3430 end_sequence ();
3432 if (pass == 0)
3434 tail_call_insns = insns;
3436 /* Restore the pending stack adjustment now that we have
3437 finished generating the sibling call sequence. */
3439 restore_pending_stack_adjust (&save);
3441 /* Prepare arg structure for next iteration. */
3442 for (i = 0; i < num_actuals; i++)
3444 args[i].value = 0;
3445 args[i].aligned_regs = 0;
3446 args[i].stack = 0;
3449 sbitmap_free (stored_args_map);
3450 internal_arg_pointer_exp_state.scan_start = NULL;
3451 internal_arg_pointer_exp_state.cache.release ();
3453 else
3455 normal_call_insns = insns;
3457 /* Verify that we've deallocated all the stack we used. */
3458 gcc_assert ((flags & ECF_NORETURN)
3459 || (old_stack_allocated
3460 == stack_pointer_delta - pending_stack_adjust));
3463 /* If something prevents making this a sibling call,
3464 zero out the sequence. */
3465 if (sibcall_failure)
3466 tail_call_insns = NULL;
3467 else
3468 break;
3471 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
3472 arguments too, as argument area is now clobbered by the call. */
3473 if (tail_call_insns)
3475 emit_insn (tail_call_insns);
3476 crtl->tail_call_emit = true;
3478 else
3479 emit_insn (normal_call_insns);
3481 currently_expanding_call--;
3483 free (stack_usage_map_buf);
3485 return target;
3488 /* A sibling call sequence invalidates any REG_EQUIV notes made for
3489 this function's incoming arguments.
3491 At the start of RTL generation we know the only REG_EQUIV notes
3492 in the rtl chain are those for incoming arguments, so we can look
3493 for REG_EQUIV notes between the start of the function and the
3494 NOTE_INSN_FUNCTION_BEG.
3496 This is (slight) overkill. We could keep track of the highest
3497 argument we clobber and be more selective in removing notes, but it
3498 does not seem to be worth the effort. */
3500 void
3501 fixup_tail_calls (void)
3503 rtx_insn *insn;
3505 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3507 rtx note;
3509 /* There are never REG_EQUIV notes for the incoming arguments
3510 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
3511 if (NOTE_P (insn)
3512 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
3513 break;
3515 note = find_reg_note (insn, REG_EQUIV, 0);
3516 if (note)
3517 remove_note (insn, note);
3518 note = find_reg_note (insn, REG_EQUIV, 0);
3519 gcc_assert (!note);
3523 /* Traverse a list of TYPES and expand all complex types into their
3524 components. */
3525 static tree
3526 split_complex_types (tree types)
3528 tree p;
3530 /* Before allocating memory, check for the common case of no complex. */
3531 for (p = types; p; p = TREE_CHAIN (p))
3533 tree type = TREE_VALUE (p);
3534 if (TREE_CODE (type) == COMPLEX_TYPE
3535 && targetm.calls.split_complex_arg (type))
3536 goto found;
3538 return types;
3540 found:
3541 types = copy_list (types);
3543 for (p = types; p; p = TREE_CHAIN (p))
3545 tree complex_type = TREE_VALUE (p);
3547 if (TREE_CODE (complex_type) == COMPLEX_TYPE
3548 && targetm.calls.split_complex_arg (complex_type))
3550 tree next, imag;
3552 /* Rewrite complex type with component type. */
3553 TREE_VALUE (p) = TREE_TYPE (complex_type);
3554 next = TREE_CHAIN (p);
3556 /* Add another component type for the imaginary part. */
3557 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
3558 TREE_CHAIN (p) = imag;
3559 TREE_CHAIN (imag) = next;
3561 /* Skip the newly created node. */
3562 p = TREE_CHAIN (p);
3566 return types;
3569 /* Output a library call to function FUN (a SYMBOL_REF rtx).
3570 The RETVAL parameter specifies whether return value needs to be saved, other
3571 parameters are documented in the emit_library_call function below. */
3573 static rtx
3574 emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
3575 enum libcall_type fn_type,
3576 enum machine_mode outmode, int nargs, va_list p)
3578 /* Total size in bytes of all the stack-parms scanned so far. */
3579 struct args_size args_size;
3580 /* Size of arguments before any adjustments (such as rounding). */
3581 struct args_size original_args_size;
3582 int argnum;
3583 rtx fun;
3584 /* Todo, choose the correct decl type of orgfun. Sadly this information
3585 isn't present here, so we default to native calling abi here. */
3586 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3587 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3588 int count;
3589 rtx argblock = 0;
3590 CUMULATIVE_ARGS args_so_far_v;
3591 cumulative_args_t args_so_far;
3592 struct arg
3594 rtx value;
3595 enum machine_mode mode;
3596 rtx reg;
3597 int partial;
3598 struct locate_and_pad_arg_data locate;
3599 rtx save_area;
3601 struct arg *argvec;
3602 int old_inhibit_defer_pop = inhibit_defer_pop;
3603 rtx call_fusage = 0;
3604 rtx mem_value = 0;
3605 rtx valreg;
3606 int pcc_struct_value = 0;
3607 int struct_value_size = 0;
3608 int flags;
3609 int reg_parm_stack_space = 0;
3610 int needed;
3611 rtx_insn *before_call;
3612 tree tfom; /* type_for_mode (outmode, 0) */
3614 #ifdef REG_PARM_STACK_SPACE
3615 /* Define the boundary of the register parm stack space that needs to be
3616 save, if any. */
3617 int low_to_save = 0, high_to_save = 0;
3618 rtx save_area = 0; /* Place that it is saved. */
3619 #endif
3621 /* Size of the stack reserved for parameter registers. */
3622 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3623 char *initial_stack_usage_map = stack_usage_map;
3624 char *stack_usage_map_buf = NULL;
3626 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
3628 #ifdef REG_PARM_STACK_SPACE
3629 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3630 #endif
3632 /* By default, library functions can not throw. */
3633 flags = ECF_NOTHROW;
3635 switch (fn_type)
3637 case LCT_NORMAL:
3638 break;
3639 case LCT_CONST:
3640 flags |= ECF_CONST;
3641 break;
3642 case LCT_PURE:
3643 flags |= ECF_PURE;
3644 break;
3645 case LCT_NORETURN:
3646 flags |= ECF_NORETURN;
3647 break;
3648 case LCT_THROW:
3649 flags = ECF_NORETURN;
3650 break;
3651 case LCT_RETURNS_TWICE:
3652 flags = ECF_RETURNS_TWICE;
3653 break;
3655 fun = orgfun;
3657 /* Ensure current function's preferred stack boundary is at least
3658 what we need. */
3659 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
3660 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3662 /* If this kind of value comes back in memory,
3663 decide where in memory it should come back. */
3664 if (outmode != VOIDmode)
3666 tfom = lang_hooks.types.type_for_mode (outmode, 0);
3667 if (aggregate_value_p (tfom, 0))
3669 #ifdef PCC_STATIC_STRUCT_RETURN
3670 rtx pointer_reg
3671 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
3672 mem_value = gen_rtx_MEM (outmode, pointer_reg);
3673 pcc_struct_value = 1;
3674 if (value == 0)
3675 value = gen_reg_rtx (outmode);
3676 #else /* not PCC_STATIC_STRUCT_RETURN */
3677 struct_value_size = GET_MODE_SIZE (outmode);
3678 if (value != 0 && MEM_P (value))
3679 mem_value = value;
3680 else
3681 mem_value = assign_temp (tfom, 1, 1);
3682 #endif
3683 /* This call returns a big structure. */
3684 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
3687 else
3688 tfom = void_type_node;
3690 /* ??? Unfinished: must pass the memory address as an argument. */
3692 /* Copy all the libcall-arguments out of the varargs data
3693 and into a vector ARGVEC.
3695 Compute how to pass each argument. We only support a very small subset
3696 of the full argument passing conventions to limit complexity here since
3697 library functions shouldn't have many args. */
3699 argvec = XALLOCAVEC (struct arg, nargs + 1);
3700 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
3702 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
3703 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
3704 #else
3705 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
3706 #endif
3707 args_so_far = pack_cumulative_args (&args_so_far_v);
3709 args_size.constant = 0;
3710 args_size.var = 0;
3712 count = 0;
3714 push_temp_slots ();
3716 /* If there's a structure value address to be passed,
3717 either pass it in the special place, or pass it as an extra argument. */
3718 if (mem_value && struct_value == 0 && ! pcc_struct_value)
3720 rtx addr = XEXP (mem_value, 0);
3722 nargs++;
3724 /* Make sure it is a reasonable operand for a move or push insn. */
3725 if (!REG_P (addr) && !MEM_P (addr)
3726 && !(CONSTANT_P (addr)
3727 && targetm.legitimate_constant_p (Pmode, addr)))
3728 addr = force_operand (addr, NULL_RTX);
3730 argvec[count].value = addr;
3731 argvec[count].mode = Pmode;
3732 argvec[count].partial = 0;
3734 argvec[count].reg = targetm.calls.function_arg (args_so_far,
3735 Pmode, NULL_TREE, true);
3736 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
3737 NULL_TREE, 1) == 0);
3739 locate_and_pad_parm (Pmode, NULL_TREE,
3740 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3742 #else
3743 argvec[count].reg != 0,
3744 #endif
3745 reg_parm_stack_space, 0,
3746 NULL_TREE, &args_size, &argvec[count].locate);
3748 if (argvec[count].reg == 0 || argvec[count].partial != 0
3749 || reg_parm_stack_space > 0)
3750 args_size.constant += argvec[count].locate.size.constant;
3752 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
3754 count++;
3757 for (; count < nargs; count++)
3759 rtx val = va_arg (p, rtx);
3760 enum machine_mode mode = (enum machine_mode) va_arg (p, int);
3761 int unsigned_p = 0;
3763 /* We cannot convert the arg value to the mode the library wants here;
3764 must do it earlier where we know the signedness of the arg. */
3765 gcc_assert (mode != BLKmode
3766 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
3768 /* Make sure it is a reasonable operand for a move or push insn. */
3769 if (!REG_P (val) && !MEM_P (val)
3770 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
3771 val = force_operand (val, NULL_RTX);
3773 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
3775 rtx slot;
3776 int must_copy
3777 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
3779 /* If this was a CONST function, it is now PURE since it now
3780 reads memory. */
3781 if (flags & ECF_CONST)
3783 flags &= ~ECF_CONST;
3784 flags |= ECF_PURE;
3787 if (MEM_P (val) && !must_copy)
3789 tree val_expr = MEM_EXPR (val);
3790 if (val_expr)
3791 mark_addressable (val_expr);
3792 slot = val;
3794 else
3796 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
3797 1, 1);
3798 emit_move_insn (slot, val);
3801 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3802 gen_rtx_USE (VOIDmode, slot),
3803 call_fusage);
3804 if (must_copy)
3805 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3806 gen_rtx_CLOBBER (VOIDmode,
3807 slot),
3808 call_fusage);
3810 mode = Pmode;
3811 val = force_operand (XEXP (slot, 0), NULL_RTX);
3814 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
3815 argvec[count].mode = mode;
3816 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
3817 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
3818 NULL_TREE, true);
3820 argvec[count].partial
3821 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
3823 if (argvec[count].reg == 0
3824 || argvec[count].partial != 0
3825 || reg_parm_stack_space > 0)
3827 locate_and_pad_parm (mode, NULL_TREE,
3828 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3830 #else
3831 argvec[count].reg != 0,
3832 #endif
3833 reg_parm_stack_space, argvec[count].partial,
3834 NULL_TREE, &args_size, &argvec[count].locate);
3835 args_size.constant += argvec[count].locate.size.constant;
3836 gcc_assert (!argvec[count].locate.size.var);
3838 #ifdef BLOCK_REG_PADDING
3839 else
3840 /* The argument is passed entirely in registers. See at which
3841 end it should be padded. */
3842 argvec[count].locate.where_pad =
3843 BLOCK_REG_PADDING (mode, NULL_TREE,
3844 GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
3845 #endif
3847 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
3850 /* If this machine requires an external definition for library
3851 functions, write one out. */
3852 assemble_external_libcall (fun);
3854 original_args_size = args_size;
3855 args_size.constant = (((args_size.constant
3856 + stack_pointer_delta
3857 + STACK_BYTES - 1)
3858 / STACK_BYTES
3859 * STACK_BYTES)
3860 - stack_pointer_delta);
3862 args_size.constant = MAX (args_size.constant,
3863 reg_parm_stack_space);
3865 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3866 args_size.constant -= reg_parm_stack_space;
3868 if (args_size.constant > crtl->outgoing_args_size)
3869 crtl->outgoing_args_size = args_size.constant;
3871 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
3873 int pushed = args_size.constant + pending_stack_adjust;
3874 if (pushed > current_function_pushed_stack_size)
3875 current_function_pushed_stack_size = pushed;
3878 if (ACCUMULATE_OUTGOING_ARGS)
3880 /* Since the stack pointer will never be pushed, it is possible for
3881 the evaluation of a parm to clobber something we have already
3882 written to the stack. Since most function calls on RISC machines
3883 do not use the stack, this is uncommon, but must work correctly.
3885 Therefore, we save any area of the stack that was already written
3886 and that we are using. Here we set up to do this by making a new
3887 stack usage map from the old one.
3889 Another approach might be to try to reorder the argument
3890 evaluations to avoid this conflicting stack usage. */
3892 needed = args_size.constant;
3894 /* Since we will be writing into the entire argument area, the
3895 map must be allocated for its entire size, not just the part that
3896 is the responsibility of the caller. */
3897 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3898 needed += reg_parm_stack_space;
3900 #ifdef ARGS_GROW_DOWNWARD
3901 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3902 needed + 1);
3903 #else
3904 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3905 needed);
3906 #endif
3907 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
3908 stack_usage_map = stack_usage_map_buf;
3910 if (initial_highest_arg_in_use)
3911 memcpy (stack_usage_map, initial_stack_usage_map,
3912 initial_highest_arg_in_use);
3914 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3915 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3916 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
3917 needed = 0;
3919 /* We must be careful to use virtual regs before they're instantiated,
3920 and real regs afterwards. Loop optimization, for example, can create
3921 new libcalls after we've instantiated the virtual regs, and if we
3922 use virtuals anyway, they won't match the rtl patterns. */
3924 if (virtuals_instantiated)
3925 argblock = plus_constant (Pmode, stack_pointer_rtx,
3926 STACK_POINTER_OFFSET);
3927 else
3928 argblock = virtual_outgoing_args_rtx;
3930 else
3932 if (!PUSH_ARGS)
3933 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
3936 /* We push args individually in reverse order, perform stack alignment
3937 before the first push (the last arg). */
3938 if (argblock == 0)
3939 anti_adjust_stack (GEN_INT (args_size.constant
3940 - original_args_size.constant));
3942 argnum = nargs - 1;
3944 #ifdef REG_PARM_STACK_SPACE
3945 if (ACCUMULATE_OUTGOING_ARGS)
3947 /* The argument list is the property of the called routine and it
3948 may clobber it. If the fixed area has been used for previous
3949 parameters, we must save and restore it. */
3950 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3951 &low_to_save, &high_to_save);
3953 #endif
3955 /* Push the args that need to be pushed. */
3957 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
3958 are to be pushed. */
3959 for (count = 0; count < nargs; count++, argnum--)
3961 enum machine_mode mode = argvec[argnum].mode;
3962 rtx val = argvec[argnum].value;
3963 rtx reg = argvec[argnum].reg;
3964 int partial = argvec[argnum].partial;
3965 unsigned int parm_align = argvec[argnum].locate.boundary;
3966 int lower_bound = 0, upper_bound = 0, i;
3968 if (! (reg != 0 && partial == 0))
3970 rtx use;
3972 if (ACCUMULATE_OUTGOING_ARGS)
3974 /* If this is being stored into a pre-allocated, fixed-size,
3975 stack area, save any previous data at that location. */
3977 #ifdef ARGS_GROW_DOWNWARD
3978 /* stack_slot is negative, but we want to index stack_usage_map
3979 with positive values. */
3980 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
3981 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
3982 #else
3983 lower_bound = argvec[argnum].locate.slot_offset.constant;
3984 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
3985 #endif
3987 i = lower_bound;
3988 /* Don't worry about things in the fixed argument area;
3989 it has already been saved. */
3990 if (i < reg_parm_stack_space)
3991 i = reg_parm_stack_space;
3992 while (i < upper_bound && stack_usage_map[i] == 0)
3993 i++;
3995 if (i < upper_bound)
3997 /* We need to make a save area. */
3998 unsigned int size
3999 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
4000 enum machine_mode save_mode
4001 = mode_for_size (size, MODE_INT, 1);
4002 rtx adr
4003 = plus_constant (Pmode, argblock,
4004 argvec[argnum].locate.offset.constant);
4005 rtx stack_area
4006 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
4008 if (save_mode == BLKmode)
4010 argvec[argnum].save_area
4011 = assign_stack_temp (BLKmode,
4012 argvec[argnum].locate.size.constant
4015 emit_block_move (validize_mem
4016 (copy_rtx (argvec[argnum].save_area)),
4017 stack_area,
4018 GEN_INT (argvec[argnum].locate.size.constant),
4019 BLOCK_OP_CALL_PARM);
4021 else
4023 argvec[argnum].save_area = gen_reg_rtx (save_mode);
4025 emit_move_insn (argvec[argnum].save_area, stack_area);
4030 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
4031 partial, reg, 0, argblock,
4032 GEN_INT (argvec[argnum].locate.offset.constant),
4033 reg_parm_stack_space,
4034 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad));
4036 /* Now mark the segment we just used. */
4037 if (ACCUMULATE_OUTGOING_ARGS)
4038 for (i = lower_bound; i < upper_bound; i++)
4039 stack_usage_map[i] = 1;
4041 NO_DEFER_POP;
4043 /* Indicate argument access so that alias.c knows that these
4044 values are live. */
4045 if (argblock)
4046 use = plus_constant (Pmode, argblock,
4047 argvec[argnum].locate.offset.constant);
4048 else
4049 /* When arguments are pushed, trying to tell alias.c where
4050 exactly this argument is won't work, because the
4051 auto-increment causes confusion. So we merely indicate
4052 that we access something with a known mode somewhere on
4053 the stack. */
4054 use = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
4055 gen_rtx_SCRATCH (Pmode));
4056 use = gen_rtx_MEM (argvec[argnum].mode, use);
4057 use = gen_rtx_USE (VOIDmode, use);
4058 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
4062 argnum = nargs - 1;
4064 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
4066 /* Now load any reg parms into their regs. */
4068 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4069 are to be pushed. */
4070 for (count = 0; count < nargs; count++, argnum--)
4072 enum machine_mode mode = argvec[argnum].mode;
4073 rtx val = argvec[argnum].value;
4074 rtx reg = argvec[argnum].reg;
4075 int partial = argvec[argnum].partial;
4076 #ifdef BLOCK_REG_PADDING
4077 int size = 0;
4078 #endif
4080 /* Handle calls that pass values in multiple non-contiguous
4081 locations. The PA64 has examples of this for library calls. */
4082 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4083 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
4084 else if (reg != 0 && partial == 0)
4086 emit_move_insn (reg, val);
4087 #ifdef BLOCK_REG_PADDING
4088 size = GET_MODE_SIZE (argvec[argnum].mode);
4090 /* Copied from load_register_parameters. */
4092 /* Handle case where we have a value that needs shifting
4093 up to the msb. eg. a QImode value and we're padding
4094 upward on a BYTES_BIG_ENDIAN machine. */
4095 if (size < UNITS_PER_WORD
4096 && (argvec[argnum].locate.where_pad
4097 == (BYTES_BIG_ENDIAN ? upward : downward)))
4099 rtx x;
4100 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
4102 /* Assigning REG here rather than a temp makes CALL_FUSAGE
4103 report the whole reg as used. Strictly speaking, the
4104 call only uses SIZE bytes at the msb end, but it doesn't
4105 seem worth generating rtl to say that. */
4106 reg = gen_rtx_REG (word_mode, REGNO (reg));
4107 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
4108 if (x != reg)
4109 emit_move_insn (reg, x);
4111 #endif
4114 NO_DEFER_POP;
4117 /* Any regs containing parms remain in use through the call. */
4118 for (count = 0; count < nargs; count++)
4120 rtx reg = argvec[count].reg;
4121 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4122 use_group_regs (&call_fusage, reg);
4123 else if (reg != 0)
4125 int partial = argvec[count].partial;
4126 if (partial)
4128 int nregs;
4129 gcc_assert (partial % UNITS_PER_WORD == 0);
4130 nregs = partial / UNITS_PER_WORD;
4131 use_regs (&call_fusage, REGNO (reg), nregs);
4133 else
4134 use_reg (&call_fusage, reg);
4138 /* Pass the function the address in which to return a structure value. */
4139 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
4141 emit_move_insn (struct_value,
4142 force_reg (Pmode,
4143 force_operand (XEXP (mem_value, 0),
4144 NULL_RTX)));
4145 if (REG_P (struct_value))
4146 use_reg (&call_fusage, struct_value);
4149 /* Don't allow popping to be deferred, since then
4150 cse'ing of library calls could delete a call and leave the pop. */
4151 NO_DEFER_POP;
4152 valreg = (mem_value == 0 && outmode != VOIDmode
4153 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
4155 /* Stack must be properly aligned now. */
4156 gcc_assert (!(stack_pointer_delta
4157 & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)));
4159 before_call = get_last_insn ();
4161 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4162 will set inhibit_defer_pop to that value. */
4163 /* The return type is needed to decide how many bytes the function pops.
4164 Signedness plays no role in that, so for simplicity, we pretend it's
4165 always signed. We also assume that the list of arguments passed has
4166 no impact, so we pretend it is unknown. */
4168 emit_call_1 (fun, NULL,
4169 get_identifier (XSTR (orgfun, 0)),
4170 build_function_type (tfom, NULL_TREE),
4171 original_args_size.constant, args_size.constant,
4172 struct_value_size,
4173 targetm.calls.function_arg (args_so_far,
4174 VOIDmode, void_type_node, true),
4175 valreg,
4176 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
4178 if (flag_use_caller_save)
4180 rtx last, datum = orgfun;
4181 gcc_assert (GET_CODE (datum) == SYMBOL_REF);
4182 last = last_call_insn ();
4183 add_reg_note (last, REG_CALL_DECL, datum);
4186 /* Right-shift returned value if necessary. */
4187 if (!pcc_struct_value
4188 && TYPE_MODE (tfom) != BLKmode
4189 && targetm.calls.return_in_msb (tfom))
4191 shift_return_value (TYPE_MODE (tfom), false, valreg);
4192 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
4195 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
4196 that it should complain if nonvolatile values are live. For
4197 functions that cannot return, inform flow that control does not
4198 fall through. */
4199 if (flags & ECF_NORETURN)
4201 /* The barrier note must be emitted
4202 immediately after the CALL_INSN. Some ports emit more than
4203 just a CALL_INSN above, so we must search for it here. */
4204 rtx_insn *last = get_last_insn ();
4205 while (!CALL_P (last))
4207 last = PREV_INSN (last);
4208 /* There was no CALL_INSN? */
4209 gcc_assert (last != before_call);
4212 emit_barrier_after (last);
4215 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
4216 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
4217 if (flags & ECF_NOTHROW)
4219 rtx_insn *last = get_last_insn ();
4220 while (!CALL_P (last))
4222 last = PREV_INSN (last);
4223 /* There was no CALL_INSN? */
4224 gcc_assert (last != before_call);
4227 make_reg_eh_region_note_nothrow_nononlocal (last);
4230 /* Now restore inhibit_defer_pop to its actual original value. */
4231 OK_DEFER_POP;
4233 pop_temp_slots ();
4235 /* Copy the value to the right place. */
4236 if (outmode != VOIDmode && retval)
4238 if (mem_value)
4240 if (value == 0)
4241 value = mem_value;
4242 if (value != mem_value)
4243 emit_move_insn (value, mem_value);
4245 else if (GET_CODE (valreg) == PARALLEL)
4247 if (value == 0)
4248 value = gen_reg_rtx (outmode);
4249 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
4251 else
4253 /* Convert to the proper mode if a promotion has been active. */
4254 if (GET_MODE (valreg) != outmode)
4256 int unsignedp = TYPE_UNSIGNED (tfom);
4258 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
4259 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
4260 == GET_MODE (valreg));
4261 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
4264 if (value != 0)
4265 emit_move_insn (value, valreg);
4266 else
4267 value = valreg;
4271 if (ACCUMULATE_OUTGOING_ARGS)
4273 #ifdef REG_PARM_STACK_SPACE
4274 if (save_area)
4275 restore_fixed_argument_area (save_area, argblock,
4276 high_to_save, low_to_save);
4277 #endif
4279 /* If we saved any argument areas, restore them. */
4280 for (count = 0; count < nargs; count++)
4281 if (argvec[count].save_area)
4283 enum machine_mode save_mode = GET_MODE (argvec[count].save_area);
4284 rtx adr = plus_constant (Pmode, argblock,
4285 argvec[count].locate.offset.constant);
4286 rtx stack_area = gen_rtx_MEM (save_mode,
4287 memory_address (save_mode, adr));
4289 if (save_mode == BLKmode)
4290 emit_block_move (stack_area,
4291 validize_mem
4292 (copy_rtx (argvec[count].save_area)),
4293 GEN_INT (argvec[count].locate.size.constant),
4294 BLOCK_OP_CALL_PARM);
4295 else
4296 emit_move_insn (stack_area, argvec[count].save_area);
4299 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4300 stack_usage_map = initial_stack_usage_map;
4303 free (stack_usage_map_buf);
4305 return value;
4309 /* Output a library call to function FUN (a SYMBOL_REF rtx)
4310 (emitting the queue unless NO_QUEUE is nonzero),
4311 for a value of mode OUTMODE,
4312 with NARGS different arguments, passed as alternating rtx values
4313 and machine_modes to convert them to.
4315 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4316 `const' calls, LCT_PURE for `pure' calls, or other LCT_ value for
4317 other types of library calls. */
4319 void
4320 emit_library_call (rtx orgfun, enum libcall_type fn_type,
4321 enum machine_mode outmode, int nargs, ...)
4323 va_list p;
4325 va_start (p, nargs);
4326 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4327 va_end (p);
4330 /* Like emit_library_call except that an extra argument, VALUE,
4331 comes second and says where to store the result.
4332 (If VALUE is zero, this function chooses a convenient way
4333 to return the value.
4335 This function returns an rtx for where the value is to be found.
4336 If VALUE is nonzero, VALUE is returned. */
4339 emit_library_call_value (rtx orgfun, rtx value,
4340 enum libcall_type fn_type,
4341 enum machine_mode outmode, int nargs, ...)
4343 rtx result;
4344 va_list p;
4346 va_start (p, nargs);
4347 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4348 nargs, p);
4349 va_end (p);
4351 return result;
4354 /* Store a single argument for a function call
4355 into the register or memory area where it must be passed.
4356 *ARG describes the argument value and where to pass it.
4358 ARGBLOCK is the address of the stack-block for all the arguments,
4359 or 0 on a machine where arguments are pushed individually.
4361 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
4362 so must be careful about how the stack is used.
4364 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4365 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4366 that we need not worry about saving and restoring the stack.
4368 FNDECL is the declaration of the function we are calling.
4370 Return nonzero if this arg should cause sibcall failure,
4371 zero otherwise. */
4373 static int
4374 store_one_arg (struct arg_data *arg, rtx argblock, int flags,
4375 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
4377 tree pval = arg->tree_value;
4378 rtx reg = 0;
4379 int partial = 0;
4380 int used = 0;
4381 int i, lower_bound = 0, upper_bound = 0;
4382 int sibcall_failure = 0;
4384 if (TREE_CODE (pval) == ERROR_MARK)
4385 return 1;
4387 /* Push a new temporary level for any temporaries we make for
4388 this argument. */
4389 push_temp_slots ();
4391 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
4393 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4394 save any previous data at that location. */
4395 if (argblock && ! variable_size && arg->stack)
4397 #ifdef ARGS_GROW_DOWNWARD
4398 /* stack_slot is negative, but we want to index stack_usage_map
4399 with positive values. */
4400 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4401 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4402 else
4403 upper_bound = 0;
4405 lower_bound = upper_bound - arg->locate.size.constant;
4406 #else
4407 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4408 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4409 else
4410 lower_bound = 0;
4412 upper_bound = lower_bound + arg->locate.size.constant;
4413 #endif
4415 i = lower_bound;
4416 /* Don't worry about things in the fixed argument area;
4417 it has already been saved. */
4418 if (i < reg_parm_stack_space)
4419 i = reg_parm_stack_space;
4420 while (i < upper_bound && stack_usage_map[i] == 0)
4421 i++;
4423 if (i < upper_bound)
4425 /* We need to make a save area. */
4426 unsigned int size = arg->locate.size.constant * BITS_PER_UNIT;
4427 enum machine_mode save_mode = mode_for_size (size, MODE_INT, 1);
4428 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
4429 rtx stack_area = gen_rtx_MEM (save_mode, adr);
4431 if (save_mode == BLKmode)
4433 arg->save_area
4434 = assign_temp (TREE_TYPE (arg->tree_value), 1, 1);
4435 preserve_temp_slots (arg->save_area);
4436 emit_block_move (validize_mem (copy_rtx (arg->save_area)),
4437 stack_area,
4438 GEN_INT (arg->locate.size.constant),
4439 BLOCK_OP_CALL_PARM);
4441 else
4443 arg->save_area = gen_reg_rtx (save_mode);
4444 emit_move_insn (arg->save_area, stack_area);
4450 /* If this isn't going to be placed on both the stack and in registers,
4451 set up the register and number of words. */
4452 if (! arg->pass_on_stack)
4454 if (flags & ECF_SIBCALL)
4455 reg = arg->tail_call_reg;
4456 else
4457 reg = arg->reg;
4458 partial = arg->partial;
4461 /* Being passed entirely in a register. We shouldn't be called in
4462 this case. */
4463 gcc_assert (reg == 0 || partial != 0);
4465 /* If this arg needs special alignment, don't load the registers
4466 here. */
4467 if (arg->n_aligned_regs != 0)
4468 reg = 0;
4470 /* If this is being passed partially in a register, we can't evaluate
4471 it directly into its stack slot. Otherwise, we can. */
4472 if (arg->value == 0)
4474 /* stack_arg_under_construction is nonzero if a function argument is
4475 being evaluated directly into the outgoing argument list and
4476 expand_call must take special action to preserve the argument list
4477 if it is called recursively.
4479 For scalar function arguments stack_usage_map is sufficient to
4480 determine which stack slots must be saved and restored. Scalar
4481 arguments in general have pass_on_stack == 0.
4483 If this argument is initialized by a function which takes the
4484 address of the argument (a C++ constructor or a C function
4485 returning a BLKmode structure), then stack_usage_map is
4486 insufficient and expand_call must push the stack around the
4487 function call. Such arguments have pass_on_stack == 1.
4489 Note that it is always safe to set stack_arg_under_construction,
4490 but this generates suboptimal code if set when not needed. */
4492 if (arg->pass_on_stack)
4493 stack_arg_under_construction++;
4495 arg->value = expand_expr (pval,
4496 (partial
4497 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4498 ? NULL_RTX : arg->stack,
4499 VOIDmode, EXPAND_STACK_PARM);
4501 /* If we are promoting object (or for any other reason) the mode
4502 doesn't agree, convert the mode. */
4504 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4505 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4506 arg->value, arg->unsignedp);
4508 if (arg->pass_on_stack)
4509 stack_arg_under_construction--;
4512 /* Check for overlap with already clobbered argument area. */
4513 if ((flags & ECF_SIBCALL)
4514 && MEM_P (arg->value)
4515 && mem_overlaps_already_clobbered_arg_p (XEXP (arg->value, 0),
4516 arg->locate.size.constant))
4517 sibcall_failure = 1;
4519 /* Don't allow anything left on stack from computation
4520 of argument to alloca. */
4521 if (flags & ECF_MAY_BE_ALLOCA)
4522 do_pending_stack_adjust ();
4524 if (arg->value == arg->stack)
4525 /* If the value is already in the stack slot, we are done. */
4527 else if (arg->mode != BLKmode)
4529 int size;
4530 unsigned int parm_align;
4532 /* Argument is a scalar, not entirely passed in registers.
4533 (If part is passed in registers, arg->partial says how much
4534 and emit_push_insn will take care of putting it there.)
4536 Push it, and if its size is less than the
4537 amount of space allocated to it,
4538 also bump stack pointer by the additional space.
4539 Note that in C the default argument promotions
4540 will prevent such mismatches. */
4542 size = GET_MODE_SIZE (arg->mode);
4543 /* Compute how much space the push instruction will push.
4544 On many machines, pushing a byte will advance the stack
4545 pointer by a halfword. */
4546 #ifdef PUSH_ROUNDING
4547 size = PUSH_ROUNDING (size);
4548 #endif
4549 used = size;
4551 /* Compute how much space the argument should get:
4552 round up to a multiple of the alignment for arguments. */
4553 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
4554 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
4555 / (PARM_BOUNDARY / BITS_PER_UNIT))
4556 * (PARM_BOUNDARY / BITS_PER_UNIT));
4558 /* Compute the alignment of the pushed argument. */
4559 parm_align = arg->locate.boundary;
4560 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4562 int pad = used - size;
4563 if (pad)
4565 unsigned int pad_align = (pad & -pad) * BITS_PER_UNIT;
4566 parm_align = MIN (parm_align, pad_align);
4570 /* This isn't already where we want it on the stack, so put it there.
4571 This can either be done with push or copy insns. */
4572 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
4573 parm_align, partial, reg, used - size, argblock,
4574 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4575 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4577 /* Unless this is a partially-in-register argument, the argument is now
4578 in the stack. */
4579 if (partial == 0)
4580 arg->value = arg->stack;
4582 else
4584 /* BLKmode, at least partly to be pushed. */
4586 unsigned int parm_align;
4587 int excess;
4588 rtx size_rtx;
4590 /* Pushing a nonscalar.
4591 If part is passed in registers, PARTIAL says how much
4592 and emit_push_insn will take care of putting it there. */
4594 /* Round its size up to a multiple
4595 of the allocation unit for arguments. */
4597 if (arg->locate.size.var != 0)
4599 excess = 0;
4600 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
4602 else
4604 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
4605 for BLKmode is careful to avoid it. */
4606 excess = (arg->locate.size.constant
4607 - int_size_in_bytes (TREE_TYPE (pval))
4608 + partial);
4609 size_rtx = expand_expr (size_in_bytes (TREE_TYPE (pval)),
4610 NULL_RTX, TYPE_MODE (sizetype),
4611 EXPAND_NORMAL);
4614 parm_align = arg->locate.boundary;
4616 /* When an argument is padded down, the block is aligned to
4617 PARM_BOUNDARY, but the actual argument isn't. */
4618 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4620 if (arg->locate.size.var)
4621 parm_align = BITS_PER_UNIT;
4622 else if (excess)
4624 unsigned int excess_align = (excess & -excess) * BITS_PER_UNIT;
4625 parm_align = MIN (parm_align, excess_align);
4629 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
4631 /* emit_push_insn might not work properly if arg->value and
4632 argblock + arg->locate.offset areas overlap. */
4633 rtx x = arg->value;
4634 int i = 0;
4636 if (XEXP (x, 0) == crtl->args.internal_arg_pointer
4637 || (GET_CODE (XEXP (x, 0)) == PLUS
4638 && XEXP (XEXP (x, 0), 0) ==
4639 crtl->args.internal_arg_pointer
4640 && CONST_INT_P (XEXP (XEXP (x, 0), 1))))
4642 if (XEXP (x, 0) != crtl->args.internal_arg_pointer)
4643 i = INTVAL (XEXP (XEXP (x, 0), 1));
4645 /* expand_call should ensure this. */
4646 gcc_assert (!arg->locate.offset.var
4647 && arg->locate.size.var == 0
4648 && CONST_INT_P (size_rtx));
4650 if (arg->locate.offset.constant > i)
4652 if (arg->locate.offset.constant < i + INTVAL (size_rtx))
4653 sibcall_failure = 1;
4655 else if (arg->locate.offset.constant < i)
4657 /* Use arg->locate.size.constant instead of size_rtx
4658 because we only care about the part of the argument
4659 on the stack. */
4660 if (i < (arg->locate.offset.constant
4661 + arg->locate.size.constant))
4662 sibcall_failure = 1;
4664 else
4666 /* Even though they appear to be at the same location,
4667 if part of the outgoing argument is in registers,
4668 they aren't really at the same location. Check for
4669 this by making sure that the incoming size is the
4670 same as the outgoing size. */
4671 if (arg->locate.size.constant != INTVAL (size_rtx))
4672 sibcall_failure = 1;
4677 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
4678 parm_align, partial, reg, excess, argblock,
4679 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4680 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4682 /* Unless this is a partially-in-register argument, the argument is now
4683 in the stack.
4685 ??? Unlike the case above, in which we want the actual
4686 address of the data, so that we can load it directly into a
4687 register, here we want the address of the stack slot, so that
4688 it's properly aligned for word-by-word copying or something
4689 like that. It's not clear that this is always correct. */
4690 if (partial == 0)
4691 arg->value = arg->stack_slot;
4694 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
4696 tree type = TREE_TYPE (arg->tree_value);
4697 arg->parallel_value
4698 = emit_group_load_into_temps (arg->reg, arg->value, type,
4699 int_size_in_bytes (type));
4702 /* Mark all slots this store used. */
4703 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
4704 && argblock && ! variable_size && arg->stack)
4705 for (i = lower_bound; i < upper_bound; i++)
4706 stack_usage_map[i] = 1;
4708 /* Once we have pushed something, pops can't safely
4709 be deferred during the rest of the arguments. */
4710 NO_DEFER_POP;
4712 /* Free any temporary slots made in processing this argument. */
4713 pop_temp_slots ();
4715 return sibcall_failure;
4718 /* Nonzero if we do not know how to pass TYPE solely in registers. */
4720 bool
4721 must_pass_in_stack_var_size (enum machine_mode mode ATTRIBUTE_UNUSED,
4722 const_tree type)
4724 if (!type)
4725 return false;
4727 /* If the type has variable size... */
4728 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4729 return true;
4731 /* If the type is marked as addressable (it is required
4732 to be constructed into the stack)... */
4733 if (TREE_ADDRESSABLE (type))
4734 return true;
4736 return false;
4739 /* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
4740 takes trailing padding of a structure into account. */
4741 /* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
4743 bool
4744 must_pass_in_stack_var_size_or_pad (enum machine_mode mode, const_tree type)
4746 if (!type)
4747 return false;
4749 /* If the type has variable size... */
4750 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4751 return true;
4753 /* If the type is marked as addressable (it is required
4754 to be constructed into the stack)... */
4755 if (TREE_ADDRESSABLE (type))
4756 return true;
4758 /* If the padding and mode of the type is such that a copy into
4759 a register would put it into the wrong part of the register. */
4760 if (mode == BLKmode
4761 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
4762 && (FUNCTION_ARG_PADDING (mode, type)
4763 == (BYTES_BIG_ENDIAN ? upward : downward)))
4764 return true;
4766 return false;