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