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