]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/calls.c
This patch implements the unification of the *bitmap interfaces as discussed.
[thirdparty/gcc.git] / gcc / calls.c
CommitLineData
66d433c7 1/* Convert function calls to rtl insns, for GNU C compiler.
45550790 2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4143d08b 3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
27827244 4 2011, 2012 Free Software Foundation, Inc.
66d433c7 5
f12b58b3 6This file is part of GCC.
66d433c7 7
f12b58b3 8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
8c4c00c1 10Software Foundation; either version 3, or (at your option) any later
f12b58b3 11version.
66d433c7 12
f12b58b3 13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
66d433c7 17
18You should have received a copy of the GNU General Public License
8c4c00c1 19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
66d433c7 21
22#include "config.h"
405711de 23#include "system.h"
805e22b2 24#include "coretypes.h"
25#include "tm.h"
405711de 26#include "rtl.h"
27#include "tree.h"
75a70cf9 28#include "gimple.h"
405711de 29#include "flags.h"
30#include "expr.h"
5f4cd670 31#include "optabs.h"
d8fc4d0b 32#include "libfuncs.h"
0a893c29 33#include "function.h"
405711de 34#include "regs.h"
0b205f4c 35#include "diagnostic-core.h"
cd03a192 36#include "output.h"
075136a2 37#include "tm_p.h"
a6260fc7 38#include "timevar.h"
7ecc63d3 39#include "sbitmap.h"
771d21fa 40#include "langhooks.h"
6fce022c 41#include "target.h"
28992b23 42#include "cgraph.h"
95cedffb 43#include "except.h"
3072d30e 44#include "dbgcnt.h"
75a70cf9 45#include "tree-flow.h"
66d433c7 46
dfb1ee39 47/* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
48#define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
66d433c7 49
50/* Data structure and subroutines used within expand_call. */
51
52struct arg_data
53{
54 /* Tree node for this argument. */
55 tree tree_value;
1c0c37a5 56 /* Mode for value; TYPE_MODE unless promoted. */
57 enum machine_mode mode;
66d433c7 58 /* Current RTL value for argument, or 0 if it isn't precomputed. */
59 rtx value;
60 /* Initially-compute RTL value for argument; only for const functions. */
61 rtx initial_value;
62 /* Register to pass this argument in, 0 if passed on stack, or an
566d850a 63 PARALLEL if the arg is to be copied into multiple non-contiguous
66d433c7 64 registers. */
65 rtx reg;
0e0be288 66 /* Register to pass this argument in when generating tail call sequence.
67 This is not the same register as for normal calls on machines with
68 register windows. */
69 rtx tail_call_reg;
b600a907 70 /* If REG is a PARALLEL, this is a copy of VALUE pulled into the correct
71 form for emit_group_move. */
72 rtx parallel_value;
23eb5fa6 73 /* If REG was promoted from the actual mode of the argument expression,
74 indicates whether the promotion is sign- or zero-extended. */
75 int unsignedp;
83272ab4 76 /* Number of bytes to put in registers. 0 means put the whole arg
77 in registers. Also 0 if not passed in registers. */
66d433c7 78 int partial;
d10cfa8d 79 /* Nonzero if argument must be passed on stack.
f848041f 80 Note that some arguments may be passed on the stack
81 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
82 pass_on_stack identifies arguments that *cannot* go in registers. */
66d433c7 83 int pass_on_stack;
241399f6 84 /* Some fields packaged up for locate_and_pad_parm. */
85 struct locate_and_pad_arg_data locate;
66d433c7 86 /* Location on the stack at which parameter should be stored. The store
87 has already been done if STACK == VALUE. */
88 rtx stack;
89 /* Location on the stack of the start of this argument slot. This can
90 differ from STACK if this arg pads downward. This location is known
bd99ba64 91 to be aligned to TARGET_FUNCTION_ARG_BOUNDARY. */
66d433c7 92 rtx stack_slot;
66d433c7 93 /* Place that this stack area has been saved, if needed. */
94 rtx save_area;
f28c7a75 95 /* If an argument's alignment does not permit direct copying into registers,
96 copy in smaller-sized pieces into pseudos. These are stored in a
97 block pointed to by this field. The next field says how many
98 word-sized pseudos we made. */
99 rtx *aligned_regs;
100 int n_aligned_regs;
66d433c7 101};
102
d10cfa8d 103/* A vector of one char per byte of stack space. A byte if nonzero if
66d433c7 104 the corresponding stack location has been used.
105 This vector is used to prevent a function call within an argument from
106 clobbering any stack already set up. */
107static char *stack_usage_map;
108
109/* Size of STACK_USAGE_MAP. */
110static int highest_outgoing_arg_in_use;
d1b03b62 111
7ecc63d3 112/* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
113 stack location's tail call argument has been already stored into the stack.
114 This bitmap is used to prevent sibling call optimization if function tries
115 to use parent's incoming argument slots when they have been already
116 overwritten with tail call arguments. */
117static sbitmap stored_args_map;
118
d1b03b62 119/* stack_arg_under_construction is nonzero when an argument may be
120 initialized with a constructor call (including a C function that
121 returns a BLKmode struct) and expand_call must take special action
122 to make sure the object being constructed does not overlap the
123 argument list for the constructor call. */
fbbbfe26 124static int stack_arg_under_construction;
66d433c7 125
4ee9c684 126static void emit_call_1 (rtx, tree, tree, tree, HOST_WIDE_INT, HOST_WIDE_INT,
4c9e08a4 127 HOST_WIDE_INT, rtx, rtx, int, rtx, int,
39cba157 128 cumulative_args_t);
4c9e08a4 129static void precompute_register_parameters (int, struct arg_data *, int *);
130static int store_one_arg (struct arg_data *, rtx, int, int, int);
131static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
132static int finalize_must_preallocate (int, int, struct arg_data *,
133 struct args_size *);
2dd6f9ed 134static void precompute_arguments (int, struct arg_data *);
fa20f865 135static int compute_argument_block_size (int, struct args_size *, tree, tree, int);
4c9e08a4 136static void initialize_argument_information (int, struct arg_data *,
cd46caee 137 struct args_size *, int,
138 tree, tree,
39cba157 139 tree, tree, cumulative_args_t, int,
eaa112a0 140 rtx *, int *, int *, int *,
4ee9c684 141 bool *, bool);
4c9e08a4 142static void compute_argument_addresses (struct arg_data *, rtx, int);
143static rtx rtx_for_function_call (tree, tree);
144static void load_register_parameters (struct arg_data *, int, rtx *, int,
145 int, int *);
146static rtx emit_library_call_value_1 (int, rtx, rtx, enum libcall_type,
147 enum machine_mode, int, va_list);
5d1b319b 148static int special_function_p (const_tree, int);
4c9e08a4 149static int check_sibcall_argument_overlap_1 (rtx);
150static int check_sibcall_argument_overlap (rtx, struct arg_data *, int);
151
152static int combine_pending_stack_adjustment_and_call (int, struct args_size *,
38413c80 153 unsigned int);
5ab29745 154static tree split_complex_types (tree);
cde25025 155
4448f543 156#ifdef REG_PARM_STACK_SPACE
4c9e08a4 157static rtx save_fixed_argument_area (int, rtx, int *, int *);
158static void restore_fixed_argument_area (rtx, rtx, int, int);
6a0e6138 159#endif
66d433c7 160\f
66d433c7 161/* Force FUNEXP into a form suitable for the address of a CALL,
162 and return that as an rtx. Also load the static chain register
163 if FNDECL is a nested function.
164
8866f42d 165 CALL_FUSAGE points to a variable holding the prospective
166 CALL_INSN_FUNCTION_USAGE information. */
66d433c7 167
d9076622 168rtx
82c7907c 169prepare_call_address (tree fndecl, rtx funexp, rtx static_chain_value,
4ee9c684 170 rtx *call_fusage, int reg_parm_seen, int sibcallp)
66d433c7 171{
c7bf1374 172 /* Make a valid memory address and copy constants through pseudo-regs,
66d433c7 173 but not for a constant address if -fno-function-cse. */
174 if (GET_CODE (funexp) != SYMBOL_REF)
a89aeae3 175 /* If we are using registers for parameters, force the
0dbd1c74 176 function address into a register now. */
ed5527ca 177 funexp = ((reg_parm_seen
178 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
0dbd1c74 179 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
180 : memory_address (FUNCTION_MODE, funexp));
707ff8b1 181 else if (! sibcallp)
66d433c7 182 {
183#ifndef NO_FUNCTION_CSE
184 if (optimize && ! flag_no_function_cse)
fb154d03 185 funexp = force_reg (Pmode, funexp);
66d433c7 186#endif
187 }
188
189 if (static_chain_value != 0)
190 {
82c7907c 191 rtx chain;
192
193 gcc_assert (fndecl);
194 chain = targetm.calls.static_chain (fndecl, false);
3dce56cc 195 static_chain_value = convert_memory_address (Pmode, static_chain_value);
66d433c7 196
82c7907c 197 emit_move_insn (chain, static_chain_value);
198 if (REG_P (chain))
199 use_reg (call_fusage, chain);
66d433c7 200 }
201
202 return funexp;
203}
204
205/* Generate instructions to call function FUNEXP,
206 and optionally pop the results.
207 The CALL_INSN is the first insn generated.
208
c74d0a20 209 FNDECL is the declaration node of the function. This is given to the
f5bc28da 210 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
211 its own args.
e93a4612 212
f5bc28da 213 FUNTYPE is the data type of the function. This is given to the hook
214 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
215 own args. We used to allow an identifier for library functions, but
216 that doesn't work when the return type is an aggregate type and the
217 calling convention says that the pointer to this aggregate is to be
218 popped by the callee.
66d433c7 219
220 STACK_SIZE is the number of bytes of arguments on the stack,
a62b99b7 221 ROUNDED_STACK_SIZE is that number rounded up to
222 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
223 both to put into the call insn and to generate explicit popping
224 code if necessary.
66d433c7 225
226 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
227 It is zero if this call doesn't want a structure value.
228
229 NEXT_ARG_REG is the rtx that results from executing
f387af4f 230 targetm.calls.function_arg (&args_so_far, VOIDmode, void_type_node, true)
66d433c7 231 just after all the args have had their registers assigned.
232 This could be whatever you like, but normally it is the first
233 arg-register beyond those used for args in this call,
234 or 0 if all the arg-registers are used in this call.
235 It is passed on to `gen_call' so you can put this info in the call insn.
236
237 VALREG is a hard register in which a value is returned,
238 or 0 if the call does not return a value.
239
240 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
241 the args to this call were processed.
242 We restore `inhibit_defer_pop' to that value.
243
07409b3a 244 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
1e625a2e 245 denote registers used by the called function. */
c87678e4 246
8ddf1c7e 247static void
16c9337c 248emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
4ee9c684 249 tree funtype ATTRIBUTE_UNUSED,
4c9e08a4 250 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED,
251 HOST_WIDE_INT rounded_stack_size,
252 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED,
253 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
254 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
39cba157 255 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
66d433c7 256{
dd837bff 257 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
57999964 258 rtx call_insn, call, funmem;
66d433c7 259 int already_popped = 0;
f5bc28da 260 HOST_WIDE_INT n_popped
261 = targetm.calls.return_pops_args (fndecl, funtype, stack_size);
66d433c7 262
87e19636 263#ifdef CALL_POPS_ARGS
39cba157 264 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
87e19636 265#endif
4c9e08a4 266
66d433c7 267 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
268 and we don't want to load it into a register as an optimization,
269 because prepare_call_address already did it if it should be done. */
270 if (GET_CODE (funexp) != SYMBOL_REF)
271 funexp = memory_address (FUNCTION_MODE, funexp);
272
57999964 273 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
274 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
854aa6aa 275 {
276 tree t = fndecl;
b9a16870 277
854aa6aa 278 /* Although a built-in FUNCTION_DECL and its non-__builtin
279 counterpart compare equal and get a shared mem_attrs, they
280 produce different dump output in compare-debug compilations,
281 if an entry gets garbage collected in one compilation, then
282 adds a different (but equivalent) entry, while the other
283 doesn't run the garbage collector at the same spot and then
284 shares the mem_attr with the equivalent entry. */
b9a16870 285 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
286 {
287 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
288 if (t2)
289 t = t2;
290 }
291
292 set_mem_expr (funmem, t);
854aa6aa 293 }
57999964 294 else if (fntree)
2622064f 295 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
57999964 296
60ecc450 297#if defined (HAVE_sibcall_pop) && defined (HAVE_sibcall_value_pop)
298 if ((ecf_flags & ECF_SIBCALL)
299 && HAVE_sibcall_pop && HAVE_sibcall_value_pop
a864723e 300 && (n_popped > 0 || stack_size == 0))
60ecc450 301 {
2a631e19 302 rtx n_pop = GEN_INT (n_popped);
60ecc450 303 rtx pat;
304
305 /* If this subroutine pops its own args, record that in the call insn
306 if possible, for the sake of frame pointer elimination. */
307
308 if (valreg)
57999964 309 pat = GEN_SIBCALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
310 next_arg_reg, n_pop);
60ecc450 311 else
57999964 312 pat = GEN_SIBCALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
313 n_pop);
60ecc450 314
315 emit_call_insn (pat);
316 already_popped = 1;
317 }
318 else
319#endif
320
66d433c7 321#if defined (HAVE_call_pop) && defined (HAVE_call_value_pop)
2a631e19 322 /* If the target has "call" or "call_value" insns, then prefer them
323 if no arguments are actually popped. If the target does not have
324 "call" or "call_value" insns, then we must use the popping versions
325 even if the call has no arguments to pop. */
ec596f3b 326#if defined (HAVE_call) && defined (HAVE_call_value)
327 if (HAVE_call && HAVE_call_value && HAVE_call_pop && HAVE_call_value_pop
ff3ae375 328 && n_popped > 0)
ec596f3b 329#else
330 if (HAVE_call_pop && HAVE_call_value_pop)
331#endif
66d433c7 332 {
e39fae61 333 rtx n_pop = GEN_INT (n_popped);
66d433c7 334 rtx pat;
335
336 /* If this subroutine pops its own args, record that in the call insn
337 if possible, for the sake of frame pointer elimination. */
e93a4612 338
66d433c7 339 if (valreg)
57999964 340 pat = GEN_CALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
341 next_arg_reg, n_pop);
66d433c7 342 else
57999964 343 pat = GEN_CALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
344 n_pop);
66d433c7 345
346 emit_call_insn (pat);
347 already_popped = 1;
348 }
349 else
350#endif
66d433c7 351
60ecc450 352#if defined (HAVE_sibcall) && defined (HAVE_sibcall_value)
353 if ((ecf_flags & ECF_SIBCALL)
354 && HAVE_sibcall && HAVE_sibcall_value)
355 {
356 if (valreg)
57999964 357 emit_call_insn (GEN_SIBCALL_VALUE (valreg, funmem,
60ecc450 358 rounded_stack_size_rtx,
359 next_arg_reg, NULL_RTX));
360 else
57999964 361 emit_call_insn (GEN_SIBCALL (funmem, rounded_stack_size_rtx,
362 next_arg_reg,
f018d957 363 GEN_INT (struct_value_size)));
60ecc450 364 }
365 else
366#endif
367
66d433c7 368#if defined (HAVE_call) && defined (HAVE_call_value)
369 if (HAVE_call && HAVE_call_value)
370 {
371 if (valreg)
57999964 372 emit_call_insn (GEN_CALL_VALUE (valreg, funmem, rounded_stack_size_rtx,
373 next_arg_reg, NULL_RTX));
66d433c7 374 else
57999964 375 emit_call_insn (GEN_CALL (funmem, rounded_stack_size_rtx, next_arg_reg,
f018d957 376 GEN_INT (struct_value_size)));
66d433c7 377 }
378 else
379#endif
231bd014 380 gcc_unreachable ();
66d433c7 381
d5f9786f 382 /* Find the call we just emitted. */
383 call_insn = last_call_insn ();
66d433c7 384
57999964 385 /* Some target create a fresh MEM instead of reusing the one provided
386 above. Set its MEM_EXPR. */
cf7fb72d 387 call = get_call_rtx_from (call_insn);
388 if (call
57999964 389 && MEM_EXPR (XEXP (call, 0)) == NULL_TREE
390 && MEM_EXPR (funmem) != NULL_TREE)
391 set_mem_expr (XEXP (call, 0), MEM_EXPR (funmem));
392
d5f9786f 393 /* Put the register usage information there. */
394 add_function_usage_to (call_insn, call_fusage);
66d433c7 395
396 /* If this is a const call, then set the insn's unchanging bit. */
9c2a0c05 397 if (ecf_flags & ECF_CONST)
398 RTL_CONST_CALL_P (call_insn) = 1;
399
400 /* If this is a pure call, then set the insn's unchanging bit. */
401 if (ecf_flags & ECF_PURE)
402 RTL_PURE_CALL_P (call_insn) = 1;
403
404 /* If this is a const call, then set the insn's unchanging bit. */
405 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
406 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
66d433c7 407
e38def9c 408 /* Create a nothrow REG_EH_REGION note, if needed. */
409 make_reg_eh_region_note (call_insn, ecf_flags, 0);
00dd2e9e 410
356b51a0 411 if (ecf_flags & ECF_NORETURN)
a1ddb869 412 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
356b51a0 413
9239aee6 414 if (ecf_flags & ECF_RETURNS_TWICE)
0ff18307 415 {
a1ddb869 416 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
18d50ae6 417 cfun->calls_setjmp = 1;
0ff18307 418 }
9239aee6 419
60ecc450 420 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
421
d1f88d00 422 /* Restore this now, so that we do defer pops for this call's args
423 if the context of the call as a whole permits. */
424 inhibit_defer_pop = old_inhibit_defer_pop;
425
e39fae61 426 if (n_popped > 0)
66d433c7 427 {
428 if (!already_popped)
37808e3a 429 CALL_INSN_FUNCTION_USAGE (call_insn)
941522d6 430 = gen_rtx_EXPR_LIST (VOIDmode,
431 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
432 CALL_INSN_FUNCTION_USAGE (call_insn));
e39fae61 433 rounded_stack_size -= n_popped;
dd837bff 434 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
91b70175 435 stack_pointer_delta -= n_popped;
27a7a23a 436
dfe00a8f 437 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
438
27a7a23a 439 /* If popup is needed, stack realign must use DRAP */
440 if (SUPPORTS_STACK_ALIGNMENT)
441 crtl->need_drap = true;
66d433c7 442 }
27827244 443 /* For noreturn calls when not accumulating outgoing args force
444 REG_ARGS_SIZE note to prevent crossjumping of calls with different
445 args sizes. */
446 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
447 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
66d433c7 448
4448f543 449 if (!ACCUMULATE_OUTGOING_ARGS)
66d433c7 450 {
4448f543 451 /* If returning from the subroutine does not automatically pop the args,
452 we need an instruction to pop them sooner or later.
453 Perhaps do it now; perhaps just record how much space to pop later.
454
455 If returning from the subroutine does pop the args, indicate that the
456 stack pointer will be changed. */
457
10d1a2c0 458 if (rounded_stack_size != 0)
4448f543 459 {
ff3ae375 460 if (ecf_flags & ECF_NORETURN)
10d1a2c0 461 /* Just pretend we did the pop. */
462 stack_pointer_delta -= rounded_stack_size;
463 else if (flag_defer_pop && inhibit_defer_pop == 0
d490e2f2 464 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
4448f543 465 pending_stack_adjust += rounded_stack_size;
466 else
467 adjust_stack (rounded_stack_size_rtx);
468 }
66d433c7 469 }
4448f543 470 /* When we accumulate outgoing args, we must avoid any stack manipulations.
471 Restore the stack pointer to its original value now. Usually
472 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
473 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
474 popping variants of functions exist as well.
475
476 ??? We may optimize similar to defer_pop above, but it is
477 probably not worthwhile.
c87678e4 478
4448f543 479 ??? It will be worthwhile to enable combine_stack_adjustments even for
480 such machines. */
481 else if (n_popped)
482 anti_adjust_stack (GEN_INT (n_popped));
66d433c7 483}
484
6a0e6138 485/* Determine if the function identified by NAME and FNDECL is one with
486 special properties we wish to know about.
487
488 For example, if the function might return more than one time (setjmp), then
489 set RETURNS_TWICE to a nonzero value.
490
4c8db992 491 Similarly set NORETURN if the function is in the longjmp family.
6a0e6138 492
6a0e6138 493 Set MAY_BE_ALLOCA for any memory allocation function that might allocate
494 space from the stack such as alloca. */
495
dfe08167 496static int
5d1b319b 497special_function_p (const_tree fndecl, int flags)
6a0e6138 498{
4ee9c684 499 if (fndecl && DECL_NAME (fndecl)
7259f3f8 500 && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) <= 17
6a0e6138 501 /* Exclude functions not at the file scope, or not `extern',
502 since they are not the magic functions we would otherwise
40109983 503 think they are.
a0c938f0 504 FIXME: this should be handled with attributes, not with this
505 hacky imitation of DECL_ASSEMBLER_NAME. It's (also) wrong
506 because you can declare fork() inside a function if you
507 wish. */
0d568ddf 508 && (DECL_CONTEXT (fndecl) == NULL_TREE
40109983 509 || TREE_CODE (DECL_CONTEXT (fndecl)) == TRANSLATION_UNIT_DECL)
510 && TREE_PUBLIC (fndecl))
6a0e6138 511 {
71d9fc9b 512 const char *name = IDENTIFIER_POINTER (DECL_NAME (fndecl));
513 const char *tname = name;
6a0e6138 514
cc7cc47f 515 /* We assume that alloca will always be called by name. It
516 makes no sense to pass it as a pointer-to-function to
517 anything that does not understand its behavior. */
dfe08167 518 if (((IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 6
519 && name[0] == 'a'
520 && ! strcmp (name, "alloca"))
521 || (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 16
522 && name[0] == '_'
523 && ! strcmp (name, "__builtin_alloca"))))
524 flags |= ECF_MAY_BE_ALLOCA;
cc7cc47f 525
73d3c8f2 526 /* Disregard prefix _, __, __x or __builtin_. */
6a0e6138 527 if (name[0] == '_')
528 {
73d3c8f2 529 if (name[1] == '_'
530 && name[2] == 'b'
531 && !strncmp (name + 3, "uiltin_", 7))
532 tname += 10;
533 else if (name[1] == '_' && name[2] == 'x')
6a0e6138 534 tname += 3;
535 else if (name[1] == '_')
536 tname += 2;
537 else
538 tname += 1;
539 }
540
541 if (tname[0] == 's')
542 {
dfe08167 543 if ((tname[1] == 'e'
544 && (! strcmp (tname, "setjmp")
545 || ! strcmp (tname, "setjmp_syscall")))
546 || (tname[1] == 'i'
547 && ! strcmp (tname, "sigsetjmp"))
548 || (tname[1] == 'a'
549 && ! strcmp (tname, "savectx")))
550 flags |= ECF_RETURNS_TWICE;
551
6a0e6138 552 if (tname[1] == 'i'
553 && ! strcmp (tname, "siglongjmp"))
4fec1d6c 554 flags |= ECF_NORETURN;
6a0e6138 555 }
556 else if ((tname[0] == 'q' && tname[1] == 's'
557 && ! strcmp (tname, "qsetjmp"))
558 || (tname[0] == 'v' && tname[1] == 'f'
0b4cb8ec 559 && ! strcmp (tname, "vfork"))
560 || (tname[0] == 'g' && tname[1] == 'e'
561 && !strcmp (tname, "getcontext")))
dfe08167 562 flags |= ECF_RETURNS_TWICE;
6a0e6138 563
564 else if (tname[0] == 'l' && tname[1] == 'o'
565 && ! strcmp (tname, "longjmp"))
4fec1d6c 566 flags |= ECF_NORETURN;
6a0e6138 567 }
73673831 568
dfe08167 569 return flags;
6a0e6138 570}
571
c8010b80 572/* Similar to special_function_p; return a set of ERF_ flags for the
573 function FNDECL. */
574static int
575decl_return_flags (tree fndecl)
576{
577 tree attr;
578 tree type = TREE_TYPE (fndecl);
579 if (!type)
580 return 0;
581
582 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
583 if (!attr)
584 return 0;
585
586 attr = TREE_VALUE (TREE_VALUE (attr));
587 if (!attr || TREE_STRING_LENGTH (attr) < 1)
588 return 0;
589
590 switch (TREE_STRING_POINTER (attr)[0])
591 {
592 case '1':
593 case '2':
594 case '3':
595 case '4':
596 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
597
598 case 'm':
599 return ERF_NOALIAS;
600
601 case '.':
602 default:
603 return 0;
604 }
605}
606
4c8db992 607/* Return nonzero when FNDECL represents a call to setjmp. */
d490e2f2 608
dfe08167 609int
5d1b319b 610setjmp_call_p (const_tree fndecl)
dfe08167 611{
69010134 612 if (DECL_IS_RETURNS_TWICE (fndecl))
613 return ECF_RETURNS_TWICE;
dfe08167 614 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
615}
616
75a70cf9 617
618/* Return true if STMT is an alloca call. */
619
620bool
621gimple_alloca_call_p (const_gimple stmt)
622{
623 tree fndecl;
624
625 if (!is_gimple_call (stmt))
626 return false;
627
628 fndecl = gimple_call_fndecl (stmt);
629 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
630 return true;
631
632 return false;
633}
634
9a7ecb49 635/* Return true when exp contains alloca call. */
75a70cf9 636
9a7ecb49 637bool
5d1b319b 638alloca_call_p (const_tree exp)
9a7ecb49 639{
640 if (TREE_CODE (exp) == CALL_EXPR
c2f47e15 641 && TREE_CODE (CALL_EXPR_FN (exp)) == ADDR_EXPR
642 && (TREE_CODE (TREE_OPERAND (CALL_EXPR_FN (exp), 0)) == FUNCTION_DECL)
643 && (special_function_p (TREE_OPERAND (CALL_EXPR_FN (exp), 0), 0)
644 & ECF_MAY_BE_ALLOCA))
9a7ecb49 645 return true;
646 return false;
647}
648
4c0315d0 649/* Return TRUE if FNDECL is either a TM builtin or a TM cloned
650 function. Return FALSE otherwise. */
651
652static bool
653is_tm_builtin (const_tree fndecl)
654{
655 if (fndecl == NULL)
656 return false;
657
658 if (decl_is_tm_clone (fndecl))
659 return true;
660
661 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
662 {
663 switch (DECL_FUNCTION_CODE (fndecl))
664 {
665 case BUILT_IN_TM_COMMIT:
666 case BUILT_IN_TM_COMMIT_EH:
667 case BUILT_IN_TM_ABORT:
668 case BUILT_IN_TM_IRREVOCABLE:
669 case BUILT_IN_TM_GETTMCLONE_IRR:
670 case BUILT_IN_TM_MEMCPY:
671 case BUILT_IN_TM_MEMMOVE:
672 case BUILT_IN_TM_MEMSET:
673 CASE_BUILT_IN_TM_STORE (1):
674 CASE_BUILT_IN_TM_STORE (2):
675 CASE_BUILT_IN_TM_STORE (4):
676 CASE_BUILT_IN_TM_STORE (8):
677 CASE_BUILT_IN_TM_STORE (FLOAT):
678 CASE_BUILT_IN_TM_STORE (DOUBLE):
679 CASE_BUILT_IN_TM_STORE (LDOUBLE):
680 CASE_BUILT_IN_TM_STORE (M64):
681 CASE_BUILT_IN_TM_STORE (M128):
682 CASE_BUILT_IN_TM_STORE (M256):
683 CASE_BUILT_IN_TM_LOAD (1):
684 CASE_BUILT_IN_TM_LOAD (2):
685 CASE_BUILT_IN_TM_LOAD (4):
686 CASE_BUILT_IN_TM_LOAD (8):
687 CASE_BUILT_IN_TM_LOAD (FLOAT):
688 CASE_BUILT_IN_TM_LOAD (DOUBLE):
689 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
690 CASE_BUILT_IN_TM_LOAD (M64):
691 CASE_BUILT_IN_TM_LOAD (M128):
692 CASE_BUILT_IN_TM_LOAD (M256):
693 case BUILT_IN_TM_LOG:
694 case BUILT_IN_TM_LOG_1:
695 case BUILT_IN_TM_LOG_2:
696 case BUILT_IN_TM_LOG_4:
697 case BUILT_IN_TM_LOG_8:
698 case BUILT_IN_TM_LOG_FLOAT:
699 case BUILT_IN_TM_LOG_DOUBLE:
700 case BUILT_IN_TM_LOG_LDOUBLE:
701 case BUILT_IN_TM_LOG_M64:
702 case BUILT_IN_TM_LOG_M128:
703 case BUILT_IN_TM_LOG_M256:
704 return true;
705 default:
706 break;
707 }
708 }
709 return false;
710}
711
5edaabad 712/* Detect flags (function attributes) from the function decl or type node. */
d490e2f2 713
805e22b2 714int
5d1b319b 715flags_from_decl_or_type (const_tree exp)
dfe08167 716{
717 int flags = 0;
7a24815f 718
dfe08167 719 if (DECL_P (exp))
720 {
721 /* The function exp may have the `malloc' attribute. */
7a24815f 722 if (DECL_IS_MALLOC (exp))
dfe08167 723 flags |= ECF_MALLOC;
724
26d1c5ff 725 /* The function exp may have the `returns_twice' attribute. */
726 if (DECL_IS_RETURNS_TWICE (exp))
727 flags |= ECF_RETURNS_TWICE;
728
9c2a0c05 729 /* Process the pure and const attributes. */
67fa4078 730 if (TREE_READONLY (exp))
9c2a0c05 731 flags |= ECF_CONST;
732 if (DECL_PURE_P (exp))
ef689d4e 733 flags |= ECF_PURE;
9c2a0c05 734 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
735 flags |= ECF_LOOPING_CONST_OR_PURE;
26dfc457 736
fc09b200 737 if (DECL_IS_NOVOPS (exp))
738 flags |= ECF_NOVOPS;
7bd95dfd 739 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
740 flags |= ECF_LEAF;
fc09b200 741
dfe08167 742 if (TREE_NOTHROW (exp))
743 flags |= ECF_NOTHROW;
b15db406 744
4c0315d0 745 if (flag_tm)
746 {
747 if (is_tm_builtin (exp))
748 flags |= ECF_TM_BUILTIN;
c86dbacd 749 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
4c0315d0 750 || lookup_attribute ("transaction_pure",
751 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
752 flags |= ECF_TM_PURE;
753 }
754
4ee9c684 755 flags = special_function_p (exp, flags);
dfe08167 756 }
4c0315d0 757 else if (TYPE_P (exp))
758 {
759 if (TYPE_READONLY (exp))
760 flags |= ECF_CONST;
761
762 if (flag_tm
763 && ((flags & ECF_CONST) != 0
764 || lookup_attribute ("transaction_pure", TYPE_ATTRIBUTES (exp))))
765 flags |= ECF_TM_PURE;
766 }
dfe08167 767
768 if (TREE_THIS_VOLATILE (exp))
67fa4078 769 {
770 flags |= ECF_NORETURN;
771 if (flags & (ECF_CONST|ECF_PURE))
772 flags |= ECF_LOOPING_CONST_OR_PURE;
773 }
dfe08167 774
775 return flags;
776}
777
886a914d 778/* Detect flags from a CALL_EXPR. */
779
780int
b7bf20db 781call_expr_flags (const_tree t)
886a914d 782{
783 int flags;
784 tree decl = get_callee_fndecl (t);
785
786 if (decl)
787 flags = flags_from_decl_or_type (decl);
788 else
789 {
c2f47e15 790 t = TREE_TYPE (CALL_EXPR_FN (t));
886a914d 791 if (t && TREE_CODE (t) == POINTER_TYPE)
792 flags = flags_from_decl_or_type (TREE_TYPE (t));
793 else
794 flags = 0;
795 }
796
797 return flags;
798}
799
6a0e6138 800/* Precompute all register parameters as described by ARGS, storing values
801 into fields within the ARGS array.
802
803 NUM_ACTUALS indicates the total number elements in the ARGS array.
804
805 Set REG_PARM_SEEN if we encounter a register parameter. */
806
807static void
e2ff5c1b 808precompute_register_parameters (int num_actuals, struct arg_data *args,
809 int *reg_parm_seen)
6a0e6138 810{
811 int i;
812
813 *reg_parm_seen = 0;
814
815 for (i = 0; i < num_actuals; i++)
816 if (args[i].reg != 0 && ! args[i].pass_on_stack)
817 {
818 *reg_parm_seen = 1;
819
820 if (args[i].value == 0)
821 {
822 push_temp_slots ();
8ec3c5c2 823 args[i].value = expand_normal (args[i].tree_value);
6a0e6138 824 preserve_temp_slots (args[i].value);
825 pop_temp_slots ();
6a0e6138 826 }
827
828 /* If we are to promote the function arg to a wider mode,
829 do it now. */
830
831 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
832 args[i].value
833 = convert_modes (args[i].mode,
834 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
835 args[i].value, args[i].unsignedp);
836
5e050fa1 837 /* If the value is a non-legitimate constant, force it into a
838 pseudo now. TLS symbols sometimes need a call to resolve. */
839 if (CONSTANT_P (args[i].value)
840 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
841 args[i].value = force_reg (args[i].mode, args[i].value);
842
e2ff5c1b 843 /* If we're going to have to load the value by parts, pull the
844 parts into pseudos. The part extraction process can involve
845 non-trivial computation. */
846 if (GET_CODE (args[i].reg) == PARALLEL)
847 {
848 tree type = TREE_TYPE (args[i].tree_value);
b600a907 849 args[i].parallel_value
e2ff5c1b 850 = emit_group_load_into_temps (args[i].reg, args[i].value,
851 type, int_size_in_bytes (type));
852 }
853
c87678e4 854 /* If the value is expensive, and we are inside an appropriately
6a0e6138 855 short loop, put the value into a pseudo and then put the pseudo
856 into the hard reg.
857
858 For small register classes, also do this if this call uses
859 register parameters. This is to avoid reload conflicts while
860 loading the parameters registers. */
861
e2ff5c1b 862 else if ((! (REG_P (args[i].value)
863 || (GET_CODE (args[i].value) == SUBREG
864 && REG_P (SUBREG_REG (args[i].value)))))
865 && args[i].mode != BLKmode
7013e87c 866 && set_src_cost (args[i].value, optimize_insn_for_speed_p ())
f529eb25 867 > COSTS_N_INSNS (1)
ed5527ca 868 && ((*reg_parm_seen
869 && targetm.small_register_classes_for_mode_p (args[i].mode))
e2ff5c1b 870 || optimize))
6a0e6138 871 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
872 }
873}
874
4448f543 875#ifdef REG_PARM_STACK_SPACE
6a0e6138 876
877 /* The argument list is the property of the called routine and it
878 may clobber it. If the fixed area has been used for previous
879 parameters, we must save and restore it. */
f7c44134 880
6a0e6138 881static rtx
4c9e08a4 882save_fixed_argument_area (int reg_parm_stack_space, rtx argblock, int *low_to_save, int *high_to_save)
6a0e6138 883{
6e96b626 884 int low;
885 int high;
6a0e6138 886
6e96b626 887 /* Compute the boundary of the area that needs to be saved, if any. */
888 high = reg_parm_stack_space;
6a0e6138 889#ifdef ARGS_GROW_DOWNWARD
6e96b626 890 high += 1;
6a0e6138 891#endif
6e96b626 892 if (high > highest_outgoing_arg_in_use)
893 high = highest_outgoing_arg_in_use;
6a0e6138 894
6e96b626 895 for (low = 0; low < high; low++)
896 if (stack_usage_map[low] != 0)
897 {
898 int num_to_save;
899 enum machine_mode save_mode;
900 int delta;
29c05e22 901 rtx addr;
6e96b626 902 rtx stack_area;
903 rtx save_area;
6a0e6138 904
6e96b626 905 while (stack_usage_map[--high] == 0)
906 ;
6a0e6138 907
6e96b626 908 *low_to_save = low;
909 *high_to_save = high;
910
911 num_to_save = high - low + 1;
912 save_mode = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
6a0e6138 913
6e96b626 914 /* If we don't have the required alignment, must do this
915 in BLKmode. */
916 if ((low & (MIN (GET_MODE_SIZE (save_mode),
917 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
918 save_mode = BLKmode;
6a0e6138 919
920#ifdef ARGS_GROW_DOWNWARD
6e96b626 921 delta = -high;
6a0e6138 922#else
6e96b626 923 delta = low;
6a0e6138 924#endif
29c05e22 925 addr = plus_constant (Pmode, argblock, delta);
926 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
2a631e19 927
6e96b626 928 set_mem_align (stack_area, PARM_BOUNDARY);
929 if (save_mode == BLKmode)
930 {
0ab48139 931 save_area = assign_stack_temp (BLKmode, num_to_save);
6e96b626 932 emit_block_move (validize_mem (save_area), stack_area,
933 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
934 }
935 else
936 {
937 save_area = gen_reg_rtx (save_mode);
938 emit_move_insn (save_area, stack_area);
939 }
2a631e19 940
6e96b626 941 return save_area;
942 }
943
944 return NULL_RTX;
6a0e6138 945}
946
947static void
4c9e08a4 948restore_fixed_argument_area (rtx save_area, rtx argblock, int high_to_save, int low_to_save)
6a0e6138 949{
950 enum machine_mode save_mode = GET_MODE (save_area);
6e96b626 951 int delta;
29c05e22 952 rtx addr, stack_area;
6e96b626 953
6a0e6138 954#ifdef ARGS_GROW_DOWNWARD
6e96b626 955 delta = -high_to_save;
6a0e6138 956#else
6e96b626 957 delta = low_to_save;
6a0e6138 958#endif
29c05e22 959 addr = plus_constant (Pmode, argblock, delta);
960 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
6e96b626 961 set_mem_align (stack_area, PARM_BOUNDARY);
6a0e6138 962
963 if (save_mode != BLKmode)
964 emit_move_insn (stack_area, save_area);
965 else
0378dbdc 966 emit_block_move (stack_area, validize_mem (save_area),
967 GEN_INT (high_to_save - low_to_save + 1),
968 BLOCK_OP_CALL_PARM);
6a0e6138 969}
f6025ee7 970#endif /* REG_PARM_STACK_SPACE */
c87678e4 971
6a0e6138 972/* If any elements in ARGS refer to parameters that are to be passed in
973 registers, but not in memory, and whose alignment does not permit a
974 direct copy into registers. Copy the values into a group of pseudos
c87678e4 975 which we will later copy into the appropriate hard registers.
6d801f27 976
977 Pseudos for each unaligned argument will be stored into the array
978 args[argnum].aligned_regs. The caller is responsible for deallocating
979 the aligned_regs array if it is nonzero. */
980
6a0e6138 981static void
4c9e08a4 982store_unaligned_arguments_into_pseudos (struct arg_data *args, int num_actuals)
6a0e6138 983{
984 int i, j;
c87678e4 985
6a0e6138 986 for (i = 0; i < num_actuals; i++)
987 if (args[i].reg != 0 && ! args[i].pass_on_stack
988 && args[i].mode == BLKmode
77f1b1bb 989 && MEM_P (args[i].value)
990 && (MEM_ALIGN (args[i].value)
6a0e6138 991 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
992 {
993 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
5f4cd670 994 int endian_correction = 0;
6a0e6138 995
f054eb3c 996 if (args[i].partial)
997 {
998 gcc_assert (args[i].partial % UNITS_PER_WORD == 0);
999 args[i].n_aligned_regs = args[i].partial / UNITS_PER_WORD;
1000 }
1001 else
1002 {
1003 args[i].n_aligned_regs
1004 = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1005 }
1006
4c36ffe6 1007 args[i].aligned_regs = XNEWVEC (rtx, args[i].n_aligned_regs);
6a0e6138 1008
5f4cd670 1009 /* Structures smaller than a word are normally aligned to the
1010 least significant byte. On a BYTES_BIG_ENDIAN machine,
6a0e6138 1011 this means we must skip the empty high order bytes when
1012 calculating the bit offset. */
5f4cd670 1013 if (bytes < UNITS_PER_WORD
1014#ifdef BLOCK_REG_PADDING
1015 && (BLOCK_REG_PADDING (args[i].mode,
1016 TREE_TYPE (args[i].tree_value), 1)
1017 == downward)
1018#else
1019 && BYTES_BIG_ENDIAN
1020#endif
1021 )
1022 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
6a0e6138 1023
1024 for (j = 0; j < args[i].n_aligned_regs; j++)
1025 {
1026 rtx reg = gen_reg_rtx (word_mode);
1027 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1028 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
6a0e6138 1029
1030 args[i].aligned_regs[j] = reg;
8eef3a45 1031 word = extract_bit_field (word, bitsize, 0, 1, false, NULL_RTX,
1445ea5b 1032 word_mode, word_mode);
6a0e6138 1033
1034 /* There is no need to restrict this code to loading items
1035 in TYPE_ALIGN sized hunks. The bitfield instructions can
1036 load up entire word sized registers efficiently.
1037
1038 ??? This may not be needed anymore.
1039 We use to emit a clobber here but that doesn't let later
1040 passes optimize the instructions we emit. By storing 0 into
1041 the register later passes know the first AND to zero out the
1042 bitfield being set in the register is unnecessary. The store
1043 of 0 will be deleted as will at least the first AND. */
1044
1045 emit_move_insn (reg, const0_rtx);
1046
1047 bytes -= bitsize / BITS_PER_UNIT;
4bb60ec7 1048 store_bit_field (reg, bitsize, endian_correction, 0, 0,
1049 word_mode, word);
6a0e6138 1050 }
1051 }
1052}
1053
cb543c54 1054/* Fill in ARGS_SIZE and ARGS array based on the parameters found in
48e1416a 1055 CALL_EXPR EXP.
cb543c54 1056
1057 NUM_ACTUALS is the total number of parameters.
1058
1059 N_NAMED_ARGS is the total number of named arguments.
1060
cd46caee 1061 STRUCT_VALUE_ADDR_VALUE is the implicit argument for a struct return
1062 value, or null.
1063
cb543c54 1064 FNDECL is the tree code for the target of this call (if known)
1065
1066 ARGS_SO_FAR holds state needed by the target to know where to place
1067 the next argument.
1068
1069 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1070 for arguments which are passed in registers.
1071
1072 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1073 and may be modified by this routine.
1074
dfe08167 1075 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
0d568ddf 1076 flags which may may be modified by this routine.
eaa112a0 1077
4ee9c684 1078 MAY_TAILCALL is cleared if we encounter an invisible pass-by-reference
1079 that requires allocation of stack space.
1080
eaa112a0 1081 CALL_FROM_THUNK_P is true if this call is the jump from a thunk to
1082 the thunked-to function. */
cb543c54 1083
1084static void
4c9e08a4 1085initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
1086 struct arg_data *args,
1087 struct args_size *args_size,
1088 int n_named_args ATTRIBUTE_UNUSED,
cd46caee 1089 tree exp, tree struct_value_addr_value,
d8b9c828 1090 tree fndecl, tree fntype,
39cba157 1091 cumulative_args_t args_so_far,
4c9e08a4 1092 int reg_parm_stack_space,
1093 rtx *old_stack_level, int *old_pending_adj,
eaa112a0 1094 int *must_preallocate, int *ecf_flags,
4ee9c684 1095 bool *may_tailcall, bool call_from_thunk_p)
cb543c54 1096{
39cba157 1097 CUMULATIVE_ARGS *args_so_far_pnt = get_cumulative_args (args_so_far);
389dd41b 1098 location_t loc = EXPR_LOCATION (exp);
cb543c54 1099 /* 1 if scanning parms front to back, -1 if scanning back to front. */
1100 int inc;
1101
1102 /* Count arg position in order args appear. */
1103 int argpos;
1104
1105 int i;
c87678e4 1106
cb543c54 1107 args_size->constant = 0;
1108 args_size->var = 0;
1109
1110 /* In this loop, we consider args in the order they are written.
1111 We fill up ARGS from the front or from the back if necessary
1112 so that in any case the first arg to be pushed ends up at the front. */
1113
4448f543 1114 if (PUSH_ARGS_REVERSED)
1115 {
1116 i = num_actuals - 1, inc = -1;
1117 /* In this case, must reverse order of args
1118 so that we compute and push the last arg first. */
1119 }
1120 else
1121 {
1122 i = 0, inc = 1;
1123 }
cb543c54 1124
cd46caee 1125 /* First fill in the actual arguments in the ARGS array, splitting
1126 complex arguments if necessary. */
1127 {
1128 int j = i;
1129 call_expr_arg_iterator iter;
1130 tree arg;
1131
1132 if (struct_value_addr_value)
1133 {
1134 args[j].tree_value = struct_value_addr_value;
1135 j += inc;
1136 }
1137 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
1138 {
1139 tree argtype = TREE_TYPE (arg);
1140 if (targetm.calls.split_complex_arg
1141 && argtype
1142 && TREE_CODE (argtype) == COMPLEX_TYPE
1143 && targetm.calls.split_complex_arg (argtype))
1144 {
1145 tree subtype = TREE_TYPE (argtype);
cd46caee 1146 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
1147 j += inc;
1148 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
1149 }
1150 else
1151 args[j].tree_value = arg;
1152 j += inc;
1153 }
1154 }
1155
cb543c54 1156 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
cd46caee 1157 for (argpos = 0; argpos < num_actuals; i += inc, argpos++)
cb543c54 1158 {
cd46caee 1159 tree type = TREE_TYPE (args[i].tree_value);
cb543c54 1160 int unsignedp;
1161 enum machine_mode mode;
1162
cb543c54 1163 /* Replace erroneous argument with constant zero. */
4b72716d 1164 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
cb543c54 1165 args[i].tree_value = integer_zero_node, type = integer_type_node;
1166
8df5a43d 1167 /* If TYPE is a transparent union or record, pass things the way
1168 we would pass the first field of the union or record. We have
1169 already verified that the modes are the same. */
1170 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
1171 && TYPE_TRANSPARENT_AGGR (type))
1172 type = TREE_TYPE (first_field (type));
cb543c54 1173
1174 /* Decide where to pass this arg.
1175
1176 args[i].reg is nonzero if all or part is passed in registers.
1177
1178 args[i].partial is nonzero if part but not all is passed in registers,
f054eb3c 1179 and the exact value says how many bytes are passed in registers.
cb543c54 1180
1181 args[i].pass_on_stack is nonzero if the argument must at least be
1182 computed on the stack. It may then be loaded back into registers
1183 if args[i].reg is nonzero.
1184
1185 These decisions are driven by the FUNCTION_... macros and must agree
1186 with those made by function.c. */
1187
1188 /* See if this argument should be passed by invisible reference. */
39cba157 1189 if (pass_by_reference (args_so_far_pnt, TYPE_MODE (type),
cc9b8628 1190 type, argpos < n_named_args))
cb543c54 1191 {
41dc12b4 1192 bool callee_copies;
bc4577c4 1193 tree base = NULL_TREE;
41dc12b4 1194
1195 callee_copies
39cba157 1196 = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
13f08ee7 1197 type, argpos < n_named_args);
41dc12b4 1198
1199 /* If we're compiling a thunk, pass through invisible references
1200 instead of making a copy. */
eaa112a0 1201 if (call_from_thunk_p
41dc12b4 1202 || (callee_copies
1203 && !TREE_ADDRESSABLE (type)
1204 && (base = get_base_address (args[i].tree_value))
d6230243 1205 && TREE_CODE (base) != SSA_NAME
41dc12b4 1206 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
cb543c54 1207 {
006e2d5a 1208 mark_addressable (args[i].tree_value);
1209
41dc12b4 1210 /* We can't use sibcalls if a callee-copied argument is
1211 stored in the current function's frame. */
1212 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
c71e72dd 1213 *may_tailcall = false;
1214
389dd41b 1215 args[i].tree_value = build_fold_addr_expr_loc (loc,
1216 args[i].tree_value);
41dc12b4 1217 type = TREE_TYPE (args[i].tree_value);
1218
9c2a0c05 1219 if (*ecf_flags & ECF_CONST)
1220 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
ce95a955 1221 }
cb543c54 1222 else
1223 {
1224 /* We make a copy of the object and pass the address to the
1225 function being called. */
1226 rtx copy;
1227
4b72716d 1228 if (!COMPLETE_TYPE_P (type)
4852b829 1229 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
1230 || (flag_stack_check == GENERIC_STACK_CHECK
1231 && compare_tree_int (TYPE_SIZE_UNIT (type),
1232 STACK_CHECK_MAX_VAR_SIZE) > 0))
cb543c54 1233 {
1234 /* This is a variable-sized object. Make space on the stack
1235 for it. */
cd46caee 1236 rtx size_rtx = expr_size (args[i].tree_value);
cb543c54 1237
1238 if (*old_stack_level == 0)
1239 {
e9c97615 1240 emit_stack_save (SAVE_BLOCK, old_stack_level);
cb543c54 1241 *old_pending_adj = pending_stack_adjust;
1242 pending_stack_adjust = 0;
1243 }
1244
990495a7 1245 /* We can pass TRUE as the 4th argument because we just
1246 saved the stack pointer and will restore it right after
1247 the call. */
5be42b39 1248 copy = allocate_dynamic_stack_space (size_rtx,
1249 TYPE_ALIGN (type),
1250 TYPE_ALIGN (type),
1251 true);
1252 copy = gen_rtx_MEM (BLKmode, copy);
f7c44134 1253 set_mem_attributes (copy, type, 1);
cb543c54 1254 }
1255 else
0ab48139 1256 copy = assign_temp (type, 1, 0);
cb543c54 1257
5b5037b3 1258 store_expr (args[i].tree_value, copy, 0, false);
cb543c54 1259
9c2a0c05 1260 /* Just change the const function to pure and then let
1261 the next test clear the pure based on
1262 callee_copies. */
1263 if (*ecf_flags & ECF_CONST)
1264 {
1265 *ecf_flags &= ~ECF_CONST;
1266 *ecf_flags |= ECF_PURE;
1267 }
1268
1269 if (!callee_copies && *ecf_flags & ECF_PURE)
1270 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
41dc12b4 1271
1272 args[i].tree_value
389dd41b 1273 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
41dc12b4 1274 type = TREE_TYPE (args[i].tree_value);
4ee9c684 1275 *may_tailcall = false;
cb543c54 1276 }
1277 }
1278
78a8ed03 1279 unsignedp = TYPE_UNSIGNED (type);
3b2411a8 1280 mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
1281 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
cb543c54 1282
1283 args[i].unsignedp = unsignedp;
1284 args[i].mode = mode;
7a8d641b 1285
f387af4f 1286 args[i].reg = targetm.calls.function_arg (args_so_far, mode, type,
1287 argpos < n_named_args);
1288
7a8d641b 1289 /* If this is a sibling call and the machine has register windows, the
1290 register window has to be unwinded before calling the routine, so
1291 arguments have to go into the incoming registers. */
f387af4f 1292 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
1293 args[i].tail_call_reg
1294 = targetm.calls.function_incoming_arg (args_so_far, mode, type,
1295 argpos < n_named_args);
1296 else
1297 args[i].tail_call_reg = args[i].reg;
7a8d641b 1298
cb543c54 1299 if (args[i].reg)
1300 args[i].partial
f054eb3c 1301 = targetm.calls.arg_partial_bytes (args_so_far, mode, type,
1302 argpos < n_named_args);
cb543c54 1303
0336f0f0 1304 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (mode, type);
cb543c54 1305
1306 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1307 it means that we are to pass this arg in the register(s) designated
1308 by the PARALLEL, but also to pass it in the stack. */
1309 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1310 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1311 args[i].pass_on_stack = 1;
1312
1313 /* If this is an addressable type, we must preallocate the stack
1314 since we must evaluate the object into its final location.
1315
1316 If this is to be passed in both registers and the stack, it is simpler
1317 to preallocate. */
1318 if (TREE_ADDRESSABLE (type)
1319 || (args[i].pass_on_stack && args[i].reg != 0))
1320 *must_preallocate = 1;
1321
cb543c54 1322 /* Compute the stack-size of this argument. */
1323 if (args[i].reg == 0 || args[i].partial != 0
1324 || reg_parm_stack_space > 0
1325 || args[i].pass_on_stack)
1326 locate_and_pad_parm (mode, type,
1327#ifdef STACK_PARMS_IN_REG_PARM_AREA
1328 1,
1329#else
1330 args[i].reg != 0,
1331#endif
241399f6 1332 args[i].pass_on_stack ? 0 : args[i].partial,
1333 fndecl, args_size, &args[i].locate);
0fee47f4 1334#ifdef BLOCK_REG_PADDING
1335 else
1336 /* The argument is passed entirely in registers. See at which
1337 end it should be padded. */
1338 args[i].locate.where_pad =
1339 BLOCK_REG_PADDING (mode, type,
1340 int_size_in_bytes (type) <= UNITS_PER_WORD);
1341#endif
c87678e4 1342
cb543c54 1343 /* Update ARGS_SIZE, the total stack space for args so far. */
1344
241399f6 1345 args_size->constant += args[i].locate.size.constant;
1346 if (args[i].locate.size.var)
1347 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
cb543c54 1348
1349 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1350 have been used, etc. */
1351
f387af4f 1352 targetm.calls.function_arg_advance (args_so_far, TYPE_MODE (type),
1353 type, argpos < n_named_args);
cb543c54 1354 }
1355}
1356
cc45e5e8 1357/* Update ARGS_SIZE to contain the total size for the argument block.
1358 Return the original constant component of the argument block's size.
1359
1360 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1361 for arguments passed in registers. */
1362
1363static int
4c9e08a4 1364compute_argument_block_size (int reg_parm_stack_space,
1365 struct args_size *args_size,
60e2260d 1366 tree fndecl ATTRIBUTE_UNUSED,
fa20f865 1367 tree fntype ATTRIBUTE_UNUSED,
4c9e08a4 1368 int preferred_stack_boundary ATTRIBUTE_UNUSED)
cc45e5e8 1369{
1370 int unadjusted_args_size = args_size->constant;
1371
4448f543 1372 /* For accumulate outgoing args mode we don't need to align, since the frame
1373 will be already aligned. Align to STACK_BOUNDARY in order to prevent
35a3065a 1374 backends from generating misaligned frame sizes. */
4448f543 1375 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
1376 preferred_stack_boundary = STACK_BOUNDARY;
4448f543 1377
cc45e5e8 1378 /* Compute the actual size of the argument block required. The variable
1379 and constant sizes must be combined, the size may have to be rounded,
1380 and there may be a minimum required size. */
1381
1382 if (args_size->var)
1383 {
1384 args_size->var = ARGS_SIZE_TREE (*args_size);
1385 args_size->constant = 0;
1386
d0285dd8 1387 preferred_stack_boundary /= BITS_PER_UNIT;
1388 if (preferred_stack_boundary > 1)
91b70175 1389 {
1390 /* We don't handle this case yet. To handle it correctly we have
35a3065a 1391 to add the delta, round and subtract the delta.
91b70175 1392 Currently no machine description requires this support. */
231bd014 1393 gcc_assert (!(stack_pointer_delta & (preferred_stack_boundary - 1)));
91b70175 1394 args_size->var = round_up (args_size->var, preferred_stack_boundary);
1395 }
cc45e5e8 1396
1397 if (reg_parm_stack_space > 0)
1398 {
1399 args_size->var
1400 = size_binop (MAX_EXPR, args_size->var,
902de8ed 1401 ssize_int (reg_parm_stack_space));
cc45e5e8 1402
cc45e5e8 1403 /* The area corresponding to register parameters is not to count in
1404 the size of the block we need. So make the adjustment. */
fa20f865 1405 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
63c68695 1406 args_size->var
1407 = size_binop (MINUS_EXPR, args_size->var,
1408 ssize_int (reg_parm_stack_space));
cc45e5e8 1409 }
1410 }
1411 else
1412 {
d0285dd8 1413 preferred_stack_boundary /= BITS_PER_UNIT;
60ecc450 1414 if (preferred_stack_boundary < 1)
1415 preferred_stack_boundary = 1;
e39fae61 1416 args_size->constant = (((args_size->constant
91b70175 1417 + stack_pointer_delta
d0285dd8 1418 + preferred_stack_boundary - 1)
1419 / preferred_stack_boundary
1420 * preferred_stack_boundary)
91b70175 1421 - stack_pointer_delta);
cc45e5e8 1422
1423 args_size->constant = MAX (args_size->constant,
1424 reg_parm_stack_space);
1425
fa20f865 1426 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
63c68695 1427 args_size->constant -= reg_parm_stack_space;
cc45e5e8 1428 }
1429 return unadjusted_args_size;
1430}
1431
caa1595a 1432/* Precompute parameters as needed for a function call.
04707f1c 1433
dfe08167 1434 FLAGS is mask of ECF_* constants.
04707f1c 1435
04707f1c 1436 NUM_ACTUALS is the number of arguments.
1437
c87678e4 1438 ARGS is an array containing information for each argument; this
1439 routine fills in the INITIAL_VALUE and VALUE fields for each
1440 precomputed argument. */
04707f1c 1441
1442static void
2dd6f9ed 1443precompute_arguments (int num_actuals, struct arg_data *args)
04707f1c 1444{
1445 int i;
1446
8c78c14b 1447 /* If this is a libcall, then precompute all arguments so that we do not
67c155cb 1448 get extraneous instructions emitted as part of the libcall sequence. */
c5dc094f 1449
1450 /* If we preallocated the stack space, and some arguments must be passed
1451 on the stack, then we must precompute any parameter which contains a
1452 function call which will store arguments on the stack.
1453 Otherwise, evaluating the parameter may clobber previous parameters
1454 which have already been stored into the stack. (we have code to avoid
1455 such case by saving the outgoing stack arguments, but it results in
1456 worse code) */
2dd6f9ed 1457 if (!ACCUMULATE_OUTGOING_ARGS)
67c155cb 1458 return;
0d568ddf 1459
04707f1c 1460 for (i = 0; i < num_actuals; i++)
67c155cb 1461 {
3b2411a8 1462 tree type;
67c155cb 1463 enum machine_mode mode;
701e46d0 1464
2dd6f9ed 1465 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
c5dc094f 1466 continue;
1467
67c155cb 1468 /* If this is an addressable type, we cannot pre-evaluate it. */
3b2411a8 1469 type = TREE_TYPE (args[i].tree_value);
1470 gcc_assert (!TREE_ADDRESSABLE (type));
04707f1c 1471
67c155cb 1472 args[i].initial_value = args[i].value
8ec3c5c2 1473 = expand_normal (args[i].tree_value);
04707f1c 1474
3b2411a8 1475 mode = TYPE_MODE (type);
67c155cb 1476 if (mode != args[i].mode)
1477 {
3b2411a8 1478 int unsignedp = args[i].unsignedp;
67c155cb 1479 args[i].value
1480 = convert_modes (args[i].mode, mode,
1481 args[i].value, args[i].unsignedp);
3b2411a8 1482
67c155cb 1483 /* CSE will replace this only if it contains args[i].value
1484 pseudo, so convert it down to the declared mode using
1485 a SUBREG. */
1486 if (REG_P (args[i].value)
3b2411a8 1487 && GET_MODE_CLASS (args[i].mode) == MODE_INT
1488 && promote_mode (type, mode, &unsignedp) != args[i].mode)
67c155cb 1489 {
1490 args[i].initial_value
1491 = gen_lowpart_SUBREG (mode, args[i].value);
1492 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
1493 SUBREG_PROMOTED_UNSIGNED_SET (args[i].initial_value,
1494 args[i].unsignedp);
1495 }
67c155cb 1496 }
1497 }
04707f1c 1498}
1499
e717ffc2 1500/* Given the current state of MUST_PREALLOCATE and information about
1501 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1502 compute and return the final value for MUST_PREALLOCATE. */
1503
1504static int
48e1416a 1505finalize_must_preallocate (int must_preallocate, int num_actuals,
c2f47e15 1506 struct arg_data *args, struct args_size *args_size)
e717ffc2 1507{
1508 /* See if we have or want to preallocate stack space.
1509
1510 If we would have to push a partially-in-regs parm
1511 before other stack parms, preallocate stack space instead.
1512
1513 If the size of some parm is not a multiple of the required stack
1514 alignment, we must preallocate.
1515
1516 If the total size of arguments that would otherwise create a copy in
1517 a temporary (such as a CALL) is more than half the total argument list
1518 size, preallocation is faster.
1519
1520 Another reason to preallocate is if we have a machine (like the m88k)
1521 where stack alignment is required to be maintained between every
1522 pair of insns, not just when the call is made. However, we assume here
1523 that such machines either do not have push insns (and hence preallocation
1524 would occur anyway) or the problem is taken care of with
1525 PUSH_ROUNDING. */
1526
1527 if (! must_preallocate)
1528 {
1529 int partial_seen = 0;
1530 int copy_to_evaluate_size = 0;
1531 int i;
1532
1533 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1534 {
1535 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1536 partial_seen = 1;
1537 else if (partial_seen && args[i].reg == 0)
1538 must_preallocate = 1;
1539
1540 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1541 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1542 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1543 || TREE_CODE (args[i].tree_value) == COND_EXPR
1544 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1545 copy_to_evaluate_size
1546 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1547 }
1548
1549 if (copy_to_evaluate_size * 2 >= args_size->constant
1550 && args_size->constant > 0)
1551 must_preallocate = 1;
1552 }
1553 return must_preallocate;
1554}
cc45e5e8 1555
f3012854 1556/* If we preallocated stack space, compute the address of each argument
1557 and store it into the ARGS array.
1558
c87678e4 1559 We need not ensure it is a valid memory address here; it will be
f3012854 1560 validized when it is used.
1561
1562 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1563
1564static void
4c9e08a4 1565compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
f3012854 1566{
1567 if (argblock)
1568 {
1569 rtx arg_reg = argblock;
1570 int i, arg_offset = 0;
1571
1572 if (GET_CODE (argblock) == PLUS)
1573 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1574
1575 for (i = 0; i < num_actuals; i++)
1576 {
241399f6 1577 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
1578 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
f3012854 1579 rtx addr;
c5dc0c32 1580 unsigned int align, boundary;
c2ca1bab 1581 unsigned int units_on_stack = 0;
1582 enum machine_mode partial_mode = VOIDmode;
f3012854 1583
1584 /* Skip this parm if it will not be passed on the stack. */
c2ca1bab 1585 if (! args[i].pass_on_stack
1586 && args[i].reg != 0
1587 && args[i].partial == 0)
f3012854 1588 continue;
1589
971ba038 1590 if (CONST_INT_P (offset))
29c05e22 1591 addr = plus_constant (Pmode, arg_reg, INTVAL (offset));
f3012854 1592 else
1593 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1594
29c05e22 1595 addr = plus_constant (Pmode, addr, arg_offset);
c2ca1bab 1596
1597 if (args[i].partial != 0)
1598 {
1599 /* Only part of the parameter is being passed on the stack.
1600 Generate a simple memory reference of the correct size. */
1601 units_on_stack = args[i].locate.size.constant;
1602 partial_mode = mode_for_size (units_on_stack * BITS_PER_UNIT,
1603 MODE_INT, 1);
1604 args[i].stack = gen_rtx_MEM (partial_mode, addr);
5b2a69fa 1605 set_mem_size (args[i].stack, units_on_stack);
c2ca1bab 1606 }
1607 else
1608 {
1609 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1610 set_mem_attributes (args[i].stack,
1611 TREE_TYPE (args[i].tree_value), 1);
1612 }
c5dc0c32 1613 align = BITS_PER_UNIT;
1614 boundary = args[i].locate.boundary;
1615 if (args[i].locate.where_pad != downward)
1616 align = boundary;
971ba038 1617 else if (CONST_INT_P (offset))
c5dc0c32 1618 {
1619 align = INTVAL (offset) * BITS_PER_UNIT | boundary;
1620 align = align & -align;
1621 }
1622 set_mem_align (args[i].stack, align);
f3012854 1623
971ba038 1624 if (CONST_INT_P (slot_offset))
29c05e22 1625 addr = plus_constant (Pmode, arg_reg, INTVAL (slot_offset));
f3012854 1626 else
1627 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1628
29c05e22 1629 addr = plus_constant (Pmode, addr, arg_offset);
c2ca1bab 1630
1631 if (args[i].partial != 0)
1632 {
1633 /* Only part of the parameter is being passed on the stack.
1634 Generate a simple memory reference of the correct size.
1635 */
1636 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
5b2a69fa 1637 set_mem_size (args[i].stack_slot, units_on_stack);
c2ca1bab 1638 }
1639 else
1640 {
1641 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1642 set_mem_attributes (args[i].stack_slot,
1643 TREE_TYPE (args[i].tree_value), 1);
1644 }
c5dc0c32 1645 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
a9f2963b 1646
1647 /* Function incoming arguments may overlap with sibling call
1648 outgoing arguments and we cannot allow reordering of reads
1649 from function arguments with stores to outgoing arguments
1650 of sibling calls. */
ab6ab77e 1651 set_mem_alias_set (args[i].stack, 0);
1652 set_mem_alias_set (args[i].stack_slot, 0);
f3012854 1653 }
1654 }
1655}
c87678e4 1656
f3012854 1657/* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1658 in a call instruction.
1659
1660 FNDECL is the tree node for the target function. For an indirect call
1661 FNDECL will be NULL_TREE.
1662
95672afe 1663 ADDR is the operand 0 of CALL_EXPR for this call. */
f3012854 1664
1665static rtx
4c9e08a4 1666rtx_for_function_call (tree fndecl, tree addr)
f3012854 1667{
1668 rtx funexp;
1669
1670 /* Get the function to call, in the form of RTL. */
1671 if (fndecl)
1672 {
3d053e06 1673 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
ea259bbe 1674 TREE_USED (fndecl) = 1;
f3012854 1675
1676 /* Get a SYMBOL_REF rtx for the function address. */
1677 funexp = XEXP (DECL_RTL (fndecl), 0);
1678 }
1679 else
1680 /* Generate an rtx (probably a pseudo-register) for the address. */
1681 {
1682 push_temp_slots ();
8ec3c5c2 1683 funexp = expand_normal (addr);
c87678e4 1684 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
f3012854 1685 }
1686 return funexp;
1687}
1688
74c02416 1689/* Internal state for internal_arg_pointer_based_exp and its helpers. */
1690static struct
1691{
1692 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
1693 or NULL_RTX if none has been scanned yet. */
1694 rtx scan_start;
1695 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
1696 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
1697 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
1698 with fixed offset, or PC if this is with variable or unknown offset. */
1699 VEC(rtx, heap) *cache;
1700} internal_arg_pointer_exp_state;
1701
1702static rtx internal_arg_pointer_based_exp (rtx, bool);
1703
1704/* Helper function for internal_arg_pointer_based_exp. Scan insns in
1705 the tail call sequence, starting with first insn that hasn't been
1706 scanned yet, and note for each pseudo on the LHS whether it is based
1707 on crtl->args.internal_arg_pointer or not, and what offset from that
1708 that pointer it has. */
1709
1710static void
1711internal_arg_pointer_based_exp_scan (void)
1712{
1713 rtx insn, scan_start = internal_arg_pointer_exp_state.scan_start;
1714
1715 if (scan_start == NULL_RTX)
1716 insn = get_insns ();
1717 else
1718 insn = NEXT_INSN (scan_start);
1719
1720 while (insn)
1721 {
1722 rtx set = single_set (insn);
1723 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
1724 {
1725 rtx val = NULL_RTX;
1726 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
1727 /* Punt on pseudos set multiple times. */
1728 if (idx < VEC_length (rtx, internal_arg_pointer_exp_state.cache)
1729 && (VEC_index (rtx, internal_arg_pointer_exp_state.cache, idx)
1730 != NULL_RTX))
1731 val = pc_rtx;
1732 else
1733 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
1734 if (val != NULL_RTX)
1735 {
0c24a6d8 1736 if (idx
1737 >= VEC_length (rtx, internal_arg_pointer_exp_state.cache))
1738 VEC_safe_grow_cleared (rtx, heap,
1739 internal_arg_pointer_exp_state.cache,
1740 idx + 1);
74c02416 1741 VEC_replace (rtx, internal_arg_pointer_exp_state.cache,
1742 idx, val);
1743 }
1744 }
1745 if (NEXT_INSN (insn) == NULL_RTX)
1746 scan_start = insn;
1747 insn = NEXT_INSN (insn);
1748 }
1749
1750 internal_arg_pointer_exp_state.scan_start = scan_start;
1751}
1752
1753/* Helper function for internal_arg_pointer_based_exp, called through
1754 for_each_rtx. Return 1 if *LOC is a register based on
1755 crtl->args.internal_arg_pointer. Return -1 if *LOC is not based on it
1756 and the subexpressions need not be examined. Otherwise return 0. */
1757
1758static int
1759internal_arg_pointer_based_exp_1 (rtx *loc, void *data ATTRIBUTE_UNUSED)
1760{
1761 if (REG_P (*loc) && internal_arg_pointer_based_exp (*loc, false) != NULL_RTX)
1762 return 1;
1763 if (MEM_P (*loc))
1764 return -1;
1765 return 0;
1766}
1767
1768/* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
1769 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
1770 it with fixed offset, or PC if this is with variable or unknown offset.
1771 TOPLEVEL is true if the function is invoked at the topmost level. */
1772
1773static rtx
1774internal_arg_pointer_based_exp (rtx rtl, bool toplevel)
1775{
1776 if (CONSTANT_P (rtl))
1777 return NULL_RTX;
1778
1779 if (rtl == crtl->args.internal_arg_pointer)
1780 return const0_rtx;
1781
1782 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
1783 return NULL_RTX;
1784
1785 if (GET_CODE (rtl) == PLUS && CONST_INT_P (XEXP (rtl, 1)))
1786 {
1787 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
1788 if (val == NULL_RTX || val == pc_rtx)
1789 return val;
29c05e22 1790 return plus_constant (Pmode, val, INTVAL (XEXP (rtl, 1)));
74c02416 1791 }
1792
1793 /* When called at the topmost level, scan pseudo assignments in between the
1794 last scanned instruction in the tail call sequence and the latest insn
1795 in that sequence. */
1796 if (toplevel)
1797 internal_arg_pointer_based_exp_scan ();
1798
1799 if (REG_P (rtl))
1800 {
1801 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
1802 if (idx < VEC_length (rtx, internal_arg_pointer_exp_state.cache))
1803 return VEC_index (rtx, internal_arg_pointer_exp_state.cache, idx);
1804
1805 return NULL_RTX;
1806 }
1807
1808 if (for_each_rtx (&rtl, internal_arg_pointer_based_exp_1, NULL))
1809 return pc_rtx;
1810
1811 return NULL_RTX;
1812}
1813
ff6c0ab2 1814/* Return true if and only if SIZE storage units (usually bytes)
1815 starting from address ADDR overlap with already clobbered argument
1816 area. This function is used to determine if we should give up a
1817 sibcall. */
1818
1819static bool
1820mem_overlaps_already_clobbered_arg_p (rtx addr, unsigned HOST_WIDE_INT size)
1821{
1822 HOST_WIDE_INT i;
74c02416 1823 rtx val;
ff6c0ab2 1824
53c5d9d4 1825 if (bitmap_empty_p (stored_args_map))
9ddeff7e 1826 return false;
74c02416 1827 val = internal_arg_pointer_based_exp (addr, true);
1828 if (val == NULL_RTX)
1829 return false;
1830 else if (val == pc_rtx)
cc0595c0 1831 return true;
ff6c0ab2 1832 else
74c02416 1833 i = INTVAL (val);
98d44ce4 1834#ifdef STACK_GROWS_DOWNWARD
1835 i -= crtl->args.pretend_args_size;
1836#else
1837 i += crtl->args.pretend_args_size;
1838#endif
ff6c0ab2 1839
1840#ifdef ARGS_GROW_DOWNWARD
1841 i = -i - size;
1842#endif
1843 if (size > 0)
1844 {
1845 unsigned HOST_WIDE_INT k;
1846
1847 for (k = 0; k < size; k++)
156093aa 1848 if (i + k < SBITMAP_SIZE (stored_args_map)
ff6c0ab2 1849 && TEST_BIT (stored_args_map, i + k))
1850 return true;
1851 }
1852
1853 return false;
1854}
1855
cde25025 1856/* Do the register loads required for any wholly-register parms or any
1857 parms which are passed both on the stack and in a register. Their
c87678e4 1858 expressions were already evaluated.
cde25025 1859
1860 Mark all register-parms as living through the call, putting these USE
4c9e08a4 1861 insns in the CALL_INSN_FUNCTION_USAGE field.
1862
dc537795 1863 When IS_SIBCALL, perform the check_sibcall_argument_overlap
42b11544 1864 checking, setting *SIBCALL_FAILURE if appropriate. */
cde25025 1865
1866static void
4c9e08a4 1867load_register_parameters (struct arg_data *args, int num_actuals,
1868 rtx *call_fusage, int flags, int is_sibcall,
1869 int *sibcall_failure)
cde25025 1870{
1871 int i, j;
1872
cde25025 1873 for (i = 0; i < num_actuals; i++)
cde25025 1874 {
0e0be288 1875 rtx reg = ((flags & ECF_SIBCALL)
1876 ? args[i].tail_call_reg : args[i].reg);
cde25025 1877 if (reg)
1878 {
5f4cd670 1879 int partial = args[i].partial;
1880 int nregs;
1881 int size = 0;
42b11544 1882 rtx before_arg = get_last_insn ();
83272ab4 1883 /* Set non-negative if we must move a word at a time, even if
1884 just one word (e.g, partial == 4 && mode == DFmode). Set
1885 to -1 if we just use a normal move insn. This value can be
1886 zero if the argument is a zero size structure. */
5f4cd670 1887 nregs = -1;
f054eb3c 1888 if (GET_CODE (reg) == PARALLEL)
1889 ;
1890 else if (partial)
1891 {
1892 gcc_assert (partial % UNITS_PER_WORD == 0);
1893 nregs = partial / UNITS_PER_WORD;
1894 }
5f4cd670 1895 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
1896 {
1897 size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1898 nregs = (size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
1899 }
1900 else
1901 size = GET_MODE_SIZE (args[i].mode);
cde25025 1902
1903 /* Handle calls that pass values in multiple non-contiguous
1904 locations. The Irix 6 ABI has examples of this. */
1905
1906 if (GET_CODE (reg) == PARALLEL)
b600a907 1907 emit_group_move (reg, args[i].parallel_value);
cde25025 1908
1909 /* If simple case, just do move. If normal partial, store_one_arg
1910 has already loaded the register for us. In all other cases,
1911 load the register(s) from memory. */
1912
8e67abab 1913 else if (nregs == -1)
1914 {
1915 emit_move_insn (reg, args[i].value);
5f4cd670 1916#ifdef BLOCK_REG_PADDING
8e67abab 1917 /* Handle case where we have a value that needs shifting
1918 up to the msb. eg. a QImode value and we're padding
1919 upward on a BYTES_BIG_ENDIAN machine. */
1920 if (size < UNITS_PER_WORD
1921 && (args[i].locate.where_pad
1922 == (BYTES_BIG_ENDIAN ? upward : downward)))
1923 {
8e67abab 1924 rtx x;
1925 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
b2abd798 1926
1927 /* Assigning REG here rather than a temp makes CALL_FUSAGE
1928 report the whole reg as used. Strictly speaking, the
1929 call only uses SIZE bytes at the msb end, but it doesn't
1930 seem worth generating rtl to say that. */
1931 reg = gen_rtx_REG (word_mode, REGNO (reg));
f5ff0b21 1932 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
b2abd798 1933 if (x != reg)
1934 emit_move_insn (reg, x);
8e67abab 1935 }
5f4cd670 1936#endif
8e67abab 1937 }
cde25025 1938
1939 /* If we have pre-computed the values to put in the registers in
1940 the case of non-aligned structures, copy them in now. */
1941
1942 else if (args[i].n_aligned_regs != 0)
1943 for (j = 0; j < args[i].n_aligned_regs; j++)
1944 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
1945 args[i].aligned_regs[j]);
1946
e2e0ef92 1947 else if (partial == 0 || args[i].pass_on_stack)
5f4cd670 1948 {
1949 rtx mem = validize_mem (args[i].value);
1950
e2e0ef92 1951 /* Check for overlap with already clobbered argument area,
1952 providing that this has non-zero size. */
ff6c0ab2 1953 if (is_sibcall
e2e0ef92 1954 && (size == 0
1955 || mem_overlaps_already_clobbered_arg_p
1956 (XEXP (args[i].value, 0), size)))
ff6c0ab2 1957 *sibcall_failure = 1;
1958
5f4cd670 1959 /* Handle a BLKmode that needs shifting. */
8e67abab 1960 if (nregs == 1 && size < UNITS_PER_WORD
2c267f1a 1961#ifdef BLOCK_REG_PADDING
1962 && args[i].locate.where_pad == downward
1963#else
1964 && BYTES_BIG_ENDIAN
1965#endif
1966 )
5f4cd670 1967 {
1968 rtx tem = operand_subword_force (mem, 0, args[i].mode);
1969 rtx ri = gen_rtx_REG (word_mode, REGNO (reg));
1970 rtx x = gen_reg_rtx (word_mode);
1971 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
92966f8b 1972 enum tree_code dir = BYTES_BIG_ENDIAN ? RSHIFT_EXPR
1973 : LSHIFT_EXPR;
5f4cd670 1974
1975 emit_move_insn (x, tem);
f5ff0b21 1976 x = expand_shift (dir, word_mode, x, shift, ri, 1);
5f4cd670 1977 if (x != ri)
1978 emit_move_insn (ri, x);
1979 }
1980 else
5f4cd670 1981 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
1982 }
cde25025 1983
42b11544 1984 /* When a parameter is a block, and perhaps in other cases, it is
1985 possible that it did a load from an argument slot that was
6a8fa8e2 1986 already clobbered. */
42b11544 1987 if (is_sibcall
1988 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
1989 *sibcall_failure = 1;
1990
cde25025 1991 /* Handle calls that pass values in multiple non-contiguous
1992 locations. The Irix 6 ABI has examples of this. */
1993 if (GET_CODE (reg) == PARALLEL)
1994 use_group_regs (call_fusage, reg);
1995 else if (nregs == -1)
b4eeceb9 1996 use_reg_mode (call_fusage, reg,
1997 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
c75d013c 1998 else if (nregs > 0)
1999 use_regs (call_fusage, REGNO (reg), nregs);
cde25025 2000 }
2001 }
2002}
2003
92e1ef5b 2004/* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
2005 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
2006 bytes, then we would need to push some additional bytes to pad the
481feae3 2007 arguments. So, we compute an adjust to the stack pointer for an
2008 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
2009 bytes. Then, when the arguments are pushed the stack will be perfectly
2010 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
2011 be popped after the call. Returns the adjustment. */
92e1ef5b 2012
481feae3 2013static int
4c9e08a4 2014combine_pending_stack_adjustment_and_call (int unadjusted_args_size,
2015 struct args_size *args_size,
38413c80 2016 unsigned int preferred_unit_stack_boundary)
92e1ef5b 2017{
2018 /* The number of bytes to pop so that the stack will be
2019 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2020 HOST_WIDE_INT adjustment;
2021 /* The alignment of the stack after the arguments are pushed, if we
2022 just pushed the arguments without adjust the stack here. */
38413c80 2023 unsigned HOST_WIDE_INT unadjusted_alignment;
92e1ef5b 2024
c87678e4 2025 unadjusted_alignment
92e1ef5b 2026 = ((stack_pointer_delta + unadjusted_args_size)
2027 % preferred_unit_stack_boundary);
2028
2029 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2030 as possible -- leaving just enough left to cancel out the
2031 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2032 PENDING_STACK_ADJUST is non-negative, and congruent to
2033 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2034
2035 /* Begin by trying to pop all the bytes. */
c87678e4 2036 unadjusted_alignment
2037 = (unadjusted_alignment
92e1ef5b 2038 - (pending_stack_adjust % preferred_unit_stack_boundary));
2039 adjustment = pending_stack_adjust;
2040 /* Push enough additional bytes that the stack will be aligned
2041 after the arguments are pushed. */
d3ef58ec 2042 if (preferred_unit_stack_boundary > 1)
2043 {
3dc35e62 2044 if (unadjusted_alignment > 0)
c87678e4 2045 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
d3ef58ec 2046 else
c87678e4 2047 adjustment += unadjusted_alignment;
d3ef58ec 2048 }
c87678e4 2049
92e1ef5b 2050 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2051 bytes after the call. The right number is the entire
2052 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2053 by the arguments in the first place. */
c87678e4 2054 args_size->constant
92e1ef5b 2055 = pending_stack_adjust - adjustment + unadjusted_args_size;
2056
481feae3 2057 return adjustment;
92e1ef5b 2058}
2059
7ecc63d3 2060/* Scan X expression if it does not dereference any argument slots
2061 we already clobbered by tail call arguments (as noted in stored_args_map
2062 bitmap).
d10cfa8d 2063 Return nonzero if X expression dereferences such argument slots,
7ecc63d3 2064 zero otherwise. */
2065
2066static int
4c9e08a4 2067check_sibcall_argument_overlap_1 (rtx x)
7ecc63d3 2068{
2069 RTX_CODE code;
2070 int i, j;
7ecc63d3 2071 const char *fmt;
2072
2073 if (x == NULL_RTX)
2074 return 0;
2075
2076 code = GET_CODE (x);
2077
cc0595c0 2078 /* We need not check the operands of the CALL expression itself. */
2079 if (code == CALL)
2080 return 0;
2081
7ecc63d3 2082 if (code == MEM)
ff6c0ab2 2083 return mem_overlaps_already_clobbered_arg_p (XEXP (x, 0),
2084 GET_MODE_SIZE (GET_MODE (x)));
7ecc63d3 2085
c87678e4 2086 /* Scan all subexpressions. */
7ecc63d3 2087 fmt = GET_RTX_FORMAT (code);
2088 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2089 {
2090 if (*fmt == 'e')
c87678e4 2091 {
2092 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
2093 return 1;
2094 }
7ecc63d3 2095 else if (*fmt == 'E')
c87678e4 2096 {
2097 for (j = 0; j < XVECLEN (x, i); j++)
2098 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
2099 return 1;
2100 }
7ecc63d3 2101 }
2102 return 0;
7ecc63d3 2103}
2104
2105/* Scan sequence after INSN if it does not dereference any argument slots
2106 we already clobbered by tail call arguments (as noted in stored_args_map
42b11544 2107 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
2108 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
2109 should be 0). Return nonzero if sequence after INSN dereferences such argument
2110 slots, zero otherwise. */
7ecc63d3 2111
2112static int
4c9e08a4 2113check_sibcall_argument_overlap (rtx insn, struct arg_data *arg, int mark_stored_args_map)
c87678e4 2114{
7ecc63d3 2115 int low, high;
2116
2117 if (insn == NULL_RTX)
2118 insn = get_insns ();
2119 else
2120 insn = NEXT_INSN (insn);
2121
2122 for (; insn; insn = NEXT_INSN (insn))
c87678e4 2123 if (INSN_P (insn)
2124 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
7ecc63d3 2125 break;
2126
42b11544 2127 if (mark_stored_args_map)
2128 {
db10eec8 2129#ifdef ARGS_GROW_DOWNWARD
241399f6 2130 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
db10eec8 2131#else
241399f6 2132 low = arg->locate.slot_offset.constant;
db10eec8 2133#endif
2134
241399f6 2135 for (high = low + arg->locate.size.constant; low < high; low++)
42b11544 2136 SET_BIT (stored_args_map, low);
2137 }
7ecc63d3 2138 return insn != NULL_RTX;
2139}
2140
05d18e8b 2141/* Given that a function returns a value of mode MODE at the most
2142 significant end of hard register VALUE, shift VALUE left or right
2143 as specified by LEFT_P. Return true if some action was needed. */
2c8ff1ed 2144
05d18e8b 2145bool
2146shift_return_value (enum machine_mode mode, bool left_p, rtx value)
2c8ff1ed 2147{
05d18e8b 2148 HOST_WIDE_INT shift;
2149
2150 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
2151 shift = GET_MODE_BITSIZE (GET_MODE (value)) - GET_MODE_BITSIZE (mode);
2152 if (shift == 0)
2153 return false;
2154
2155 /* Use ashr rather than lshr for right shifts. This is for the benefit
2156 of the MIPS port, which requires SImode values to be sign-extended
2157 when stored in 64-bit registers. */
2158 if (!force_expand_binop (GET_MODE (value), left_p ? ashl_optab : ashr_optab,
2159 value, GEN_INT (shift), value, 1, OPTAB_WIDEN))
2160 gcc_unreachable ();
2161 return true;
2c8ff1ed 2162}
2163
90af1361 2164/* If X is a likely-spilled register value, copy it to a pseudo
2165 register and return that register. Return X otherwise. */
2166
2167static rtx
2168avoid_likely_spilled_reg (rtx x)
2169{
f4e36c33 2170 rtx new_rtx;
90af1361 2171
2172 if (REG_P (x)
2173 && HARD_REGISTER_P (x)
24dd0668 2174 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
90af1361 2175 {
2176 /* Make sure that we generate a REG rather than a CONCAT.
2177 Moves into CONCATs can need nontrivial instructions,
2178 and the whole point of this function is to avoid
2179 using the hard register directly in such a situation. */
2180 generating_concat_p = 0;
f4e36c33 2181 new_rtx = gen_reg_rtx (GET_MODE (x));
90af1361 2182 generating_concat_p = 1;
f4e36c33 2183 emit_move_insn (new_rtx, x);
2184 return new_rtx;
90af1361 2185 }
2186 return x;
2187}
2188
c2f47e15 2189/* Generate all the code for a CALL_EXPR exp
66d433c7 2190 and return an rtx for its value.
2191 Store the value in TARGET (specified as an rtx) if convenient.
2192 If the value is stored in TARGET then TARGET is returned.
2193 If IGNORE is nonzero, then we ignore the value of the function call. */
2194
2195rtx
4c9e08a4 2196expand_call (tree exp, rtx target, int ignore)
66d433c7 2197{
60ecc450 2198 /* Nonzero if we are currently expanding a call. */
2199 static int currently_expanding_call = 0;
2200
66d433c7 2201 /* RTX for the function to be called. */
2202 rtx funexp;
60ecc450 2203 /* Sequence of insns to perform a normal "call". */
2204 rtx normal_call_insns = NULL_RTX;
4ee9c684 2205 /* Sequence of insns to perform a tail "call". */
60ecc450 2206 rtx tail_call_insns = NULL_RTX;
66d433c7 2207 /* Data type of the function. */
2208 tree funtype;
915e81b8 2209 tree type_arg_types;
16c9337c 2210 tree rettype;
66d433c7 2211 /* Declaration of the function being called,
2212 or 0 if the function is computed (not known by name). */
2213 tree fndecl = 0;
e100aadc 2214 /* The type of the function being called. */
2215 tree fntype;
4ee9c684 2216 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
60ecc450 2217 int pass;
66d433c7 2218
2219 /* Register in which non-BLKmode value will be returned,
2220 or 0 if no value or if value is BLKmode. */
2221 rtx valreg;
2222 /* Address where we should return a BLKmode value;
2223 0 if value not BLKmode. */
2224 rtx structure_value_addr = 0;
2225 /* Nonzero if that address is being passed by treating it as
2226 an extra, implicit first parameter. Otherwise,
2227 it is passed by being copied directly into struct_value_rtx. */
2228 int structure_value_addr_parm = 0;
cd46caee 2229 /* Holds the value of implicit argument for the struct value. */
2230 tree structure_value_addr_value = NULL_TREE;
66d433c7 2231 /* Size of aggregate value wanted, or zero if none wanted
2232 or if we are using the non-reentrant PCC calling convention
2233 or expecting the value in registers. */
997d68fe 2234 HOST_WIDE_INT struct_value_size = 0;
66d433c7 2235 /* Nonzero if called function returns an aggregate in memory PCC style,
2236 by returning the address of where to find it. */
2237 int pcc_struct_value = 0;
45550790 2238 rtx struct_value = 0;
66d433c7 2239
2240 /* Number of actual parameters in this call, including struct value addr. */
2241 int num_actuals;
2242 /* Number of named args. Args after this are anonymous ones
2243 and they must all go on the stack. */
2244 int n_named_args;
cd46caee 2245 /* Number of complex actual arguments that need to be split. */
2246 int num_complex_actuals = 0;
66d433c7 2247
2248 /* Vector of information about each argument.
2249 Arguments are numbered in the order they will be pushed,
2250 not the order they are written. */
2251 struct arg_data *args;
2252
2253 /* Total size in bytes of all the stack-parms scanned so far. */
2254 struct args_size args_size;
0e0be288 2255 struct args_size adjusted_args_size;
66d433c7 2256 /* Size of arguments before any adjustments (such as rounding). */
cc45e5e8 2257 int unadjusted_args_size;
66d433c7 2258 /* Data on reg parms scanned so far. */
39cba157 2259 CUMULATIVE_ARGS args_so_far_v;
2260 cumulative_args_t args_so_far;
66d433c7 2261 /* Nonzero if a reg parm has been scanned. */
2262 int reg_parm_seen;
a50ca374 2263 /* Nonzero if this is an indirect function call. */
66d433c7 2264
c87678e4 2265 /* Nonzero if we must avoid push-insns in the args for this call.
66d433c7 2266 If stack space is allocated for register parameters, but not by the
2267 caller, then it is preallocated in the fixed part of the stack frame.
2268 So the entire argument block must then be preallocated (i.e., we
2269 ignore PUSH_ROUNDING in that case). */
2270
4448f543 2271 int must_preallocate = !PUSH_ARGS;
66d433c7 2272
eb2f80f3 2273 /* Size of the stack reserved for parameter registers. */
2d7187c2 2274 int reg_parm_stack_space = 0;
2275
66d433c7 2276 /* Address of space preallocated for stack parms
2277 (on machines that lack push insns), or 0 if space not preallocated. */
2278 rtx argblock = 0;
2279
c8010b80 2280 /* Mask of ECF_ and ERF_ flags. */
dfe08167 2281 int flags = 0;
c8010b80 2282 int return_flags = 0;
4448f543 2283#ifdef REG_PARM_STACK_SPACE
66d433c7 2284 /* Define the boundary of the register parm stack space that needs to be
6e96b626 2285 saved, if any. */
2286 int low_to_save, high_to_save;
66d433c7 2287 rtx save_area = 0; /* Place that it is saved */
2288#endif
2289
66d433c7 2290 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2291 char *initial_stack_usage_map = stack_usage_map;
a331ea1b 2292 char *stack_usage_map_buf = NULL;
66d433c7 2293
9069face 2294 int old_stack_allocated;
2295
2296 /* State variables to track stack modifications. */
66d433c7 2297 rtx old_stack_level = 0;
9069face 2298 int old_stack_arg_under_construction = 0;
65dccdb1 2299 int old_pending_adj = 0;
66d433c7 2300 int old_inhibit_defer_pop = inhibit_defer_pop;
9069face 2301
2302 /* Some stack pointer alterations we make are performed via
2303 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
2304 which we then also need to save/restore along the way. */
31d035ca 2305 int old_stack_pointer_delta = 0;
9069face 2306
60ecc450 2307 rtx call_fusage;
c2f47e15 2308 tree addr = CALL_EXPR_FN (exp);
19cb6b50 2309 int i;
92e1ef5b 2310 /* The alignment of the stack, in bits. */
38413c80 2311 unsigned HOST_WIDE_INT preferred_stack_boundary;
92e1ef5b 2312 /* The alignment of the stack, in bytes. */
38413c80 2313 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
4ee9c684 2314 /* The static chain value to use for this call. */
2315 rtx static_chain_value;
dfe08167 2316 /* See if this is "nothrow" function call. */
2317 if (TREE_NOTHROW (exp))
2318 flags |= ECF_NOTHROW;
2319
4ee9c684 2320 /* See if we can find a DECL-node for the actual function, and get the
2321 function attributes (flags) from the function decl or type node. */
97a1590b 2322 fndecl = get_callee_fndecl (exp);
2323 if (fndecl)
66d433c7 2324 {
e100aadc 2325 fntype = TREE_TYPE (fndecl);
97a1590b 2326 flags |= flags_from_decl_or_type (fndecl);
c8010b80 2327 return_flags |= decl_return_flags (fndecl);
66d433c7 2328 }
97a1590b 2329 else
8a8cdb8d 2330 {
16c9337c 2331 fntype = TREE_TYPE (TREE_TYPE (addr));
e100aadc 2332 flags |= flags_from_decl_or_type (fntype);
8a8cdb8d 2333 }
16c9337c 2334 rettype = TREE_TYPE (exp);
d490e2f2 2335
e100aadc 2336 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
45550790 2337
4a081ddd 2338 /* Warn if this value is an aggregate type,
2339 regardless of which calling convention we are using for it. */
16c9337c 2340 if (AGGREGATE_TYPE_P (rettype))
efb9d9ee 2341 warning (OPT_Waggregate_return, "function call has aggregate value");
4a081ddd 2342
9c2a0c05 2343 /* If the result of a non looping pure or const function call is
2344 ignored (or void), and none of its arguments are volatile, we can
2345 avoid expanding the call and just evaluate the arguments for
2346 side-effects. */
4a081ddd 2347 if ((flags & (ECF_CONST | ECF_PURE))
9c2a0c05 2348 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
4a081ddd 2349 && (ignore || target == const0_rtx
16c9337c 2350 || TYPE_MODE (rettype) == VOIDmode))
4a081ddd 2351 {
2352 bool volatilep = false;
2353 tree arg;
cd46caee 2354 call_expr_arg_iterator iter;
4a081ddd 2355
cd46caee 2356 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2357 if (TREE_THIS_VOLATILE (arg))
4a081ddd 2358 {
2359 volatilep = true;
2360 break;
2361 }
2362
2363 if (! volatilep)
2364 {
cd46caee 2365 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2366 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
4a081ddd 2367 return const0_rtx;
2368 }
2369 }
2370
2d7187c2 2371#ifdef REG_PARM_STACK_SPACE
fa20f865 2372 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
2d7187c2 2373#endif
2d7187c2 2374
fa20f865 2375 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
22c61100 2376 && reg_parm_stack_space > 0 && PUSH_ARGS)
997d68fe 2377 must_preallocate = 1;
997d68fe 2378
66d433c7 2379 /* Set up a place to return a structure. */
2380
2381 /* Cater to broken compilers. */
4cd5bb61 2382 if (aggregate_value_p (exp, fntype))
66d433c7 2383 {
2384 /* This call returns a big structure. */
2dd6f9ed 2385 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
66d433c7 2386
2387#ifdef PCC_STATIC_STRUCT_RETURN
f49c64ba 2388 {
2389 pcc_struct_value = 1;
f49c64ba 2390 }
2391#else /* not PCC_STATIC_STRUCT_RETURN */
2392 {
16c9337c 2393 struct_value_size = int_size_in_bytes (rettype);
66d433c7 2394
ea523851 2395 if (target && MEM_P (target) && CALL_EXPR_RETURN_SLOT_OPT (exp))
f49c64ba 2396 structure_value_addr = XEXP (target, 0);
2397 else
2398 {
f49c64ba 2399 /* For variable-sized objects, we must be called with a target
2400 specified. If we were to allocate space on the stack here,
2401 we would have no way of knowing when to free it. */
0ab48139 2402 rtx d = assign_temp (rettype, 1, 1);
930f0e87 2403 structure_value_addr = XEXP (d, 0);
f49c64ba 2404 target = 0;
2405 }
2406 }
2407#endif /* not PCC_STATIC_STRUCT_RETURN */
66d433c7 2408 }
2409
0e0be288 2410 /* Figure out the amount to which the stack should be aligned. */
0e0be288 2411 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
28992b23 2412 if (fndecl)
2413 {
2414 struct cgraph_rtl_info *i = cgraph_rtl_info (fndecl);
9a27561f 2415 /* Without automatic stack alignment, we can't increase preferred
2416 stack boundary. With automatic stack alignment, it is
2417 unnecessary since unless we can guarantee that all callers will
2418 align the outgoing stack properly, callee has to align its
2419 stack anyway. */
2420 if (i
2421 && i->preferred_incoming_stack_boundary
2422 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
28992b23 2423 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
2424 }
0e0be288 2425
2426 /* Operand 0 is a pointer-to-function; get the type of the function. */
95672afe 2427 funtype = TREE_TYPE (addr);
231bd014 2428 gcc_assert (POINTER_TYPE_P (funtype));
0e0be288 2429 funtype = TREE_TYPE (funtype);
2430
cd46caee 2431 /* Count whether there are actual complex arguments that need to be split
2432 into their real and imaginary parts. Munge the type_arg_types
2433 appropriately here as well. */
92d40bc4 2434 if (targetm.calls.split_complex_arg)
915e81b8 2435 {
cd46caee 2436 call_expr_arg_iterator iter;
2437 tree arg;
2438 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2439 {
2440 tree type = TREE_TYPE (arg);
2441 if (type && TREE_CODE (type) == COMPLEX_TYPE
2442 && targetm.calls.split_complex_arg (type))
2443 num_complex_actuals++;
2444 }
915e81b8 2445 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
915e81b8 2446 }
2447 else
2448 type_arg_types = TYPE_ARG_TYPES (funtype);
2449
0e0be288 2450 if (flags & ECF_MAY_BE_ALLOCA)
18d50ae6 2451 cfun->calls_alloca = 1;
0e0be288 2452
2453 /* If struct_value_rtx is 0, it means pass the address
cd46caee 2454 as if it were an extra parameter. Put the argument expression
2455 in structure_value_addr_value. */
45550790 2456 if (structure_value_addr && struct_value == 0)
0e0be288 2457 {
2458 /* If structure_value_addr is a REG other than
2459 virtual_outgoing_args_rtx, we can use always use it. If it
2460 is not a REG, we must always copy it into a register.
2461 If it is virtual_outgoing_args_rtx, we must copy it to another
2462 register in some cases. */
8ad4c111 2463 rtx temp = (!REG_P (structure_value_addr)
0e0be288 2464 || (ACCUMULATE_OUTGOING_ARGS
2465 && stack_arg_under_construction
2466 && structure_value_addr == virtual_outgoing_args_rtx)
0d568ddf 2467 ? copy_addr_to_reg (convert_memory_address
e100aadc 2468 (Pmode, structure_value_addr))
0e0be288 2469 : structure_value_addr);
2470
cd46caee 2471 structure_value_addr_value =
2472 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
0e0be288 2473 structure_value_addr_parm = 1;
2474 }
2475
2476 /* Count the arguments and set NUM_ACTUALS. */
cd46caee 2477 num_actuals =
2478 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
0e0be288 2479
2480 /* Compute number of named args.
30a10006 2481 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
2482
2483 if (type_arg_types != 0)
2484 n_named_args
2485 = (list_length (type_arg_types)
2486 /* Count the struct value address, if it is passed as a parm. */
2487 + structure_value_addr_parm);
2488 else
2489 /* If we know nothing, treat all args as named. */
2490 n_named_args = num_actuals;
2491
2492 /* Start updating where the next arg would go.
2493
2494 On some machines (such as the PA) indirect calls have a different
2495 calling convention than normal calls. The fourth argument in
2496 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2497 or not. */
39cba157 2498 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
2499 args_so_far = pack_cumulative_args (&args_so_far_v);
30a10006 2500
2501 /* Now possibly adjust the number of named args.
0e0be288 2502 Normally, don't include the last named arg if anonymous args follow.
8bdddbd1 2503 We do include the last named arg if
2504 targetm.calls.strict_argument_naming() returns nonzero.
0e0be288 2505 (If no anonymous args follow, the result of list_length is actually
2506 one too large. This is harmless.)
2507
a107cd89 2508 If targetm.calls.pretend_outgoing_varargs_named() returns
8bdddbd1 2509 nonzero, and targetm.calls.strict_argument_naming() returns zero,
2510 this machine will be able to place unnamed args that were passed
2511 in registers into the stack. So treat all args as named. This
2512 allows the insns emitting for a specific argument list to be
2513 independent of the function declaration.
a107cd89 2514
2515 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
2516 we do not have any reliable way to pass unnamed args in
2517 registers, so we must force them into memory. */
0e0be288 2518
30a10006 2519 if (type_arg_types != 0
39cba157 2520 && targetm.calls.strict_argument_naming (args_so_far))
30a10006 2521 ;
2522 else if (type_arg_types != 0
39cba157 2523 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
30a10006 2524 /* Don't include the last named arg. */
2525 --n_named_args;
0e0be288 2526 else
30a10006 2527 /* Treat all args as named. */
0e0be288 2528 n_named_args = num_actuals;
2529
0e0be288 2530 /* Make a vector to hold all the information about each arg. */
364c0c59 2531 args = XALLOCAVEC (struct arg_data, num_actuals);
f0af5a88 2532 memset (args, 0, num_actuals * sizeof (struct arg_data));
0e0be288 2533
00dddcf2 2534 /* Build up entries in the ARGS array, compute the size of the
2535 arguments into ARGS_SIZE, etc. */
0e0be288 2536 initialize_argument_information (num_actuals, args, &args_size,
cd46caee 2537 n_named_args, exp,
d8b9c828 2538 structure_value_addr_value, fndecl, fntype,
39cba157 2539 args_so_far, reg_parm_stack_space,
0e0be288 2540 &old_stack_level, &old_pending_adj,
eaa112a0 2541 &must_preallocate, &flags,
4ee9c684 2542 &try_tail_call, CALL_FROM_THUNK_P (exp));
0e0be288 2543
2544 if (args_size.var)
2dd6f9ed 2545 must_preallocate = 1;
0e0be288 2546
2547 /* Now make final decision about preallocating stack space. */
2548 must_preallocate = finalize_must_preallocate (must_preallocate,
2549 num_actuals, args,
2550 &args_size);
2551
2552 /* If the structure value address will reference the stack pointer, we
2553 must stabilize it. We don't need to do this if we know that we are
2554 not going to adjust the stack pointer in processing this call. */
2555
2556 if (structure_value_addr
2557 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2558 || reg_mentioned_p (virtual_outgoing_args_rtx,
2559 structure_value_addr))
2560 && (args_size.var
2561 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2562 structure_value_addr = copy_to_reg (structure_value_addr);
60ecc450 2563
0d568ddf 2564 /* Tail calls can make things harder to debug, and we've traditionally
4f8af819 2565 pushed these optimizations into -O2. Don't try if we're already
fdf2b689 2566 expanding a call, as that means we're an argument. Don't try if
011e6b51 2567 there's cleanups, as we know there's code to follow the call. */
60ecc450 2568
0e0be288 2569 if (currently_expanding_call++ != 0
2570 || !flag_optimize_sibling_calls
4ee9c684 2571 || args_size.var
3072d30e 2572 || dbg_cnt (tail_call) == false)
4ee9c684 2573 try_tail_call = 0;
0e0be288 2574
2575 /* Rest of purposes for tail call optimizations to fail. */
2576 if (
2577#ifdef HAVE_sibcall_epilogue
2578 !HAVE_sibcall_epilogue
2579#else
2580 1
2581#endif
2582 || !try_tail_call
2583 /* Doing sibling call optimization needs some work, since
2584 structure_value_addr can be allocated on the stack.
2585 It does not seem worth the effort since few optimizable
2586 sibling calls will return a structure. */
2587 || structure_value_addr != NULL_RTX
aa7aa403 2588#ifdef REG_PARM_STACK_SPACE
91ebded8 2589 /* If outgoing reg parm stack space changes, we can not do sibcall. */
2590 || (OUTGOING_REG_PARM_STACK_SPACE (funtype)
2591 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl)))
2592 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (fndecl))
aa7aa403 2593#endif
805e22b2 2594 /* Check whether the target is able to optimize the call
2595 into a sibcall. */
883b2e73 2596 || !targetm.function_ok_for_sibcall (fndecl, exp)
805e22b2 2597 /* Functions that do not return exactly once may not be sibcall
a0c938f0 2598 optimized. */
4fec1d6c 2599 || (flags & (ECF_RETURNS_TWICE | ECF_NORETURN))
95672afe 2600 || TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr)))
4c4a1039 2601 /* If the called function is nested in the current one, it might access
a0c938f0 2602 some of the caller's arguments, but could clobber them beforehand if
2603 the argument areas are shared. */
4c4a1039 2604 || (fndecl && decl_function_context (fndecl) == current_function_decl)
0e0be288 2605 /* If this function requires more stack slots than the current
99b442ff 2606 function, we cannot change it into a sibling call.
abe32cce 2607 crtl->args.pretend_args_size is not part of the
99b442ff 2608 stack allocated by our caller. */
abe32cce 2609 || args_size.constant > (crtl->args.size
2610 - crtl->args.pretend_args_size)
0e0be288 2611 /* If the callee pops its own arguments, then it must pop exactly
2612 the same number of arguments as the current function. */
f5bc28da 2613 || (targetm.calls.return_pops_args (fndecl, funtype, args_size.constant)
2614 != targetm.calls.return_pops_args (current_function_decl,
2615 TREE_TYPE (current_function_decl),
2616 crtl->args.size))
dc24ddbd 2617 || !lang_hooks.decls.ok_for_sibcall (fndecl))
8b1cb18e 2618 try_tail_call = 0;
4b066641 2619
4681dd41 2620 /* Check if caller and callee disagree in promotion of function
2621 return value. */
2622 if (try_tail_call)
2623 {
2624 enum machine_mode caller_mode, caller_promoted_mode;
2625 enum machine_mode callee_mode, callee_promoted_mode;
2626 int caller_unsignedp, callee_unsignedp;
2627 tree caller_res = DECL_RESULT (current_function_decl);
2628
2629 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
3b2411a8 2630 caller_mode = DECL_MODE (caller_res);
4681dd41 2631 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
3b2411a8 2632 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
2633 caller_promoted_mode
2634 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
2635 &caller_unsignedp,
2636 TREE_TYPE (current_function_decl), 1);
2637 callee_promoted_mode
c879dbcf 2638 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
3b2411a8 2639 &callee_unsignedp,
c879dbcf 2640 funtype, 1);
4681dd41 2641 if (caller_mode != VOIDmode
2642 && (caller_promoted_mode != callee_promoted_mode
2643 || ((caller_mode != caller_promoted_mode
2644 || callee_mode != callee_promoted_mode)
2645 && (caller_unsignedp != callee_unsignedp
2646 || GET_MODE_BITSIZE (caller_mode)
2647 < GET_MODE_BITSIZE (callee_mode)))))
2648 try_tail_call = 0;
2649 }
2650
755ece1f 2651 /* Ensure current function's preferred stack boundary is at least
2652 what we need. Stack alignment may also increase preferred stack
2653 boundary. */
54d759e3 2654 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
edb7afe8 2655 crtl->preferred_stack_boundary = preferred_stack_boundary;
755ece1f 2656 else
2657 preferred_stack_boundary = crtl->preferred_stack_boundary;
d0285dd8 2658
0e0be288 2659 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
4b066641 2660
60ecc450 2661 /* We want to make two insn chains; one for a sibling call, the other
2662 for a normal call. We will select one of the two chains after
2663 initial RTL generation is complete. */
6e96b626 2664 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
60ecc450 2665 {
2666 int sibcall_failure = 0;
35a3065a 2667 /* We want to emit any pending stack adjustments before the tail
60ecc450 2668 recursion "call". That way we know any adjustment after the tail
0d568ddf 2669 recursion call can be ignored if we indeed use the tail
60ecc450 2670 call expansion. */
9a5bbcc2 2671 int save_pending_stack_adjust = 0;
2672 int save_stack_pointer_delta = 0;
60ecc450 2673 rtx insns;
c0e7e9f7 2674 rtx before_call, next_arg_reg, after_args;
1e2b2ab3 2675
60ecc450 2676 if (pass == 0)
2677 {
60ecc450 2678 /* State variables we need to save and restore between
2679 iterations. */
2680 save_pending_stack_adjust = pending_stack_adjust;
91b70175 2681 save_stack_pointer_delta = stack_pointer_delta;
60ecc450 2682 }
dfe08167 2683 if (pass)
2684 flags &= ~ECF_SIBCALL;
2685 else
2686 flags |= ECF_SIBCALL;
66d433c7 2687
60ecc450 2688 /* Other state variables that we must reinitialize each time
dfe08167 2689 through the loop (that are not initialized by the loop itself). */
60ecc450 2690 argblock = 0;
2691 call_fusage = 0;
2f921ec9 2692
c87678e4 2693 /* Start a new sequence for the normal call case.
66d433c7 2694
60ecc450 2695 From this point on, if the sibling call fails, we want to set
2696 sibcall_failure instead of continuing the loop. */
2697 start_sequence ();
412321ce 2698
60ecc450 2699 /* Don't let pending stack adjusts add up to too much.
2700 Also, do all pending adjustments now if there is any chance
2701 this might be a call to alloca or if we are expanding a sibling
ff3ae375 2702 call sequence.
82e95be3 2703 Also do the adjustments before a throwing call, otherwise
2704 exception handling can fail; PR 19225. */
60ecc450 2705 if (pending_stack_adjust >= 32
5edaabad 2706 || (pending_stack_adjust > 0
ff3ae375 2707 && (flags & ECF_MAY_BE_ALLOCA))
82e95be3 2708 || (pending_stack_adjust > 0
2709 && flag_exceptions && !(flags & ECF_NOTHROW))
60ecc450 2710 || pass == 0)
2711 do_pending_stack_adjust ();
66d433c7 2712
60ecc450 2713 /* Precompute any arguments as needed. */
02510658 2714 if (pass)
2dd6f9ed 2715 precompute_arguments (num_actuals, args);
66d433c7 2716
60ecc450 2717 /* Now we are about to start emitting insns that can be deleted
2718 if a libcall is deleted. */
2dd6f9ed 2719 if (pass && (flags & ECF_MALLOC))
60ecc450 2720 start_sequence ();
66d433c7 2721
edb7afe8 2722 if (pass == 0 && crtl->stack_protect_guard)
71d89928 2723 stack_protect_epilogue ();
2724
0e0be288 2725 adjusted_args_size = args_size;
481feae3 2726 /* Compute the actual size of the argument block required. The variable
2727 and constant sizes must be combined, the size may have to be rounded,
2728 and there may be a minimum required size. When generating a sibcall
2729 pattern, do not round up, since we'll be re-using whatever space our
2730 caller provided. */
2731 unadjusted_args_size
c87678e4 2732 = compute_argument_block_size (reg_parm_stack_space,
2733 &adjusted_args_size,
fa20f865 2734 fndecl, fntype,
481feae3 2735 (pass == 0 ? 0
2736 : preferred_stack_boundary));
2737
c87678e4 2738 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
481feae3 2739
02510658 2740 /* The argument block when performing a sibling call is the
a0c938f0 2741 incoming argument block. */
02510658 2742 if (pass == 0)
7ecc63d3 2743 {
27a7a23a 2744 argblock = crtl->args.internal_arg_pointer;
bd54bbc6 2745 argblock
2746#ifdef STACK_GROWS_DOWNWARD
29c05e22 2747 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
bd54bbc6 2748#else
29c05e22 2749 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
bd54bbc6 2750#endif
7ecc63d3 2751 stored_args_map = sbitmap_alloc (args_size.constant);
53c5d9d4 2752 bitmap_clear (stored_args_map);
7ecc63d3 2753 }
481feae3 2754
60ecc450 2755 /* If we have no actual push instructions, or shouldn't use them,
2756 make space for all args right now. */
0e0be288 2757 else if (adjusted_args_size.var != 0)
66d433c7 2758 {
60ecc450 2759 if (old_stack_level == 0)
2760 {
e9c97615 2761 emit_stack_save (SAVE_BLOCK, &old_stack_level);
9069face 2762 old_stack_pointer_delta = stack_pointer_delta;
60ecc450 2763 old_pending_adj = pending_stack_adjust;
2764 pending_stack_adjust = 0;
60ecc450 2765 /* stack_arg_under_construction says whether a stack arg is
2766 being constructed at the old stack level. Pushing the stack
2767 gets a clean outgoing argument block. */
2768 old_stack_arg_under_construction = stack_arg_under_construction;
2769 stack_arg_under_construction = 0;
60ecc450 2770 }
0e0be288 2771 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
8c0dd614 2772 if (flag_stack_usage_info)
990495a7 2773 current_function_has_unbounded_dynamic_stack_size = 1;
66d433c7 2774 }
60ecc450 2775 else
2776 {
2777 /* Note that we must go through the motions of allocating an argument
2778 block even if the size is zero because we may be storing args
2779 in the area reserved for register arguments, which may be part of
2780 the stack frame. */
7221f864 2781
0e0be288 2782 int needed = adjusted_args_size.constant;
66d433c7 2783
60ecc450 2784 /* Store the maximum argument space used. It will be pushed by
2785 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
2786 checking). */
66d433c7 2787
abe32cce 2788 if (needed > crtl->outgoing_args_size)
2789 crtl->outgoing_args_size = needed;
66d433c7 2790
60ecc450 2791 if (must_preallocate)
2792 {
4448f543 2793 if (ACCUMULATE_OUTGOING_ARGS)
2794 {
02510658 2795 /* Since the stack pointer will never be pushed, it is
2796 possible for the evaluation of a parm to clobber
2797 something we have already written to the stack.
2798 Since most function calls on RISC machines do not use
2799 the stack, this is uncommon, but must work correctly.
7221f864 2800
4448f543 2801 Therefore, we save any area of the stack that was already
02510658 2802 written and that we are using. Here we set up to do this
2803 by making a new stack usage map from the old one. The
c87678e4 2804 actual save will be done by store_one_arg.
7221f864 2805
4448f543 2806 Another approach might be to try to reorder the argument
2807 evaluations to avoid this conflicting stack usage. */
7221f864 2808
02510658 2809 /* Since we will be writing into the entire argument area,
2810 the map must be allocated for its entire size, not just
2811 the part that is the responsibility of the caller. */
fa20f865 2812 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
63c68695 2813 needed += reg_parm_stack_space;
66d433c7 2814
2815#ifdef ARGS_GROW_DOWNWARD
4448f543 2816 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2817 needed + 1);
66d433c7 2818#else
4448f543 2819 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2820 needed);
66d433c7 2821#endif
dd045aee 2822 free (stack_usage_map_buf);
4c36ffe6 2823 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
a331ea1b 2824 stack_usage_map = stack_usage_map_buf;
66d433c7 2825
4448f543 2826 if (initial_highest_arg_in_use)
8e547276 2827 memcpy (stack_usage_map, initial_stack_usage_map,
2828 initial_highest_arg_in_use);
d1b03b62 2829
4448f543 2830 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
93d3b7de 2831 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
4448f543 2832 (highest_outgoing_arg_in_use
2833 - initial_highest_arg_in_use));
2834 needed = 0;
d1b03b62 2835
02510658 2836 /* The address of the outgoing argument list must not be
2837 copied to a register here, because argblock would be left
2838 pointing to the wrong place after the call to
c87678e4 2839 allocate_dynamic_stack_space below. */
d1b03b62 2840
4448f543 2841 argblock = virtual_outgoing_args_rtx;
c87678e4 2842 }
4448f543 2843 else
7221f864 2844 {
4448f543 2845 if (inhibit_defer_pop == 0)
60ecc450 2846 {
4448f543 2847 /* Try to reuse some or all of the pending_stack_adjust
481feae3 2848 to get this space. */
2849 needed
c87678e4 2850 = (combine_pending_stack_adjustment_and_call
481feae3 2851 (unadjusted_args_size,
0e0be288 2852 &adjusted_args_size,
481feae3 2853 preferred_unit_stack_boundary));
2854
2855 /* combine_pending_stack_adjustment_and_call computes
2856 an adjustment before the arguments are allocated.
2857 Account for them and see whether or not the stack
2858 needs to go up or down. */
2859 needed = unadjusted_args_size - needed;
2860
2861 if (needed < 0)
4448f543 2862 {
481feae3 2863 /* We're releasing stack space. */
2864 /* ??? We can avoid any adjustment at all if we're
2865 already aligned. FIXME. */
2866 pending_stack_adjust = -needed;
2867 do_pending_stack_adjust ();
4448f543 2868 needed = 0;
2869 }
c87678e4 2870 else
481feae3 2871 /* We need to allocate space. We'll do that in
2872 push_block below. */
2873 pending_stack_adjust = 0;
60ecc450 2874 }
481feae3 2875
2876 /* Special case this because overhead of `push_block' in
2877 this case is non-trivial. */
4448f543 2878 if (needed == 0)
2879 argblock = virtual_outgoing_args_rtx;
60ecc450 2880 else
ad3b56f3 2881 {
2882 argblock = push_block (GEN_INT (needed), 0, 0);
2883#ifdef ARGS_GROW_DOWNWARD
29c05e22 2884 argblock = plus_constant (Pmode, argblock, needed);
ad3b56f3 2885#endif
2886 }
4448f543 2887
02510658 2888 /* We only really need to call `copy_to_reg' in the case
2889 where push insns are going to be used to pass ARGBLOCK
2890 to a function call in ARGS. In that case, the stack
2891 pointer changes value from the allocation point to the
2892 call point, and hence the value of
2893 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
2894 as well always do it. */
4448f543 2895 argblock = copy_to_reg (argblock);
9069face 2896 }
2897 }
2898 }
60ecc450 2899
9069face 2900 if (ACCUMULATE_OUTGOING_ARGS)
2901 {
2902 /* The save/restore code in store_one_arg handles all
2903 cases except one: a constructor call (including a C
2904 function returning a BLKmode struct) to initialize
2905 an argument. */
2906 if (stack_arg_under_construction)
2907 {
63c68695 2908 rtx push_size
2909 = GEN_INT (adjusted_args_size.constant
fa20f865 2910 + (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype
22c61100 2911 : TREE_TYPE (fndecl))) ? 0
63c68695 2912 : reg_parm_stack_space));
9069face 2913 if (old_stack_level == 0)
2914 {
e9c97615 2915 emit_stack_save (SAVE_BLOCK, &old_stack_level);
9069face 2916 old_stack_pointer_delta = stack_pointer_delta;
2917 old_pending_adj = pending_stack_adjust;
2918 pending_stack_adjust = 0;
2919 /* stack_arg_under_construction says whether a stack
2920 arg is being constructed at the old stack level.
2921 Pushing the stack gets a clean outgoing argument
2922 block. */
2923 old_stack_arg_under_construction
2924 = stack_arg_under_construction;
2925 stack_arg_under_construction = 0;
2926 /* Make a new map for the new argument list. */
dd045aee 2927 free (stack_usage_map_buf);
43959b95 2928 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
a331ea1b 2929 stack_usage_map = stack_usage_map_buf;
9069face 2930 highest_outgoing_arg_in_use = 0;
4448f543 2931 }
990495a7 2932 /* We can pass TRUE as the 4th argument because we just
2933 saved the stack pointer and will restore it right after
2934 the call. */
5be42b39 2935 allocate_dynamic_stack_space (push_size, 0,
2936 BIGGEST_ALIGNMENT, true);
60ecc450 2937 }
a3585b90 2938
9069face 2939 /* If argument evaluation might modify the stack pointer,
2940 copy the address of the argument list to a register. */
2941 for (i = 0; i < num_actuals; i++)
2942 if (args[i].pass_on_stack)
2943 {
2944 argblock = copy_addr_to_reg (argblock);
2945 break;
2946 }
2947 }
4c9e08a4 2948
60ecc450 2949 compute_argument_addresses (args, argblock, num_actuals);
a3585b90 2950
60ecc450 2951 /* If we push args individually in reverse order, perform stack alignment
2952 before the first push (the last arg). */
4448f543 2953 if (PUSH_ARGS_REVERSED && argblock == 0
0e0be288 2954 && adjusted_args_size.constant != unadjusted_args_size)
ff92623c 2955 {
60ecc450 2956 /* When the stack adjustment is pending, we get better code
2957 by combining the adjustments. */
c87678e4 2958 if (pending_stack_adjust
60ecc450 2959 && ! inhibit_defer_pop)
481feae3 2960 {
2961 pending_stack_adjust
c87678e4 2962 = (combine_pending_stack_adjustment_and_call
481feae3 2963 (unadjusted_args_size,
0e0be288 2964 &adjusted_args_size,
481feae3 2965 preferred_unit_stack_boundary));
2966 do_pending_stack_adjust ();
2967 }
60ecc450 2968 else if (argblock == 0)
0e0be288 2969 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
60ecc450 2970 - unadjusted_args_size));
60ecc450 2971 }
fa4f1f09 2972 /* Now that the stack is properly aligned, pops can't safely
2973 be deferred during the evaluation of the arguments. */
2974 NO_DEFER_POP;
66d433c7 2975
990495a7 2976 /* Record the maximum pushed stack space size. We need to delay
2977 doing it this far to take into account the optimization done
2978 by combine_pending_stack_adjustment_and_call. */
8c0dd614 2979 if (flag_stack_usage_info
990495a7 2980 && !ACCUMULATE_OUTGOING_ARGS
2981 && pass
2982 && adjusted_args_size.var == 0)
2983 {
2984 int pushed = adjusted_args_size.constant + pending_stack_adjust;
2985 if (pushed > current_function_pushed_stack_size)
2986 current_function_pushed_stack_size = pushed;
2987 }
2988
95672afe 2989 funexp = rtx_for_function_call (fndecl, addr);
66d433c7 2990
60ecc450 2991 /* Figure out the register where the value, if any, will come back. */
2992 valreg = 0;
16c9337c 2993 if (TYPE_MODE (rettype) != VOIDmode
60ecc450 2994 && ! structure_value_addr)
2995 {
2996 if (pcc_struct_value)
16c9337c 2997 valreg = hard_function_value (build_pointer_type (rettype),
46b3ff29 2998 fndecl, NULL, (pass == 0));
60ecc450 2999 else
16c9337c 3000 valreg = hard_function_value (rettype, fndecl, fntype,
46b3ff29 3001 (pass == 0));
2d329930 3002
3003 /* If VALREG is a PARALLEL whose first member has a zero
3004 offset, use that. This is for targets such as m68k that
3005 return the same value in multiple places. */
3006 if (GET_CODE (valreg) == PARALLEL)
3007 {
3008 rtx elem = XVECEXP (valreg, 0, 0);
3009 rtx where = XEXP (elem, 0);
3010 rtx offset = XEXP (elem, 1);
3011 if (offset == const0_rtx
3012 && GET_MODE (where) == GET_MODE (valreg))
3013 valreg = where;
3014 }
60ecc450 3015 }
66d433c7 3016
60ecc450 3017 /* Precompute all register parameters. It isn't safe to compute anything
3018 once we have started filling any specific hard regs. */
3019 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
66d433c7 3020
c2f47e15 3021 if (CALL_EXPR_STATIC_CHAIN (exp))
3022 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
4ee9c684 3023 else
3024 static_chain_value = 0;
3025
4448f543 3026#ifdef REG_PARM_STACK_SPACE
60ecc450 3027 /* Save the fixed argument area if it's part of the caller's frame and
3028 is clobbered by argument setup for this call. */
02510658 3029 if (ACCUMULATE_OUTGOING_ARGS && pass)
4448f543 3030 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3031 &low_to_save, &high_to_save);
41332f48 3032#endif
66d433c7 3033
60ecc450 3034 /* Now store (and compute if necessary) all non-register parms.
3035 These come before register parms, since they can require block-moves,
3036 which could clobber the registers used for register parms.
3037 Parms which have partial registers are not stored here,
3038 but we do preallocate space here if they want that. */
66d433c7 3039
60ecc450 3040 for (i = 0; i < num_actuals; i++)
eb940a48 3041 {
3042 if (args[i].reg == 0 || args[i].pass_on_stack)
3043 {
3044 rtx before_arg = get_last_insn ();
3045
3046 if (store_one_arg (&args[i], argblock, flags,
3047 adjusted_args_size.var != 0,
3048 reg_parm_stack_space)
3049 || (pass == 0
3050 && check_sibcall_argument_overlap (before_arg,
3051 &args[i], 1)))
3052 sibcall_failure = 1;
3053 }
3054
4143d08b 3055 if (args[i].stack)
b4eeceb9 3056 call_fusage
3057 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
3058 gen_rtx_USE (VOIDmode, args[i].stack),
3059 call_fusage);
eb940a48 3060 }
60ecc450 3061
3062 /* If we have a parm that is passed in registers but not in memory
3063 and whose alignment does not permit a direct copy into registers,
3064 make a group of pseudos that correspond to each register that we
3065 will later fill. */
3066 if (STRICT_ALIGNMENT)
3067 store_unaligned_arguments_into_pseudos (args, num_actuals);
3068
3069 /* Now store any partially-in-registers parm.
3070 This is the last place a block-move can happen. */
3071 if (reg_parm_seen)
3072 for (i = 0; i < num_actuals; i++)
3073 if (args[i].partial != 0 && ! args[i].pass_on_stack)
7ecc63d3 3074 {
3075 rtx before_arg = get_last_insn ();
3076
57679d39 3077 if (store_one_arg (&args[i], argblock, flags,
3078 adjusted_args_size.var != 0,
3079 reg_parm_stack_space)
3080 || (pass == 0
3081 && check_sibcall_argument_overlap (before_arg,
42b11544 3082 &args[i], 1)))
7ecc63d3 3083 sibcall_failure = 1;
3084 }
66d433c7 3085
60ecc450 3086 /* If we pushed args in forward order, perform stack alignment
3087 after pushing the last arg. */
4448f543 3088 if (!PUSH_ARGS_REVERSED && argblock == 0)
0e0be288 3089 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
60ecc450 3090 - unadjusted_args_size));
66d433c7 3091
60ecc450 3092 /* If register arguments require space on the stack and stack space
3093 was not preallocated, allocate stack space here for arguments
3094 passed in registers. */
fa20f865 3095 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
22c61100 3096 && !ACCUMULATE_OUTGOING_ARGS
c87678e4 3097 && must_preallocate == 0 && reg_parm_stack_space > 0)
60ecc450 3098 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
985adbca 3099
60ecc450 3100 /* Pass the function the address in which to return a
3101 structure value. */
3102 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3103 {
0d568ddf 3104 structure_value_addr
85d654dd 3105 = convert_memory_address (Pmode, structure_value_addr);
45550790 3106 emit_move_insn (struct_value,
60ecc450 3107 force_reg (Pmode,
3108 force_operand (structure_value_addr,
3109 NULL_RTX)));
3110
8ad4c111 3111 if (REG_P (struct_value))
45550790 3112 use_reg (&call_fusage, struct_value);
60ecc450 3113 }
02c736f4 3114
c0e7e9f7 3115 after_args = get_last_insn ();
82c7907c 3116 funexp = prepare_call_address (fndecl, funexp, static_chain_value,
4ee9c684 3117 &call_fusage, reg_parm_seen, pass == 0);
66d433c7 3118
42b11544 3119 load_register_parameters (args, num_actuals, &call_fusage, flags,
3120 pass == 0, &sibcall_failure);
c87678e4 3121
60ecc450 3122 /* Save a pointer to the last insn before the call, so that we can
3123 later safely search backwards to find the CALL_INSN. */
3124 before_call = get_last_insn ();
66d433c7 3125
7a8d641b 3126 /* Set up next argument register. For sibling calls on machines
3127 with register windows this should be the incoming register. */
7a8d641b 3128 if (pass == 0)
39cba157 3129 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
f387af4f 3130 VOIDmode,
3131 void_type_node,
3132 true);
7a8d641b 3133 else
39cba157 3134 next_arg_reg = targetm.calls.function_arg (args_so_far,
f387af4f 3135 VOIDmode, void_type_node,
3136 true);
7a8d641b 3137
c8010b80 3138 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
3139 {
3140 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
3141 if (PUSH_ARGS_REVERSED)
3142 arg_nr = num_actuals - arg_nr - 1;
3143 if (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);
3151 }
60ecc450 3152 /* All arguments and registers used for the call must be set up by
3153 now! */
3154
481feae3 3155 /* Stack must be properly aligned now. */
231bd014 3156 gcc_assert (!pass
3157 || !(stack_pointer_delta % preferred_unit_stack_boundary));
fa4f1f09 3158
60ecc450 3159 /* Generate the actual call instruction. */
4ee9c684 3160 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
0e0be288 3161 adjusted_args_size.constant, struct_value_size,
7a8d641b 3162 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
39cba157 3163 flags, args_so_far);
60ecc450 3164
c0e7e9f7 3165 /* If the call setup or the call itself overlaps with anything
3166 of the argument setup we probably clobbered our call address.
3167 In that case we can't do sibcalls. */
3168 if (pass == 0
3169 && check_sibcall_argument_overlap (after_args, 0, 0))
3170 sibcall_failure = 1;
3171
05d18e8b 3172 /* If a non-BLKmode value is returned at the most significant end
3173 of a register, shift the register right by the appropriate amount
3174 and update VALREG accordingly. BLKmode values are handled by the
3175 group load/store machinery below. */
3176 if (!structure_value_addr
3177 && !pcc_struct_value
16c9337c 3178 && TYPE_MODE (rettype) != BLKmode
3179 && targetm.calls.return_in_msb (rettype))
05d18e8b 3180 {
16c9337c 3181 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
05d18e8b 3182 sibcall_failure = 1;
16c9337c 3183 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
05d18e8b 3184 }
3185
2dd6f9ed 3186 if (pass && (flags & ECF_MALLOC))
60ecc450 3187 {
3188 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3189 rtx last, insns;
3190
c87678e4 3191 /* The return value from a malloc-like function is a pointer. */
16c9337c 3192 if (TREE_CODE (rettype) == POINTER_TYPE)
80909c64 3193 mark_reg_pointer (temp, BIGGEST_ALIGNMENT);
60ecc450 3194
3195 emit_move_insn (temp, valreg);
3196
3197 /* The return value from a malloc-like function can not alias
3198 anything else. */
3199 last = get_last_insn ();
a1ddb869 3200 add_reg_note (last, REG_NOALIAS, temp);
60ecc450 3201
3202 /* Write out the sequence. */
3203 insns = get_insns ();
3204 end_sequence ();
31d3e01c 3205 emit_insn (insns);
60ecc450 3206 valreg = temp;
3207 }
66d433c7 3208
3072d30e 3209 /* For calls to `setjmp', etc., inform
3210 function.c:setjmp_warnings that it should complain if
3211 nonvolatile values are live. For functions that cannot
3212 return, inform flow that control does not fall through. */
66d433c7 3213
4fec1d6c 3214 if ((flags & ECF_NORETURN) || pass == 0)
02c736f4 3215 {
9239aee6 3216 /* The barrier must be emitted
60ecc450 3217 immediately after the CALL_INSN. Some ports emit more
3218 than just a CALL_INSN above, so we must search for it here. */
66d433c7 3219
60ecc450 3220 rtx last = get_last_insn ();
6d7dc5b9 3221 while (!CALL_P (last))
60ecc450 3222 {
3223 last = PREV_INSN (last);
3224 /* There was no CALL_INSN? */
231bd014 3225 gcc_assert (last != before_call);
60ecc450 3226 }
66d433c7 3227
9239aee6 3228 emit_barrier_after (last);
20f5f6d0 3229
b494d193 3230 /* Stack adjustments after a noreturn call are dead code.
3231 However when NO_DEFER_POP is in effect, we must preserve
3232 stack_pointer_delta. */
3233 if (inhibit_defer_pop == 0)
3234 {
3235 stack_pointer_delta = old_stack_allocated;
3236 pending_stack_adjust = 0;
3237 }
60ecc450 3238 }
66d433c7 3239
60ecc450 3240 /* If value type not void, return an rtx for the value. */
66d433c7 3241
16c9337c 3242 if (TYPE_MODE (rettype) == VOIDmode
60ecc450 3243 || ignore)
5edaabad 3244 target = const0_rtx;
60ecc450 3245 else if (structure_value_addr)
3246 {
e16ceb8e 3247 if (target == 0 || !MEM_P (target))
60ecc450 3248 {
f7c44134 3249 target
16c9337c 3250 = gen_rtx_MEM (TYPE_MODE (rettype),
3251 memory_address (TYPE_MODE (rettype),
f7c44134 3252 structure_value_addr));
16c9337c 3253 set_mem_attributes (target, rettype, 1);
60ecc450 3254 }
3255 }
3256 else if (pcc_struct_value)
566d850a 3257 {
60ecc450 3258 /* This is the special C++ case where we need to
3259 know what the true target was. We take care to
3260 never use this value more than once in one expression. */
16c9337c 3261 target = gen_rtx_MEM (TYPE_MODE (rettype),
60ecc450 3262 copy_to_reg (valreg));
16c9337c 3263 set_mem_attributes (target, rettype, 1);
566d850a 3264 }
60ecc450 3265 /* Handle calls that return values in multiple non-contiguous locations.
3266 The Irix 6 ABI has examples of this. */
3267 else if (GET_CODE (valreg) == PARALLEL)
3268 {
4ee9c684 3269 if (target == 0)
2d0fd66d 3270 target = emit_group_move_into_temps (valreg);
5bd5c1c2 3271 else if (rtx_equal_p (target, valreg))
3272 ;
3273 else if (GET_CODE (target) == PARALLEL)
3274 /* Handle the result of a emit_group_move_into_temps
3275 call in the previous pass. */
3276 emit_group_move (target, valreg);
3277 else
16c9337c 3278 emit_group_store (target, valreg, rettype,
3279 int_size_in_bytes (rettype));
60ecc450 3280 }
3281 else if (target
16c9337c 3282 && GET_MODE (target) == TYPE_MODE (rettype)
60ecc450 3283 && GET_MODE (target) == GET_MODE (valreg))
3284 {
aadbaa40 3285 bool may_overlap = false;
3286
360738f1 3287 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
3288 reg to a plain register. */
90af1361 3289 if (!REG_P (target) || HARD_REGISTER_P (target))
3290 valreg = avoid_likely_spilled_reg (valreg);
360738f1 3291
aadbaa40 3292 /* If TARGET is a MEM in the argument area, and we have
3293 saved part of the argument area, then we can't store
3294 directly into TARGET as it may get overwritten when we
3295 restore the argument save area below. Don't work too
3296 hard though and simply force TARGET to a register if it
3297 is a MEM; the optimizer is quite likely to sort it out. */
3298 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
3299 for (i = 0; i < num_actuals; i++)
3300 if (args[i].save_area)
3301 {
3302 may_overlap = true;
3303 break;
3304 }
dbe1f550 3305
aadbaa40 3306 if (may_overlap)
3307 target = copy_to_reg (valreg);
3308 else
3309 {
3310 /* TARGET and VALREG cannot be equal at this point
3311 because the latter would not have
3312 REG_FUNCTION_VALUE_P true, while the former would if
3313 it were referring to the same register.
3314
3315 If they refer to the same register, this move will be
3316 a no-op, except when function inlining is being
3317 done. */
3318 emit_move_insn (target, valreg);
3319
3320 /* If we are setting a MEM, this code must be executed.
3321 Since it is emitted after the call insn, sibcall
3322 optimization cannot be performed in that case. */
3323 if (MEM_P (target))
3324 sibcall_failure = 1;
3325 }
60ecc450 3326 }
60ecc450 3327 else
90af1361 3328 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
66d433c7 3329
3b2411a8 3330 /* If we promoted this return value, make the proper SUBREG.
3331 TARGET might be const0_rtx here, so be careful. */
3332 if (REG_P (target)
16c9337c 3333 && TYPE_MODE (rettype) != BLKmode
3334 && GET_MODE (target) != TYPE_MODE (rettype))
45550790 3335 {
16c9337c 3336 tree type = rettype;
3b2411a8 3337 int unsignedp = TYPE_UNSIGNED (type);
3338 int offset = 0;
3339 enum machine_mode pmode;
3340
3341 /* Ensure we promote as expected, and get the new unsignedness. */
3342 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
3343 funtype, 1);
3344 gcc_assert (GET_MODE (target) == pmode);
3345
3346 if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
3347 && (GET_MODE_SIZE (GET_MODE (target))
3348 > GET_MODE_SIZE (TYPE_MODE (type))))
231bd014 3349 {
3b2411a8 3350 offset = GET_MODE_SIZE (GET_MODE (target))
3351 - GET_MODE_SIZE (TYPE_MODE (type));
3352 if (! BYTES_BIG_ENDIAN)
3353 offset = (offset / UNITS_PER_WORD) * UNITS_PER_WORD;
3354 else if (! WORDS_BIG_ENDIAN)
3355 offset %= UNITS_PER_WORD;
231bd014 3356 }
3b2411a8 3357
3358 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
3359 SUBREG_PROMOTED_VAR_P (target) = 1;
3360 SUBREG_PROMOTED_UNSIGNED_SET (target, unsignedp);
45550790 3361 }
23eb5fa6 3362
60ecc450 3363 /* If size of args is variable or this was a constructor call for a stack
3364 argument, restore saved stack-pointer value. */
66d433c7 3365
ff3ae375 3366 if (old_stack_level)
60ecc450 3367 {
897445c7 3368 rtx prev = get_last_insn ();
dfe00a8f 3369
e9c97615 3370 emit_stack_restore (SAVE_BLOCK, old_stack_level);
9069face 3371 stack_pointer_delta = old_stack_pointer_delta;
dfe00a8f 3372
897445c7 3373 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
dfe00a8f 3374
60ecc450 3375 pending_stack_adjust = old_pending_adj;
80f06481 3376 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
60ecc450 3377 stack_arg_under_construction = old_stack_arg_under_construction;
3378 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3379 stack_usage_map = initial_stack_usage_map;
60ecc450 3380 sibcall_failure = 1;
3381 }
02510658 3382 else if (ACCUMULATE_OUTGOING_ARGS && pass)
60ecc450 3383 {
66d433c7 3384#ifdef REG_PARM_STACK_SPACE
60ecc450 3385 if (save_area)
6e96b626 3386 restore_fixed_argument_area (save_area, argblock,
3387 high_to_save, low_to_save);
41332f48 3388#endif
66d433c7 3389
60ecc450 3390 /* If we saved any argument areas, restore them. */
3391 for (i = 0; i < num_actuals; i++)
3392 if (args[i].save_area)
3393 {
3394 enum machine_mode save_mode = GET_MODE (args[i].save_area);
3395 rtx stack_area
3396 = gen_rtx_MEM (save_mode,
3397 memory_address (save_mode,
3398 XEXP (args[i].stack_slot, 0)));
3399
3400 if (save_mode != BLKmode)
3401 emit_move_insn (stack_area, args[i].save_area);
3402 else
0378dbdc 3403 emit_block_move (stack_area, args[i].save_area,
241399f6 3404 GEN_INT (args[i].locate.size.constant),
0378dbdc 3405 BLOCK_OP_CALL_PARM);
60ecc450 3406 }
66d433c7 3407
60ecc450 3408 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3409 stack_usage_map = initial_stack_usage_map;
3410 }
66d433c7 3411
c87678e4 3412 /* If this was alloca, record the new stack level for nonlocal gotos.
60ecc450 3413 Check for the handler slots since we might not have a save area
3414 for non-local gotos. */
dbd6697a 3415
4ee9c684 3416 if ((flags & ECF_MAY_BE_ALLOCA) && cfun->nonlocal_goto_save_area != 0)
3417 update_nonlocal_goto_save_area ();
66d433c7 3418
60ecc450 3419 /* Free up storage we no longer need. */
3420 for (i = 0; i < num_actuals; ++i)
dd045aee 3421 free (args[i].aligned_regs);
60ecc450 3422
3423 insns = get_insns ();
3424 end_sequence ();
3425
3426 if (pass == 0)
3427 {
3428 tail_call_insns = insns;
3429
60ecc450 3430 /* Restore the pending stack adjustment now that we have
3431 finished generating the sibling call sequence. */
91b70175 3432
60ecc450 3433 pending_stack_adjust = save_pending_stack_adjust;
91b70175 3434 stack_pointer_delta = save_stack_pointer_delta;
0e0be288 3435
3436 /* Prepare arg structure for next iteration. */
c87678e4 3437 for (i = 0; i < num_actuals; i++)
0e0be288 3438 {
3439 args[i].value = 0;
3440 args[i].aligned_regs = 0;
3441 args[i].stack = 0;
3442 }
7ecc63d3 3443
3444 sbitmap_free (stored_args_map);
74c02416 3445 internal_arg_pointer_exp_state.scan_start = NULL_RTX;
3446 VEC_free (rtx, heap, internal_arg_pointer_exp_state.cache);
60ecc450 3447 }
3448 else
9069face 3449 {
3450 normal_call_insns = insns;
3451
3452 /* Verify that we've deallocated all the stack we used. */
4fec1d6c 3453 gcc_assert ((flags & ECF_NORETURN)
231bd014 3454 || (old_stack_allocated
3455 == stack_pointer_delta - pending_stack_adjust));
9069face 3456 }
ae8d6151 3457
3458 /* If something prevents making this a sibling call,
3459 zero out the sequence. */
3460 if (sibcall_failure)
3461 tail_call_insns = NULL_RTX;
4ee9c684 3462 else
3463 break;
60ecc450 3464 }
3465
365db11e 3466 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
4ee9c684 3467 arguments too, as argument area is now clobbered by the call. */
3468 if (tail_call_insns)
60ecc450 3469 {
4ee9c684 3470 emit_insn (tail_call_insns);
18d50ae6 3471 crtl->tail_call_emit = true;
60ecc450 3472 }
3473 else
31d3e01c 3474 emit_insn (normal_call_insns);
66d433c7 3475
60ecc450 3476 currently_expanding_call--;
6d801f27 3477
dd045aee 3478 free (stack_usage_map_buf);
a331ea1b 3479
66d433c7 3480 return target;
3481}
915e81b8 3482
4ee9c684 3483/* A sibling call sequence invalidates any REG_EQUIV notes made for
3484 this function's incoming arguments.
3485
3486 At the start of RTL generation we know the only REG_EQUIV notes
0a227ed5 3487 in the rtl chain are those for incoming arguments, so we can look
3488 for REG_EQUIV notes between the start of the function and the
3489 NOTE_INSN_FUNCTION_BEG.
4ee9c684 3490
3491 This is (slight) overkill. We could keep track of the highest
3492 argument we clobber and be more selective in removing notes, but it
3493 does not seem to be worth the effort. */
0a227ed5 3494
4ee9c684 3495void
3496fixup_tail_calls (void)
3497{
0a227ed5 3498 rtx insn;
3499
3500 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3501 {
750a330e 3502 rtx note;
3503
0a227ed5 3504 /* There are never REG_EQUIV notes for the incoming arguments
3505 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
3506 if (NOTE_P (insn)
ad4583d9 3507 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
0a227ed5 3508 break;
3509
750a330e 3510 note = find_reg_note (insn, REG_EQUIV, 0);
3511 if (note)
3512 remove_note (insn, note);
3513 note = find_reg_note (insn, REG_EQUIV, 0);
3514 gcc_assert (!note);
0a227ed5 3515 }
4ee9c684 3516}
3517
915e81b8 3518/* Traverse a list of TYPES and expand all complex types into their
3519 components. */
5ab29745 3520static tree
915e81b8 3521split_complex_types (tree types)
3522{
3523 tree p;
3524
92d40bc4 3525 /* Before allocating memory, check for the common case of no complex. */
3526 for (p = types; p; p = TREE_CHAIN (p))
3527 {
3528 tree type = TREE_VALUE (p);
3529 if (TREE_CODE (type) == COMPLEX_TYPE
3530 && targetm.calls.split_complex_arg (type))
a0c938f0 3531 goto found;
92d40bc4 3532 }
3533 return types;
3534
3535 found:
915e81b8 3536 types = copy_list (types);
3537
3538 for (p = types; p; p = TREE_CHAIN (p))
3539 {
3540 tree complex_type = TREE_VALUE (p);
3541
92d40bc4 3542 if (TREE_CODE (complex_type) == COMPLEX_TYPE
3543 && targetm.calls.split_complex_arg (complex_type))
915e81b8 3544 {
3545 tree next, imag;
3546
3547 /* Rewrite complex type with component type. */
3548 TREE_VALUE (p) = TREE_TYPE (complex_type);
3549 next = TREE_CHAIN (p);
3550
3551 /* Add another component type for the imaginary part. */
3552 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
3553 TREE_CHAIN (p) = imag;
3554 TREE_CHAIN (imag) = next;
3555
3556 /* Skip the newly created node. */
3557 p = TREE_CHAIN (p);
3558 }
3559 }
3560
3561 return types;
3562}
66d433c7 3563\f
20f7032f 3564/* Output a library call to function FUN (a SYMBOL_REF rtx).
c87678e4 3565 The RETVAL parameter specifies whether return value needs to be saved, other
ebf77775 3566 parameters are documented in the emit_library_call function below. */
2a631e19 3567
20f7032f 3568static rtx
4c9e08a4 3569emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
3570 enum libcall_type fn_type,
3571 enum machine_mode outmode, int nargs, va_list p)
b39693dd 3572{
9bdaf1ba 3573 /* Total size in bytes of all the stack-parms scanned so far. */
3574 struct args_size args_size;
3575 /* Size of arguments before any adjustments (such as rounding). */
3576 struct args_size original_args_size;
19cb6b50 3577 int argnum;
9bdaf1ba 3578 rtx fun;
22c61100 3579 /* Todo, choose the correct decl type of orgfun. Sadly this information
3580 isn't present here, so we default to native calling abi here. */
60e2260d 3581 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
fa20f865 3582 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
9bdaf1ba 3583 int inc;
3584 int count;
9bdaf1ba 3585 rtx argblock = 0;
39cba157 3586 CUMULATIVE_ARGS args_so_far_v;
3587 cumulative_args_t args_so_far;
c87678e4 3588 struct arg
3589 {
3590 rtx value;
3591 enum machine_mode mode;
3592 rtx reg;
3593 int partial;
241399f6 3594 struct locate_and_pad_arg_data locate;
c87678e4 3595 rtx save_area;
3596 };
9bdaf1ba 3597 struct arg *argvec;
3598 int old_inhibit_defer_pop = inhibit_defer_pop;
3599 rtx call_fusage = 0;
3600 rtx mem_value = 0;
16204096 3601 rtx valreg;
9bdaf1ba 3602 int pcc_struct_value = 0;
3603 int struct_value_size = 0;
df4b504c 3604 int flags;
9bdaf1ba 3605 int reg_parm_stack_space = 0;
9bdaf1ba 3606 int needed;
644c283b 3607 rtx before_call;
771d21fa 3608 tree tfom; /* type_for_mode (outmode, 0) */
9bdaf1ba 3609
4448f543 3610#ifdef REG_PARM_STACK_SPACE
9bdaf1ba 3611 /* Define the boundary of the register parm stack space that needs to be
3612 save, if any. */
75a70cf9 3613 int low_to_save = 0, high_to_save = 0;
c87678e4 3614 rtx save_area = 0; /* Place that it is saved. */
9bdaf1ba 3615#endif
3616
9bdaf1ba 3617 /* Size of the stack reserved for parameter registers. */
3618 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3619 char *initial_stack_usage_map = stack_usage_map;
a331ea1b 3620 char *stack_usage_map_buf = NULL;
9bdaf1ba 3621
45550790 3622 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
3623
9bdaf1ba 3624#ifdef REG_PARM_STACK_SPACE
9bdaf1ba 3625 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
9bdaf1ba 3626#endif
3627
ab7ccfa2 3628 /* By default, library functions can not throw. */
df4b504c 3629 flags = ECF_NOTHROW;
3630
ab7ccfa2 3631 switch (fn_type)
3632 {
3633 case LCT_NORMAL:
2a0c81bf 3634 break;
ab7ccfa2 3635 case LCT_CONST:
2a0c81bf 3636 flags |= ECF_CONST;
3637 break;
ab7ccfa2 3638 case LCT_PURE:
2a0c81bf 3639 flags |= ECF_PURE;
ab7ccfa2 3640 break;
ab7ccfa2 3641 case LCT_NORETURN:
3642 flags |= ECF_NORETURN;
3643 break;
3644 case LCT_THROW:
3645 flags = ECF_NORETURN;
3646 break;
0ff18307 3647 case LCT_RETURNS_TWICE:
3648 flags = ECF_RETURNS_TWICE;
3649 break;
ab7ccfa2 3650 }
9bdaf1ba 3651 fun = orgfun;
3652
9bdaf1ba 3653 /* Ensure current function's preferred stack boundary is at least
3654 what we need. */
edb7afe8 3655 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
3656 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
9bdaf1ba 3657
3658 /* If this kind of value comes back in memory,
3659 decide where in memory it should come back. */
771d21fa 3660 if (outmode != VOIDmode)
9bdaf1ba 3661 {
dc24ddbd 3662 tfom = lang_hooks.types.type_for_mode (outmode, 0);
45550790 3663 if (aggregate_value_p (tfom, 0))
771d21fa 3664 {
9bdaf1ba 3665#ifdef PCC_STATIC_STRUCT_RETURN
771d21fa 3666 rtx pointer_reg
46b3ff29 3667 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
771d21fa 3668 mem_value = gen_rtx_MEM (outmode, pointer_reg);
3669 pcc_struct_value = 1;
3670 if (value == 0)
3671 value = gen_reg_rtx (outmode);
9bdaf1ba 3672#else /* not PCC_STATIC_STRUCT_RETURN */
771d21fa 3673 struct_value_size = GET_MODE_SIZE (outmode);
e16ceb8e 3674 if (value != 0 && MEM_P (value))
771d21fa 3675 mem_value = value;
3676 else
0ab48139 3677 mem_value = assign_temp (tfom, 1, 1);
9bdaf1ba 3678#endif
771d21fa 3679 /* This call returns a big structure. */
2dd6f9ed 3680 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
771d21fa 3681 }
9bdaf1ba 3682 }
771d21fa 3683 else
3684 tfom = void_type_node;
9bdaf1ba 3685
3686 /* ??? Unfinished: must pass the memory address as an argument. */
3687
3688 /* Copy all the libcall-arguments out of the varargs data
3689 and into a vector ARGVEC.
3690
3691 Compute how to pass each argument. We only support a very small subset
3692 of the full argument passing conventions to limit complexity here since
3693 library functions shouldn't have many args. */
3694
364c0c59 3695 argvec = XALLOCAVEC (struct arg, nargs + 1);
f0af5a88 3696 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
9bdaf1ba 3697
e1efd914 3698#ifdef INIT_CUMULATIVE_LIBCALL_ARGS
39cba157 3699 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
e1efd914 3700#else
39cba157 3701 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
e1efd914 3702#endif
39cba157 3703 args_so_far = pack_cumulative_args (&args_so_far_v);
9bdaf1ba 3704
3705 args_size.constant = 0;
3706 args_size.var = 0;
3707
3708 count = 0;
3709
3710 push_temp_slots ();
3711
3712 /* If there's a structure value address to be passed,
3713 either pass it in the special place, or pass it as an extra argument. */
45550790 3714 if (mem_value && struct_value == 0 && ! pcc_struct_value)
9bdaf1ba 3715 {
3716 rtx addr = XEXP (mem_value, 0);
a0c938f0 3717
9bdaf1ba 3718 nargs++;
3719
a56c46d2 3720 /* Make sure it is a reasonable operand for a move or push insn. */
3721 if (!REG_P (addr) && !MEM_P (addr)
ca316360 3722 && !(CONSTANT_P (addr)
3723 && targetm.legitimate_constant_p (Pmode, addr)))
a56c46d2 3724 addr = force_operand (addr, NULL_RTX);
3725
9bdaf1ba 3726 argvec[count].value = addr;
3727 argvec[count].mode = Pmode;
3728 argvec[count].partial = 0;
3729
39cba157 3730 argvec[count].reg = targetm.calls.function_arg (args_so_far,
f387af4f 3731 Pmode, NULL_TREE, true);
39cba157 3732 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
f054eb3c 3733 NULL_TREE, 1) == 0);
9bdaf1ba 3734
3735 locate_and_pad_parm (Pmode, NULL_TREE,
2e735c0d 3736#ifdef STACK_PARMS_IN_REG_PARM_AREA
a0c938f0 3737 1,
2e735c0d 3738#else
3739 argvec[count].reg != 0,
3740#endif
241399f6 3741 0, NULL_TREE, &args_size, &argvec[count].locate);
9bdaf1ba 3742
9bdaf1ba 3743 if (argvec[count].reg == 0 || argvec[count].partial != 0
3744 || reg_parm_stack_space > 0)
241399f6 3745 args_size.constant += argvec[count].locate.size.constant;
9bdaf1ba 3746
39cba157 3747 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
9bdaf1ba 3748
3749 count++;
3750 }
3751
3752 for (; count < nargs; count++)
3753 {
3754 rtx val = va_arg (p, rtx);
d62e827b 3755 enum machine_mode mode = (enum machine_mode) va_arg (p, int);
adaf4ef0 3756 int unsigned_p = 0;
9bdaf1ba 3757
3758 /* We cannot convert the arg value to the mode the library wants here;
3759 must do it earlier where we know the signedness of the arg. */
231bd014 3760 gcc_assert (mode != BLKmode
3761 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
9bdaf1ba 3762
a56c46d2 3763 /* Make sure it is a reasonable operand for a move or push insn. */
3764 if (!REG_P (val) && !MEM_P (val)
ca316360 3765 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
a56c46d2 3766 val = force_operand (val, NULL_RTX);
3767
39cba157 3768 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
9bdaf1ba 3769 {
ddaf7ad3 3770 rtx slot;
13f08ee7 3771 int must_copy
39cba157 3772 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
ddaf7ad3 3773
9c2a0c05 3774 /* If this was a CONST function, it is now PURE since it now
3775 reads memory. */
5096b8b0 3776 if (flags & ECF_CONST)
3777 {
3778 flags &= ~ECF_CONST;
3779 flags |= ECF_PURE;
3780 }
3781
590c3166 3782 if (MEM_P (val) && !must_copy)
006e2d5a 3783 {
3784 tree val_expr = MEM_EXPR (val);
3785 if (val_expr)
3786 mark_addressable (val_expr);
3787 slot = val;
3788 }
41dc12b4 3789 else
ddaf7ad3 3790 {
dc24ddbd 3791 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
0ab48139 3792 1, 1);
ddaf7ad3 3793 emit_move_insn (slot, val);
3794 }
387bc205 3795
a683e787 3796 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3797 gen_rtx_USE (VOIDmode, slot),
3798 call_fusage);
ddaf7ad3 3799 if (must_copy)
3800 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3801 gen_rtx_CLOBBER (VOIDmode,
3802 slot),
3803 call_fusage);
3804
9bdaf1ba 3805 mode = Pmode;
ddaf7ad3 3806 val = force_operand (XEXP (slot, 0), NULL_RTX);
9bdaf1ba 3807 }
9bdaf1ba 3808
adaf4ef0 3809 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
9bdaf1ba 3810 argvec[count].mode = mode;
adaf4ef0 3811 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
39cba157 3812 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
f387af4f 3813 NULL_TREE, true);
9bdaf1ba 3814
9bdaf1ba 3815 argvec[count].partial
39cba157 3816 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
9bdaf1ba 3817
11fb947f 3818 if (argvec[count].reg == 0
3819 || argvec[count].partial != 0
3820 || reg_parm_stack_space > 0)
3821 {
3822 locate_and_pad_parm (mode, NULL_TREE,
2e735c0d 3823#ifdef STACK_PARMS_IN_REG_PARM_AREA
11fb947f 3824 1,
2e735c0d 3825#else
11fb947f 3826 argvec[count].reg != 0,
3827#endif
3828 argvec[count].partial,
3829 NULL_TREE, &args_size, &argvec[count].locate);
3830 args_size.constant += argvec[count].locate.size.constant;
3831 gcc_assert (!argvec[count].locate.size.var);
3832 }
3833#ifdef BLOCK_REG_PADDING
3834 else
3835 /* The argument is passed entirely in registers. See at which
3836 end it should be padded. */
3837 argvec[count].locate.where_pad =
3838 BLOCK_REG_PADDING (mode, NULL_TREE,
3839 GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
2e735c0d 3840#endif
9bdaf1ba 3841
39cba157 3842 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
9bdaf1ba 3843 }
9bdaf1ba 3844
9bdaf1ba 3845 /* If this machine requires an external definition for library
3846 functions, write one out. */
3847 assemble_external_libcall (fun);
3848
3849 original_args_size = args_size;
91b70175 3850 args_size.constant = (((args_size.constant
3851 + stack_pointer_delta
3852 + STACK_BYTES - 1)
3853 / STACK_BYTES
3854 * STACK_BYTES)
3855 - stack_pointer_delta);
9bdaf1ba 3856
3857 args_size.constant = MAX (args_size.constant,
3858 reg_parm_stack_space);
3859
fa20f865 3860 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
63c68695 3861 args_size.constant -= reg_parm_stack_space;
9bdaf1ba 3862
abe32cce 3863 if (args_size.constant > crtl->outgoing_args_size)
3864 crtl->outgoing_args_size = args_size.constant;
9bdaf1ba 3865
8c0dd614 3866 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
990495a7 3867 {
3868 int pushed = args_size.constant + pending_stack_adjust;
3869 if (pushed > current_function_pushed_stack_size)
3870 current_function_pushed_stack_size = pushed;
3871 }
3872
4448f543 3873 if (ACCUMULATE_OUTGOING_ARGS)
3874 {
3875 /* Since the stack pointer will never be pushed, it is possible for
3876 the evaluation of a parm to clobber something we have already
3877 written to the stack. Since most function calls on RISC machines
3878 do not use the stack, this is uncommon, but must work correctly.
9bdaf1ba 3879
4448f543 3880 Therefore, we save any area of the stack that was already written
3881 and that we are using. Here we set up to do this by making a new
3882 stack usage map from the old one.
9bdaf1ba 3883
4448f543 3884 Another approach might be to try to reorder the argument
3885 evaluations to avoid this conflicting stack usage. */
9bdaf1ba 3886
4448f543 3887 needed = args_size.constant;
9bdaf1ba 3888
4448f543 3889 /* Since we will be writing into the entire argument area, the
3890 map must be allocated for its entire size, not just the part that
3891 is the responsibility of the caller. */
fa20f865 3892 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
63c68695 3893 needed += reg_parm_stack_space;
9bdaf1ba 3894
3895#ifdef ARGS_GROW_DOWNWARD
4448f543 3896 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3897 needed + 1);
9bdaf1ba 3898#else
4448f543 3899 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3900 needed);
9bdaf1ba 3901#endif
4c36ffe6 3902 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
a331ea1b 3903 stack_usage_map = stack_usage_map_buf;
9bdaf1ba 3904
4448f543 3905 if (initial_highest_arg_in_use)
8e547276 3906 memcpy (stack_usage_map, initial_stack_usage_map,
3907 initial_highest_arg_in_use);
9bdaf1ba 3908
4448f543 3909 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
93d3b7de 3910 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
4448f543 3911 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
3912 needed = 0;
9bdaf1ba 3913
9c0a756f 3914 /* We must be careful to use virtual regs before they're instantiated,
a0c938f0 3915 and real regs afterwards. Loop optimization, for example, can create
9c0a756f 3916 new libcalls after we've instantiated the virtual regs, and if we
3917 use virtuals anyway, they won't match the rtl patterns. */
9bdaf1ba 3918
9c0a756f 3919 if (virtuals_instantiated)
29c05e22 3920 argblock = plus_constant (Pmode, stack_pointer_rtx,
3921 STACK_POINTER_OFFSET);
9c0a756f 3922 else
3923 argblock = virtual_outgoing_args_rtx;
4448f543 3924 }
3925 else
3926 {
3927 if (!PUSH_ARGS)
3928 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
3929 }
9bdaf1ba 3930
9bdaf1ba 3931 /* If we push args individually in reverse order, perform stack alignment
3932 before the first push (the last arg). */
4448f543 3933 if (argblock == 0 && PUSH_ARGS_REVERSED)
9bdaf1ba 3934 anti_adjust_stack (GEN_INT (args_size.constant
3935 - original_args_size.constant));
9bdaf1ba 3936
4448f543 3937 if (PUSH_ARGS_REVERSED)
3938 {
3939 inc = -1;
3940 argnum = nargs - 1;
3941 }
3942 else
3943 {
3944 inc = 1;
3945 argnum = 0;
3946 }
9bdaf1ba 3947
4448f543 3948#ifdef REG_PARM_STACK_SPACE
3949 if (ACCUMULATE_OUTGOING_ARGS)
3950 {
3951 /* The argument list is the property of the called routine and it
3952 may clobber it. If the fixed area has been used for previous
6e96b626 3953 parameters, we must save and restore it. */
3954 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3955 &low_to_save, &high_to_save);
9bdaf1ba 3956 }
3957#endif
c87678e4 3958
9bdaf1ba 3959 /* Push the args that need to be pushed. */
3960
3961 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
3962 are to be pushed. */
3963 for (count = 0; count < nargs; count++, argnum += inc)
3964 {
19cb6b50 3965 enum machine_mode mode = argvec[argnum].mode;
3966 rtx val = argvec[argnum].value;
9bdaf1ba 3967 rtx reg = argvec[argnum].reg;
3968 int partial = argvec[argnum].partial;
c2fd5e89 3969 unsigned int parm_align = argvec[argnum].locate.boundary;
4448f543 3970 int lower_bound = 0, upper_bound = 0, i;
9bdaf1ba 3971
3972 if (! (reg != 0 && partial == 0))
3973 {
4143d08b 3974 rtx use;
3975
4448f543 3976 if (ACCUMULATE_OUTGOING_ARGS)
3977 {
02510658 3978 /* If this is being stored into a pre-allocated, fixed-size,
3979 stack area, save any previous data at that location. */
9bdaf1ba 3980
3981#ifdef ARGS_GROW_DOWNWARD
4448f543 3982 /* stack_slot is negative, but we want to index stack_usage_map
3983 with positive values. */
9a0cf170 3984 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
241399f6 3985 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
9bdaf1ba 3986#else
9a0cf170 3987 lower_bound = argvec[argnum].locate.slot_offset.constant;
241399f6 3988 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
9bdaf1ba 3989#endif
3990
fd2c0c1d 3991 i = lower_bound;
3992 /* Don't worry about things in the fixed argument area;
3993 it has already been saved. */
3994 if (i < reg_parm_stack_space)
3995 i = reg_parm_stack_space;
3996 while (i < upper_bound && stack_usage_map[i] == 0)
3997 i++;
9bdaf1ba 3998
fd2c0c1d 3999 if (i < upper_bound)
4448f543 4000 {
241399f6 4001 /* We need to make a save area. */
4002 unsigned int size
4003 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
4448f543 4004 enum machine_mode save_mode
241399f6 4005 = mode_for_size (size, MODE_INT, 1);
4006 rtx adr
29c05e22 4007 = plus_constant (Pmode, argblock,
241399f6 4008 argvec[argnum].locate.offset.constant);
4448f543 4009 rtx stack_area
241399f6 4010 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
4448f543 4011
f9c6a9c3 4012 if (save_mode == BLKmode)
4013 {
4014 argvec[argnum].save_area
4015 = assign_stack_temp (BLKmode,
0ab48139 4016 argvec[argnum].locate.size.constant
4017 );
f9c6a9c3 4018
4019 emit_block_move (validize_mem (argvec[argnum].save_area),
a0c938f0 4020 stack_area,
f9c6a9c3 4021 GEN_INT (argvec[argnum].locate.size.constant),
4022 BLOCK_OP_CALL_PARM);
4023 }
4024 else
4025 {
4026 argvec[argnum].save_area = gen_reg_rtx (save_mode);
4027
4028 emit_move_insn (argvec[argnum].save_area, stack_area);
4029 }
4448f543 4030 }
9bdaf1ba 4031 }
325d1c45 4032
c2fd5e89 4033 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
0378dbdc 4034 partial, reg, 0, argblock,
241399f6 4035 GEN_INT (argvec[argnum].locate.offset.constant),
4036 reg_parm_stack_space,
4037 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad));
9bdaf1ba 4038
9bdaf1ba 4039 /* Now mark the segment we just used. */
4448f543 4040 if (ACCUMULATE_OUTGOING_ARGS)
4041 for (i = lower_bound; i < upper_bound; i++)
4042 stack_usage_map[i] = 1;
9bdaf1ba 4043
4044 NO_DEFER_POP;
2eb9302a 4045
4143d08b 4046 /* Indicate argument access so that alias.c knows that these
4047 values are live. */
4048 if (argblock)
29c05e22 4049 use = plus_constant (Pmode, argblock,
4143d08b 4050 argvec[argnum].locate.offset.constant);
4051 else
4052 /* When arguments are pushed, trying to tell alias.c where
4053 exactly this argument is won't work, because the
4054 auto-increment causes confusion. So we merely indicate
4055 that we access something with a known mode somewhere on
4056 the stack. */
4057 use = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
4058 gen_rtx_SCRATCH (Pmode));
4059 use = gen_rtx_MEM (argvec[argnum].mode, use);
4060 use = gen_rtx_USE (VOIDmode, use);
4061 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
9bdaf1ba 4062 }
4063 }
4064
9bdaf1ba 4065 /* If we pushed args in forward order, perform stack alignment
4066 after pushing the last arg. */
4448f543 4067 if (argblock == 0 && !PUSH_ARGS_REVERSED)
9bdaf1ba 4068 anti_adjust_stack (GEN_INT (args_size.constant
4069 - original_args_size.constant));
9bdaf1ba 4070
4448f543 4071 if (PUSH_ARGS_REVERSED)
4072 argnum = nargs - 1;
4073 else
4074 argnum = 0;
9bdaf1ba 4075
82c7907c 4076 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
9bdaf1ba 4077
4078 /* Now load any reg parms into their regs. */
4079
4080 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4081 are to be pushed. */
4082 for (count = 0; count < nargs; count++, argnum += inc)
4083 {
bec917cc 4084 enum machine_mode mode = argvec[argnum].mode;
19cb6b50 4085 rtx val = argvec[argnum].value;
9bdaf1ba 4086 rtx reg = argvec[argnum].reg;
4087 int partial = argvec[argnum].partial;
ab6e3ce0 4088#ifdef BLOCK_REG_PADDING
37cd19a4 4089 int size = 0;
ab6e3ce0 4090#endif
37cd19a4 4091
9bdaf1ba 4092 /* Handle calls that pass values in multiple non-contiguous
4093 locations. The PA64 has examples of this for library calls. */
4094 if (reg != 0 && GET_CODE (reg) == PARALLEL)
bec917cc 4095 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
9bdaf1ba 4096 else if (reg != 0 && partial == 0)
37cd19a4 4097 {
4098 emit_move_insn (reg, val);
4099#ifdef BLOCK_REG_PADDING
4100 size = GET_MODE_SIZE (argvec[argnum].mode);
4101
4102 /* Copied from load_register_parameters. */
4103
4104 /* Handle case where we have a value that needs shifting
4105 up to the msb. eg. a QImode value and we're padding
4106 upward on a BYTES_BIG_ENDIAN machine. */
4107 if (size < UNITS_PER_WORD
4108 && (argvec[argnum].locate.where_pad
4109 == (BYTES_BIG_ENDIAN ? upward : downward)))
4110 {
4111 rtx x;
4112 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
4113
4114 /* Assigning REG here rather than a temp makes CALL_FUSAGE
4115 report the whole reg as used. Strictly speaking, the
4116 call only uses SIZE bytes at the msb end, but it doesn't
4117 seem worth generating rtl to say that. */
4118 reg = gen_rtx_REG (word_mode, REGNO (reg));
4119 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
4120 if (x != reg)
4121 emit_move_insn (reg, x);
4122 }
4123#endif
4124 }
9bdaf1ba 4125
4126 NO_DEFER_POP;
4127 }
4128
9bdaf1ba 4129 /* Any regs containing parms remain in use through the call. */
4130 for (count = 0; count < nargs; count++)
4131 {
4132 rtx reg = argvec[count].reg;
4133 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4134 use_group_regs (&call_fusage, reg);
4135 else if (reg != 0)
6c6f16e5 4136 {
4137 int partial = argvec[count].partial;
4138 if (partial)
4139 {
4140 int nregs;
4141 gcc_assert (partial % UNITS_PER_WORD == 0);
4142 nregs = partial / UNITS_PER_WORD;
4143 use_regs (&call_fusage, REGNO (reg), nregs);
4144 }
4145 else
4146 use_reg (&call_fusage, reg);
4147 }
9bdaf1ba 4148 }
4149
4150 /* Pass the function the address in which to return a structure value. */
45550790 4151 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
9bdaf1ba 4152 {
45550790 4153 emit_move_insn (struct_value,
9bdaf1ba 4154 force_reg (Pmode,
4155 force_operand (XEXP (mem_value, 0),
4156 NULL_RTX)));
8ad4c111 4157 if (REG_P (struct_value))
45550790 4158 use_reg (&call_fusage, struct_value);
9bdaf1ba 4159 }
4160
4161 /* Don't allow popping to be deferred, since then
4162 cse'ing of library calls could delete a call and leave the pop. */
4163 NO_DEFER_POP;
16204096 4164 valreg = (mem_value == 0 && outmode != VOIDmode
578d1295 4165 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
9bdaf1ba 4166
481feae3 4167 /* Stack must be properly aligned now. */
231bd014 4168 gcc_assert (!(stack_pointer_delta
4169 & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)));
fa4f1f09 4170
644c283b 4171 before_call = get_last_insn ();
4172
9bdaf1ba 4173 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4174 will set inhibit_defer_pop to that value. */
20f7032f 4175 /* The return type is needed to decide how many bytes the function pops.
4176 Signedness plays no role in that, so for simplicity, we pretend it's
4177 always signed. We also assume that the list of arguments passed has
4178 no impact, so we pretend it is unknown. */
9bdaf1ba 4179
4ee9c684 4180 emit_call_1 (fun, NULL,
c87678e4 4181 get_identifier (XSTR (orgfun, 0)),
771d21fa 4182 build_function_type (tfom, NULL_TREE),
c87678e4 4183 original_args_size.constant, args_size.constant,
9bdaf1ba 4184 struct_value_size,
39cba157 4185 targetm.calls.function_arg (args_so_far,
f387af4f 4186 VOIDmode, void_type_node, true),
16204096 4187 valreg,
39cba157 4188 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
9bdaf1ba 4189
37cd19a4 4190 /* Right-shift returned value if necessary. */
4191 if (!pcc_struct_value
4192 && TYPE_MODE (tfom) != BLKmode
4193 && targetm.calls.return_in_msb (tfom))
4194 {
4195 shift_return_value (TYPE_MODE (tfom), false, valreg);
4196 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
4197 }
4198
3072d30e 4199 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
4200 that it should complain if nonvolatile values are live. For
4201 functions that cannot return, inform flow that control does not
4202 fall through. */
644c283b 4203
4fec1d6c 4204 if (flags & ECF_NORETURN)
644c283b 4205 {
9239aee6 4206 /* The barrier note must be emitted
644c283b 4207 immediately after the CALL_INSN. Some ports emit more than
4208 just a CALL_INSN above, so we must search for it here. */
4209
4210 rtx last = get_last_insn ();
6d7dc5b9 4211 while (!CALL_P (last))
644c283b 4212 {
4213 last = PREV_INSN (last);
4214 /* There was no CALL_INSN? */
231bd014 4215 gcc_assert (last != before_call);
644c283b 4216 }
4217
9239aee6 4218 emit_barrier_after (last);
644c283b 4219 }
4220
9bdaf1ba 4221 /* Now restore inhibit_defer_pop to its actual original value. */
4222 OK_DEFER_POP;
4223
4224 pop_temp_slots ();
4225
4226 /* Copy the value to the right place. */
20f7032f 4227 if (outmode != VOIDmode && retval)
9bdaf1ba 4228 {
4229 if (mem_value)
4230 {
4231 if (value == 0)
4232 value = mem_value;
4233 if (value != mem_value)
4234 emit_move_insn (value, mem_value);
4235 }
40651bac 4236 else if (GET_CODE (valreg) == PARALLEL)
4237 {
4238 if (value == 0)
4239 value = gen_reg_rtx (outmode);
4c3a0ea5 4240 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
40651bac 4241 }
9bdaf1ba 4242 else
4e1a3169 4243 {
3b2411a8 4244 /* Convert to the proper mode if a promotion has been active. */
4e1a3169 4245 if (GET_MODE (valreg) != outmode)
4246 {
4247 int unsignedp = TYPE_UNSIGNED (tfom);
4248
3b2411a8 4249 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
4250 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
4e1a3169 4251 == GET_MODE (valreg));
4e1a3169 4252 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
4253 }
4254
4255 if (value != 0)
4256 emit_move_insn (value, valreg);
4257 else
4258 value = valreg;
4259 }
9bdaf1ba 4260 }
4261
4448f543 4262 if (ACCUMULATE_OUTGOING_ARGS)
9bdaf1ba 4263 {
4448f543 4264#ifdef REG_PARM_STACK_SPACE
4265 if (save_area)
6e96b626 4266 restore_fixed_argument_area (save_area, argblock,
4267 high_to_save, low_to_save);
9bdaf1ba 4268#endif
c87678e4 4269
4448f543 4270 /* If we saved any argument areas, restore them. */
4271 for (count = 0; count < nargs; count++)
4272 if (argvec[count].save_area)
4273 {
4274 enum machine_mode save_mode = GET_MODE (argvec[count].save_area);
29c05e22 4275 rtx adr = plus_constant (Pmode, argblock,
241399f6 4276 argvec[count].locate.offset.constant);
4277 rtx stack_area = gen_rtx_MEM (save_mode,
4278 memory_address (save_mode, adr));
4448f543 4279
f9c6a9c3 4280 if (save_mode == BLKmode)
4281 emit_block_move (stack_area,
a0c938f0 4282 validize_mem (argvec[count].save_area),
f9c6a9c3 4283 GEN_INT (argvec[count].locate.size.constant),
4284 BLOCK_OP_CALL_PARM);
4285 else
4286 emit_move_insn (stack_area, argvec[count].save_area);
4448f543 4287 }
9bdaf1ba 4288
4448f543 4289 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4290 stack_usage_map = initial_stack_usage_map;
4291 }
b39693dd 4292
dd045aee 4293 free (stack_usage_map_buf);
a331ea1b 4294
20f7032f 4295 return value;
4296
4297}
4298\f
4299/* Output a library call to function FUN (a SYMBOL_REF rtx)
4300 (emitting the queue unless NO_QUEUE is nonzero),
4301 for a value of mode OUTMODE,
4302 with NARGS different arguments, passed as alternating rtx values
4303 and machine_modes to convert them to.
20f7032f 4304
2dd6f9ed 4305 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4306 `const' calls, LCT_PURE for `pure' calls, or other LCT_ value for
4307 other types of library calls. */
20f7032f 4308
4309void
ee582a61 4310emit_library_call (rtx orgfun, enum libcall_type fn_type,
4311 enum machine_mode outmode, int nargs, ...)
20f7032f 4312{
ee582a61 4313 va_list p;
4c9e08a4 4314
ee582a61 4315 va_start (p, nargs);
26dfc457 4316 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
ee582a61 4317 va_end (p);
20f7032f 4318}
4319\f
4320/* Like emit_library_call except that an extra argument, VALUE,
4321 comes second and says where to store the result.
4322 (If VALUE is zero, this function chooses a convenient way
4323 to return the value.
4324
4325 This function returns an rtx for where the value is to be found.
4326 If VALUE is nonzero, VALUE is returned. */
4327
4328rtx
ee582a61 4329emit_library_call_value (rtx orgfun, rtx value,
4330 enum libcall_type fn_type,
4331 enum machine_mode outmode, int nargs, ...)
20f7032f 4332{
7ad77798 4333 rtx result;
ee582a61 4334 va_list p;
4c9e08a4 4335
ee582a61 4336 va_start (p, nargs);
7ad77798 4337 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4338 nargs, p);
ee582a61 4339 va_end (p);
20f7032f 4340
7ad77798 4341 return result;
8ddf1c7e 4342}
4343\f
66d433c7 4344/* Store a single argument for a function call
4345 into the register or memory area where it must be passed.
4346 *ARG describes the argument value and where to pass it.
4347
4348 ARGBLOCK is the address of the stack-block for all the arguments,
f9e15121 4349 or 0 on a machine where arguments are pushed individually.
66d433c7 4350
4351 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
c87678e4 4352 so must be careful about how the stack is used.
66d433c7 4353
4354 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4355 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4356 that we need not worry about saving and restoring the stack.
4357
57679d39 4358 FNDECL is the declaration of the function we are calling.
c87678e4 4359
d10cfa8d 4360 Return nonzero if this arg should cause sibcall failure,
57679d39 4361 zero otherwise. */
66d433c7 4362
57679d39 4363static int
4c9e08a4 4364store_one_arg (struct arg_data *arg, rtx argblock, int flags,
4365 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
66d433c7 4366{
19cb6b50 4367 tree pval = arg->tree_value;
66d433c7 4368 rtx reg = 0;
4369 int partial = 0;
4370 int used = 0;
df9f2bb6 4371 int i, lower_bound = 0, upper_bound = 0;
57679d39 4372 int sibcall_failure = 0;
66d433c7 4373
4374 if (TREE_CODE (pval) == ERROR_MARK)
57679d39 4375 return 1;
66d433c7 4376
1b117c60 4377 /* Push a new temporary level for any temporaries we make for
4378 this argument. */
4379 push_temp_slots ();
4380
02510658 4381 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
66d433c7 4382 {
4448f543 4383 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4384 save any previous data at that location. */
4385 if (argblock && ! variable_size && arg->stack)
4386 {
66d433c7 4387#ifdef ARGS_GROW_DOWNWARD
4448f543 4388 /* stack_slot is negative, but we want to index stack_usage_map
4389 with positive values. */
4390 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4391 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4392 else
4393 upper_bound = 0;
66d433c7 4394
241399f6 4395 lower_bound = upper_bound - arg->locate.size.constant;
66d433c7 4396#else
4448f543 4397 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4398 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4399 else
4400 lower_bound = 0;
66d433c7 4401
241399f6 4402 upper_bound = lower_bound + arg->locate.size.constant;
66d433c7 4403#endif
4404
fd2c0c1d 4405 i = lower_bound;
4406 /* Don't worry about things in the fixed argument area;
4407 it has already been saved. */
4408 if (i < reg_parm_stack_space)
4409 i = reg_parm_stack_space;
4410 while (i < upper_bound && stack_usage_map[i] == 0)
4411 i++;
66d433c7 4412
fd2c0c1d 4413 if (i < upper_bound)
66d433c7 4414 {
241399f6 4415 /* We need to make a save area. */
4416 unsigned int size = arg->locate.size.constant * BITS_PER_UNIT;
4417 enum machine_mode save_mode = mode_for_size (size, MODE_INT, 1);
4418 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
4419 rtx stack_area = gen_rtx_MEM (save_mode, adr);
4448f543 4420
4421 if (save_mode == BLKmode)
4422 {
387bc205 4423 tree ot = TREE_TYPE (arg->tree_value);
4424 tree nt = build_qualified_type (ot, (TYPE_QUALS (ot)
4425 | TYPE_QUAL_CONST));
4426
0ab48139 4427 arg->save_area = assign_temp (nt, 1, 1);
4448f543 4428 preserve_temp_slots (arg->save_area);
4429 emit_block_move (validize_mem (arg->save_area), stack_area,
c2ca1bab 4430 GEN_INT (arg->locate.size.constant),
0378dbdc 4431 BLOCK_OP_CALL_PARM);
4448f543 4432 }
4433 else
4434 {
4435 arg->save_area = gen_reg_rtx (save_mode);
4436 emit_move_insn (arg->save_area, stack_area);
4437 }
66d433c7 4438 }
4439 }
4440 }
b3caaea3 4441
66d433c7 4442 /* If this isn't going to be placed on both the stack and in registers,
4443 set up the register and number of words. */
4444 if (! arg->pass_on_stack)
04d6fcf8 4445 {
4446 if (flags & ECF_SIBCALL)
4447 reg = arg->tail_call_reg;
4448 else
4449 reg = arg->reg;
4450 partial = arg->partial;
4451 }
66d433c7 4452
231bd014 4453 /* Being passed entirely in a register. We shouldn't be called in
4454 this case. */
4455 gcc_assert (reg == 0 || partial != 0);
a0c938f0 4456
f28c7a75 4457 /* If this arg needs special alignment, don't load the registers
4458 here. */
4459 if (arg->n_aligned_regs != 0)
4460 reg = 0;
c87678e4 4461
f28c7a75 4462 /* If this is being passed partially in a register, we can't evaluate
66d433c7 4463 it directly into its stack slot. Otherwise, we can. */
4464 if (arg->value == 0)
f848041f 4465 {
f848041f 4466 /* stack_arg_under_construction is nonzero if a function argument is
4467 being evaluated directly into the outgoing argument list and
4468 expand_call must take special action to preserve the argument list
4469 if it is called recursively.
4470
4471 For scalar function arguments stack_usage_map is sufficient to
4472 determine which stack slots must be saved and restored. Scalar
4473 arguments in general have pass_on_stack == 0.
4474
4475 If this argument is initialized by a function which takes the
4476 address of the argument (a C++ constructor or a C function
4477 returning a BLKmode structure), then stack_usage_map is
4478 insufficient and expand_call must push the stack around the
4479 function call. Such arguments have pass_on_stack == 1.
4480
4481 Note that it is always safe to set stack_arg_under_construction,
4482 but this generates suboptimal code if set when not needed. */
4483
4484 if (arg->pass_on_stack)
4485 stack_arg_under_construction++;
4448f543 4486
7dbf1af4 4487 arg->value = expand_expr (pval,
4488 (partial
4489 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4490 ? NULL_RTX : arg->stack,
a35a63ff 4491 VOIDmode, EXPAND_STACK_PARM);
1c0c37a5 4492
4493 /* If we are promoting object (or for any other reason) the mode
4494 doesn't agree, convert the mode. */
4495
1560ef8f 4496 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4497 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4498 arg->value, arg->unsignedp);
1c0c37a5 4499
f848041f 4500 if (arg->pass_on_stack)
4501 stack_arg_under_construction--;
f848041f 4502 }
66d433c7 4503
63864e1c 4504 /* Check for overlap with already clobbered argument area. */
ff6c0ab2 4505 if ((flags & ECF_SIBCALL)
4506 && MEM_P (arg->value)
4507 && mem_overlaps_already_clobbered_arg_p (XEXP (arg->value, 0),
4508 arg->locate.size.constant))
4509 sibcall_failure = 1;
63864e1c 4510
66d433c7 4511 /* Don't allow anything left on stack from computation
4512 of argument to alloca. */
02510658 4513 if (flags & ECF_MAY_BE_ALLOCA)
66d433c7 4514 do_pending_stack_adjust ();
4515
4516 if (arg->value == arg->stack)
8a06f2d4 4517 /* If the value is already in the stack slot, we are done. */
4518 ;
1c0c37a5 4519 else if (arg->mode != BLKmode)
66d433c7 4520 {
19cb6b50 4521 int size;
851fc2b3 4522 unsigned int parm_align;
66d433c7 4523
4524 /* Argument is a scalar, not entirely passed in registers.
4525 (If part is passed in registers, arg->partial says how much
4526 and emit_push_insn will take care of putting it there.)
c87678e4 4527
66d433c7 4528 Push it, and if its size is less than the
4529 amount of space allocated to it,
4530 also bump stack pointer by the additional space.
4531 Note that in C the default argument promotions
4532 will prevent such mismatches. */
4533
1c0c37a5 4534 size = GET_MODE_SIZE (arg->mode);
66d433c7 4535 /* Compute how much space the push instruction will push.
4536 On many machines, pushing a byte will advance the stack
4537 pointer by a halfword. */
4538#ifdef PUSH_ROUNDING
4539 size = PUSH_ROUNDING (size);
4540#endif
4541 used = size;
4542
4543 /* Compute how much space the argument should get:
4544 round up to a multiple of the alignment for arguments. */
1c0c37a5 4545 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
66d433c7 4546 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
4547 / (PARM_BOUNDARY / BITS_PER_UNIT))
4548 * (PARM_BOUNDARY / BITS_PER_UNIT));
4549
851fc2b3 4550 /* Compute the alignment of the pushed argument. */
4551 parm_align = arg->locate.boundary;
4552 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4553 {
4554 int pad = used - size;
4555 if (pad)
4556 {
4557 unsigned int pad_align = (pad & -pad) * BITS_PER_UNIT;
4558 parm_align = MIN (parm_align, pad_align);
4559 }
4560 }
4561
66d433c7 4562 /* This isn't already where we want it on the stack, so put it there.
4563 This can either be done with push or copy insns. */
4c9e08a4 4564 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
851fc2b3 4565 parm_align, partial, reg, used - size, argblock,
241399f6 4566 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4567 ARGS_SIZE_RTX (arg->locate.alignment_pad));
d5c9a99f 4568
4569 /* Unless this is a partially-in-register argument, the argument is now
4570 in the stack. */
4571 if (partial == 0)
4572 arg->value = arg->stack;
66d433c7 4573 }
4574 else
4575 {
4576 /* BLKmode, at least partly to be pushed. */
4577
cf78c9ff 4578 unsigned int parm_align;
19cb6b50 4579 int excess;
66d433c7 4580 rtx size_rtx;
4581
4582 /* Pushing a nonscalar.
4583 If part is passed in registers, PARTIAL says how much
4584 and emit_push_insn will take care of putting it there. */
4585
4586 /* Round its size up to a multiple
4587 of the allocation unit for arguments. */
4588
241399f6 4589 if (arg->locate.size.var != 0)
66d433c7 4590 {
4591 excess = 0;
241399f6 4592 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
66d433c7 4593 }
4594 else
4595 {
f054eb3c 4596 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
4597 for BLKmode is careful to avoid it. */
4598 excess = (arg->locate.size.constant
4599 - int_size_in_bytes (TREE_TYPE (pval))
4600 + partial);
623282b0 4601 size_rtx = expand_expr (size_in_bytes (TREE_TYPE (pval)),
b9c74b4d 4602 NULL_RTX, TYPE_MODE (sizetype),
4603 EXPAND_NORMAL);
66d433c7 4604 }
4605
c5dc0c32 4606 parm_align = arg->locate.boundary;
cf78c9ff 4607
4608 /* When an argument is padded down, the block is aligned to
4609 PARM_BOUNDARY, but the actual argument isn't. */
4610 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4611 {
241399f6 4612 if (arg->locate.size.var)
cf78c9ff 4613 parm_align = BITS_PER_UNIT;
4614 else if (excess)
4615 {
28397255 4616 unsigned int excess_align = (excess & -excess) * BITS_PER_UNIT;
cf78c9ff 4617 parm_align = MIN (parm_align, excess_align);
4618 }
4619 }
4620
e16ceb8e 4621 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
57679d39 4622 {
4623 /* emit_push_insn might not work properly if arg->value and
241399f6 4624 argblock + arg->locate.offset areas overlap. */
57679d39 4625 rtx x = arg->value;
4626 int i = 0;
4627
abe32cce 4628 if (XEXP (x, 0) == crtl->args.internal_arg_pointer
57679d39 4629 || (GET_CODE (XEXP (x, 0)) == PLUS
4630 && XEXP (XEXP (x, 0), 0) ==
abe32cce 4631 crtl->args.internal_arg_pointer
971ba038 4632 && CONST_INT_P (XEXP (XEXP (x, 0), 1))))
57679d39 4633 {
abe32cce 4634 if (XEXP (x, 0) != crtl->args.internal_arg_pointer)
57679d39 4635 i = INTVAL (XEXP (XEXP (x, 0), 1));
4636
21dda4ee 4637 /* expand_call should ensure this. */
231bd014 4638 gcc_assert (!arg->locate.offset.var
2ad152f7 4639 && arg->locate.size.var == 0
971ba038 4640 && CONST_INT_P (size_rtx));
57679d39 4641
241399f6 4642 if (arg->locate.offset.constant > i)
57679d39 4643 {
241399f6 4644 if (arg->locate.offset.constant < i + INTVAL (size_rtx))
57679d39 4645 sibcall_failure = 1;
4646 }
241399f6 4647 else if (arg->locate.offset.constant < i)
57679d39 4648 {
2ad152f7 4649 /* Use arg->locate.size.constant instead of size_rtx
4650 because we only care about the part of the argument
4651 on the stack. */
4652 if (i < (arg->locate.offset.constant
4653 + arg->locate.size.constant))
4654 sibcall_failure = 1;
4655 }
4656 else
4657 {
4658 /* Even though they appear to be at the same location,
4659 if part of the outgoing argument is in registers,
4660 they aren't really at the same location. Check for
4661 this by making sure that the incoming size is the
4662 same as the outgoing size. */
4663 if (arg->locate.size.constant != INTVAL (size_rtx))
57679d39 4664 sibcall_failure = 1;
4665 }
4666 }
4667 }
4668
1c0c37a5 4669 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
cf78c9ff 4670 parm_align, partial, reg, excess, argblock,
241399f6 4671 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4672 ARGS_SIZE_RTX (arg->locate.alignment_pad));
66d433c7 4673
d5c9a99f 4674 /* Unless this is a partially-in-register argument, the argument is now
4675 in the stack.
66d433c7 4676
d5c9a99f 4677 ??? Unlike the case above, in which we want the actual
4678 address of the data, so that we can load it directly into a
4679 register, here we want the address of the stack slot, so that
4680 it's properly aligned for word-by-word copying or something
4681 like that. It's not clear that this is always correct. */
4682 if (partial == 0)
4683 arg->value = arg->stack_slot;
4684 }
b600a907 4685
4686 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
4687 {
4688 tree type = TREE_TYPE (arg->tree_value);
4689 arg->parallel_value
4690 = emit_group_load_into_temps (arg->reg, arg->value, type,
4691 int_size_in_bytes (type));
4692 }
66d433c7 4693
a35a63ff 4694 /* Mark all slots this store used. */
4695 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
4696 && argblock && ! variable_size && arg->stack)
4697 for (i = lower_bound; i < upper_bound; i++)
4698 stack_usage_map[i] = 1;
4699
66d433c7 4700 /* Once we have pushed something, pops can't safely
4701 be deferred during the rest of the arguments. */
4702 NO_DEFER_POP;
4703
0ab48139 4704 /* Free any temporary slots made in processing this argument. */
1b117c60 4705 pop_temp_slots ();
57679d39 4706
4707 return sibcall_failure;
66d433c7 4708}
890f0c17 4709
0336f0f0 4710/* Nonzero if we do not know how to pass TYPE solely in registers. */
890f0c17 4711
0336f0f0 4712bool
4713must_pass_in_stack_var_size (enum machine_mode mode ATTRIBUTE_UNUSED,
fb80456a 4714 const_tree type)
0336f0f0 4715{
4716 if (!type)
4717 return false;
4718
4719 /* If the type has variable size... */
4720 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4721 return true;
890f0c17 4722
0336f0f0 4723 /* If the type is marked as addressable (it is required
4724 to be constructed into the stack)... */
4725 if (TREE_ADDRESSABLE (type))
4726 return true;
4727
4728 return false;
4729}
890f0c17 4730
0d568ddf 4731/* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
0336f0f0 4732 takes trailing padding of a structure into account. */
4733/* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
890f0c17 4734
4735bool
fb80456a 4736must_pass_in_stack_var_size_or_pad (enum machine_mode mode, const_tree type)
890f0c17 4737{
4738 if (!type)
dceaa0b1 4739 return false;
890f0c17 4740
4741 /* If the type has variable size... */
4742 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4743 return true;
4744
4745 /* If the type is marked as addressable (it is required
4746 to be constructed into the stack)... */
4747 if (TREE_ADDRESSABLE (type))
4748 return true;
4749
4750 /* If the padding and mode of the type is such that a copy into
4751 a register would put it into the wrong part of the register. */
4752 if (mode == BLKmode
4753 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
4754 && (FUNCTION_ARG_PADDING (mode, type)
4755 == (BYTES_BIG_ENDIAN ? upward : downward)))
4756 return true;
4757
4758 return false;
4759}