Fix bootstrap/PR63632
[official-gcc.git] / gcc / calls.c
blob219eb921a64a843e674b11d1bbe16903341e20c8
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 "hashtab.h"
41 #include "hash-set.h"
42 #include "vec.h"
43 #include "machmode.h"
44 #include "hard-reg-set.h"
45 #include "input.h"
46 #include "function.h"
47 #include "regs.h"
48 #include "diagnostic-core.h"
49 #include "output.h"
50 #include "tm_p.h"
51 #include "timevar.h"
52 #include "sbitmap.h"
53 #include "langhooks.h"
54 #include "target.h"
55 #include "cgraph.h"
56 #include "except.h"
57 #include "dbgcnt.h"
58 #include "rtl-iter.h"
60 /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
61 #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
63 /* Data structure and subroutines used within expand_call. */
65 struct arg_data
67 /* Tree node for this argument. */
68 tree tree_value;
69 /* Mode for value; TYPE_MODE unless promoted. */
70 enum machine_mode mode;
71 /* Current RTL value for argument, or 0 if it isn't precomputed. */
72 rtx value;
73 /* Initially-compute RTL value for argument; only for const functions. */
74 rtx initial_value;
75 /* Register to pass this argument in, 0 if passed on stack, or an
76 PARALLEL if the arg is to be copied into multiple non-contiguous
77 registers. */
78 rtx reg;
79 /* Register to pass this argument in when generating tail call sequence.
80 This is not the same register as for normal calls on machines with
81 register windows. */
82 rtx tail_call_reg;
83 /* If REG is a PARALLEL, this is a copy of VALUE pulled into the correct
84 form for emit_group_move. */
85 rtx parallel_value;
86 /* If REG was promoted from the actual mode of the argument expression,
87 indicates whether the promotion is sign- or zero-extended. */
88 int unsignedp;
89 /* Number of bytes to put in registers. 0 means put the whole arg
90 in registers. Also 0 if not passed in registers. */
91 int partial;
92 /* Nonzero if argument must be passed on stack.
93 Note that some arguments may be passed on the stack
94 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
95 pass_on_stack identifies arguments that *cannot* go in registers. */
96 int pass_on_stack;
97 /* Some fields packaged up for locate_and_pad_parm. */
98 struct locate_and_pad_arg_data locate;
99 /* Location on the stack at which parameter should be stored. The store
100 has already been done if STACK == VALUE. */
101 rtx stack;
102 /* Location on the stack of the start of this argument slot. This can
103 differ from STACK if this arg pads downward. This location is known
104 to be aligned to TARGET_FUNCTION_ARG_BOUNDARY. */
105 rtx stack_slot;
106 /* Place that this stack area has been saved, if needed. */
107 rtx save_area;
108 /* If an argument's alignment does not permit direct copying into registers,
109 copy in smaller-sized pieces into pseudos. These are stored in a
110 block pointed to by this field. The next field says how many
111 word-sized pseudos we made. */
112 rtx *aligned_regs;
113 int n_aligned_regs;
116 /* A vector of one char per byte of stack space. A byte if nonzero if
117 the corresponding stack location has been used.
118 This vector is used to prevent a function call within an argument from
119 clobbering any stack already set up. */
120 static char *stack_usage_map;
122 /* Size of STACK_USAGE_MAP. */
123 static int highest_outgoing_arg_in_use;
125 /* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
126 stack location's tail call argument has been already stored into the stack.
127 This bitmap is used to prevent sibling call optimization if function tries
128 to use parent's incoming argument slots when they have been already
129 overwritten with tail call arguments. */
130 static sbitmap stored_args_map;
132 /* stack_arg_under_construction is nonzero when an argument may be
133 initialized with a constructor call (including a C function that
134 returns a BLKmode struct) and expand_call must take special action
135 to make sure the object being constructed does not overlap the
136 argument list for the constructor call. */
137 static int stack_arg_under_construction;
139 static void emit_call_1 (rtx, tree, tree, tree, HOST_WIDE_INT, HOST_WIDE_INT,
140 HOST_WIDE_INT, rtx, rtx, int, rtx, int,
141 cumulative_args_t);
142 static void precompute_register_parameters (int, struct arg_data *, int *);
143 static int store_one_arg (struct arg_data *, rtx, int, int, int);
144 static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
145 static int finalize_must_preallocate (int, int, struct arg_data *,
146 struct args_size *);
147 static void precompute_arguments (int, struct arg_data *);
148 static int compute_argument_block_size (int, struct args_size *, tree, tree, int);
149 static void initialize_argument_information (int, struct arg_data *,
150 struct args_size *, int,
151 tree, tree,
152 tree, tree, cumulative_args_t, int,
153 rtx *, int *, int *, int *,
154 bool *, bool);
155 static void compute_argument_addresses (struct arg_data *, rtx, int);
156 static rtx rtx_for_function_call (tree, tree);
157 static void load_register_parameters (struct arg_data *, int, rtx *, int,
158 int, int *);
159 static rtx emit_library_call_value_1 (int, rtx, rtx, enum libcall_type,
160 enum machine_mode, int, va_list);
161 static int special_function_p (const_tree, int);
162 static int check_sibcall_argument_overlap_1 (rtx);
163 static int check_sibcall_argument_overlap (rtx_insn *, struct arg_data *, int);
165 static int combine_pending_stack_adjustment_and_call (int, struct args_size *,
166 unsigned int);
167 static tree split_complex_types (tree);
169 #ifdef REG_PARM_STACK_SPACE
170 static rtx save_fixed_argument_area (int, rtx, int *, int *);
171 static void restore_fixed_argument_area (rtx, rtx, int, int);
172 #endif
174 /* Force FUNEXP into a form suitable for the address of a CALL,
175 and return that as an rtx. Also load the static chain register
176 if FNDECL is a nested function.
178 CALL_FUSAGE points to a variable holding the prospective
179 CALL_INSN_FUNCTION_USAGE information. */
182 prepare_call_address (tree fndecl, rtx funexp, rtx static_chain_value,
183 rtx *call_fusage, int reg_parm_seen, int sibcallp)
185 /* Make a valid memory address and copy constants through pseudo-regs,
186 but not for a constant address if -fno-function-cse. */
187 if (GET_CODE (funexp) != SYMBOL_REF)
188 /* If we are using registers for parameters, force the
189 function address into a register now. */
190 funexp = ((reg_parm_seen
191 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
192 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
193 : memory_address (FUNCTION_MODE, funexp));
194 else if (! sibcallp)
196 #ifndef NO_FUNCTION_CSE
197 if (optimize && ! flag_no_function_cse)
198 funexp = force_reg (Pmode, funexp);
199 #endif
202 if (static_chain_value != 0)
204 rtx chain;
206 gcc_assert (fndecl);
207 chain = targetm.calls.static_chain (fndecl, false);
208 static_chain_value = convert_memory_address (Pmode, static_chain_value);
210 emit_move_insn (chain, static_chain_value);
211 if (REG_P (chain))
212 use_reg (call_fusage, chain);
215 return funexp;
218 /* Generate instructions to call function FUNEXP,
219 and optionally pop the results.
220 The CALL_INSN is the first insn generated.
222 FNDECL is the declaration node of the function. This is given to the
223 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
224 its own args.
226 FUNTYPE is the data type of the function. This is given to the hook
227 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
228 own args. We used to allow an identifier for library functions, but
229 that doesn't work when the return type is an aggregate type and the
230 calling convention says that the pointer to this aggregate is to be
231 popped by the callee.
233 STACK_SIZE is the number of bytes of arguments on the stack,
234 ROUNDED_STACK_SIZE is that number rounded up to
235 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
236 both to put into the call insn and to generate explicit popping
237 code if necessary.
239 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
240 It is zero if this call doesn't want a structure value.
242 NEXT_ARG_REG is the rtx that results from executing
243 targetm.calls.function_arg (&args_so_far, VOIDmode, void_type_node, true)
244 just after all the args have had their registers assigned.
245 This could be whatever you like, but normally it is the first
246 arg-register beyond those used for args in this call,
247 or 0 if all the arg-registers are used in this call.
248 It is passed on to `gen_call' so you can put this info in the call insn.
250 VALREG is a hard register in which a value is returned,
251 or 0 if the call does not return a value.
253 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
254 the args to this call were processed.
255 We restore `inhibit_defer_pop' to that value.
257 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
258 denote registers used by the called function. */
260 static void
261 emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
262 tree funtype ATTRIBUTE_UNUSED,
263 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED,
264 HOST_WIDE_INT rounded_stack_size,
265 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED,
266 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
267 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
268 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
270 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
271 rtx_insn *call_insn;
272 rtx call, funmem;
273 int already_popped = 0;
274 HOST_WIDE_INT n_popped
275 = targetm.calls.return_pops_args (fndecl, funtype, stack_size);
277 #ifdef CALL_POPS_ARGS
278 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
279 #endif
281 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
282 and we don't want to load it into a register as an optimization,
283 because prepare_call_address already did it if it should be done. */
284 if (GET_CODE (funexp) != SYMBOL_REF)
285 funexp = memory_address (FUNCTION_MODE, funexp);
287 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
288 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
290 tree t = fndecl;
292 /* Although a built-in FUNCTION_DECL and its non-__builtin
293 counterpart compare equal and get a shared mem_attrs, they
294 produce different dump output in compare-debug compilations,
295 if an entry gets garbage collected in one compilation, then
296 adds a different (but equivalent) entry, while the other
297 doesn't run the garbage collector at the same spot and then
298 shares the mem_attr with the equivalent entry. */
299 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
301 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
302 if (t2)
303 t = t2;
306 set_mem_expr (funmem, t);
308 else if (fntree)
309 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
311 #if defined (HAVE_sibcall_pop) && defined (HAVE_sibcall_value_pop)
312 if ((ecf_flags & ECF_SIBCALL)
313 && HAVE_sibcall_pop && HAVE_sibcall_value_pop
314 && (n_popped > 0 || stack_size == 0))
316 rtx n_pop = GEN_INT (n_popped);
317 rtx pat;
319 /* If this subroutine pops its own args, record that in the call insn
320 if possible, for the sake of frame pointer elimination. */
322 if (valreg)
323 pat = GEN_SIBCALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
324 next_arg_reg, n_pop);
325 else
326 pat = GEN_SIBCALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
327 n_pop);
329 emit_call_insn (pat);
330 already_popped = 1;
332 else
333 #endif
335 #if defined (HAVE_call_pop) && defined (HAVE_call_value_pop)
336 /* If the target has "call" or "call_value" insns, then prefer them
337 if no arguments are actually popped. If the target does not have
338 "call" or "call_value" insns, then we must use the popping versions
339 even if the call has no arguments to pop. */
340 #if defined (HAVE_call) && defined (HAVE_call_value)
341 if (HAVE_call && HAVE_call_value && HAVE_call_pop && HAVE_call_value_pop
342 && n_popped > 0)
343 #else
344 if (HAVE_call_pop && HAVE_call_value_pop)
345 #endif
347 rtx n_pop = GEN_INT (n_popped);
348 rtx pat;
350 /* If this subroutine pops its own args, record that in the call insn
351 if possible, for the sake of frame pointer elimination. */
353 if (valreg)
354 pat = GEN_CALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
355 next_arg_reg, n_pop);
356 else
357 pat = GEN_CALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
358 n_pop);
360 emit_call_insn (pat);
361 already_popped = 1;
363 else
364 #endif
366 #if defined (HAVE_sibcall) && defined (HAVE_sibcall_value)
367 if ((ecf_flags & ECF_SIBCALL)
368 && HAVE_sibcall && HAVE_sibcall_value)
370 if (valreg)
371 emit_call_insn (GEN_SIBCALL_VALUE (valreg, funmem,
372 rounded_stack_size_rtx,
373 next_arg_reg, NULL_RTX));
374 else
375 emit_call_insn (GEN_SIBCALL (funmem, rounded_stack_size_rtx,
376 next_arg_reg,
377 GEN_INT (struct_value_size)));
379 else
380 #endif
382 #if defined (HAVE_call) && defined (HAVE_call_value)
383 if (HAVE_call && HAVE_call_value)
385 if (valreg)
386 emit_call_insn (GEN_CALL_VALUE (valreg, funmem, rounded_stack_size_rtx,
387 next_arg_reg, NULL_RTX));
388 else
389 emit_call_insn (GEN_CALL (funmem, rounded_stack_size_rtx, next_arg_reg,
390 GEN_INT (struct_value_size)));
392 else
393 #endif
394 gcc_unreachable ();
396 /* Find the call we just emitted. */
397 call_insn = last_call_insn ();
399 /* Some target create a fresh MEM instead of reusing the one provided
400 above. Set its MEM_EXPR. */
401 call = get_call_rtx_from (call_insn);
402 if (call
403 && MEM_EXPR (XEXP (call, 0)) == NULL_TREE
404 && MEM_EXPR (funmem) != NULL_TREE)
405 set_mem_expr (XEXP (call, 0), MEM_EXPR (funmem));
407 /* Put the register usage information there. */
408 add_function_usage_to (call_insn, call_fusage);
410 /* If this is a const call, then set the insn's unchanging bit. */
411 if (ecf_flags & ECF_CONST)
412 RTL_CONST_CALL_P (call_insn) = 1;
414 /* If this is a pure call, then set the insn's unchanging bit. */
415 if (ecf_flags & ECF_PURE)
416 RTL_PURE_CALL_P (call_insn) = 1;
418 /* If this is a const call, then set the insn's unchanging bit. */
419 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
420 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
422 /* Create a nothrow REG_EH_REGION note, if needed. */
423 make_reg_eh_region_note (call_insn, ecf_flags, 0);
425 if (ecf_flags & ECF_NORETURN)
426 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
428 if (ecf_flags & ECF_RETURNS_TWICE)
430 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
431 cfun->calls_setjmp = 1;
434 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
436 /* Restore this now, so that we do defer pops for this call's args
437 if the context of the call as a whole permits. */
438 inhibit_defer_pop = old_inhibit_defer_pop;
440 if (n_popped > 0)
442 if (!already_popped)
443 CALL_INSN_FUNCTION_USAGE (call_insn)
444 = gen_rtx_EXPR_LIST (VOIDmode,
445 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
446 CALL_INSN_FUNCTION_USAGE (call_insn));
447 rounded_stack_size -= n_popped;
448 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
449 stack_pointer_delta -= n_popped;
451 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
453 /* If popup is needed, stack realign must use DRAP */
454 if (SUPPORTS_STACK_ALIGNMENT)
455 crtl->need_drap = true;
457 /* For noreturn calls when not accumulating outgoing args force
458 REG_ARGS_SIZE note to prevent crossjumping of calls with different
459 args sizes. */
460 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
461 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
463 if (!ACCUMULATE_OUTGOING_ARGS)
465 /* If returning from the subroutine does not automatically pop the args,
466 we need an instruction to pop them sooner or later.
467 Perhaps do it now; perhaps just record how much space to pop later.
469 If returning from the subroutine does pop the args, indicate that the
470 stack pointer will be changed. */
472 if (rounded_stack_size != 0)
474 if (ecf_flags & ECF_NORETURN)
475 /* Just pretend we did the pop. */
476 stack_pointer_delta -= rounded_stack_size;
477 else if (flag_defer_pop && inhibit_defer_pop == 0
478 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
479 pending_stack_adjust += rounded_stack_size;
480 else
481 adjust_stack (rounded_stack_size_rtx);
484 /* When we accumulate outgoing args, we must avoid any stack manipulations.
485 Restore the stack pointer to its original value now. Usually
486 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
487 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
488 popping variants of functions exist as well.
490 ??? We may optimize similar to defer_pop above, but it is
491 probably not worthwhile.
493 ??? It will be worthwhile to enable combine_stack_adjustments even for
494 such machines. */
495 else if (n_popped)
496 anti_adjust_stack (GEN_INT (n_popped));
499 /* Determine if the function identified by NAME and FNDECL is one with
500 special properties we wish to know about.
502 For example, if the function might return more than one time (setjmp), then
503 set RETURNS_TWICE to a nonzero value.
505 Similarly set NORETURN if the function is in the longjmp family.
507 Set MAY_BE_ALLOCA for any memory allocation function that might allocate
508 space from the stack such as alloca. */
510 static int
511 special_function_p (const_tree fndecl, int flags)
513 if (fndecl && DECL_NAME (fndecl)
514 && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) <= 17
515 /* Exclude functions not at the file scope, or not `extern',
516 since they are not the magic functions we would otherwise
517 think they are.
518 FIXME: this should be handled with attributes, not with this
519 hacky imitation of DECL_ASSEMBLER_NAME. It's (also) wrong
520 because you can declare fork() inside a function if you
521 wish. */
522 && (DECL_CONTEXT (fndecl) == NULL_TREE
523 || TREE_CODE (DECL_CONTEXT (fndecl)) == TRANSLATION_UNIT_DECL)
524 && TREE_PUBLIC (fndecl))
526 const char *name = IDENTIFIER_POINTER (DECL_NAME (fndecl));
527 const char *tname = name;
529 /* We assume that alloca will always be called by name. It
530 makes no sense to pass it as a pointer-to-function to
531 anything that does not understand its behavior. */
532 if (((IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 6
533 && name[0] == 'a'
534 && ! strcmp (name, "alloca"))
535 || (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 16
536 && name[0] == '_'
537 && ! strcmp (name, "__builtin_alloca"))))
538 flags |= ECF_MAY_BE_ALLOCA;
540 /* Disregard prefix _, __, __x or __builtin_. */
541 if (name[0] == '_')
543 if (name[1] == '_'
544 && name[2] == 'b'
545 && !strncmp (name + 3, "uiltin_", 7))
546 tname += 10;
547 else if (name[1] == '_' && name[2] == 'x')
548 tname += 3;
549 else if (name[1] == '_')
550 tname += 2;
551 else
552 tname += 1;
555 if (tname[0] == 's')
557 if ((tname[1] == 'e'
558 && (! strcmp (tname, "setjmp")
559 || ! strcmp (tname, "setjmp_syscall")))
560 || (tname[1] == 'i'
561 && ! strcmp (tname, "sigsetjmp"))
562 || (tname[1] == 'a'
563 && ! strcmp (tname, "savectx")))
564 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
566 if (tname[1] == 'i'
567 && ! strcmp (tname, "siglongjmp"))
568 flags |= ECF_NORETURN;
570 else if ((tname[0] == 'q' && tname[1] == 's'
571 && ! strcmp (tname, "qsetjmp"))
572 || (tname[0] == 'v' && tname[1] == 'f'
573 && ! strcmp (tname, "vfork"))
574 || (tname[0] == 'g' && tname[1] == 'e'
575 && !strcmp (tname, "getcontext")))
576 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
578 else if (tname[0] == 'l' && tname[1] == 'o'
579 && ! strcmp (tname, "longjmp"))
580 flags |= ECF_NORETURN;
583 return flags;
586 /* Similar to special_function_p; return a set of ERF_ flags for the
587 function FNDECL. */
588 static int
589 decl_return_flags (tree fndecl)
591 tree attr;
592 tree type = TREE_TYPE (fndecl);
593 if (!type)
594 return 0;
596 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
597 if (!attr)
598 return 0;
600 attr = TREE_VALUE (TREE_VALUE (attr));
601 if (!attr || TREE_STRING_LENGTH (attr) < 1)
602 return 0;
604 switch (TREE_STRING_POINTER (attr)[0])
606 case '1':
607 case '2':
608 case '3':
609 case '4':
610 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
612 case 'm':
613 return ERF_NOALIAS;
615 case '.':
616 default:
617 return 0;
621 /* Return nonzero when FNDECL represents a call to setjmp. */
624 setjmp_call_p (const_tree fndecl)
626 if (DECL_IS_RETURNS_TWICE (fndecl))
627 return ECF_RETURNS_TWICE;
628 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
632 /* Return true if STMT is an alloca call. */
634 bool
635 gimple_alloca_call_p (const_gimple stmt)
637 tree fndecl;
639 if (!is_gimple_call (stmt))
640 return false;
642 fndecl = gimple_call_fndecl (stmt);
643 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
644 return true;
646 return false;
649 /* Return true when exp contains alloca call. */
651 bool
652 alloca_call_p (const_tree exp)
654 tree fndecl;
655 if (TREE_CODE (exp) == CALL_EXPR
656 && (fndecl = get_callee_fndecl (exp))
657 && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
658 return true;
659 return false;
662 /* Return TRUE if FNDECL is either a TM builtin or a TM cloned
663 function. Return FALSE otherwise. */
665 static bool
666 is_tm_builtin (const_tree fndecl)
668 if (fndecl == NULL)
669 return false;
671 if (decl_is_tm_clone (fndecl))
672 return true;
674 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
676 switch (DECL_FUNCTION_CODE (fndecl))
678 case BUILT_IN_TM_COMMIT:
679 case BUILT_IN_TM_COMMIT_EH:
680 case BUILT_IN_TM_ABORT:
681 case BUILT_IN_TM_IRREVOCABLE:
682 case BUILT_IN_TM_GETTMCLONE_IRR:
683 case BUILT_IN_TM_MEMCPY:
684 case BUILT_IN_TM_MEMMOVE:
685 case BUILT_IN_TM_MEMSET:
686 CASE_BUILT_IN_TM_STORE (1):
687 CASE_BUILT_IN_TM_STORE (2):
688 CASE_BUILT_IN_TM_STORE (4):
689 CASE_BUILT_IN_TM_STORE (8):
690 CASE_BUILT_IN_TM_STORE (FLOAT):
691 CASE_BUILT_IN_TM_STORE (DOUBLE):
692 CASE_BUILT_IN_TM_STORE (LDOUBLE):
693 CASE_BUILT_IN_TM_STORE (M64):
694 CASE_BUILT_IN_TM_STORE (M128):
695 CASE_BUILT_IN_TM_STORE (M256):
696 CASE_BUILT_IN_TM_LOAD (1):
697 CASE_BUILT_IN_TM_LOAD (2):
698 CASE_BUILT_IN_TM_LOAD (4):
699 CASE_BUILT_IN_TM_LOAD (8):
700 CASE_BUILT_IN_TM_LOAD (FLOAT):
701 CASE_BUILT_IN_TM_LOAD (DOUBLE):
702 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
703 CASE_BUILT_IN_TM_LOAD (M64):
704 CASE_BUILT_IN_TM_LOAD (M128):
705 CASE_BUILT_IN_TM_LOAD (M256):
706 case BUILT_IN_TM_LOG:
707 case BUILT_IN_TM_LOG_1:
708 case BUILT_IN_TM_LOG_2:
709 case BUILT_IN_TM_LOG_4:
710 case BUILT_IN_TM_LOG_8:
711 case BUILT_IN_TM_LOG_FLOAT:
712 case BUILT_IN_TM_LOG_DOUBLE:
713 case BUILT_IN_TM_LOG_LDOUBLE:
714 case BUILT_IN_TM_LOG_M64:
715 case BUILT_IN_TM_LOG_M128:
716 case BUILT_IN_TM_LOG_M256:
717 return true;
718 default:
719 break;
722 return false;
725 /* Detect flags (function attributes) from the function decl or type node. */
728 flags_from_decl_or_type (const_tree exp)
730 int flags = 0;
732 if (DECL_P (exp))
734 /* The function exp may have the `malloc' attribute. */
735 if (DECL_IS_MALLOC (exp))
736 flags |= ECF_MALLOC;
738 /* The function exp may have the `returns_twice' attribute. */
739 if (DECL_IS_RETURNS_TWICE (exp))
740 flags |= ECF_RETURNS_TWICE;
742 /* Process the pure and const attributes. */
743 if (TREE_READONLY (exp))
744 flags |= ECF_CONST;
745 if (DECL_PURE_P (exp))
746 flags |= ECF_PURE;
747 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
748 flags |= ECF_LOOPING_CONST_OR_PURE;
750 if (DECL_IS_NOVOPS (exp))
751 flags |= ECF_NOVOPS;
752 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
753 flags |= ECF_LEAF;
755 if (TREE_NOTHROW (exp))
756 flags |= ECF_NOTHROW;
758 if (flag_tm)
760 if (is_tm_builtin (exp))
761 flags |= ECF_TM_BUILTIN;
762 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
763 || lookup_attribute ("transaction_pure",
764 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
765 flags |= ECF_TM_PURE;
768 flags = special_function_p (exp, flags);
770 else if (TYPE_P (exp))
772 if (TYPE_READONLY (exp))
773 flags |= ECF_CONST;
775 if (flag_tm
776 && ((flags & ECF_CONST) != 0
777 || lookup_attribute ("transaction_pure", TYPE_ATTRIBUTES (exp))))
778 flags |= ECF_TM_PURE;
780 else
781 gcc_unreachable ();
783 if (TREE_THIS_VOLATILE (exp))
785 flags |= ECF_NORETURN;
786 if (flags & (ECF_CONST|ECF_PURE))
787 flags |= ECF_LOOPING_CONST_OR_PURE;
790 return flags;
793 /* Detect flags from a CALL_EXPR. */
796 call_expr_flags (const_tree t)
798 int flags;
799 tree decl = get_callee_fndecl (t);
801 if (decl)
802 flags = flags_from_decl_or_type (decl);
803 else
805 t = TREE_TYPE (CALL_EXPR_FN (t));
806 if (t && TREE_CODE (t) == POINTER_TYPE)
807 flags = flags_from_decl_or_type (TREE_TYPE (t));
808 else
809 flags = 0;
812 return flags;
815 /* Precompute all register parameters as described by ARGS, storing values
816 into fields within the ARGS array.
818 NUM_ACTUALS indicates the total number elements in the ARGS array.
820 Set REG_PARM_SEEN if we encounter a register parameter. */
822 static void
823 precompute_register_parameters (int num_actuals, struct arg_data *args,
824 int *reg_parm_seen)
826 int i;
828 *reg_parm_seen = 0;
830 for (i = 0; i < num_actuals; i++)
831 if (args[i].reg != 0 && ! args[i].pass_on_stack)
833 *reg_parm_seen = 1;
835 if (args[i].value == 0)
837 push_temp_slots ();
838 args[i].value = expand_normal (args[i].tree_value);
839 preserve_temp_slots (args[i].value);
840 pop_temp_slots ();
843 /* If we are to promote the function arg to a wider mode,
844 do it now. */
846 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
847 args[i].value
848 = convert_modes (args[i].mode,
849 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
850 args[i].value, args[i].unsignedp);
852 /* If the value is a non-legitimate constant, force it into a
853 pseudo now. TLS symbols sometimes need a call to resolve. */
854 if (CONSTANT_P (args[i].value)
855 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
856 args[i].value = force_reg (args[i].mode, args[i].value);
858 /* If we're going to have to load the value by parts, pull the
859 parts into pseudos. The part extraction process can involve
860 non-trivial computation. */
861 if (GET_CODE (args[i].reg) == PARALLEL)
863 tree type = TREE_TYPE (args[i].tree_value);
864 args[i].parallel_value
865 = emit_group_load_into_temps (args[i].reg, args[i].value,
866 type, int_size_in_bytes (type));
869 /* If the value is expensive, and we are inside an appropriately
870 short loop, put the value into a pseudo and then put the pseudo
871 into the hard reg.
873 For small register classes, also do this if this call uses
874 register parameters. This is to avoid reload conflicts while
875 loading the parameters registers. */
877 else if ((! (REG_P (args[i].value)
878 || (GET_CODE (args[i].value) == SUBREG
879 && REG_P (SUBREG_REG (args[i].value)))))
880 && args[i].mode != BLKmode
881 && set_src_cost (args[i].value, optimize_insn_for_speed_p ())
882 > COSTS_N_INSNS (1)
883 && ((*reg_parm_seen
884 && targetm.small_register_classes_for_mode_p (args[i].mode))
885 || optimize))
886 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
890 #ifdef REG_PARM_STACK_SPACE
892 /* The argument list is the property of the called routine and it
893 may clobber it. If the fixed area has been used for previous
894 parameters, we must save and restore it. */
896 static rtx
897 save_fixed_argument_area (int reg_parm_stack_space, rtx argblock, int *low_to_save, int *high_to_save)
899 int low;
900 int high;
902 /* Compute the boundary of the area that needs to be saved, if any. */
903 high = reg_parm_stack_space;
904 #ifdef ARGS_GROW_DOWNWARD
905 high += 1;
906 #endif
907 if (high > highest_outgoing_arg_in_use)
908 high = highest_outgoing_arg_in_use;
910 for (low = 0; low < high; low++)
911 if (stack_usage_map[low] != 0)
913 int num_to_save;
914 enum machine_mode save_mode;
915 int delta;
916 rtx addr;
917 rtx stack_area;
918 rtx save_area;
920 while (stack_usage_map[--high] == 0)
923 *low_to_save = low;
924 *high_to_save = high;
926 num_to_save = high - low + 1;
927 save_mode = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
929 /* If we don't have the required alignment, must do this
930 in BLKmode. */
931 if ((low & (MIN (GET_MODE_SIZE (save_mode),
932 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
933 save_mode = BLKmode;
935 #ifdef ARGS_GROW_DOWNWARD
936 delta = -high;
937 #else
938 delta = low;
939 #endif
940 addr = plus_constant (Pmode, argblock, delta);
941 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
943 set_mem_align (stack_area, PARM_BOUNDARY);
944 if (save_mode == BLKmode)
946 save_area = assign_stack_temp (BLKmode, num_to_save);
947 emit_block_move (validize_mem (save_area), stack_area,
948 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
950 else
952 save_area = gen_reg_rtx (save_mode);
953 emit_move_insn (save_area, stack_area);
956 return save_area;
959 return NULL_RTX;
962 static void
963 restore_fixed_argument_area (rtx save_area, rtx argblock, int high_to_save, int low_to_save)
965 enum machine_mode save_mode = GET_MODE (save_area);
966 int delta;
967 rtx addr, stack_area;
969 #ifdef ARGS_GROW_DOWNWARD
970 delta = -high_to_save;
971 #else
972 delta = low_to_save;
973 #endif
974 addr = plus_constant (Pmode, argblock, delta);
975 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
976 set_mem_align (stack_area, PARM_BOUNDARY);
978 if (save_mode != BLKmode)
979 emit_move_insn (stack_area, save_area);
980 else
981 emit_block_move (stack_area, validize_mem (save_area),
982 GEN_INT (high_to_save - low_to_save + 1),
983 BLOCK_OP_CALL_PARM);
985 #endif /* REG_PARM_STACK_SPACE */
987 /* If any elements in ARGS refer to parameters that are to be passed in
988 registers, but not in memory, and whose alignment does not permit a
989 direct copy into registers. Copy the values into a group of pseudos
990 which we will later copy into the appropriate hard registers.
992 Pseudos for each unaligned argument will be stored into the array
993 args[argnum].aligned_regs. The caller is responsible for deallocating
994 the aligned_regs array if it is nonzero. */
996 static void
997 store_unaligned_arguments_into_pseudos (struct arg_data *args, int num_actuals)
999 int i, j;
1001 for (i = 0; i < num_actuals; i++)
1002 if (args[i].reg != 0 && ! args[i].pass_on_stack
1003 && GET_CODE (args[i].reg) != PARALLEL
1004 && args[i].mode == BLKmode
1005 && MEM_P (args[i].value)
1006 && (MEM_ALIGN (args[i].value)
1007 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
1009 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1010 int endian_correction = 0;
1012 if (args[i].partial)
1014 gcc_assert (args[i].partial % UNITS_PER_WORD == 0);
1015 args[i].n_aligned_regs = args[i].partial / UNITS_PER_WORD;
1017 else
1019 args[i].n_aligned_regs
1020 = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1023 args[i].aligned_regs = XNEWVEC (rtx, args[i].n_aligned_regs);
1025 /* Structures smaller than a word are normally aligned to the
1026 least significant byte. On a BYTES_BIG_ENDIAN machine,
1027 this means we must skip the empty high order bytes when
1028 calculating the bit offset. */
1029 if (bytes < UNITS_PER_WORD
1030 #ifdef BLOCK_REG_PADDING
1031 && (BLOCK_REG_PADDING (args[i].mode,
1032 TREE_TYPE (args[i].tree_value), 1)
1033 == downward)
1034 #else
1035 && BYTES_BIG_ENDIAN
1036 #endif
1038 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
1040 for (j = 0; j < args[i].n_aligned_regs; j++)
1042 rtx reg = gen_reg_rtx (word_mode);
1043 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1044 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
1046 args[i].aligned_regs[j] = reg;
1047 word = extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
1048 word_mode, word_mode);
1050 /* There is no need to restrict this code to loading items
1051 in TYPE_ALIGN sized hunks. The bitfield instructions can
1052 load up entire word sized registers efficiently.
1054 ??? This may not be needed anymore.
1055 We use to emit a clobber here but that doesn't let later
1056 passes optimize the instructions we emit. By storing 0 into
1057 the register later passes know the first AND to zero out the
1058 bitfield being set in the register is unnecessary. The store
1059 of 0 will be deleted as will at least the first AND. */
1061 emit_move_insn (reg, const0_rtx);
1063 bytes -= bitsize / BITS_PER_UNIT;
1064 store_bit_field (reg, bitsize, endian_correction, 0, 0,
1065 word_mode, word);
1070 /* Fill in ARGS_SIZE and ARGS array based on the parameters found in
1071 CALL_EXPR EXP.
1073 NUM_ACTUALS is the total number of parameters.
1075 N_NAMED_ARGS is the total number of named arguments.
1077 STRUCT_VALUE_ADDR_VALUE is the implicit argument for a struct return
1078 value, or null.
1080 FNDECL is the tree code for the target of this call (if known)
1082 ARGS_SO_FAR holds state needed by the target to know where to place
1083 the next argument.
1085 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1086 for arguments which are passed in registers.
1088 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1089 and may be modified by this routine.
1091 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
1092 flags which may may be modified by this routine.
1094 MAY_TAILCALL is cleared if we encounter an invisible pass-by-reference
1095 that requires allocation of stack space.
1097 CALL_FROM_THUNK_P is true if this call is the jump from a thunk to
1098 the thunked-to function. */
1100 static void
1101 initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
1102 struct arg_data *args,
1103 struct args_size *args_size,
1104 int n_named_args ATTRIBUTE_UNUSED,
1105 tree exp, tree struct_value_addr_value,
1106 tree fndecl, tree fntype,
1107 cumulative_args_t args_so_far,
1108 int reg_parm_stack_space,
1109 rtx *old_stack_level, int *old_pending_adj,
1110 int *must_preallocate, int *ecf_flags,
1111 bool *may_tailcall, bool call_from_thunk_p)
1113 CUMULATIVE_ARGS *args_so_far_pnt = get_cumulative_args (args_so_far);
1114 location_t loc = EXPR_LOCATION (exp);
1116 /* Count arg position in order args appear. */
1117 int argpos;
1119 int i;
1121 args_size->constant = 0;
1122 args_size->var = 0;
1124 /* In this loop, we consider args in the order they are written.
1125 We fill up ARGS from the back. */
1127 i = num_actuals - 1;
1129 int j = i;
1130 call_expr_arg_iterator iter;
1131 tree arg;
1133 if (struct_value_addr_value)
1135 args[j].tree_value = struct_value_addr_value;
1136 j--;
1138 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
1140 tree argtype = TREE_TYPE (arg);
1141 if (targetm.calls.split_complex_arg
1142 && argtype
1143 && TREE_CODE (argtype) == COMPLEX_TYPE
1144 && targetm.calls.split_complex_arg (argtype))
1146 tree subtype = TREE_TYPE (argtype);
1147 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
1148 j--;
1149 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
1151 else
1152 args[j].tree_value = arg;
1153 j--;
1157 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1158 for (argpos = 0; argpos < num_actuals; i--, argpos++)
1160 tree type = TREE_TYPE (args[i].tree_value);
1161 int unsignedp;
1162 enum machine_mode mode;
1164 /* Replace erroneous argument with constant zero. */
1165 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
1166 args[i].tree_value = integer_zero_node, type = integer_type_node;
1168 /* If TYPE is a transparent union or record, pass things the way
1169 we would pass the first field of the union or record. We have
1170 already verified that the modes are the same. */
1171 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
1172 && TYPE_TRANSPARENT_AGGR (type))
1173 type = TREE_TYPE (first_field (type));
1175 /* Decide where to pass this arg.
1177 args[i].reg is nonzero if all or part is passed in registers.
1179 args[i].partial is nonzero if part but not all is passed in registers,
1180 and the exact value says how many bytes are passed in registers.
1182 args[i].pass_on_stack is nonzero if the argument must at least be
1183 computed on the stack. It may then be loaded back into registers
1184 if args[i].reg is nonzero.
1186 These decisions are driven by the FUNCTION_... macros and must agree
1187 with those made by function.c. */
1189 /* See if this argument should be passed by invisible reference. */
1190 if (pass_by_reference (args_so_far_pnt, TYPE_MODE (type),
1191 type, argpos < n_named_args))
1193 bool callee_copies;
1194 tree base = NULL_TREE;
1196 callee_copies
1197 = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
1198 type, argpos < n_named_args);
1200 /* If we're compiling a thunk, pass through invisible references
1201 instead of making a copy. */
1202 if (call_from_thunk_p
1203 || (callee_copies
1204 && !TREE_ADDRESSABLE (type)
1205 && (base = get_base_address (args[i].tree_value))
1206 && TREE_CODE (base) != SSA_NAME
1207 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
1209 mark_addressable (args[i].tree_value);
1211 /* We can't use sibcalls if a callee-copied argument is
1212 stored in the current function's frame. */
1213 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
1214 *may_tailcall = false;
1216 args[i].tree_value = build_fold_addr_expr_loc (loc,
1217 args[i].tree_value);
1218 type = TREE_TYPE (args[i].tree_value);
1220 if (*ecf_flags & ECF_CONST)
1221 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
1223 else
1225 /* We make a copy of the object and pass the address to the
1226 function being called. */
1227 rtx copy;
1229 if (!COMPLETE_TYPE_P (type)
1230 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
1231 || (flag_stack_check == GENERIC_STACK_CHECK
1232 && compare_tree_int (TYPE_SIZE_UNIT (type),
1233 STACK_CHECK_MAX_VAR_SIZE) > 0))
1235 /* This is a variable-sized object. Make space on the stack
1236 for it. */
1237 rtx size_rtx = expr_size (args[i].tree_value);
1239 if (*old_stack_level == 0)
1241 emit_stack_save (SAVE_BLOCK, old_stack_level);
1242 *old_pending_adj = pending_stack_adjust;
1243 pending_stack_adjust = 0;
1246 /* We can pass TRUE as the 4th argument because we just
1247 saved the stack pointer and will restore it right after
1248 the call. */
1249 copy = allocate_dynamic_stack_space (size_rtx,
1250 TYPE_ALIGN (type),
1251 TYPE_ALIGN (type),
1252 true);
1253 copy = gen_rtx_MEM (BLKmode, copy);
1254 set_mem_attributes (copy, type, 1);
1256 else
1257 copy = assign_temp (type, 1, 0);
1259 store_expr (args[i].tree_value, copy, 0, false);
1261 /* Just change the const function to pure and then let
1262 the next test clear the pure based on
1263 callee_copies. */
1264 if (*ecf_flags & ECF_CONST)
1266 *ecf_flags &= ~ECF_CONST;
1267 *ecf_flags |= ECF_PURE;
1270 if (!callee_copies && *ecf_flags & ECF_PURE)
1271 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
1273 args[i].tree_value
1274 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
1275 type = TREE_TYPE (args[i].tree_value);
1276 *may_tailcall = false;
1280 unsignedp = TYPE_UNSIGNED (type);
1281 mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
1282 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
1284 args[i].unsignedp = unsignedp;
1285 args[i].mode = mode;
1287 args[i].reg = targetm.calls.function_arg (args_so_far, mode, type,
1288 argpos < n_named_args);
1290 /* If this is a sibling call and the machine has register windows, the
1291 register window has to be unwinded before calling the routine, so
1292 arguments have to go into the incoming registers. */
1293 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
1294 args[i].tail_call_reg
1295 = targetm.calls.function_incoming_arg (args_so_far, mode, type,
1296 argpos < n_named_args);
1297 else
1298 args[i].tail_call_reg = args[i].reg;
1300 if (args[i].reg)
1301 args[i].partial
1302 = targetm.calls.arg_partial_bytes (args_so_far, mode, type,
1303 argpos < n_named_args);
1305 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (mode, type);
1307 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1308 it means that we are to pass this arg in the register(s) designated
1309 by the PARALLEL, but also to pass it in the stack. */
1310 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1311 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1312 args[i].pass_on_stack = 1;
1314 /* If this is an addressable type, we must preallocate the stack
1315 since we must evaluate the object into its final location.
1317 If this is to be passed in both registers and the stack, it is simpler
1318 to preallocate. */
1319 if (TREE_ADDRESSABLE (type)
1320 || (args[i].pass_on_stack && args[i].reg != 0))
1321 *must_preallocate = 1;
1323 /* Compute the stack-size of this argument. */
1324 if (args[i].reg == 0 || args[i].partial != 0
1325 || reg_parm_stack_space > 0
1326 || args[i].pass_on_stack)
1327 locate_and_pad_parm (mode, type,
1328 #ifdef STACK_PARMS_IN_REG_PARM_AREA
1330 #else
1331 args[i].reg != 0,
1332 #endif
1333 reg_parm_stack_space,
1334 args[i].pass_on_stack ? 0 : args[i].partial,
1335 fndecl, args_size, &args[i].locate);
1336 #ifdef BLOCK_REG_PADDING
1337 else
1338 /* The argument is passed entirely in registers. See at which
1339 end it should be padded. */
1340 args[i].locate.where_pad =
1341 BLOCK_REG_PADDING (mode, type,
1342 int_size_in_bytes (type) <= UNITS_PER_WORD);
1343 #endif
1345 /* Update ARGS_SIZE, the total stack space for args so far. */
1347 args_size->constant += args[i].locate.size.constant;
1348 if (args[i].locate.size.var)
1349 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
1351 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1352 have been used, etc. */
1354 targetm.calls.function_arg_advance (args_so_far, TYPE_MODE (type),
1355 type, argpos < n_named_args);
1359 /* Update ARGS_SIZE to contain the total size for the argument block.
1360 Return the original constant component of the argument block's size.
1362 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1363 for arguments passed in registers. */
1365 static int
1366 compute_argument_block_size (int reg_parm_stack_space,
1367 struct args_size *args_size,
1368 tree fndecl ATTRIBUTE_UNUSED,
1369 tree fntype ATTRIBUTE_UNUSED,
1370 int preferred_stack_boundary ATTRIBUTE_UNUSED)
1372 int unadjusted_args_size = args_size->constant;
1374 /* For accumulate outgoing args mode we don't need to align, since the frame
1375 will be already aligned. Align to STACK_BOUNDARY in order to prevent
1376 backends from generating misaligned frame sizes. */
1377 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
1378 preferred_stack_boundary = STACK_BOUNDARY;
1380 /* Compute the actual size of the argument block required. The variable
1381 and constant sizes must be combined, the size may have to be rounded,
1382 and there may be a minimum required size. */
1384 if (args_size->var)
1386 args_size->var = ARGS_SIZE_TREE (*args_size);
1387 args_size->constant = 0;
1389 preferred_stack_boundary /= BITS_PER_UNIT;
1390 if (preferred_stack_boundary > 1)
1392 /* We don't handle this case yet. To handle it correctly we have
1393 to add the delta, round and subtract the delta.
1394 Currently no machine description requires this support. */
1395 gcc_assert (!(stack_pointer_delta & (preferred_stack_boundary - 1)));
1396 args_size->var = round_up (args_size->var, preferred_stack_boundary);
1399 if (reg_parm_stack_space > 0)
1401 args_size->var
1402 = size_binop (MAX_EXPR, args_size->var,
1403 ssize_int (reg_parm_stack_space));
1405 /* The area corresponding to register parameters is not to count in
1406 the size of the block we need. So make the adjustment. */
1407 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1408 args_size->var
1409 = size_binop (MINUS_EXPR, args_size->var,
1410 ssize_int (reg_parm_stack_space));
1413 else
1415 preferred_stack_boundary /= BITS_PER_UNIT;
1416 if (preferred_stack_boundary < 1)
1417 preferred_stack_boundary = 1;
1418 args_size->constant = (((args_size->constant
1419 + stack_pointer_delta
1420 + preferred_stack_boundary - 1)
1421 / preferred_stack_boundary
1422 * preferred_stack_boundary)
1423 - stack_pointer_delta);
1425 args_size->constant = MAX (args_size->constant,
1426 reg_parm_stack_space);
1428 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1429 args_size->constant -= reg_parm_stack_space;
1431 return unadjusted_args_size;
1434 /* Precompute parameters as needed for a function call.
1436 FLAGS is mask of ECF_* constants.
1438 NUM_ACTUALS is the number of arguments.
1440 ARGS is an array containing information for each argument; this
1441 routine fills in the INITIAL_VALUE and VALUE fields for each
1442 precomputed argument. */
1444 static void
1445 precompute_arguments (int num_actuals, struct arg_data *args)
1447 int i;
1449 /* If this is a libcall, then precompute all arguments so that we do not
1450 get extraneous instructions emitted as part of the libcall sequence. */
1452 /* If we preallocated the stack space, and some arguments must be passed
1453 on the stack, then we must precompute any parameter which contains a
1454 function call which will store arguments on the stack.
1455 Otherwise, evaluating the parameter may clobber previous parameters
1456 which have already been stored into the stack. (we have code to avoid
1457 such case by saving the outgoing stack arguments, but it results in
1458 worse code) */
1459 if (!ACCUMULATE_OUTGOING_ARGS)
1460 return;
1462 for (i = 0; i < num_actuals; i++)
1464 tree type;
1465 enum machine_mode mode;
1467 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
1468 continue;
1470 /* If this is an addressable type, we cannot pre-evaluate it. */
1471 type = TREE_TYPE (args[i].tree_value);
1472 gcc_assert (!TREE_ADDRESSABLE (type));
1474 args[i].initial_value = args[i].value
1475 = expand_normal (args[i].tree_value);
1477 mode = TYPE_MODE (type);
1478 if (mode != args[i].mode)
1480 int unsignedp = args[i].unsignedp;
1481 args[i].value
1482 = convert_modes (args[i].mode, mode,
1483 args[i].value, args[i].unsignedp);
1485 /* CSE will replace this only if it contains args[i].value
1486 pseudo, so convert it down to the declared mode using
1487 a SUBREG. */
1488 if (REG_P (args[i].value)
1489 && GET_MODE_CLASS (args[i].mode) == MODE_INT
1490 && promote_mode (type, mode, &unsignedp) != args[i].mode)
1492 args[i].initial_value
1493 = gen_lowpart_SUBREG (mode, args[i].value);
1494 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
1495 SUBREG_PROMOTED_SET (args[i].initial_value, args[i].unsignedp);
1501 /* Given the current state of MUST_PREALLOCATE and information about
1502 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1503 compute and return the final value for MUST_PREALLOCATE. */
1505 static int
1506 finalize_must_preallocate (int must_preallocate, int num_actuals,
1507 struct arg_data *args, struct args_size *args_size)
1509 /* See if we have or want to preallocate stack space.
1511 If we would have to push a partially-in-regs parm
1512 before other stack parms, preallocate stack space instead.
1514 If the size of some parm is not a multiple of the required stack
1515 alignment, we must preallocate.
1517 If the total size of arguments that would otherwise create a copy in
1518 a temporary (such as a CALL) is more than half the total argument list
1519 size, preallocation is faster.
1521 Another reason to preallocate is if we have a machine (like the m88k)
1522 where stack alignment is required to be maintained between every
1523 pair of insns, not just when the call is made. However, we assume here
1524 that such machines either do not have push insns (and hence preallocation
1525 would occur anyway) or the problem is taken care of with
1526 PUSH_ROUNDING. */
1528 if (! must_preallocate)
1530 int partial_seen = 0;
1531 int copy_to_evaluate_size = 0;
1532 int i;
1534 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1536 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1537 partial_seen = 1;
1538 else if (partial_seen && args[i].reg == 0)
1539 must_preallocate = 1;
1541 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1542 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1543 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1544 || TREE_CODE (args[i].tree_value) == COND_EXPR
1545 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1546 copy_to_evaluate_size
1547 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1550 if (copy_to_evaluate_size * 2 >= args_size->constant
1551 && args_size->constant > 0)
1552 must_preallocate = 1;
1554 return must_preallocate;
1557 /* If we preallocated stack space, compute the address of each argument
1558 and store it into the ARGS array.
1560 We need not ensure it is a valid memory address here; it will be
1561 validized when it is used.
1563 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1565 static void
1566 compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
1568 if (argblock)
1570 rtx arg_reg = argblock;
1571 int i, arg_offset = 0;
1573 if (GET_CODE (argblock) == PLUS)
1574 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1576 for (i = 0; i < num_actuals; i++)
1578 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
1579 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
1580 rtx addr;
1581 unsigned int align, boundary;
1582 unsigned int units_on_stack = 0;
1583 enum machine_mode partial_mode = VOIDmode;
1585 /* Skip this parm if it will not be passed on the stack. */
1586 if (! args[i].pass_on_stack
1587 && args[i].reg != 0
1588 && args[i].partial == 0)
1589 continue;
1591 if (CONST_INT_P (offset))
1592 addr = plus_constant (Pmode, arg_reg, INTVAL (offset));
1593 else
1594 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1596 addr = plus_constant (Pmode, addr, arg_offset);
1598 if (args[i].partial != 0)
1600 /* Only part of the parameter is being passed on the stack.
1601 Generate a simple memory reference of the correct size. */
1602 units_on_stack = args[i].locate.size.constant;
1603 partial_mode = mode_for_size (units_on_stack * BITS_PER_UNIT,
1604 MODE_INT, 1);
1605 args[i].stack = gen_rtx_MEM (partial_mode, addr);
1606 set_mem_size (args[i].stack, units_on_stack);
1608 else
1610 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1611 set_mem_attributes (args[i].stack,
1612 TREE_TYPE (args[i].tree_value), 1);
1614 align = BITS_PER_UNIT;
1615 boundary = args[i].locate.boundary;
1616 if (args[i].locate.where_pad != downward)
1617 align = boundary;
1618 else if (CONST_INT_P (offset))
1620 align = INTVAL (offset) * BITS_PER_UNIT | boundary;
1621 align = align & -align;
1623 set_mem_align (args[i].stack, align);
1625 if (CONST_INT_P (slot_offset))
1626 addr = plus_constant (Pmode, arg_reg, INTVAL (slot_offset));
1627 else
1628 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1630 addr = plus_constant (Pmode, addr, arg_offset);
1632 if (args[i].partial != 0)
1634 /* Only part of the parameter is being passed on the stack.
1635 Generate a simple memory reference of the correct size.
1637 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
1638 set_mem_size (args[i].stack_slot, units_on_stack);
1640 else
1642 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1643 set_mem_attributes (args[i].stack_slot,
1644 TREE_TYPE (args[i].tree_value), 1);
1646 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
1648 /* Function incoming arguments may overlap with sibling call
1649 outgoing arguments and we cannot allow reordering of reads
1650 from function arguments with stores to outgoing arguments
1651 of sibling calls. */
1652 set_mem_alias_set (args[i].stack, 0);
1653 set_mem_alias_set (args[i].stack_slot, 0);
1658 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1659 in a call instruction.
1661 FNDECL is the tree node for the target function. For an indirect call
1662 FNDECL will be NULL_TREE.
1664 ADDR is the operand 0 of CALL_EXPR for this call. */
1666 static rtx
1667 rtx_for_function_call (tree fndecl, tree addr)
1669 rtx funexp;
1671 /* Get the function to call, in the form of RTL. */
1672 if (fndecl)
1674 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
1675 TREE_USED (fndecl) = 1;
1677 /* Get a SYMBOL_REF rtx for the function address. */
1678 funexp = XEXP (DECL_RTL (fndecl), 0);
1680 else
1681 /* Generate an rtx (probably a pseudo-register) for the address. */
1683 push_temp_slots ();
1684 funexp = expand_normal (addr);
1685 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
1687 return funexp;
1690 /* Internal state for internal_arg_pointer_based_exp and its helpers. */
1691 static struct
1693 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
1694 or NULL_RTX if none has been scanned yet. */
1695 rtx_insn *scan_start;
1696 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
1697 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
1698 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
1699 with fixed offset, or PC if this is with variable or unknown offset. */
1700 vec<rtx> cache;
1701 } internal_arg_pointer_exp_state;
1703 static rtx internal_arg_pointer_based_exp (const_rtx, bool);
1705 /* Helper function for internal_arg_pointer_based_exp. Scan insns in
1706 the tail call sequence, starting with first insn that hasn't been
1707 scanned yet, and note for each pseudo on the LHS whether it is based
1708 on crtl->args.internal_arg_pointer or not, and what offset from that
1709 that pointer it has. */
1711 static void
1712 internal_arg_pointer_based_exp_scan (void)
1714 rtx_insn *insn, *scan_start = internal_arg_pointer_exp_state.scan_start;
1716 if (scan_start == NULL_RTX)
1717 insn = get_insns ();
1718 else
1719 insn = NEXT_INSN (scan_start);
1721 while (insn)
1723 rtx set = single_set (insn);
1724 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
1726 rtx val = NULL_RTX;
1727 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
1728 /* Punt on pseudos set multiple times. */
1729 if (idx < internal_arg_pointer_exp_state.cache.length ()
1730 && (internal_arg_pointer_exp_state.cache[idx]
1731 != NULL_RTX))
1732 val = pc_rtx;
1733 else
1734 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
1735 if (val != NULL_RTX)
1737 if (idx >= internal_arg_pointer_exp_state.cache.length ())
1738 internal_arg_pointer_exp_state.cache
1739 .safe_grow_cleared (idx + 1);
1740 internal_arg_pointer_exp_state.cache[idx] = val;
1743 if (NEXT_INSN (insn) == NULL_RTX)
1744 scan_start = insn;
1745 insn = NEXT_INSN (insn);
1748 internal_arg_pointer_exp_state.scan_start = scan_start;
1751 /* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
1752 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
1753 it with fixed offset, or PC if this is with variable or unknown offset.
1754 TOPLEVEL is true if the function is invoked at the topmost level. */
1756 static rtx
1757 internal_arg_pointer_based_exp (const_rtx rtl, bool toplevel)
1759 if (CONSTANT_P (rtl))
1760 return NULL_RTX;
1762 if (rtl == crtl->args.internal_arg_pointer)
1763 return const0_rtx;
1765 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
1766 return NULL_RTX;
1768 if (GET_CODE (rtl) == PLUS && CONST_INT_P (XEXP (rtl, 1)))
1770 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
1771 if (val == NULL_RTX || val == pc_rtx)
1772 return val;
1773 return plus_constant (Pmode, val, INTVAL (XEXP (rtl, 1)));
1776 /* When called at the topmost level, scan pseudo assignments in between the
1777 last scanned instruction in the tail call sequence and the latest insn
1778 in that sequence. */
1779 if (toplevel)
1780 internal_arg_pointer_based_exp_scan ();
1782 if (REG_P (rtl))
1784 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
1785 if (idx < internal_arg_pointer_exp_state.cache.length ())
1786 return internal_arg_pointer_exp_state.cache[idx];
1788 return NULL_RTX;
1791 subrtx_iterator::array_type array;
1792 FOR_EACH_SUBRTX (iter, array, rtl, NONCONST)
1794 const_rtx x = *iter;
1795 if (REG_P (x) && internal_arg_pointer_based_exp (x, false) != NULL_RTX)
1796 return pc_rtx;
1797 if (MEM_P (x))
1798 iter.skip_subrtxes ();
1801 return NULL_RTX;
1804 /* Return true if and only if SIZE storage units (usually bytes)
1805 starting from address ADDR overlap with already clobbered argument
1806 area. This function is used to determine if we should give up a
1807 sibcall. */
1809 static bool
1810 mem_overlaps_already_clobbered_arg_p (rtx addr, unsigned HOST_WIDE_INT size)
1812 HOST_WIDE_INT i;
1813 rtx val;
1815 if (bitmap_empty_p (stored_args_map))
1816 return false;
1817 val = internal_arg_pointer_based_exp (addr, true);
1818 if (val == NULL_RTX)
1819 return false;
1820 else if (val == pc_rtx)
1821 return true;
1822 else
1823 i = INTVAL (val);
1824 #ifdef STACK_GROWS_DOWNWARD
1825 i -= crtl->args.pretend_args_size;
1826 #else
1827 i += crtl->args.pretend_args_size;
1828 #endif
1830 #ifdef ARGS_GROW_DOWNWARD
1831 i = -i - size;
1832 #endif
1833 if (size > 0)
1835 unsigned HOST_WIDE_INT k;
1837 for (k = 0; k < size; k++)
1838 if (i + k < SBITMAP_SIZE (stored_args_map)
1839 && bitmap_bit_p (stored_args_map, i + k))
1840 return true;
1843 return false;
1846 /* Do the register loads required for any wholly-register parms or any
1847 parms which are passed both on the stack and in a register. Their
1848 expressions were already evaluated.
1850 Mark all register-parms as living through the call, putting these USE
1851 insns in the CALL_INSN_FUNCTION_USAGE field.
1853 When IS_SIBCALL, perform the check_sibcall_argument_overlap
1854 checking, setting *SIBCALL_FAILURE if appropriate. */
1856 static void
1857 load_register_parameters (struct arg_data *args, int num_actuals,
1858 rtx *call_fusage, int flags, int is_sibcall,
1859 int *sibcall_failure)
1861 int i, j;
1863 for (i = 0; i < num_actuals; i++)
1865 rtx reg = ((flags & ECF_SIBCALL)
1866 ? args[i].tail_call_reg : args[i].reg);
1867 if (reg)
1869 int partial = args[i].partial;
1870 int nregs;
1871 int size = 0;
1872 rtx_insn *before_arg = get_last_insn ();
1873 /* Set non-negative if we must move a word at a time, even if
1874 just one word (e.g, partial == 4 && mode == DFmode). Set
1875 to -1 if we just use a normal move insn. This value can be
1876 zero if the argument is a zero size structure. */
1877 nregs = -1;
1878 if (GET_CODE (reg) == PARALLEL)
1880 else if (partial)
1882 gcc_assert (partial % UNITS_PER_WORD == 0);
1883 nregs = partial / UNITS_PER_WORD;
1885 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
1887 size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1888 nregs = (size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
1890 else
1891 size = GET_MODE_SIZE (args[i].mode);
1893 /* Handle calls that pass values in multiple non-contiguous
1894 locations. The Irix 6 ABI has examples of this. */
1896 if (GET_CODE (reg) == PARALLEL)
1897 emit_group_move (reg, args[i].parallel_value);
1899 /* If simple case, just do move. If normal partial, store_one_arg
1900 has already loaded the register for us. In all other cases,
1901 load the register(s) from memory. */
1903 else if (nregs == -1)
1905 emit_move_insn (reg, args[i].value);
1906 #ifdef BLOCK_REG_PADDING
1907 /* Handle case where we have a value that needs shifting
1908 up to the msb. eg. a QImode value and we're padding
1909 upward on a BYTES_BIG_ENDIAN machine. */
1910 if (size < UNITS_PER_WORD
1911 && (args[i].locate.where_pad
1912 == (BYTES_BIG_ENDIAN ? upward : downward)))
1914 rtx x;
1915 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
1917 /* Assigning REG here rather than a temp makes CALL_FUSAGE
1918 report the whole reg as used. Strictly speaking, the
1919 call only uses SIZE bytes at the msb end, but it doesn't
1920 seem worth generating rtl to say that. */
1921 reg = gen_rtx_REG (word_mode, REGNO (reg));
1922 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
1923 if (x != reg)
1924 emit_move_insn (reg, x);
1926 #endif
1929 /* If we have pre-computed the values to put in the registers in
1930 the case of non-aligned structures, copy them in now. */
1932 else if (args[i].n_aligned_regs != 0)
1933 for (j = 0; j < args[i].n_aligned_regs; j++)
1934 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
1935 args[i].aligned_regs[j]);
1937 else if (partial == 0 || args[i].pass_on_stack)
1939 rtx mem = validize_mem (copy_rtx (args[i].value));
1941 /* Check for overlap with already clobbered argument area,
1942 providing that this has non-zero size. */
1943 if (is_sibcall
1944 && (size == 0
1945 || mem_overlaps_already_clobbered_arg_p
1946 (XEXP (args[i].value, 0), size)))
1947 *sibcall_failure = 1;
1949 /* Handle a BLKmode that needs shifting. */
1950 if (nregs == 1 && size < UNITS_PER_WORD
1951 #ifdef BLOCK_REG_PADDING
1952 && args[i].locate.where_pad == downward
1953 #else
1954 && BYTES_BIG_ENDIAN
1955 #endif
1958 rtx tem = operand_subword_force (mem, 0, args[i].mode);
1959 rtx ri = gen_rtx_REG (word_mode, REGNO (reg));
1960 rtx x = gen_reg_rtx (word_mode);
1961 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
1962 enum tree_code dir = BYTES_BIG_ENDIAN ? RSHIFT_EXPR
1963 : LSHIFT_EXPR;
1965 emit_move_insn (x, tem);
1966 x = expand_shift (dir, word_mode, x, shift, ri, 1);
1967 if (x != ri)
1968 emit_move_insn (ri, x);
1970 else
1971 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
1974 /* When a parameter is a block, and perhaps in other cases, it is
1975 possible that it did a load from an argument slot that was
1976 already clobbered. */
1977 if (is_sibcall
1978 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
1979 *sibcall_failure = 1;
1981 /* Handle calls that pass values in multiple non-contiguous
1982 locations. The Irix 6 ABI has examples of this. */
1983 if (GET_CODE (reg) == PARALLEL)
1984 use_group_regs (call_fusage, reg);
1985 else if (nregs == -1)
1986 use_reg_mode (call_fusage, reg,
1987 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
1988 else if (nregs > 0)
1989 use_regs (call_fusage, REGNO (reg), nregs);
1994 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
1995 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
1996 bytes, then we would need to push some additional bytes to pad the
1997 arguments. So, we compute an adjust to the stack pointer for an
1998 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
1999 bytes. Then, when the arguments are pushed the stack will be perfectly
2000 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
2001 be popped after the call. Returns the adjustment. */
2003 static int
2004 combine_pending_stack_adjustment_and_call (int unadjusted_args_size,
2005 struct args_size *args_size,
2006 unsigned int preferred_unit_stack_boundary)
2008 /* The number of bytes to pop so that the stack will be
2009 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2010 HOST_WIDE_INT adjustment;
2011 /* The alignment of the stack after the arguments are pushed, if we
2012 just pushed the arguments without adjust the stack here. */
2013 unsigned HOST_WIDE_INT unadjusted_alignment;
2015 unadjusted_alignment
2016 = ((stack_pointer_delta + unadjusted_args_size)
2017 % preferred_unit_stack_boundary);
2019 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2020 as possible -- leaving just enough left to cancel out the
2021 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2022 PENDING_STACK_ADJUST is non-negative, and congruent to
2023 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2025 /* Begin by trying to pop all the bytes. */
2026 unadjusted_alignment
2027 = (unadjusted_alignment
2028 - (pending_stack_adjust % preferred_unit_stack_boundary));
2029 adjustment = pending_stack_adjust;
2030 /* Push enough additional bytes that the stack will be aligned
2031 after the arguments are pushed. */
2032 if (preferred_unit_stack_boundary > 1)
2034 if (unadjusted_alignment > 0)
2035 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
2036 else
2037 adjustment += unadjusted_alignment;
2040 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2041 bytes after the call. The right number is the entire
2042 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2043 by the arguments in the first place. */
2044 args_size->constant
2045 = pending_stack_adjust - adjustment + unadjusted_args_size;
2047 return adjustment;
2050 /* Scan X expression if it does not dereference any argument slots
2051 we already clobbered by tail call arguments (as noted in stored_args_map
2052 bitmap).
2053 Return nonzero if X expression dereferences such argument slots,
2054 zero otherwise. */
2056 static int
2057 check_sibcall_argument_overlap_1 (rtx x)
2059 RTX_CODE code;
2060 int i, j;
2061 const char *fmt;
2063 if (x == NULL_RTX)
2064 return 0;
2066 code = GET_CODE (x);
2068 /* We need not check the operands of the CALL expression itself. */
2069 if (code == CALL)
2070 return 0;
2072 if (code == MEM)
2073 return mem_overlaps_already_clobbered_arg_p (XEXP (x, 0),
2074 GET_MODE_SIZE (GET_MODE (x)));
2076 /* Scan all subexpressions. */
2077 fmt = GET_RTX_FORMAT (code);
2078 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2080 if (*fmt == 'e')
2082 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
2083 return 1;
2085 else if (*fmt == 'E')
2087 for (j = 0; j < XVECLEN (x, i); j++)
2088 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
2089 return 1;
2092 return 0;
2095 /* Scan sequence after INSN if it does not dereference any argument slots
2096 we already clobbered by tail call arguments (as noted in stored_args_map
2097 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
2098 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
2099 should be 0). Return nonzero if sequence after INSN dereferences such argument
2100 slots, zero otherwise. */
2102 static int
2103 check_sibcall_argument_overlap (rtx_insn *insn, struct arg_data *arg,
2104 int mark_stored_args_map)
2106 int low, high;
2108 if (insn == NULL_RTX)
2109 insn = get_insns ();
2110 else
2111 insn = NEXT_INSN (insn);
2113 for (; insn; insn = NEXT_INSN (insn))
2114 if (INSN_P (insn)
2115 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
2116 break;
2118 if (mark_stored_args_map)
2120 #ifdef ARGS_GROW_DOWNWARD
2121 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
2122 #else
2123 low = arg->locate.slot_offset.constant;
2124 #endif
2126 for (high = low + arg->locate.size.constant; low < high; low++)
2127 bitmap_set_bit (stored_args_map, low);
2129 return insn != NULL_RTX;
2132 /* Given that a function returns a value of mode MODE at the most
2133 significant end of hard register VALUE, shift VALUE left or right
2134 as specified by LEFT_P. Return true if some action was needed. */
2136 bool
2137 shift_return_value (enum machine_mode mode, bool left_p, rtx value)
2139 HOST_WIDE_INT shift;
2141 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
2142 shift = GET_MODE_BITSIZE (GET_MODE (value)) - GET_MODE_BITSIZE (mode);
2143 if (shift == 0)
2144 return false;
2146 /* Use ashr rather than lshr for right shifts. This is for the benefit
2147 of the MIPS port, which requires SImode values to be sign-extended
2148 when stored in 64-bit registers. */
2149 if (!force_expand_binop (GET_MODE (value), left_p ? ashl_optab : ashr_optab,
2150 value, GEN_INT (shift), value, 1, OPTAB_WIDEN))
2151 gcc_unreachable ();
2152 return true;
2155 /* If X is a likely-spilled register value, copy it to a pseudo
2156 register and return that register. Return X otherwise. */
2158 static rtx
2159 avoid_likely_spilled_reg (rtx x)
2161 rtx new_rtx;
2163 if (REG_P (x)
2164 && HARD_REGISTER_P (x)
2165 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
2167 /* Make sure that we generate a REG rather than a CONCAT.
2168 Moves into CONCATs can need nontrivial instructions,
2169 and the whole point of this function is to avoid
2170 using the hard register directly in such a situation. */
2171 generating_concat_p = 0;
2172 new_rtx = gen_reg_rtx (GET_MODE (x));
2173 generating_concat_p = 1;
2174 emit_move_insn (new_rtx, x);
2175 return new_rtx;
2177 return x;
2180 /* Generate all the code for a CALL_EXPR exp
2181 and return an rtx for its value.
2182 Store the value in TARGET (specified as an rtx) if convenient.
2183 If the value is stored in TARGET then TARGET is returned.
2184 If IGNORE is nonzero, then we ignore the value of the function call. */
2187 expand_call (tree exp, rtx target, int ignore)
2189 /* Nonzero if we are currently expanding a call. */
2190 static int currently_expanding_call = 0;
2192 /* RTX for the function to be called. */
2193 rtx funexp;
2194 /* Sequence of insns to perform a normal "call". */
2195 rtx_insn *normal_call_insns = NULL;
2196 /* Sequence of insns to perform a tail "call". */
2197 rtx_insn *tail_call_insns = NULL;
2198 /* Data type of the function. */
2199 tree funtype;
2200 tree type_arg_types;
2201 tree rettype;
2202 /* Declaration of the function being called,
2203 or 0 if the function is computed (not known by name). */
2204 tree fndecl = 0;
2205 /* The type of the function being called. */
2206 tree fntype;
2207 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
2208 int pass;
2210 /* Register in which non-BLKmode value will be returned,
2211 or 0 if no value or if value is BLKmode. */
2212 rtx valreg;
2213 /* Address where we should return a BLKmode value;
2214 0 if value not BLKmode. */
2215 rtx structure_value_addr = 0;
2216 /* Nonzero if that address is being passed by treating it as
2217 an extra, implicit first parameter. Otherwise,
2218 it is passed by being copied directly into struct_value_rtx. */
2219 int structure_value_addr_parm = 0;
2220 /* Holds the value of implicit argument for the struct value. */
2221 tree structure_value_addr_value = NULL_TREE;
2222 /* Size of aggregate value wanted, or zero if none wanted
2223 or if we are using the non-reentrant PCC calling convention
2224 or expecting the value in registers. */
2225 HOST_WIDE_INT struct_value_size = 0;
2226 /* Nonzero if called function returns an aggregate in memory PCC style,
2227 by returning the address of where to find it. */
2228 int pcc_struct_value = 0;
2229 rtx struct_value = 0;
2231 /* Number of actual parameters in this call, including struct value addr. */
2232 int num_actuals;
2233 /* Number of named args. Args after this are anonymous ones
2234 and they must all go on the stack. */
2235 int n_named_args;
2236 /* Number of complex actual arguments that need to be split. */
2237 int num_complex_actuals = 0;
2239 /* Vector of information about each argument.
2240 Arguments are numbered in the order they will be pushed,
2241 not the order they are written. */
2242 struct arg_data *args;
2244 /* Total size in bytes of all the stack-parms scanned so far. */
2245 struct args_size args_size;
2246 struct args_size adjusted_args_size;
2247 /* Size of arguments before any adjustments (such as rounding). */
2248 int unadjusted_args_size;
2249 /* Data on reg parms scanned so far. */
2250 CUMULATIVE_ARGS args_so_far_v;
2251 cumulative_args_t args_so_far;
2252 /* Nonzero if a reg parm has been scanned. */
2253 int reg_parm_seen;
2254 /* Nonzero if this is an indirect function call. */
2256 /* Nonzero if we must avoid push-insns in the args for this call.
2257 If stack space is allocated for register parameters, but not by the
2258 caller, then it is preallocated in the fixed part of the stack frame.
2259 So the entire argument block must then be preallocated (i.e., we
2260 ignore PUSH_ROUNDING in that case). */
2262 int must_preallocate = !PUSH_ARGS;
2264 /* Size of the stack reserved for parameter registers. */
2265 int reg_parm_stack_space = 0;
2267 /* Address of space preallocated for stack parms
2268 (on machines that lack push insns), or 0 if space not preallocated. */
2269 rtx argblock = 0;
2271 /* Mask of ECF_ and ERF_ flags. */
2272 int flags = 0;
2273 int return_flags = 0;
2274 #ifdef REG_PARM_STACK_SPACE
2275 /* Define the boundary of the register parm stack space that needs to be
2276 saved, if any. */
2277 int low_to_save, high_to_save;
2278 rtx save_area = 0; /* Place that it is saved */
2279 #endif
2281 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2282 char *initial_stack_usage_map = stack_usage_map;
2283 char *stack_usage_map_buf = NULL;
2285 int old_stack_allocated;
2287 /* State variables to track stack modifications. */
2288 rtx old_stack_level = 0;
2289 int old_stack_arg_under_construction = 0;
2290 int old_pending_adj = 0;
2291 int old_inhibit_defer_pop = inhibit_defer_pop;
2293 /* Some stack pointer alterations we make are performed via
2294 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
2295 which we then also need to save/restore along the way. */
2296 int old_stack_pointer_delta = 0;
2298 rtx call_fusage;
2299 tree addr = CALL_EXPR_FN (exp);
2300 int i;
2301 /* The alignment of the stack, in bits. */
2302 unsigned HOST_WIDE_INT preferred_stack_boundary;
2303 /* The alignment of the stack, in bytes. */
2304 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
2305 /* The static chain value to use for this call. */
2306 rtx static_chain_value;
2307 /* See if this is "nothrow" function call. */
2308 if (TREE_NOTHROW (exp))
2309 flags |= ECF_NOTHROW;
2311 /* See if we can find a DECL-node for the actual function, and get the
2312 function attributes (flags) from the function decl or type node. */
2313 fndecl = get_callee_fndecl (exp);
2314 if (fndecl)
2316 fntype = TREE_TYPE (fndecl);
2317 flags |= flags_from_decl_or_type (fndecl);
2318 return_flags |= decl_return_flags (fndecl);
2320 else
2322 fntype = TREE_TYPE (TREE_TYPE (addr));
2323 flags |= flags_from_decl_or_type (fntype);
2325 rettype = TREE_TYPE (exp);
2327 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
2329 /* Warn if this value is an aggregate type,
2330 regardless of which calling convention we are using for it. */
2331 if (AGGREGATE_TYPE_P (rettype))
2332 warning (OPT_Waggregate_return, "function call has aggregate value");
2334 /* If the result of a non looping pure or const function call is
2335 ignored (or void), and none of its arguments are volatile, we can
2336 avoid expanding the call and just evaluate the arguments for
2337 side-effects. */
2338 if ((flags & (ECF_CONST | ECF_PURE))
2339 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
2340 && (ignore || target == const0_rtx
2341 || TYPE_MODE (rettype) == VOIDmode))
2343 bool volatilep = false;
2344 tree arg;
2345 call_expr_arg_iterator iter;
2347 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2348 if (TREE_THIS_VOLATILE (arg))
2350 volatilep = true;
2351 break;
2354 if (! volatilep)
2356 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2357 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
2358 return const0_rtx;
2362 #ifdef REG_PARM_STACK_SPACE
2363 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
2364 #endif
2366 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
2367 && reg_parm_stack_space > 0 && PUSH_ARGS)
2368 must_preallocate = 1;
2370 /* Set up a place to return a structure. */
2372 /* Cater to broken compilers. */
2373 if (aggregate_value_p (exp, fntype))
2375 /* This call returns a big structure. */
2376 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
2378 #ifdef PCC_STATIC_STRUCT_RETURN
2380 pcc_struct_value = 1;
2382 #else /* not PCC_STATIC_STRUCT_RETURN */
2384 struct_value_size = int_size_in_bytes (rettype);
2386 /* Even if it is semantically safe to use the target as the return
2387 slot, it may be not sufficiently aligned for the return type. */
2388 if (CALL_EXPR_RETURN_SLOT_OPT (exp)
2389 && target
2390 && MEM_P (target)
2391 && !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
2392 && SLOW_UNALIGNED_ACCESS (TYPE_MODE (rettype),
2393 MEM_ALIGN (target))))
2394 structure_value_addr = XEXP (target, 0);
2395 else
2397 /* For variable-sized objects, we must be called with a target
2398 specified. If we were to allocate space on the stack here,
2399 we would have no way of knowing when to free it. */
2400 rtx d = assign_temp (rettype, 1, 1);
2401 structure_value_addr = XEXP (d, 0);
2402 target = 0;
2405 #endif /* not PCC_STATIC_STRUCT_RETURN */
2408 /* Figure out the amount to which the stack should be aligned. */
2409 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
2410 if (fndecl)
2412 struct cgraph_rtl_info *i = cgraph_node::rtl_info (fndecl);
2413 /* Without automatic stack alignment, we can't increase preferred
2414 stack boundary. With automatic stack alignment, it is
2415 unnecessary since unless we can guarantee that all callers will
2416 align the outgoing stack properly, callee has to align its
2417 stack anyway. */
2418 if (i
2419 && i->preferred_incoming_stack_boundary
2420 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
2421 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
2424 /* Operand 0 is a pointer-to-function; get the type of the function. */
2425 funtype = TREE_TYPE (addr);
2426 gcc_assert (POINTER_TYPE_P (funtype));
2427 funtype = TREE_TYPE (funtype);
2429 /* Count whether there are actual complex arguments that need to be split
2430 into their real and imaginary parts. Munge the type_arg_types
2431 appropriately here as well. */
2432 if (targetm.calls.split_complex_arg)
2434 call_expr_arg_iterator iter;
2435 tree arg;
2436 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2438 tree type = TREE_TYPE (arg);
2439 if (type && TREE_CODE (type) == COMPLEX_TYPE
2440 && targetm.calls.split_complex_arg (type))
2441 num_complex_actuals++;
2443 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
2445 else
2446 type_arg_types = TYPE_ARG_TYPES (funtype);
2448 if (flags & ECF_MAY_BE_ALLOCA)
2449 cfun->calls_alloca = 1;
2451 /* If struct_value_rtx is 0, it means pass the address
2452 as if it were an extra parameter. Put the argument expression
2453 in structure_value_addr_value. */
2454 if (structure_value_addr && struct_value == 0)
2456 /* If structure_value_addr is a REG other than
2457 virtual_outgoing_args_rtx, we can use always use it. If it
2458 is not a REG, we must always copy it into a register.
2459 If it is virtual_outgoing_args_rtx, we must copy it to another
2460 register in some cases. */
2461 rtx temp = (!REG_P (structure_value_addr)
2462 || (ACCUMULATE_OUTGOING_ARGS
2463 && stack_arg_under_construction
2464 && structure_value_addr == virtual_outgoing_args_rtx)
2465 ? copy_addr_to_reg (convert_memory_address
2466 (Pmode, structure_value_addr))
2467 : structure_value_addr);
2469 structure_value_addr_value =
2470 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
2471 structure_value_addr_parm = 1;
2474 /* Count the arguments and set NUM_ACTUALS. */
2475 num_actuals =
2476 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
2478 /* Compute number of named args.
2479 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
2481 if (type_arg_types != 0)
2482 n_named_args
2483 = (list_length (type_arg_types)
2484 /* Count the struct value address, if it is passed as a parm. */
2485 + structure_value_addr_parm);
2486 else
2487 /* If we know nothing, treat all args as named. */
2488 n_named_args = num_actuals;
2490 /* Start updating where the next arg would go.
2492 On some machines (such as the PA) indirect calls have a different
2493 calling convention than normal calls. The fourth argument in
2494 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2495 or not. */
2496 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
2497 args_so_far = pack_cumulative_args (&args_so_far_v);
2499 /* Now possibly adjust the number of named args.
2500 Normally, don't include the last named arg if anonymous args follow.
2501 We do include the last named arg if
2502 targetm.calls.strict_argument_naming() returns nonzero.
2503 (If no anonymous args follow, the result of list_length is actually
2504 one too large. This is harmless.)
2506 If targetm.calls.pretend_outgoing_varargs_named() returns
2507 nonzero, and targetm.calls.strict_argument_naming() returns zero,
2508 this machine will be able to place unnamed args that were passed
2509 in registers into the stack. So treat all args as named. This
2510 allows the insns emitting for a specific argument list to be
2511 independent of the function declaration.
2513 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
2514 we do not have any reliable way to pass unnamed args in
2515 registers, so we must force them into memory. */
2517 if (type_arg_types != 0
2518 && targetm.calls.strict_argument_naming (args_so_far))
2520 else if (type_arg_types != 0
2521 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
2522 /* Don't include the last named arg. */
2523 --n_named_args;
2524 else
2525 /* Treat all args as named. */
2526 n_named_args = num_actuals;
2528 /* Make a vector to hold all the information about each arg. */
2529 args = XALLOCAVEC (struct arg_data, num_actuals);
2530 memset (args, 0, num_actuals * sizeof (struct arg_data));
2532 /* Build up entries in the ARGS array, compute the size of the
2533 arguments into ARGS_SIZE, etc. */
2534 initialize_argument_information (num_actuals, args, &args_size,
2535 n_named_args, exp,
2536 structure_value_addr_value, fndecl, fntype,
2537 args_so_far, reg_parm_stack_space,
2538 &old_stack_level, &old_pending_adj,
2539 &must_preallocate, &flags,
2540 &try_tail_call, CALL_FROM_THUNK_P (exp));
2542 if (args_size.var)
2543 must_preallocate = 1;
2545 /* Now make final decision about preallocating stack space. */
2546 must_preallocate = finalize_must_preallocate (must_preallocate,
2547 num_actuals, args,
2548 &args_size);
2550 /* If the structure value address will reference the stack pointer, we
2551 must stabilize it. We don't need to do this if we know that we are
2552 not going to adjust the stack pointer in processing this call. */
2554 if (structure_value_addr
2555 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2556 || reg_mentioned_p (virtual_outgoing_args_rtx,
2557 structure_value_addr))
2558 && (args_size.var
2559 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2560 structure_value_addr = copy_to_reg (structure_value_addr);
2562 /* Tail calls can make things harder to debug, and we've traditionally
2563 pushed these optimizations into -O2. Don't try if we're already
2564 expanding a call, as that means we're an argument. Don't try if
2565 there's cleanups, as we know there's code to follow the call. */
2567 if (currently_expanding_call++ != 0
2568 || !flag_optimize_sibling_calls
2569 || args_size.var
2570 || dbg_cnt (tail_call) == false)
2571 try_tail_call = 0;
2573 /* Rest of purposes for tail call optimizations to fail. */
2574 if (
2575 #ifdef HAVE_sibcall_epilogue
2576 !HAVE_sibcall_epilogue
2577 #else
2579 #endif
2580 || !try_tail_call
2581 /* Doing sibling call optimization needs some work, since
2582 structure_value_addr can be allocated on the stack.
2583 It does not seem worth the effort since few optimizable
2584 sibling calls will return a structure. */
2585 || structure_value_addr != NULL_RTX
2586 #ifdef REG_PARM_STACK_SPACE
2587 /* If outgoing reg parm stack space changes, we can not do sibcall. */
2588 || (OUTGOING_REG_PARM_STACK_SPACE (funtype)
2589 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl)))
2590 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (current_function_decl))
2591 #endif
2592 /* Check whether the target is able to optimize the call
2593 into a sibcall. */
2594 || !targetm.function_ok_for_sibcall (fndecl, exp)
2595 /* Functions that do not return exactly once may not be sibcall
2596 optimized. */
2597 || (flags & (ECF_RETURNS_TWICE | ECF_NORETURN))
2598 || TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr)))
2599 /* If the called function is nested in the current one, it might access
2600 some of the caller's arguments, but could clobber them beforehand if
2601 the argument areas are shared. */
2602 || (fndecl && decl_function_context (fndecl) == current_function_decl)
2603 /* If this function requires more stack slots than the current
2604 function, we cannot change it into a sibling call.
2605 crtl->args.pretend_args_size is not part of the
2606 stack allocated by our caller. */
2607 || args_size.constant > (crtl->args.size
2608 - crtl->args.pretend_args_size)
2609 /* If the callee pops its own arguments, then it must pop exactly
2610 the same number of arguments as the current function. */
2611 || (targetm.calls.return_pops_args (fndecl, funtype, args_size.constant)
2612 != targetm.calls.return_pops_args (current_function_decl,
2613 TREE_TYPE (current_function_decl),
2614 crtl->args.size))
2615 || !lang_hooks.decls.ok_for_sibcall (fndecl))
2616 try_tail_call = 0;
2618 /* Check if caller and callee disagree in promotion of function
2619 return value. */
2620 if (try_tail_call)
2622 enum machine_mode caller_mode, caller_promoted_mode;
2623 enum machine_mode callee_mode, callee_promoted_mode;
2624 int caller_unsignedp, callee_unsignedp;
2625 tree caller_res = DECL_RESULT (current_function_decl);
2627 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
2628 caller_mode = DECL_MODE (caller_res);
2629 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
2630 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
2631 caller_promoted_mode
2632 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
2633 &caller_unsignedp,
2634 TREE_TYPE (current_function_decl), 1);
2635 callee_promoted_mode
2636 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
2637 &callee_unsignedp,
2638 funtype, 1);
2639 if (caller_mode != VOIDmode
2640 && (caller_promoted_mode != callee_promoted_mode
2641 || ((caller_mode != caller_promoted_mode
2642 || callee_mode != callee_promoted_mode)
2643 && (caller_unsignedp != callee_unsignedp
2644 || GET_MODE_BITSIZE (caller_mode)
2645 < GET_MODE_BITSIZE (callee_mode)))))
2646 try_tail_call = 0;
2649 /* Ensure current function's preferred stack boundary is at least
2650 what we need. Stack alignment may also increase preferred stack
2651 boundary. */
2652 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
2653 crtl->preferred_stack_boundary = preferred_stack_boundary;
2654 else
2655 preferred_stack_boundary = crtl->preferred_stack_boundary;
2657 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
2659 /* We want to make two insn chains; one for a sibling call, the other
2660 for a normal call. We will select one of the two chains after
2661 initial RTL generation is complete. */
2662 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
2664 int sibcall_failure = 0;
2665 /* We want to emit any pending stack adjustments before the tail
2666 recursion "call". That way we know any adjustment after the tail
2667 recursion call can be ignored if we indeed use the tail
2668 call expansion. */
2669 saved_pending_stack_adjust save;
2670 rtx_insn *insns, *before_call, *after_args;
2671 rtx next_arg_reg;
2673 if (pass == 0)
2675 /* State variables we need to save and restore between
2676 iterations. */
2677 save_pending_stack_adjust (&save);
2679 if (pass)
2680 flags &= ~ECF_SIBCALL;
2681 else
2682 flags |= ECF_SIBCALL;
2684 /* Other state variables that we must reinitialize each time
2685 through the loop (that are not initialized by the loop itself). */
2686 argblock = 0;
2687 call_fusage = 0;
2689 /* Start a new sequence for the normal call case.
2691 From this point on, if the sibling call fails, we want to set
2692 sibcall_failure instead of continuing the loop. */
2693 start_sequence ();
2695 /* Don't let pending stack adjusts add up to too much.
2696 Also, do all pending adjustments now if there is any chance
2697 this might be a call to alloca or if we are expanding a sibling
2698 call sequence.
2699 Also do the adjustments before a throwing call, otherwise
2700 exception handling can fail; PR 19225. */
2701 if (pending_stack_adjust >= 32
2702 || (pending_stack_adjust > 0
2703 && (flags & ECF_MAY_BE_ALLOCA))
2704 || (pending_stack_adjust > 0
2705 && flag_exceptions && !(flags & ECF_NOTHROW))
2706 || pass == 0)
2707 do_pending_stack_adjust ();
2709 /* Precompute any arguments as needed. */
2710 if (pass)
2711 precompute_arguments (num_actuals, args);
2713 /* Now we are about to start emitting insns that can be deleted
2714 if a libcall is deleted. */
2715 if (pass && (flags & ECF_MALLOC))
2716 start_sequence ();
2718 if (pass == 0 && crtl->stack_protect_guard)
2719 stack_protect_epilogue ();
2721 adjusted_args_size = args_size;
2722 /* Compute the actual size of the argument block required. The variable
2723 and constant sizes must be combined, the size may have to be rounded,
2724 and there may be a minimum required size. When generating a sibcall
2725 pattern, do not round up, since we'll be re-using whatever space our
2726 caller provided. */
2727 unadjusted_args_size
2728 = compute_argument_block_size (reg_parm_stack_space,
2729 &adjusted_args_size,
2730 fndecl, fntype,
2731 (pass == 0 ? 0
2732 : preferred_stack_boundary));
2734 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
2736 /* The argument block when performing a sibling call is the
2737 incoming argument block. */
2738 if (pass == 0)
2740 argblock = crtl->args.internal_arg_pointer;
2741 argblock
2742 #ifdef STACK_GROWS_DOWNWARD
2743 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
2744 #else
2745 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
2746 #endif
2747 stored_args_map = sbitmap_alloc (args_size.constant);
2748 bitmap_clear (stored_args_map);
2751 /* If we have no actual push instructions, or shouldn't use them,
2752 make space for all args right now. */
2753 else if (adjusted_args_size.var != 0)
2755 if (old_stack_level == 0)
2757 emit_stack_save (SAVE_BLOCK, &old_stack_level);
2758 old_stack_pointer_delta = stack_pointer_delta;
2759 old_pending_adj = pending_stack_adjust;
2760 pending_stack_adjust = 0;
2761 /* stack_arg_under_construction says whether a stack arg is
2762 being constructed at the old stack level. Pushing the stack
2763 gets a clean outgoing argument block. */
2764 old_stack_arg_under_construction = stack_arg_under_construction;
2765 stack_arg_under_construction = 0;
2767 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
2768 if (flag_stack_usage_info)
2769 current_function_has_unbounded_dynamic_stack_size = 1;
2771 else
2773 /* Note that we must go through the motions of allocating an argument
2774 block even if the size is zero because we may be storing args
2775 in the area reserved for register arguments, which may be part of
2776 the stack frame. */
2778 int needed = adjusted_args_size.constant;
2780 /* Store the maximum argument space used. It will be pushed by
2781 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
2782 checking). */
2784 if (needed > crtl->outgoing_args_size)
2785 crtl->outgoing_args_size = needed;
2787 if (must_preallocate)
2789 if (ACCUMULATE_OUTGOING_ARGS)
2791 /* Since the stack pointer will never be pushed, it is
2792 possible for the evaluation of a parm to clobber
2793 something we have already written to the stack.
2794 Since most function calls on RISC machines do not use
2795 the stack, this is uncommon, but must work correctly.
2797 Therefore, we save any area of the stack that was already
2798 written and that we are using. Here we set up to do this
2799 by making a new stack usage map from the old one. The
2800 actual save will be done by store_one_arg.
2802 Another approach might be to try to reorder the argument
2803 evaluations to avoid this conflicting stack usage. */
2805 /* Since we will be writing into the entire argument area,
2806 the map must be allocated for its entire size, not just
2807 the part that is the responsibility of the caller. */
2808 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
2809 needed += reg_parm_stack_space;
2811 #ifdef ARGS_GROW_DOWNWARD
2812 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2813 needed + 1);
2814 #else
2815 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2816 needed);
2817 #endif
2818 free (stack_usage_map_buf);
2819 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
2820 stack_usage_map = stack_usage_map_buf;
2822 if (initial_highest_arg_in_use)
2823 memcpy (stack_usage_map, initial_stack_usage_map,
2824 initial_highest_arg_in_use);
2826 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
2827 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
2828 (highest_outgoing_arg_in_use
2829 - initial_highest_arg_in_use));
2830 needed = 0;
2832 /* The address of the outgoing argument list must not be
2833 copied to a register here, because argblock would be left
2834 pointing to the wrong place after the call to
2835 allocate_dynamic_stack_space below. */
2837 argblock = virtual_outgoing_args_rtx;
2839 else
2841 if (inhibit_defer_pop == 0)
2843 /* Try to reuse some or all of the pending_stack_adjust
2844 to get this space. */
2845 needed
2846 = (combine_pending_stack_adjustment_and_call
2847 (unadjusted_args_size,
2848 &adjusted_args_size,
2849 preferred_unit_stack_boundary));
2851 /* combine_pending_stack_adjustment_and_call computes
2852 an adjustment before the arguments are allocated.
2853 Account for them and see whether or not the stack
2854 needs to go up or down. */
2855 needed = unadjusted_args_size - needed;
2857 if (needed < 0)
2859 /* We're releasing stack space. */
2860 /* ??? We can avoid any adjustment at all if we're
2861 already aligned. FIXME. */
2862 pending_stack_adjust = -needed;
2863 do_pending_stack_adjust ();
2864 needed = 0;
2866 else
2867 /* We need to allocate space. We'll do that in
2868 push_block below. */
2869 pending_stack_adjust = 0;
2872 /* Special case this because overhead of `push_block' in
2873 this case is non-trivial. */
2874 if (needed == 0)
2875 argblock = virtual_outgoing_args_rtx;
2876 else
2878 argblock = push_block (GEN_INT (needed), 0, 0);
2879 #ifdef ARGS_GROW_DOWNWARD
2880 argblock = plus_constant (Pmode, argblock, needed);
2881 #endif
2884 /* We only really need to call `copy_to_reg' in the case
2885 where push insns are going to be used to pass ARGBLOCK
2886 to a function call in ARGS. In that case, the stack
2887 pointer changes value from the allocation point to the
2888 call point, and hence the value of
2889 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
2890 as well always do it. */
2891 argblock = copy_to_reg (argblock);
2896 if (ACCUMULATE_OUTGOING_ARGS)
2898 /* The save/restore code in store_one_arg handles all
2899 cases except one: a constructor call (including a C
2900 function returning a BLKmode struct) to initialize
2901 an argument. */
2902 if (stack_arg_under_construction)
2904 rtx push_size
2905 = GEN_INT (adjusted_args_size.constant
2906 + (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype
2907 : TREE_TYPE (fndecl))) ? 0
2908 : reg_parm_stack_space));
2909 if (old_stack_level == 0)
2911 emit_stack_save (SAVE_BLOCK, &old_stack_level);
2912 old_stack_pointer_delta = stack_pointer_delta;
2913 old_pending_adj = pending_stack_adjust;
2914 pending_stack_adjust = 0;
2915 /* stack_arg_under_construction says whether a stack
2916 arg is being constructed at the old stack level.
2917 Pushing the stack gets a clean outgoing argument
2918 block. */
2919 old_stack_arg_under_construction
2920 = stack_arg_under_construction;
2921 stack_arg_under_construction = 0;
2922 /* Make a new map for the new argument list. */
2923 free (stack_usage_map_buf);
2924 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
2925 stack_usage_map = stack_usage_map_buf;
2926 highest_outgoing_arg_in_use = 0;
2928 /* We can pass TRUE as the 4th argument because we just
2929 saved the stack pointer and will restore it right after
2930 the call. */
2931 allocate_dynamic_stack_space (push_size, 0,
2932 BIGGEST_ALIGNMENT, true);
2935 /* If argument evaluation might modify the stack pointer,
2936 copy the address of the argument list to a register. */
2937 for (i = 0; i < num_actuals; i++)
2938 if (args[i].pass_on_stack)
2940 argblock = copy_addr_to_reg (argblock);
2941 break;
2945 compute_argument_addresses (args, argblock, num_actuals);
2947 /* Perform stack alignment before the first push (the last arg). */
2948 if (argblock == 0
2949 && adjusted_args_size.constant > reg_parm_stack_space
2950 && adjusted_args_size.constant != unadjusted_args_size)
2952 /* When the stack adjustment is pending, we get better code
2953 by combining the adjustments. */
2954 if (pending_stack_adjust
2955 && ! inhibit_defer_pop)
2957 pending_stack_adjust
2958 = (combine_pending_stack_adjustment_and_call
2959 (unadjusted_args_size,
2960 &adjusted_args_size,
2961 preferred_unit_stack_boundary));
2962 do_pending_stack_adjust ();
2964 else if (argblock == 0)
2965 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
2966 - unadjusted_args_size));
2968 /* Now that the stack is properly aligned, pops can't safely
2969 be deferred during the evaluation of the arguments. */
2970 NO_DEFER_POP;
2972 /* Record the maximum pushed stack space size. We need to delay
2973 doing it this far to take into account the optimization done
2974 by combine_pending_stack_adjustment_and_call. */
2975 if (flag_stack_usage_info
2976 && !ACCUMULATE_OUTGOING_ARGS
2977 && pass
2978 && adjusted_args_size.var == 0)
2980 int pushed = adjusted_args_size.constant + pending_stack_adjust;
2981 if (pushed > current_function_pushed_stack_size)
2982 current_function_pushed_stack_size = pushed;
2985 funexp = rtx_for_function_call (fndecl, addr);
2987 /* Figure out the register where the value, if any, will come back. */
2988 valreg = 0;
2989 if (TYPE_MODE (rettype) != VOIDmode
2990 && ! structure_value_addr)
2992 if (pcc_struct_value)
2993 valreg = hard_function_value (build_pointer_type (rettype),
2994 fndecl, NULL, (pass == 0));
2995 else
2996 valreg = hard_function_value (rettype, fndecl, fntype,
2997 (pass == 0));
2999 /* If VALREG is a PARALLEL whose first member has a zero
3000 offset, use that. This is for targets such as m68k that
3001 return the same value in multiple places. */
3002 if (GET_CODE (valreg) == PARALLEL)
3004 rtx elem = XVECEXP (valreg, 0, 0);
3005 rtx where = XEXP (elem, 0);
3006 rtx offset = XEXP (elem, 1);
3007 if (offset == const0_rtx
3008 && GET_MODE (where) == GET_MODE (valreg))
3009 valreg = where;
3013 /* Precompute all register parameters. It isn't safe to compute anything
3014 once we have started filling any specific hard regs. */
3015 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
3017 if (CALL_EXPR_STATIC_CHAIN (exp))
3018 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
3019 else
3020 static_chain_value = 0;
3022 #ifdef REG_PARM_STACK_SPACE
3023 /* Save the fixed argument area if it's part of the caller's frame and
3024 is clobbered by argument setup for this call. */
3025 if (ACCUMULATE_OUTGOING_ARGS && pass)
3026 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3027 &low_to_save, &high_to_save);
3028 #endif
3030 /* Now store (and compute if necessary) all non-register parms.
3031 These come before register parms, since they can require block-moves,
3032 which could clobber the registers used for register parms.
3033 Parms which have partial registers are not stored here,
3034 but we do preallocate space here if they want that. */
3036 for (i = 0; i < num_actuals; i++)
3038 if (args[i].reg == 0 || args[i].pass_on_stack)
3040 rtx_insn *before_arg = get_last_insn ();
3042 /* We don't allow passing huge (> 2^30 B) arguments
3043 by value. It would cause an overflow later on. */
3044 if (adjusted_args_size.constant
3045 >= (1 << (HOST_BITS_PER_INT - 2)))
3047 sorry ("passing too large argument on stack");
3048 continue;
3051 if (store_one_arg (&args[i], argblock, flags,
3052 adjusted_args_size.var != 0,
3053 reg_parm_stack_space)
3054 || (pass == 0
3055 && check_sibcall_argument_overlap (before_arg,
3056 &args[i], 1)))
3057 sibcall_failure = 1;
3060 if (args[i].stack)
3061 call_fusage
3062 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
3063 gen_rtx_USE (VOIDmode, args[i].stack),
3064 call_fusage);
3067 /* If we have a parm that is passed in registers but not in memory
3068 and whose alignment does not permit a direct copy into registers,
3069 make a group of pseudos that correspond to each register that we
3070 will later fill. */
3071 if (STRICT_ALIGNMENT)
3072 store_unaligned_arguments_into_pseudos (args, num_actuals);
3074 /* Now store any partially-in-registers parm.
3075 This is the last place a block-move can happen. */
3076 if (reg_parm_seen)
3077 for (i = 0; i < num_actuals; i++)
3078 if (args[i].partial != 0 && ! args[i].pass_on_stack)
3080 rtx_insn *before_arg = get_last_insn ();
3082 if (store_one_arg (&args[i], argblock, flags,
3083 adjusted_args_size.var != 0,
3084 reg_parm_stack_space)
3085 || (pass == 0
3086 && check_sibcall_argument_overlap (before_arg,
3087 &args[i], 1)))
3088 sibcall_failure = 1;
3091 /* If register arguments require space on the stack and stack space
3092 was not preallocated, allocate stack space here for arguments
3093 passed in registers. */
3094 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
3095 && !ACCUMULATE_OUTGOING_ARGS
3096 && must_preallocate == 0 && reg_parm_stack_space > 0)
3097 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
3099 /* Pass the function the address in which to return a
3100 structure value. */
3101 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3103 structure_value_addr
3104 = convert_memory_address (Pmode, structure_value_addr);
3105 emit_move_insn (struct_value,
3106 force_reg (Pmode,
3107 force_operand (structure_value_addr,
3108 NULL_RTX)));
3110 if (REG_P (struct_value))
3111 use_reg (&call_fusage, struct_value);
3114 after_args = get_last_insn ();
3115 funexp = prepare_call_address (fndecl, funexp, static_chain_value,
3116 &call_fusage, reg_parm_seen, pass == 0);
3118 load_register_parameters (args, num_actuals, &call_fusage, flags,
3119 pass == 0, &sibcall_failure);
3121 /* Save a pointer to the last insn before the call, so that we can
3122 later safely search backwards to find the CALL_INSN. */
3123 before_call = get_last_insn ();
3125 /* Set up next argument register. For sibling calls on machines
3126 with register windows this should be the incoming register. */
3127 if (pass == 0)
3128 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
3129 VOIDmode,
3130 void_type_node,
3131 true);
3132 else
3133 next_arg_reg = targetm.calls.function_arg (args_so_far,
3134 VOIDmode, void_type_node,
3135 true);
3137 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
3139 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
3140 arg_nr = num_actuals - arg_nr - 1;
3141 if (arg_nr >= 0
3142 && arg_nr < num_actuals
3143 && args[arg_nr].reg
3144 && valreg
3145 && REG_P (valreg)
3146 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
3147 call_fusage
3148 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
3149 gen_rtx_SET (VOIDmode, valreg, args[arg_nr].reg),
3150 call_fusage);
3152 /* All arguments and registers used for the call must be set up by
3153 now! */
3155 /* Stack must be properly aligned now. */
3156 gcc_assert (!pass
3157 || !(stack_pointer_delta % preferred_unit_stack_boundary));
3159 /* Generate the actual call instruction. */
3160 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
3161 adjusted_args_size.constant, struct_value_size,
3162 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
3163 flags, args_so_far);
3165 if (flag_use_caller_save)
3167 rtx_call_insn *last;
3168 rtx datum = NULL_RTX;
3169 if (fndecl != NULL_TREE)
3171 datum = XEXP (DECL_RTL (fndecl), 0);
3172 gcc_assert (datum != NULL_RTX
3173 && GET_CODE (datum) == SYMBOL_REF);
3175 last = last_call_insn ();
3176 add_reg_note (last, REG_CALL_DECL, datum);
3179 /* If the call setup or the call itself overlaps with anything
3180 of the argument setup we probably clobbered our call address.
3181 In that case we can't do sibcalls. */
3182 if (pass == 0
3183 && check_sibcall_argument_overlap (after_args, 0, 0))
3184 sibcall_failure = 1;
3186 /* If a non-BLKmode value is returned at the most significant end
3187 of a register, shift the register right by the appropriate amount
3188 and update VALREG accordingly. BLKmode values are handled by the
3189 group load/store machinery below. */
3190 if (!structure_value_addr
3191 && !pcc_struct_value
3192 && TYPE_MODE (rettype) != VOIDmode
3193 && TYPE_MODE (rettype) != BLKmode
3194 && REG_P (valreg)
3195 && targetm.calls.return_in_msb (rettype))
3197 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
3198 sibcall_failure = 1;
3199 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
3202 if (pass && (flags & ECF_MALLOC))
3204 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3205 rtx_insn *last, *insns;
3207 /* The return value from a malloc-like function is a pointer. */
3208 if (TREE_CODE (rettype) == POINTER_TYPE)
3209 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
3211 emit_move_insn (temp, valreg);
3213 /* The return value from a malloc-like function can not alias
3214 anything else. */
3215 last = get_last_insn ();
3216 add_reg_note (last, REG_NOALIAS, temp);
3218 /* Write out the sequence. */
3219 insns = get_insns ();
3220 end_sequence ();
3221 emit_insn (insns);
3222 valreg = temp;
3225 /* For calls to `setjmp', etc., inform
3226 function.c:setjmp_warnings that it should complain if
3227 nonvolatile values are live. For functions that cannot
3228 return, inform flow that control does not fall through. */
3230 if ((flags & ECF_NORETURN) || pass == 0)
3232 /* The barrier must be emitted
3233 immediately after the CALL_INSN. Some ports emit more
3234 than just a CALL_INSN above, so we must search for it here. */
3236 rtx_insn *last = get_last_insn ();
3237 while (!CALL_P (last))
3239 last = PREV_INSN (last);
3240 /* There was no CALL_INSN? */
3241 gcc_assert (last != before_call);
3244 emit_barrier_after (last);
3246 /* Stack adjustments after a noreturn call are dead code.
3247 However when NO_DEFER_POP is in effect, we must preserve
3248 stack_pointer_delta. */
3249 if (inhibit_defer_pop == 0)
3251 stack_pointer_delta = old_stack_allocated;
3252 pending_stack_adjust = 0;
3256 /* If value type not void, return an rtx for the value. */
3258 if (TYPE_MODE (rettype) == VOIDmode
3259 || ignore)
3260 target = const0_rtx;
3261 else if (structure_value_addr)
3263 if (target == 0 || !MEM_P (target))
3265 target
3266 = gen_rtx_MEM (TYPE_MODE (rettype),
3267 memory_address (TYPE_MODE (rettype),
3268 structure_value_addr));
3269 set_mem_attributes (target, rettype, 1);
3272 else if (pcc_struct_value)
3274 /* This is the special C++ case where we need to
3275 know what the true target was. We take care to
3276 never use this value more than once in one expression. */
3277 target = gen_rtx_MEM (TYPE_MODE (rettype),
3278 copy_to_reg (valreg));
3279 set_mem_attributes (target, rettype, 1);
3281 /* Handle calls that return values in multiple non-contiguous locations.
3282 The Irix 6 ABI has examples of this. */
3283 else if (GET_CODE (valreg) == PARALLEL)
3285 if (target == 0)
3286 target = emit_group_move_into_temps (valreg);
3287 else if (rtx_equal_p (target, valreg))
3289 else if (GET_CODE (target) == PARALLEL)
3290 /* Handle the result of a emit_group_move_into_temps
3291 call in the previous pass. */
3292 emit_group_move (target, valreg);
3293 else
3294 emit_group_store (target, valreg, rettype,
3295 int_size_in_bytes (rettype));
3297 else if (target
3298 && GET_MODE (target) == TYPE_MODE (rettype)
3299 && GET_MODE (target) == GET_MODE (valreg))
3301 bool may_overlap = false;
3303 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
3304 reg to a plain register. */
3305 if (!REG_P (target) || HARD_REGISTER_P (target))
3306 valreg = avoid_likely_spilled_reg (valreg);
3308 /* If TARGET is a MEM in the argument area, and we have
3309 saved part of the argument area, then we can't store
3310 directly into TARGET as it may get overwritten when we
3311 restore the argument save area below. Don't work too
3312 hard though and simply force TARGET to a register if it
3313 is a MEM; the optimizer is quite likely to sort it out. */
3314 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
3315 for (i = 0; i < num_actuals; i++)
3316 if (args[i].save_area)
3318 may_overlap = true;
3319 break;
3322 if (may_overlap)
3323 target = copy_to_reg (valreg);
3324 else
3326 /* TARGET and VALREG cannot be equal at this point
3327 because the latter would not have
3328 REG_FUNCTION_VALUE_P true, while the former would if
3329 it were referring to the same register.
3331 If they refer to the same register, this move will be
3332 a no-op, except when function inlining is being
3333 done. */
3334 emit_move_insn (target, valreg);
3336 /* If we are setting a MEM, this code must be executed.
3337 Since it is emitted after the call insn, sibcall
3338 optimization cannot be performed in that case. */
3339 if (MEM_P (target))
3340 sibcall_failure = 1;
3343 else
3344 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
3346 /* If we promoted this return value, make the proper SUBREG.
3347 TARGET might be const0_rtx here, so be careful. */
3348 if (REG_P (target)
3349 && TYPE_MODE (rettype) != BLKmode
3350 && GET_MODE (target) != TYPE_MODE (rettype))
3352 tree type = rettype;
3353 int unsignedp = TYPE_UNSIGNED (type);
3354 int offset = 0;
3355 enum machine_mode pmode;
3357 /* Ensure we promote as expected, and get the new unsignedness. */
3358 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
3359 funtype, 1);
3360 gcc_assert (GET_MODE (target) == pmode);
3362 if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
3363 && (GET_MODE_SIZE (GET_MODE (target))
3364 > GET_MODE_SIZE (TYPE_MODE (type))))
3366 offset = GET_MODE_SIZE (GET_MODE (target))
3367 - GET_MODE_SIZE (TYPE_MODE (type));
3368 if (! BYTES_BIG_ENDIAN)
3369 offset = (offset / UNITS_PER_WORD) * UNITS_PER_WORD;
3370 else if (! WORDS_BIG_ENDIAN)
3371 offset %= UNITS_PER_WORD;
3374 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
3375 SUBREG_PROMOTED_VAR_P (target) = 1;
3376 SUBREG_PROMOTED_SET (target, unsignedp);
3379 /* If size of args is variable or this was a constructor call for a stack
3380 argument, restore saved stack-pointer value. */
3382 if (old_stack_level)
3384 rtx_insn *prev = get_last_insn ();
3386 emit_stack_restore (SAVE_BLOCK, old_stack_level);
3387 stack_pointer_delta = old_stack_pointer_delta;
3389 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
3391 pending_stack_adjust = old_pending_adj;
3392 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3393 stack_arg_under_construction = old_stack_arg_under_construction;
3394 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3395 stack_usage_map = initial_stack_usage_map;
3396 sibcall_failure = 1;
3398 else if (ACCUMULATE_OUTGOING_ARGS && pass)
3400 #ifdef REG_PARM_STACK_SPACE
3401 if (save_area)
3402 restore_fixed_argument_area (save_area, argblock,
3403 high_to_save, low_to_save);
3404 #endif
3406 /* If we saved any argument areas, restore them. */
3407 for (i = 0; i < num_actuals; i++)
3408 if (args[i].save_area)
3410 enum machine_mode save_mode = GET_MODE (args[i].save_area);
3411 rtx stack_area
3412 = gen_rtx_MEM (save_mode,
3413 memory_address (save_mode,
3414 XEXP (args[i].stack_slot, 0)));
3416 if (save_mode != BLKmode)
3417 emit_move_insn (stack_area, args[i].save_area);
3418 else
3419 emit_block_move (stack_area, args[i].save_area,
3420 GEN_INT (args[i].locate.size.constant),
3421 BLOCK_OP_CALL_PARM);
3424 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3425 stack_usage_map = initial_stack_usage_map;
3428 /* If this was alloca, record the new stack level for nonlocal gotos.
3429 Check for the handler slots since we might not have a save area
3430 for non-local gotos. */
3432 if ((flags & ECF_MAY_BE_ALLOCA) && cfun->nonlocal_goto_save_area != 0)
3433 update_nonlocal_goto_save_area ();
3435 /* Free up storage we no longer need. */
3436 for (i = 0; i < num_actuals; ++i)
3437 free (args[i].aligned_regs);
3439 insns = get_insns ();
3440 end_sequence ();
3442 if (pass == 0)
3444 tail_call_insns = insns;
3446 /* Restore the pending stack adjustment now that we have
3447 finished generating the sibling call sequence. */
3449 restore_pending_stack_adjust (&save);
3451 /* Prepare arg structure for next iteration. */
3452 for (i = 0; i < num_actuals; i++)
3454 args[i].value = 0;
3455 args[i].aligned_regs = 0;
3456 args[i].stack = 0;
3459 sbitmap_free (stored_args_map);
3460 internal_arg_pointer_exp_state.scan_start = NULL;
3461 internal_arg_pointer_exp_state.cache.release ();
3463 else
3465 normal_call_insns = insns;
3467 /* Verify that we've deallocated all the stack we used. */
3468 gcc_assert ((flags & ECF_NORETURN)
3469 || (old_stack_allocated
3470 == stack_pointer_delta - pending_stack_adjust));
3473 /* If something prevents making this a sibling call,
3474 zero out the sequence. */
3475 if (sibcall_failure)
3476 tail_call_insns = NULL;
3477 else
3478 break;
3481 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
3482 arguments too, as argument area is now clobbered by the call. */
3483 if (tail_call_insns)
3485 emit_insn (tail_call_insns);
3486 crtl->tail_call_emit = true;
3488 else
3489 emit_insn (normal_call_insns);
3491 currently_expanding_call--;
3493 free (stack_usage_map_buf);
3495 return target;
3498 /* A sibling call sequence invalidates any REG_EQUIV notes made for
3499 this function's incoming arguments.
3501 At the start of RTL generation we know the only REG_EQUIV notes
3502 in the rtl chain are those for incoming arguments, so we can look
3503 for REG_EQUIV notes between the start of the function and the
3504 NOTE_INSN_FUNCTION_BEG.
3506 This is (slight) overkill. We could keep track of the highest
3507 argument we clobber and be more selective in removing notes, but it
3508 does not seem to be worth the effort. */
3510 void
3511 fixup_tail_calls (void)
3513 rtx_insn *insn;
3515 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3517 rtx note;
3519 /* There are never REG_EQUIV notes for the incoming arguments
3520 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
3521 if (NOTE_P (insn)
3522 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
3523 break;
3525 note = find_reg_note (insn, REG_EQUIV, 0);
3526 if (note)
3527 remove_note (insn, note);
3528 note = find_reg_note (insn, REG_EQUIV, 0);
3529 gcc_assert (!note);
3533 /* Traverse a list of TYPES and expand all complex types into their
3534 components. */
3535 static tree
3536 split_complex_types (tree types)
3538 tree p;
3540 /* Before allocating memory, check for the common case of no complex. */
3541 for (p = types; p; p = TREE_CHAIN (p))
3543 tree type = TREE_VALUE (p);
3544 if (TREE_CODE (type) == COMPLEX_TYPE
3545 && targetm.calls.split_complex_arg (type))
3546 goto found;
3548 return types;
3550 found:
3551 types = copy_list (types);
3553 for (p = types; p; p = TREE_CHAIN (p))
3555 tree complex_type = TREE_VALUE (p);
3557 if (TREE_CODE (complex_type) == COMPLEX_TYPE
3558 && targetm.calls.split_complex_arg (complex_type))
3560 tree next, imag;
3562 /* Rewrite complex type with component type. */
3563 TREE_VALUE (p) = TREE_TYPE (complex_type);
3564 next = TREE_CHAIN (p);
3566 /* Add another component type for the imaginary part. */
3567 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
3568 TREE_CHAIN (p) = imag;
3569 TREE_CHAIN (imag) = next;
3571 /* Skip the newly created node. */
3572 p = TREE_CHAIN (p);
3576 return types;
3579 /* Output a library call to function FUN (a SYMBOL_REF rtx).
3580 The RETVAL parameter specifies whether return value needs to be saved, other
3581 parameters are documented in the emit_library_call function below. */
3583 static rtx
3584 emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
3585 enum libcall_type fn_type,
3586 enum machine_mode outmode, int nargs, va_list p)
3588 /* Total size in bytes of all the stack-parms scanned so far. */
3589 struct args_size args_size;
3590 /* Size of arguments before any adjustments (such as rounding). */
3591 struct args_size original_args_size;
3592 int argnum;
3593 rtx fun;
3594 /* Todo, choose the correct decl type of orgfun. Sadly this information
3595 isn't present here, so we default to native calling abi here. */
3596 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3597 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3598 int count;
3599 rtx argblock = 0;
3600 CUMULATIVE_ARGS args_so_far_v;
3601 cumulative_args_t args_so_far;
3602 struct arg
3604 rtx value;
3605 enum machine_mode mode;
3606 rtx reg;
3607 int partial;
3608 struct locate_and_pad_arg_data locate;
3609 rtx save_area;
3611 struct arg *argvec;
3612 int old_inhibit_defer_pop = inhibit_defer_pop;
3613 rtx call_fusage = 0;
3614 rtx mem_value = 0;
3615 rtx valreg;
3616 int pcc_struct_value = 0;
3617 int struct_value_size = 0;
3618 int flags;
3619 int reg_parm_stack_space = 0;
3620 int needed;
3621 rtx_insn *before_call;
3622 tree tfom; /* type_for_mode (outmode, 0) */
3624 #ifdef REG_PARM_STACK_SPACE
3625 /* Define the boundary of the register parm stack space that needs to be
3626 save, if any. */
3627 int low_to_save = 0, high_to_save = 0;
3628 rtx save_area = 0; /* Place that it is saved. */
3629 #endif
3631 /* Size of the stack reserved for parameter registers. */
3632 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3633 char *initial_stack_usage_map = stack_usage_map;
3634 char *stack_usage_map_buf = NULL;
3636 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
3638 #ifdef REG_PARM_STACK_SPACE
3639 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3640 #endif
3642 /* By default, library functions can not throw. */
3643 flags = ECF_NOTHROW;
3645 switch (fn_type)
3647 case LCT_NORMAL:
3648 break;
3649 case LCT_CONST:
3650 flags |= ECF_CONST;
3651 break;
3652 case LCT_PURE:
3653 flags |= ECF_PURE;
3654 break;
3655 case LCT_NORETURN:
3656 flags |= ECF_NORETURN;
3657 break;
3658 case LCT_THROW:
3659 flags = ECF_NORETURN;
3660 break;
3661 case LCT_RETURNS_TWICE:
3662 flags = ECF_RETURNS_TWICE;
3663 break;
3665 fun = orgfun;
3667 /* Ensure current function's preferred stack boundary is at least
3668 what we need. */
3669 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
3670 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3672 /* If this kind of value comes back in memory,
3673 decide where in memory it should come back. */
3674 if (outmode != VOIDmode)
3676 tfom = lang_hooks.types.type_for_mode (outmode, 0);
3677 if (aggregate_value_p (tfom, 0))
3679 #ifdef PCC_STATIC_STRUCT_RETURN
3680 rtx pointer_reg
3681 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
3682 mem_value = gen_rtx_MEM (outmode, pointer_reg);
3683 pcc_struct_value = 1;
3684 if (value == 0)
3685 value = gen_reg_rtx (outmode);
3686 #else /* not PCC_STATIC_STRUCT_RETURN */
3687 struct_value_size = GET_MODE_SIZE (outmode);
3688 if (value != 0 && MEM_P (value))
3689 mem_value = value;
3690 else
3691 mem_value = assign_temp (tfom, 1, 1);
3692 #endif
3693 /* This call returns a big structure. */
3694 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
3697 else
3698 tfom = void_type_node;
3700 /* ??? Unfinished: must pass the memory address as an argument. */
3702 /* Copy all the libcall-arguments out of the varargs data
3703 and into a vector ARGVEC.
3705 Compute how to pass each argument. We only support a very small subset
3706 of the full argument passing conventions to limit complexity here since
3707 library functions shouldn't have many args. */
3709 argvec = XALLOCAVEC (struct arg, nargs + 1);
3710 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
3712 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
3713 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
3714 #else
3715 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
3716 #endif
3717 args_so_far = pack_cumulative_args (&args_so_far_v);
3719 args_size.constant = 0;
3720 args_size.var = 0;
3722 count = 0;
3724 push_temp_slots ();
3726 /* If there's a structure value address to be passed,
3727 either pass it in the special place, or pass it as an extra argument. */
3728 if (mem_value && struct_value == 0 && ! pcc_struct_value)
3730 rtx addr = XEXP (mem_value, 0);
3732 nargs++;
3734 /* Make sure it is a reasonable operand for a move or push insn. */
3735 if (!REG_P (addr) && !MEM_P (addr)
3736 && !(CONSTANT_P (addr)
3737 && targetm.legitimate_constant_p (Pmode, addr)))
3738 addr = force_operand (addr, NULL_RTX);
3740 argvec[count].value = addr;
3741 argvec[count].mode = Pmode;
3742 argvec[count].partial = 0;
3744 argvec[count].reg = targetm.calls.function_arg (args_so_far,
3745 Pmode, NULL_TREE, true);
3746 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
3747 NULL_TREE, 1) == 0);
3749 locate_and_pad_parm (Pmode, NULL_TREE,
3750 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3752 #else
3753 argvec[count].reg != 0,
3754 #endif
3755 reg_parm_stack_space, 0,
3756 NULL_TREE, &args_size, &argvec[count].locate);
3758 if (argvec[count].reg == 0 || argvec[count].partial != 0
3759 || reg_parm_stack_space > 0)
3760 args_size.constant += argvec[count].locate.size.constant;
3762 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
3764 count++;
3767 for (; count < nargs; count++)
3769 rtx val = va_arg (p, rtx);
3770 enum machine_mode mode = (enum machine_mode) va_arg (p, int);
3771 int unsigned_p = 0;
3773 /* We cannot convert the arg value to the mode the library wants here;
3774 must do it earlier where we know the signedness of the arg. */
3775 gcc_assert (mode != BLKmode
3776 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
3778 /* Make sure it is a reasonable operand for a move or push insn. */
3779 if (!REG_P (val) && !MEM_P (val)
3780 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
3781 val = force_operand (val, NULL_RTX);
3783 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
3785 rtx slot;
3786 int must_copy
3787 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
3789 /* If this was a CONST function, it is now PURE since it now
3790 reads memory. */
3791 if (flags & ECF_CONST)
3793 flags &= ~ECF_CONST;
3794 flags |= ECF_PURE;
3797 if (MEM_P (val) && !must_copy)
3799 tree val_expr = MEM_EXPR (val);
3800 if (val_expr)
3801 mark_addressable (val_expr);
3802 slot = val;
3804 else
3806 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
3807 1, 1);
3808 emit_move_insn (slot, val);
3811 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3812 gen_rtx_USE (VOIDmode, slot),
3813 call_fusage);
3814 if (must_copy)
3815 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3816 gen_rtx_CLOBBER (VOIDmode,
3817 slot),
3818 call_fusage);
3820 mode = Pmode;
3821 val = force_operand (XEXP (slot, 0), NULL_RTX);
3824 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
3825 argvec[count].mode = mode;
3826 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
3827 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
3828 NULL_TREE, true);
3830 argvec[count].partial
3831 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
3833 if (argvec[count].reg == 0
3834 || argvec[count].partial != 0
3835 || reg_parm_stack_space > 0)
3837 locate_and_pad_parm (mode, NULL_TREE,
3838 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3840 #else
3841 argvec[count].reg != 0,
3842 #endif
3843 reg_parm_stack_space, argvec[count].partial,
3844 NULL_TREE, &args_size, &argvec[count].locate);
3845 args_size.constant += argvec[count].locate.size.constant;
3846 gcc_assert (!argvec[count].locate.size.var);
3848 #ifdef BLOCK_REG_PADDING
3849 else
3850 /* The argument is passed entirely in registers. See at which
3851 end it should be padded. */
3852 argvec[count].locate.where_pad =
3853 BLOCK_REG_PADDING (mode, NULL_TREE,
3854 GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
3855 #endif
3857 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
3860 /* If this machine requires an external definition for library
3861 functions, write one out. */
3862 assemble_external_libcall (fun);
3864 original_args_size = args_size;
3865 args_size.constant = (((args_size.constant
3866 + stack_pointer_delta
3867 + STACK_BYTES - 1)
3868 / STACK_BYTES
3869 * STACK_BYTES)
3870 - stack_pointer_delta);
3872 args_size.constant = MAX (args_size.constant,
3873 reg_parm_stack_space);
3875 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3876 args_size.constant -= reg_parm_stack_space;
3878 if (args_size.constant > crtl->outgoing_args_size)
3879 crtl->outgoing_args_size = args_size.constant;
3881 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
3883 int pushed = args_size.constant + pending_stack_adjust;
3884 if (pushed > current_function_pushed_stack_size)
3885 current_function_pushed_stack_size = pushed;
3888 if (ACCUMULATE_OUTGOING_ARGS)
3890 /* Since the stack pointer will never be pushed, it is possible for
3891 the evaluation of a parm to clobber something we have already
3892 written to the stack. Since most function calls on RISC machines
3893 do not use the stack, this is uncommon, but must work correctly.
3895 Therefore, we save any area of the stack that was already written
3896 and that we are using. Here we set up to do this by making a new
3897 stack usage map from the old one.
3899 Another approach might be to try to reorder the argument
3900 evaluations to avoid this conflicting stack usage. */
3902 needed = args_size.constant;
3904 /* Since we will be writing into the entire argument area, the
3905 map must be allocated for its entire size, not just the part that
3906 is the responsibility of the caller. */
3907 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3908 needed += reg_parm_stack_space;
3910 #ifdef ARGS_GROW_DOWNWARD
3911 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3912 needed + 1);
3913 #else
3914 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3915 needed);
3916 #endif
3917 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
3918 stack_usage_map = stack_usage_map_buf;
3920 if (initial_highest_arg_in_use)
3921 memcpy (stack_usage_map, initial_stack_usage_map,
3922 initial_highest_arg_in_use);
3924 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3925 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3926 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
3927 needed = 0;
3929 /* We must be careful to use virtual regs before they're instantiated,
3930 and real regs afterwards. Loop optimization, for example, can create
3931 new libcalls after we've instantiated the virtual regs, and if we
3932 use virtuals anyway, they won't match the rtl patterns. */
3934 if (virtuals_instantiated)
3935 argblock = plus_constant (Pmode, stack_pointer_rtx,
3936 STACK_POINTER_OFFSET);
3937 else
3938 argblock = virtual_outgoing_args_rtx;
3940 else
3942 if (!PUSH_ARGS)
3943 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
3946 /* We push args individually in reverse order, perform stack alignment
3947 before the first push (the last arg). */
3948 if (argblock == 0)
3949 anti_adjust_stack (GEN_INT (args_size.constant
3950 - original_args_size.constant));
3952 argnum = nargs - 1;
3954 #ifdef REG_PARM_STACK_SPACE
3955 if (ACCUMULATE_OUTGOING_ARGS)
3957 /* The argument list is the property of the called routine and it
3958 may clobber it. If the fixed area has been used for previous
3959 parameters, we must save and restore it. */
3960 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3961 &low_to_save, &high_to_save);
3963 #endif
3965 /* Push the args that need to be pushed. */
3967 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
3968 are to be pushed. */
3969 for (count = 0; count < nargs; count++, argnum--)
3971 enum machine_mode mode = argvec[argnum].mode;
3972 rtx val = argvec[argnum].value;
3973 rtx reg = argvec[argnum].reg;
3974 int partial = argvec[argnum].partial;
3975 unsigned int parm_align = argvec[argnum].locate.boundary;
3976 int lower_bound = 0, upper_bound = 0, i;
3978 if (! (reg != 0 && partial == 0))
3980 rtx use;
3982 if (ACCUMULATE_OUTGOING_ARGS)
3984 /* If this is being stored into a pre-allocated, fixed-size,
3985 stack area, save any previous data at that location. */
3987 #ifdef ARGS_GROW_DOWNWARD
3988 /* stack_slot is negative, but we want to index stack_usage_map
3989 with positive values. */
3990 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
3991 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
3992 #else
3993 lower_bound = argvec[argnum].locate.slot_offset.constant;
3994 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
3995 #endif
3997 i = lower_bound;
3998 /* Don't worry about things in the fixed argument area;
3999 it has already been saved. */
4000 if (i < reg_parm_stack_space)
4001 i = reg_parm_stack_space;
4002 while (i < upper_bound && stack_usage_map[i] == 0)
4003 i++;
4005 if (i < upper_bound)
4007 /* We need to make a save area. */
4008 unsigned int size
4009 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
4010 enum machine_mode save_mode
4011 = mode_for_size (size, MODE_INT, 1);
4012 rtx adr
4013 = plus_constant (Pmode, argblock,
4014 argvec[argnum].locate.offset.constant);
4015 rtx stack_area
4016 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
4018 if (save_mode == BLKmode)
4020 argvec[argnum].save_area
4021 = assign_stack_temp (BLKmode,
4022 argvec[argnum].locate.size.constant
4025 emit_block_move (validize_mem
4026 (copy_rtx (argvec[argnum].save_area)),
4027 stack_area,
4028 GEN_INT (argvec[argnum].locate.size.constant),
4029 BLOCK_OP_CALL_PARM);
4031 else
4033 argvec[argnum].save_area = gen_reg_rtx (save_mode);
4035 emit_move_insn (argvec[argnum].save_area, stack_area);
4040 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
4041 partial, reg, 0, argblock,
4042 GEN_INT (argvec[argnum].locate.offset.constant),
4043 reg_parm_stack_space,
4044 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad));
4046 /* Now mark the segment we just used. */
4047 if (ACCUMULATE_OUTGOING_ARGS)
4048 for (i = lower_bound; i < upper_bound; i++)
4049 stack_usage_map[i] = 1;
4051 NO_DEFER_POP;
4053 /* Indicate argument access so that alias.c knows that these
4054 values are live. */
4055 if (argblock)
4056 use = plus_constant (Pmode, argblock,
4057 argvec[argnum].locate.offset.constant);
4058 else
4059 /* When arguments are pushed, trying to tell alias.c where
4060 exactly this argument is won't work, because the
4061 auto-increment causes confusion. So we merely indicate
4062 that we access something with a known mode somewhere on
4063 the stack. */
4064 use = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
4065 gen_rtx_SCRATCH (Pmode));
4066 use = gen_rtx_MEM (argvec[argnum].mode, use);
4067 use = gen_rtx_USE (VOIDmode, use);
4068 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
4072 argnum = nargs - 1;
4074 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
4076 /* Now load any reg parms into their regs. */
4078 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4079 are to be pushed. */
4080 for (count = 0; count < nargs; count++, argnum--)
4082 enum machine_mode mode = argvec[argnum].mode;
4083 rtx val = argvec[argnum].value;
4084 rtx reg = argvec[argnum].reg;
4085 int partial = argvec[argnum].partial;
4086 #ifdef BLOCK_REG_PADDING
4087 int size = 0;
4088 #endif
4090 /* Handle calls that pass values in multiple non-contiguous
4091 locations. The PA64 has examples of this for library calls. */
4092 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4093 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
4094 else if (reg != 0 && partial == 0)
4096 emit_move_insn (reg, val);
4097 #ifdef BLOCK_REG_PADDING
4098 size = GET_MODE_SIZE (argvec[argnum].mode);
4100 /* Copied from load_register_parameters. */
4102 /* Handle case where we have a value that needs shifting
4103 up to the msb. eg. a QImode value and we're padding
4104 upward on a BYTES_BIG_ENDIAN machine. */
4105 if (size < UNITS_PER_WORD
4106 && (argvec[argnum].locate.where_pad
4107 == (BYTES_BIG_ENDIAN ? upward : downward)))
4109 rtx x;
4110 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
4112 /* Assigning REG here rather than a temp makes CALL_FUSAGE
4113 report the whole reg as used. Strictly speaking, the
4114 call only uses SIZE bytes at the msb end, but it doesn't
4115 seem worth generating rtl to say that. */
4116 reg = gen_rtx_REG (word_mode, REGNO (reg));
4117 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
4118 if (x != reg)
4119 emit_move_insn (reg, x);
4121 #endif
4124 NO_DEFER_POP;
4127 /* Any regs containing parms remain in use through the call. */
4128 for (count = 0; count < nargs; count++)
4130 rtx reg = argvec[count].reg;
4131 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4132 use_group_regs (&call_fusage, reg);
4133 else if (reg != 0)
4135 int partial = argvec[count].partial;
4136 if (partial)
4138 int nregs;
4139 gcc_assert (partial % UNITS_PER_WORD == 0);
4140 nregs = partial / UNITS_PER_WORD;
4141 use_regs (&call_fusage, REGNO (reg), nregs);
4143 else
4144 use_reg (&call_fusage, reg);
4148 /* Pass the function the address in which to return a structure value. */
4149 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
4151 emit_move_insn (struct_value,
4152 force_reg (Pmode,
4153 force_operand (XEXP (mem_value, 0),
4154 NULL_RTX)));
4155 if (REG_P (struct_value))
4156 use_reg (&call_fusage, struct_value);
4159 /* Don't allow popping to be deferred, since then
4160 cse'ing of library calls could delete a call and leave the pop. */
4161 NO_DEFER_POP;
4162 valreg = (mem_value == 0 && outmode != VOIDmode
4163 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
4165 /* Stack must be properly aligned now. */
4166 gcc_assert (!(stack_pointer_delta
4167 & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)));
4169 before_call = get_last_insn ();
4171 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4172 will set inhibit_defer_pop to that value. */
4173 /* The return type is needed to decide how many bytes the function pops.
4174 Signedness plays no role in that, so for simplicity, we pretend it's
4175 always signed. We also assume that the list of arguments passed has
4176 no impact, so we pretend it is unknown. */
4178 emit_call_1 (fun, NULL,
4179 get_identifier (XSTR (orgfun, 0)),
4180 build_function_type (tfom, NULL_TREE),
4181 original_args_size.constant, args_size.constant,
4182 struct_value_size,
4183 targetm.calls.function_arg (args_so_far,
4184 VOIDmode, void_type_node, true),
4185 valreg,
4186 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
4188 if (flag_use_caller_save)
4190 rtx last, datum = orgfun;
4191 gcc_assert (GET_CODE (datum) == SYMBOL_REF);
4192 last = last_call_insn ();
4193 add_reg_note (last, REG_CALL_DECL, datum);
4196 /* Right-shift returned value if necessary. */
4197 if (!pcc_struct_value
4198 && TYPE_MODE (tfom) != BLKmode
4199 && targetm.calls.return_in_msb (tfom))
4201 shift_return_value (TYPE_MODE (tfom), false, valreg);
4202 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
4205 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
4206 that it should complain if nonvolatile values are live. For
4207 functions that cannot return, inform flow that control does not
4208 fall through. */
4209 if (flags & ECF_NORETURN)
4211 /* The barrier note must be emitted
4212 immediately after the CALL_INSN. Some ports emit more than
4213 just a CALL_INSN above, so we must search for it here. */
4214 rtx_insn *last = get_last_insn ();
4215 while (!CALL_P (last))
4217 last = PREV_INSN (last);
4218 /* There was no CALL_INSN? */
4219 gcc_assert (last != before_call);
4222 emit_barrier_after (last);
4225 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
4226 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
4227 if (flags & ECF_NOTHROW)
4229 rtx_insn *last = get_last_insn ();
4230 while (!CALL_P (last))
4232 last = PREV_INSN (last);
4233 /* There was no CALL_INSN? */
4234 gcc_assert (last != before_call);
4237 make_reg_eh_region_note_nothrow_nononlocal (last);
4240 /* Now restore inhibit_defer_pop to its actual original value. */
4241 OK_DEFER_POP;
4243 pop_temp_slots ();
4245 /* Copy the value to the right place. */
4246 if (outmode != VOIDmode && retval)
4248 if (mem_value)
4250 if (value == 0)
4251 value = mem_value;
4252 if (value != mem_value)
4253 emit_move_insn (value, mem_value);
4255 else if (GET_CODE (valreg) == PARALLEL)
4257 if (value == 0)
4258 value = gen_reg_rtx (outmode);
4259 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
4261 else
4263 /* Convert to the proper mode if a promotion has been active. */
4264 if (GET_MODE (valreg) != outmode)
4266 int unsignedp = TYPE_UNSIGNED (tfom);
4268 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
4269 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
4270 == GET_MODE (valreg));
4271 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
4274 if (value != 0)
4275 emit_move_insn (value, valreg);
4276 else
4277 value = valreg;
4281 if (ACCUMULATE_OUTGOING_ARGS)
4283 #ifdef REG_PARM_STACK_SPACE
4284 if (save_area)
4285 restore_fixed_argument_area (save_area, argblock,
4286 high_to_save, low_to_save);
4287 #endif
4289 /* If we saved any argument areas, restore them. */
4290 for (count = 0; count < nargs; count++)
4291 if (argvec[count].save_area)
4293 enum machine_mode save_mode = GET_MODE (argvec[count].save_area);
4294 rtx adr = plus_constant (Pmode, argblock,
4295 argvec[count].locate.offset.constant);
4296 rtx stack_area = gen_rtx_MEM (save_mode,
4297 memory_address (save_mode, adr));
4299 if (save_mode == BLKmode)
4300 emit_block_move (stack_area,
4301 validize_mem
4302 (copy_rtx (argvec[count].save_area)),
4303 GEN_INT (argvec[count].locate.size.constant),
4304 BLOCK_OP_CALL_PARM);
4305 else
4306 emit_move_insn (stack_area, argvec[count].save_area);
4309 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4310 stack_usage_map = initial_stack_usage_map;
4313 free (stack_usage_map_buf);
4315 return value;
4319 /* Output a library call to function FUN (a SYMBOL_REF rtx)
4320 (emitting the queue unless NO_QUEUE is nonzero),
4321 for a value of mode OUTMODE,
4322 with NARGS different arguments, passed as alternating rtx values
4323 and machine_modes to convert them to.
4325 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4326 `const' calls, LCT_PURE for `pure' calls, or other LCT_ value for
4327 other types of library calls. */
4329 void
4330 emit_library_call (rtx orgfun, enum libcall_type fn_type,
4331 enum machine_mode outmode, int nargs, ...)
4333 va_list p;
4335 va_start (p, nargs);
4336 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4337 va_end (p);
4340 /* Like emit_library_call except that an extra argument, VALUE,
4341 comes second and says where to store the result.
4342 (If VALUE is zero, this function chooses a convenient way
4343 to return the value.
4345 This function returns an rtx for where the value is to be found.
4346 If VALUE is nonzero, VALUE is returned. */
4349 emit_library_call_value (rtx orgfun, rtx value,
4350 enum libcall_type fn_type,
4351 enum machine_mode outmode, int nargs, ...)
4353 rtx result;
4354 va_list p;
4356 va_start (p, nargs);
4357 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4358 nargs, p);
4359 va_end (p);
4361 return result;
4364 /* Store a single argument for a function call
4365 into the register or memory area where it must be passed.
4366 *ARG describes the argument value and where to pass it.
4368 ARGBLOCK is the address of the stack-block for all the arguments,
4369 or 0 on a machine where arguments are pushed individually.
4371 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
4372 so must be careful about how the stack is used.
4374 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4375 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4376 that we need not worry about saving and restoring the stack.
4378 FNDECL is the declaration of the function we are calling.
4380 Return nonzero if this arg should cause sibcall failure,
4381 zero otherwise. */
4383 static int
4384 store_one_arg (struct arg_data *arg, rtx argblock, int flags,
4385 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
4387 tree pval = arg->tree_value;
4388 rtx reg = 0;
4389 int partial = 0;
4390 int used = 0;
4391 int i, lower_bound = 0, upper_bound = 0;
4392 int sibcall_failure = 0;
4394 if (TREE_CODE (pval) == ERROR_MARK)
4395 return 1;
4397 /* Push a new temporary level for any temporaries we make for
4398 this argument. */
4399 push_temp_slots ();
4401 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
4403 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4404 save any previous data at that location. */
4405 if (argblock && ! variable_size && arg->stack)
4407 #ifdef ARGS_GROW_DOWNWARD
4408 /* stack_slot is negative, but we want to index stack_usage_map
4409 with positive values. */
4410 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4411 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4412 else
4413 upper_bound = 0;
4415 lower_bound = upper_bound - arg->locate.size.constant;
4416 #else
4417 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4418 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4419 else
4420 lower_bound = 0;
4422 upper_bound = lower_bound + arg->locate.size.constant;
4423 #endif
4425 i = lower_bound;
4426 /* Don't worry about things in the fixed argument area;
4427 it has already been saved. */
4428 if (i < reg_parm_stack_space)
4429 i = reg_parm_stack_space;
4430 while (i < upper_bound && stack_usage_map[i] == 0)
4431 i++;
4433 if (i < upper_bound)
4435 /* We need to make a save area. */
4436 unsigned int size = arg->locate.size.constant * BITS_PER_UNIT;
4437 enum machine_mode save_mode = mode_for_size (size, MODE_INT, 1);
4438 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
4439 rtx stack_area = gen_rtx_MEM (save_mode, adr);
4441 if (save_mode == BLKmode)
4443 arg->save_area
4444 = assign_temp (TREE_TYPE (arg->tree_value), 1, 1);
4445 preserve_temp_slots (arg->save_area);
4446 emit_block_move (validize_mem (copy_rtx (arg->save_area)),
4447 stack_area,
4448 GEN_INT (arg->locate.size.constant),
4449 BLOCK_OP_CALL_PARM);
4451 else
4453 arg->save_area = gen_reg_rtx (save_mode);
4454 emit_move_insn (arg->save_area, stack_area);
4460 /* If this isn't going to be placed on both the stack and in registers,
4461 set up the register and number of words. */
4462 if (! arg->pass_on_stack)
4464 if (flags & ECF_SIBCALL)
4465 reg = arg->tail_call_reg;
4466 else
4467 reg = arg->reg;
4468 partial = arg->partial;
4471 /* Being passed entirely in a register. We shouldn't be called in
4472 this case. */
4473 gcc_assert (reg == 0 || partial != 0);
4475 /* If this arg needs special alignment, don't load the registers
4476 here. */
4477 if (arg->n_aligned_regs != 0)
4478 reg = 0;
4480 /* If this is being passed partially in a register, we can't evaluate
4481 it directly into its stack slot. Otherwise, we can. */
4482 if (arg->value == 0)
4484 /* stack_arg_under_construction is nonzero if a function argument is
4485 being evaluated directly into the outgoing argument list and
4486 expand_call must take special action to preserve the argument list
4487 if it is called recursively.
4489 For scalar function arguments stack_usage_map is sufficient to
4490 determine which stack slots must be saved and restored. Scalar
4491 arguments in general have pass_on_stack == 0.
4493 If this argument is initialized by a function which takes the
4494 address of the argument (a C++ constructor or a C function
4495 returning a BLKmode structure), then stack_usage_map is
4496 insufficient and expand_call must push the stack around the
4497 function call. Such arguments have pass_on_stack == 1.
4499 Note that it is always safe to set stack_arg_under_construction,
4500 but this generates suboptimal code if set when not needed. */
4502 if (arg->pass_on_stack)
4503 stack_arg_under_construction++;
4505 arg->value = expand_expr (pval,
4506 (partial
4507 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4508 ? NULL_RTX : arg->stack,
4509 VOIDmode, EXPAND_STACK_PARM);
4511 /* If we are promoting object (or for any other reason) the mode
4512 doesn't agree, convert the mode. */
4514 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4515 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4516 arg->value, arg->unsignedp);
4518 if (arg->pass_on_stack)
4519 stack_arg_under_construction--;
4522 /* Check for overlap with already clobbered argument area. */
4523 if ((flags & ECF_SIBCALL)
4524 && MEM_P (arg->value)
4525 && mem_overlaps_already_clobbered_arg_p (XEXP (arg->value, 0),
4526 arg->locate.size.constant))
4527 sibcall_failure = 1;
4529 /* Don't allow anything left on stack from computation
4530 of argument to alloca. */
4531 if (flags & ECF_MAY_BE_ALLOCA)
4532 do_pending_stack_adjust ();
4534 if (arg->value == arg->stack)
4535 /* If the value is already in the stack slot, we are done. */
4537 else if (arg->mode != BLKmode)
4539 int size;
4540 unsigned int parm_align;
4542 /* Argument is a scalar, not entirely passed in registers.
4543 (If part is passed in registers, arg->partial says how much
4544 and emit_push_insn will take care of putting it there.)
4546 Push it, and if its size is less than the
4547 amount of space allocated to it,
4548 also bump stack pointer by the additional space.
4549 Note that in C the default argument promotions
4550 will prevent such mismatches. */
4552 size = GET_MODE_SIZE (arg->mode);
4553 /* Compute how much space the push instruction will push.
4554 On many machines, pushing a byte will advance the stack
4555 pointer by a halfword. */
4556 #ifdef PUSH_ROUNDING
4557 size = PUSH_ROUNDING (size);
4558 #endif
4559 used = size;
4561 /* Compute how much space the argument should get:
4562 round up to a multiple of the alignment for arguments. */
4563 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
4564 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
4565 / (PARM_BOUNDARY / BITS_PER_UNIT))
4566 * (PARM_BOUNDARY / BITS_PER_UNIT));
4568 /* Compute the alignment of the pushed argument. */
4569 parm_align = arg->locate.boundary;
4570 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4572 int pad = used - size;
4573 if (pad)
4575 unsigned int pad_align = (pad & -pad) * BITS_PER_UNIT;
4576 parm_align = MIN (parm_align, pad_align);
4580 /* This isn't already where we want it on the stack, so put it there.
4581 This can either be done with push or copy insns. */
4582 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
4583 parm_align, partial, reg, used - size, argblock,
4584 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4585 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4587 /* Unless this is a partially-in-register argument, the argument is now
4588 in the stack. */
4589 if (partial == 0)
4590 arg->value = arg->stack;
4592 else
4594 /* BLKmode, at least partly to be pushed. */
4596 unsigned int parm_align;
4597 int excess;
4598 rtx size_rtx;
4600 /* Pushing a nonscalar.
4601 If part is passed in registers, PARTIAL says how much
4602 and emit_push_insn will take care of putting it there. */
4604 /* Round its size up to a multiple
4605 of the allocation unit for arguments. */
4607 if (arg->locate.size.var != 0)
4609 excess = 0;
4610 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
4612 else
4614 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
4615 for BLKmode is careful to avoid it. */
4616 excess = (arg->locate.size.constant
4617 - int_size_in_bytes (TREE_TYPE (pval))
4618 + partial);
4619 size_rtx = expand_expr (size_in_bytes (TREE_TYPE (pval)),
4620 NULL_RTX, TYPE_MODE (sizetype),
4621 EXPAND_NORMAL);
4624 parm_align = arg->locate.boundary;
4626 /* When an argument is padded down, the block is aligned to
4627 PARM_BOUNDARY, but the actual argument isn't. */
4628 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4630 if (arg->locate.size.var)
4631 parm_align = BITS_PER_UNIT;
4632 else if (excess)
4634 unsigned int excess_align = (excess & -excess) * BITS_PER_UNIT;
4635 parm_align = MIN (parm_align, excess_align);
4639 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
4641 /* emit_push_insn might not work properly if arg->value and
4642 argblock + arg->locate.offset areas overlap. */
4643 rtx x = arg->value;
4644 int i = 0;
4646 if (XEXP (x, 0) == crtl->args.internal_arg_pointer
4647 || (GET_CODE (XEXP (x, 0)) == PLUS
4648 && XEXP (XEXP (x, 0), 0) ==
4649 crtl->args.internal_arg_pointer
4650 && CONST_INT_P (XEXP (XEXP (x, 0), 1))))
4652 if (XEXP (x, 0) != crtl->args.internal_arg_pointer)
4653 i = INTVAL (XEXP (XEXP (x, 0), 1));
4655 /* expand_call should ensure this. */
4656 gcc_assert (!arg->locate.offset.var
4657 && arg->locate.size.var == 0
4658 && CONST_INT_P (size_rtx));
4660 if (arg->locate.offset.constant > i)
4662 if (arg->locate.offset.constant < i + INTVAL (size_rtx))
4663 sibcall_failure = 1;
4665 else if (arg->locate.offset.constant < i)
4667 /* Use arg->locate.size.constant instead of size_rtx
4668 because we only care about the part of the argument
4669 on the stack. */
4670 if (i < (arg->locate.offset.constant
4671 + arg->locate.size.constant))
4672 sibcall_failure = 1;
4674 else
4676 /* Even though they appear to be at the same location,
4677 if part of the outgoing argument is in registers,
4678 they aren't really at the same location. Check for
4679 this by making sure that the incoming size is the
4680 same as the outgoing size. */
4681 if (arg->locate.size.constant != INTVAL (size_rtx))
4682 sibcall_failure = 1;
4687 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
4688 parm_align, partial, reg, excess, argblock,
4689 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4690 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4692 /* Unless this is a partially-in-register argument, the argument is now
4693 in the stack.
4695 ??? Unlike the case above, in which we want the actual
4696 address of the data, so that we can load it directly into a
4697 register, here we want the address of the stack slot, so that
4698 it's properly aligned for word-by-word copying or something
4699 like that. It's not clear that this is always correct. */
4700 if (partial == 0)
4701 arg->value = arg->stack_slot;
4704 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
4706 tree type = TREE_TYPE (arg->tree_value);
4707 arg->parallel_value
4708 = emit_group_load_into_temps (arg->reg, arg->value, type,
4709 int_size_in_bytes (type));
4712 /* Mark all slots this store used. */
4713 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
4714 && argblock && ! variable_size && arg->stack)
4715 for (i = lower_bound; i < upper_bound; i++)
4716 stack_usage_map[i] = 1;
4718 /* Once we have pushed something, pops can't safely
4719 be deferred during the rest of the arguments. */
4720 NO_DEFER_POP;
4722 /* Free any temporary slots made in processing this argument. */
4723 pop_temp_slots ();
4725 return sibcall_failure;
4728 /* Nonzero if we do not know how to pass TYPE solely in registers. */
4730 bool
4731 must_pass_in_stack_var_size (enum machine_mode mode ATTRIBUTE_UNUSED,
4732 const_tree type)
4734 if (!type)
4735 return false;
4737 /* If the type has variable size... */
4738 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4739 return true;
4741 /* If the type is marked as addressable (it is required
4742 to be constructed into the stack)... */
4743 if (TREE_ADDRESSABLE (type))
4744 return true;
4746 return false;
4749 /* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
4750 takes trailing padding of a structure into account. */
4751 /* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
4753 bool
4754 must_pass_in_stack_var_size_or_pad (enum machine_mode mode, const_tree type)
4756 if (!type)
4757 return false;
4759 /* If the type has variable size... */
4760 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4761 return true;
4763 /* If the type is marked as addressable (it is required
4764 to be constructed into the stack)... */
4765 if (TREE_ADDRESSABLE (type))
4766 return true;
4768 /* If the padding and mode of the type is such that a copy into
4769 a register would put it into the wrong part of the register. */
4770 if (mode == BLKmode
4771 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
4772 && (FUNCTION_ARG_PADDING (mode, type)
4773 == (BYTES_BIG_ENDIAN ? upward : downward)))
4774 return true;
4776 return false;