]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/calls.c
coroutines: Make call argument handling more robust [PR95440]
[thirdparty/gcc.git] / gcc / calls.c
CommitLineData
51bbfa0c 1/* Convert function calls to rtl insns, for GNU C compiler.
8d9254fc 2 Copyright (C) 1989-2020 Free Software Foundation, Inc.
51bbfa0c 3
1322177d 4This file is part of GCC.
51bbfa0c 5
1322177d
LB
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
9dcd6f09 8Software Foundation; either version 3, or (at your option) any later
1322177d 9version.
51bbfa0c 10
1322177d
LB
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.
51bbfa0c
RS
15
16You should have received a copy of the GNU General Public License
9dcd6f09
NC
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
51bbfa0c
RS
19
20#include "config.h"
670ee920 21#include "system.h"
4977bab6 22#include "coretypes.h"
c7131fb2 23#include "backend.h"
957060b5
AM
24#include "target.h"
25#include "rtl.h"
c7131fb2
AM
26#include "tree.h"
27#include "gimple.h"
957060b5 28#include "predict.h"
4d0cdd0c 29#include "memmodel.h"
957060b5
AM
30#include "tm_p.h"
31#include "stringpool.h"
32#include "expmed.h"
33#include "optabs.h"
957060b5
AM
34#include "emit-rtl.h"
35#include "cgraph.h"
36#include "diagnostic-core.h"
40e23961 37#include "fold-const.h"
d8a2d370
DN
38#include "stor-layout.h"
39#include "varasm.h"
2fb9a547 40#include "internal-fn.h"
36566b39
PK
41#include "dojump.h"
42#include "explow.h"
43#include "calls.h"
670ee920 44#include "expr.h"
d6f4ec51 45#include "output.h"
b0c48229 46#include "langhooks.h"
b2dd096b 47#include "except.h"
6fb5fa3c 48#include "dbgcnt.h"
e9f56944 49#include "rtl-iter.h"
8bd9f164
MS
50#include "tree-vrp.h"
51#include "tree-ssanames.h"
4252ccd7 52#include "tree-ssa-strlen.h"
8bd9f164 53#include "intl.h"
314e6352 54#include "stringpool.h"
54aa6b58
MS
55#include "hash-map.h"
56#include "hash-traits.h"
314e6352 57#include "attribs.h"
cc8bea0a 58#include "builtins.h"
d677a8b6 59#include "gimple-fold.h"
76e048a8 60
c795bca9
BS
61/* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
62#define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
51bbfa0c
RS
63
64/* Data structure and subroutines used within expand_call. */
65
66struct arg_data
67{
68 /* Tree node for this argument. */
69 tree tree_value;
1efe6448 70 /* Mode for value; TYPE_MODE unless promoted. */
ef4bddc2 71 machine_mode mode;
51bbfa0c
RS
72 /* Current RTL value for argument, or 0 if it isn't precomputed. */
73 rtx value;
74 /* Initially-compute RTL value for argument; only for const functions. */
75 rtx initial_value;
76 /* Register to pass this argument in, 0 if passed on stack, or an
cacbd532 77 PARALLEL if the arg is to be copied into multiple non-contiguous
51bbfa0c
RS
78 registers. */
79 rtx reg;
099e9712
JH
80 /* Register to pass this argument in when generating tail call sequence.
81 This is not the same register as for normal calls on machines with
82 register windows. */
83 rtx tail_call_reg;
8df3dbb7
RH
84 /* If REG is a PARALLEL, this is a copy of VALUE pulled into the correct
85 form for emit_group_move. */
86 rtx parallel_value;
84b55618
RK
87 /* If REG was promoted from the actual mode of the argument expression,
88 indicates whether the promotion is sign- or zero-extended. */
89 int unsignedp;
f0078f86
AM
90 /* Number of bytes to put in registers. 0 means put the whole arg
91 in registers. Also 0 if not passed in registers. */
51bbfa0c 92 int partial;
da7d8304 93 /* Nonzero if argument must be passed on stack.
d64f5a78
RS
94 Note that some arguments may be passed on the stack
95 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
96 pass_on_stack identifies arguments that *cannot* go in registers. */
51bbfa0c 97 int pass_on_stack;
e7949876
AM
98 /* Some fields packaged up for locate_and_pad_parm. */
99 struct locate_and_pad_arg_data locate;
51bbfa0c
RS
100 /* Location on the stack at which parameter should be stored. The store
101 has already been done if STACK == VALUE. */
102 rtx stack;
103 /* Location on the stack of the start of this argument slot. This can
104 differ from STACK if this arg pads downward. This location is known
c2ed6cf8 105 to be aligned to TARGET_FUNCTION_ARG_BOUNDARY. */
51bbfa0c 106 rtx stack_slot;
51bbfa0c
RS
107 /* Place that this stack area has been saved, if needed. */
108 rtx save_area;
4ab56118
RK
109 /* If an argument's alignment does not permit direct copying into registers,
110 copy in smaller-sized pieces into pseudos. These are stored in a
111 block pointed to by this field. The next field says how many
112 word-sized pseudos we made. */
113 rtx *aligned_regs;
114 int n_aligned_regs;
51bbfa0c
RS
115};
116
da7d8304 117/* A vector of one char per byte of stack space. A byte if nonzero if
51bbfa0c
RS
118 the corresponding stack location has been used.
119 This vector is used to prevent a function call within an argument from
120 clobbering any stack already set up. */
121static char *stack_usage_map;
122
123/* Size of STACK_USAGE_MAP. */
a20c5714
RS
124static unsigned int highest_outgoing_arg_in_use;
125
126/* Assume that any stack location at this byte index is used,
127 without checking the contents of stack_usage_map. */
128static unsigned HOST_WIDE_INT stack_usage_watermark = HOST_WIDE_INT_M1U;
2f4aa534 129
c67846f2
JJ
130/* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
131 stack location's tail call argument has been already stored into the stack.
132 This bitmap is used to prevent sibling call optimization if function tries
133 to use parent's incoming argument slots when they have been already
134 overwritten with tail call arguments. */
135static sbitmap stored_args_map;
136
a20c5714
RS
137/* Assume that any virtual-incoming location at this byte index has been
138 stored, without checking the contents of stored_args_map. */
139static unsigned HOST_WIDE_INT stored_args_watermark;
140
2f4aa534
RS
141/* stack_arg_under_construction is nonzero when an argument may be
142 initialized with a constructor call (including a C function that
143 returns a BLKmode struct) and expand_call must take special action
144 to make sure the object being constructed does not overlap the
145 argument list for the constructor call. */
0405cc0e 146static int stack_arg_under_construction;
51bbfa0c 147
d329e058
AJ
148static void precompute_register_parameters (int, struct arg_data *, int *);
149static int store_one_arg (struct arg_data *, rtx, int, int, int);
150static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
151static int finalize_must_preallocate (int, int, struct arg_data *,
152 struct args_size *);
84b8030f 153static void precompute_arguments (int, struct arg_data *);
d329e058
AJ
154static void compute_argument_addresses (struct arg_data *, rtx, int);
155static rtx rtx_for_function_call (tree, tree);
156static void load_register_parameters (struct arg_data *, int, rtx *, int,
157 int, int *);
6ea2b70d 158static int special_function_p (const_tree, int);
d329e058 159static int check_sibcall_argument_overlap_1 (rtx);
48810515 160static int check_sibcall_argument_overlap (rtx_insn *, struct arg_data *, int);
d329e058 161
2f2b4a02 162static tree split_complex_types (tree);
21a3b983 163
f73ad30e 164#ifdef REG_PARM_STACK_SPACE
d329e058
AJ
165static rtx save_fixed_argument_area (int, rtx, int *, int *);
166static void restore_fixed_argument_area (rtx, rtx, int, int);
20efdf74 167#endif
51bbfa0c 168\f
a20c5714
RS
169/* Return true if bytes [LOWER_BOUND, UPPER_BOUND) of the outgoing
170 stack region might already be in use. */
171
172static bool
173stack_region_maybe_used_p (poly_uint64 lower_bound, poly_uint64 upper_bound,
174 unsigned int reg_parm_stack_space)
175{
176 unsigned HOST_WIDE_INT const_lower, const_upper;
177 const_lower = constant_lower_bound (lower_bound);
178 if (!upper_bound.is_constant (&const_upper))
179 const_upper = HOST_WIDE_INT_M1U;
180
181 if (const_upper > stack_usage_watermark)
182 return true;
183
184 /* Don't worry about things in the fixed argument area;
185 it has already been saved. */
186 const_lower = MAX (const_lower, reg_parm_stack_space);
187 const_upper = MIN (const_upper, highest_outgoing_arg_in_use);
188 for (unsigned HOST_WIDE_INT i = const_lower; i < const_upper; ++i)
189 if (stack_usage_map[i])
190 return true;
191 return false;
192}
193
194/* Record that bytes [LOWER_BOUND, UPPER_BOUND) of the outgoing
195 stack region are now in use. */
196
197static void
198mark_stack_region_used (poly_uint64 lower_bound, poly_uint64 upper_bound)
199{
200 unsigned HOST_WIDE_INT const_lower, const_upper;
201 const_lower = constant_lower_bound (lower_bound);
202 if (upper_bound.is_constant (&const_upper))
203 for (unsigned HOST_WIDE_INT i = const_lower; i < const_upper; ++i)
204 stack_usage_map[i] = 1;
205 else
206 stack_usage_watermark = MIN (stack_usage_watermark, const_lower);
207}
208
51bbfa0c
RS
209/* Force FUNEXP into a form suitable for the address of a CALL,
210 and return that as an rtx. Also load the static chain register
211 if FNDECL is a nested function.
212
77cac2f2
RK
213 CALL_FUSAGE points to a variable holding the prospective
214 CALL_INSN_FUNCTION_USAGE information. */
51bbfa0c 215
03dacb02 216rtx
f2d3d07e 217prepare_call_address (tree fndecl_or_type, rtx funexp, rtx static_chain_value,
4c640e26 218 rtx *call_fusage, int reg_parm_seen, int flags)
51bbfa0c 219{
ba228239 220 /* Make a valid memory address and copy constants through pseudo-regs,
51bbfa0c
RS
221 but not for a constant address if -fno-function-cse. */
222 if (GET_CODE (funexp) != SYMBOL_REF)
4c640e26
EB
223 {
224 /* If it's an indirect call by descriptor, generate code to perform
225 runtime identification of the pointer and load the descriptor. */
226 if ((flags & ECF_BY_DESCRIPTOR) && !flag_trampolines)
227 {
228 const int bit_val = targetm.calls.custom_function_descriptors;
229 rtx call_lab = gen_label_rtx ();
230
231 gcc_assert (fndecl_or_type && TYPE_P (fndecl_or_type));
232 fndecl_or_type
233 = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, NULL_TREE,
234 fndecl_or_type);
235 DECL_STATIC_CHAIN (fndecl_or_type) = 1;
236 rtx chain = targetm.calls.static_chain (fndecl_or_type, false);
237
84355514
AS
238 if (GET_MODE (funexp) != Pmode)
239 funexp = convert_memory_address (Pmode, funexp);
240
4c640e26
EB
241 /* Avoid long live ranges around function calls. */
242 funexp = copy_to_mode_reg (Pmode, funexp);
243
244 if (REG_P (chain))
245 emit_insn (gen_rtx_CLOBBER (VOIDmode, chain));
246
247 /* Emit the runtime identification pattern. */
248 rtx mask = gen_rtx_AND (Pmode, funexp, GEN_INT (bit_val));
249 emit_cmp_and_jump_insns (mask, const0_rtx, EQ, NULL_RTX, Pmode, 1,
250 call_lab);
251
252 /* Statically predict the branch to very likely taken. */
253 rtx_insn *insn = get_last_insn ();
254 if (JUMP_P (insn))
255 predict_insn_def (insn, PRED_BUILTIN_EXPECT, TAKEN);
256
257 /* Load the descriptor. */
258 rtx mem = gen_rtx_MEM (ptr_mode,
259 plus_constant (Pmode, funexp, - bit_val));
260 MEM_NOTRAP_P (mem) = 1;
261 mem = convert_memory_address (Pmode, mem);
262 emit_move_insn (chain, mem);
263
264 mem = gen_rtx_MEM (ptr_mode,
265 plus_constant (Pmode, funexp,
266 POINTER_SIZE / BITS_PER_UNIT
267 - bit_val));
268 MEM_NOTRAP_P (mem) = 1;
269 mem = convert_memory_address (Pmode, mem);
270 emit_move_insn (funexp, mem);
271
272 emit_label (call_lab);
273
274 if (REG_P (chain))
275 {
276 use_reg (call_fusage, chain);
277 STATIC_CHAIN_REG_P (chain) = 1;
278 }
279
280 /* Make sure we're not going to be overwritten below. */
281 gcc_assert (!static_chain_value);
282 }
283
284 /* If we are using registers for parameters, force the
285 function address into a register now. */
286 funexp = ((reg_parm_seen
287 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
288 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
289 : memory_address (FUNCTION_MODE, funexp));
290 }
408702b4 291 else
51bbfa0c 292 {
408702b4
RL
293 /* funexp could be a SYMBOL_REF represents a function pointer which is
294 of ptr_mode. In this case, it should be converted into address mode
295 to be a valid address for memory rtx pattern. See PR 64971. */
296 if (GET_MODE (funexp) != Pmode)
297 funexp = convert_memory_address (Pmode, funexp);
298
4c640e26 299 if (!(flags & ECF_SIBCALL))
408702b4
RL
300 {
301 if (!NO_FUNCTION_CSE && optimize && ! flag_no_function_cse)
302 funexp = force_reg (Pmode, funexp);
303 }
51bbfa0c
RS
304 }
305
f2d3d07e
RH
306 if (static_chain_value != 0
307 && (TREE_CODE (fndecl_or_type) != FUNCTION_DECL
308 || DECL_STATIC_CHAIN (fndecl_or_type)))
51bbfa0c 309 {
531ca746
RH
310 rtx chain;
311
f2d3d07e 312 chain = targetm.calls.static_chain (fndecl_or_type, false);
5e89a381 313 static_chain_value = convert_memory_address (Pmode, static_chain_value);
51bbfa0c 314
531ca746
RH
315 emit_move_insn (chain, static_chain_value);
316 if (REG_P (chain))
4c640e26
EB
317 {
318 use_reg (call_fusage, chain);
319 STATIC_CHAIN_REG_P (chain) = 1;
320 }
51bbfa0c
RS
321 }
322
323 return funexp;
324}
325
326/* Generate instructions to call function FUNEXP,
327 and optionally pop the results.
328 The CALL_INSN is the first insn generated.
329
607ea900 330 FNDECL is the declaration node of the function. This is given to the
079e7538
NF
331 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
332 its own args.
2c8da025 333
079e7538
NF
334 FUNTYPE is the data type of the function. This is given to the hook
335 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
336 own args. We used to allow an identifier for library functions, but
337 that doesn't work when the return type is an aggregate type and the
338 calling convention says that the pointer to this aggregate is to be
339 popped by the callee.
51bbfa0c
RS
340
341 STACK_SIZE is the number of bytes of arguments on the stack,
c2732da3
JM
342 ROUNDED_STACK_SIZE is that number rounded up to
343 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
344 both to put into the call insn and to generate explicit popping
345 code if necessary.
51bbfa0c
RS
346
347 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
348 It is zero if this call doesn't want a structure value.
349
350 NEXT_ARG_REG is the rtx that results from executing
6783fdb7
RS
351 targetm.calls.function_arg (&args_so_far,
352 function_arg_info::end_marker ());
51bbfa0c
RS
353 just after all the args have had their registers assigned.
354 This could be whatever you like, but normally it is the first
355 arg-register beyond those used for args in this call,
356 or 0 if all the arg-registers are used in this call.
357 It is passed on to `gen_call' so you can put this info in the call insn.
358
359 VALREG is a hard register in which a value is returned,
360 or 0 if the call does not return a value.
361
362 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
363 the args to this call were processed.
364 We restore `inhibit_defer_pop' to that value.
365
94b25f81 366 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
6d2f8887 367 denote registers used by the called function. */
f725a3ec 368
322e3e34 369static void
28ed065e 370emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
6de9cd9a 371 tree funtype ATTRIBUTE_UNUSED,
a20c5714
RS
372 poly_int64 stack_size ATTRIBUTE_UNUSED,
373 poly_int64 rounded_stack_size,
5c8e61cf 374 poly_int64 struct_value_size ATTRIBUTE_UNUSED,
d329e058
AJ
375 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
376 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
d5cc9181 377 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
51bbfa0c 378{
a20c5714 379 rtx rounded_stack_size_rtx = gen_int_mode (rounded_stack_size, Pmode);
58d745ec 380 rtx call, funmem, pat;
51bbfa0c 381 int already_popped = 0;
a20c5714 382 poly_int64 n_popped = 0;
a00fe3b7
RS
383
384 /* Sibling call patterns never pop arguments (no sibcall(_value)_pop
385 patterns exist). Any popping that the callee does on return will
386 be from our caller's frame rather than ours. */
387 if (!(ecf_flags & ECF_SIBCALL))
388 {
389 n_popped += targetm.calls.return_pops_args (fndecl, funtype, stack_size);
51bbfa0c 390
fa5322fa 391#ifdef CALL_POPS_ARGS
a00fe3b7 392 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
fa5322fa 393#endif
a00fe3b7 394 }
d329e058 395
51bbfa0c
RS
396 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
397 and we don't want to load it into a register as an optimization,
398 because prepare_call_address already did it if it should be done. */
399 if (GET_CODE (funexp) != SYMBOL_REF)
400 funexp = memory_address (FUNCTION_MODE, funexp);
401
325f5379
JJ
402 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
403 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
047d33a0
AO
404 {
405 tree t = fndecl;
e79983f4 406
047d33a0
AO
407 /* Although a built-in FUNCTION_DECL and its non-__builtin
408 counterpart compare equal and get a shared mem_attrs, they
409 produce different dump output in compare-debug compilations,
410 if an entry gets garbage collected in one compilation, then
411 adds a different (but equivalent) entry, while the other
412 doesn't run the garbage collector at the same spot and then
413 shares the mem_attr with the equivalent entry. */
e79983f4
MM
414 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
415 {
416 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
417 if (t2)
418 t = t2;
419 }
420
421 set_mem_expr (funmem, t);
047d33a0 422 }
325f5379 423 else if (fntree)
e19f6650 424 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
325f5379 425
58d745ec 426 if (ecf_flags & ECF_SIBCALL)
0a1c58a2 427 {
0a1c58a2 428 if (valreg)
58d745ec
RS
429 pat = targetm.gen_sibcall_value (valreg, funmem,
430 rounded_stack_size_rtx,
431 next_arg_reg, NULL_RTX);
0a1c58a2 432 else
58d745ec 433 pat = targetm.gen_sibcall (funmem, rounded_stack_size_rtx,
5c8e61cf
RS
434 next_arg_reg,
435 gen_int_mode (struct_value_size, Pmode));
0a1c58a2 436 }
8ac61af7
RK
437 /* If the target has "call" or "call_value" insns, then prefer them
438 if no arguments are actually popped. If the target does not have
439 "call" or "call_value" insns, then we must use the popping versions
440 even if the call has no arguments to pop. */
a20c5714 441 else if (maybe_ne (n_popped, 0)
58d745ec
RS
442 || !(valreg
443 ? targetm.have_call_value ()
444 : targetm.have_call ()))
51bbfa0c 445 {
a20c5714 446 rtx n_pop = gen_int_mode (n_popped, Pmode);
51bbfa0c
RS
447
448 /* If this subroutine pops its own args, record that in the call insn
449 if possible, for the sake of frame pointer elimination. */
2c8da025 450
51bbfa0c 451 if (valreg)
58d745ec
RS
452 pat = targetm.gen_call_value_pop (valreg, funmem,
453 rounded_stack_size_rtx,
454 next_arg_reg, n_pop);
51bbfa0c 455 else
58d745ec
RS
456 pat = targetm.gen_call_pop (funmem, rounded_stack_size_rtx,
457 next_arg_reg, n_pop);
51bbfa0c 458
51bbfa0c
RS
459 already_popped = 1;
460 }
461 else
0a1c58a2
JL
462 {
463 if (valreg)
58d745ec
RS
464 pat = targetm.gen_call_value (valreg, funmem, rounded_stack_size_rtx,
465 next_arg_reg, NULL_RTX);
0a1c58a2 466 else
58d745ec 467 pat = targetm.gen_call (funmem, rounded_stack_size_rtx, next_arg_reg,
5c8e61cf 468 gen_int_mode (struct_value_size, Pmode));
0a1c58a2 469 }
58d745ec 470 emit_insn (pat);
51bbfa0c 471
ee960939 472 /* Find the call we just emitted. */
e67d1102 473 rtx_call_insn *call_insn = last_call_insn ();
51bbfa0c 474
325f5379
JJ
475 /* Some target create a fresh MEM instead of reusing the one provided
476 above. Set its MEM_EXPR. */
da4fdf2d
SB
477 call = get_call_rtx_from (call_insn);
478 if (call
325f5379
JJ
479 && MEM_EXPR (XEXP (call, 0)) == NULL_TREE
480 && MEM_EXPR (funmem) != NULL_TREE)
481 set_mem_expr (XEXP (call, 0), MEM_EXPR (funmem));
482
ee960939
OH
483 /* Put the register usage information there. */
484 add_function_usage_to (call_insn, call_fusage);
51bbfa0c
RS
485
486 /* If this is a const call, then set the insn's unchanging bit. */
becfd6e5
KZ
487 if (ecf_flags & ECF_CONST)
488 RTL_CONST_CALL_P (call_insn) = 1;
489
490 /* If this is a pure call, then set the insn's unchanging bit. */
491 if (ecf_flags & ECF_PURE)
492 RTL_PURE_CALL_P (call_insn) = 1;
493
494 /* If this is a const call, then set the insn's unchanging bit. */
495 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
496 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
51bbfa0c 497
1d65f45c
RH
498 /* Create a nothrow REG_EH_REGION note, if needed. */
499 make_reg_eh_region_note (call_insn, ecf_flags, 0);
12a22e76 500
ca3920ad 501 if (ecf_flags & ECF_NORETURN)
65c5f2a6 502 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
ca3920ad 503
570a98eb 504 if (ecf_flags & ECF_RETURNS_TWICE)
9defc9b7 505 {
65c5f2a6 506 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
e3b5732b 507 cfun->calls_setjmp = 1;
9defc9b7 508 }
570a98eb 509
0a1c58a2
JL
510 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
511
b1e64e0d
RS
512 /* Restore this now, so that we do defer pops for this call's args
513 if the context of the call as a whole permits. */
514 inhibit_defer_pop = old_inhibit_defer_pop;
515
a20c5714 516 if (maybe_ne (n_popped, 0))
51bbfa0c
RS
517 {
518 if (!already_popped)
e3da301d 519 CALL_INSN_FUNCTION_USAGE (call_insn)
38a448ca
RH
520 = gen_rtx_EXPR_LIST (VOIDmode,
521 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
522 CALL_INSN_FUNCTION_USAGE (call_insn));
fb5eebb9 523 rounded_stack_size -= n_popped;
a20c5714 524 rounded_stack_size_rtx = gen_int_mode (rounded_stack_size, Pmode);
1503a7ec 525 stack_pointer_delta -= n_popped;
2e3f842f 526
68184180 527 add_args_size_note (call_insn, stack_pointer_delta);
9a08d230 528
2e3f842f
L
529 /* If popup is needed, stack realign must use DRAP */
530 if (SUPPORTS_STACK_ALIGNMENT)
531 crtl->need_drap = true;
51bbfa0c 532 }
f8f75b16
JJ
533 /* For noreturn calls when not accumulating outgoing args force
534 REG_ARGS_SIZE note to prevent crossjumping of calls with different
535 args sizes. */
536 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
68184180 537 add_args_size_note (call_insn, stack_pointer_delta);
51bbfa0c 538
f73ad30e 539 if (!ACCUMULATE_OUTGOING_ARGS)
51bbfa0c 540 {
f73ad30e
JH
541 /* If returning from the subroutine does not automatically pop the args,
542 we need an instruction to pop them sooner or later.
543 Perhaps do it now; perhaps just record how much space to pop later.
544
545 If returning from the subroutine does pop the args, indicate that the
546 stack pointer will be changed. */
547
a20c5714 548 if (maybe_ne (rounded_stack_size, 0))
f73ad30e 549 {
9dd9bf80 550 if (ecf_flags & ECF_NORETURN)
f79a65c0
RK
551 /* Just pretend we did the pop. */
552 stack_pointer_delta -= rounded_stack_size;
553 else if (flag_defer_pop && inhibit_defer_pop == 0
7393c642 554 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
f73ad30e
JH
555 pending_stack_adjust += rounded_stack_size;
556 else
557 adjust_stack (rounded_stack_size_rtx);
558 }
51bbfa0c 559 }
f73ad30e
JH
560 /* When we accumulate outgoing args, we must avoid any stack manipulations.
561 Restore the stack pointer to its original value now. Usually
562 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
563 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
564 popping variants of functions exist as well.
565
566 ??? We may optimize similar to defer_pop above, but it is
567 probably not worthwhile.
f725a3ec 568
f73ad30e
JH
569 ??? It will be worthwhile to enable combine_stack_adjustments even for
570 such machines. */
a20c5714
RS
571 else if (maybe_ne (n_popped, 0))
572 anti_adjust_stack (gen_int_mode (n_popped, Pmode));
51bbfa0c
RS
573}
574
25f0609b
BE
575/* Determine if the function identified by FNDECL is one with
576 special properties we wish to know about. Modify FLAGS accordingly.
20efdf74
JL
577
578 For example, if the function might return more than one time (setjmp), then
25f0609b 579 set ECF_RETURNS_TWICE.
20efdf74 580
25f0609b 581 Set ECF_MAY_BE_ALLOCA for any memory allocation function that might allocate
20efdf74
JL
582 space from the stack such as alloca. */
583
f2d33f13 584static int
6ea2b70d 585special_function_p (const_tree fndecl, int flags)
20efdf74 586{
d5e254e1
IE
587 tree name_decl = DECL_NAME (fndecl);
588
182ce042
DM
589 if (maybe_special_function_p (fndecl)
590 && IDENTIFIER_LENGTH (name_decl) <= 11)
20efdf74 591 {
d5e254e1 592 const char *name = IDENTIFIER_POINTER (name_decl);
63ad61ed 593 const char *tname = name;
20efdf74 594
ca54603f
JL
595 /* We assume that alloca will always be called by name. It
596 makes no sense to pass it as a pointer-to-function to
597 anything that does not understand its behavior. */
4e722cf1
JJ
598 if (IDENTIFIER_LENGTH (name_decl) == 6
599 && name[0] == 'a'
600 && ! strcmp (name, "alloca"))
f2d33f13 601 flags |= ECF_MAY_BE_ALLOCA;
ca54603f 602
25f0609b 603 /* Disregard prefix _ or __. */
20efdf74
JL
604 if (name[0] == '_')
605 {
25f0609b 606 if (name[1] == '_')
20efdf74
JL
607 tname += 2;
608 else
609 tname += 1;
610 }
611
25f0609b
BE
612 /* ECF_RETURNS_TWICE is safe even for -ffreestanding. */
613 if (! strcmp (tname, "setjmp")
614 || ! strcmp (tname, "sigsetjmp")
615 || ! strcmp (name, "savectx")
616 || ! strcmp (name, "vfork")
617 || ! strcmp (name, "getcontext"))
618 flags |= ECF_RETURNS_TWICE;
20efdf74 619 }
d1c38823 620
9e878cf1
EB
621 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
622 && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (fndecl)))
623 flags |= ECF_MAY_BE_ALLOCA;
4e722cf1 624
f2d33f13 625 return flags;
20efdf74
JL
626}
627
e384e6b5
BS
628/* Similar to special_function_p; return a set of ERF_ flags for the
629 function FNDECL. */
630static int
631decl_return_flags (tree fndecl)
632{
633 tree attr;
634 tree type = TREE_TYPE (fndecl);
635 if (!type)
636 return 0;
637
638 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
639 if (!attr)
640 return 0;
641
642 attr = TREE_VALUE (TREE_VALUE (attr));
643 if (!attr || TREE_STRING_LENGTH (attr) < 1)
644 return 0;
645
646 switch (TREE_STRING_POINTER (attr)[0])
647 {
648 case '1':
649 case '2':
650 case '3':
651 case '4':
652 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
653
654 case 'm':
655 return ERF_NOALIAS;
656
657 case '.':
658 default:
659 return 0;
660 }
661}
662
bae802f9 663/* Return nonzero when FNDECL represents a call to setjmp. */
7393c642 664
f2d33f13 665int
6ea2b70d 666setjmp_call_p (const_tree fndecl)
f2d33f13 667{
275311c4
MP
668 if (DECL_IS_RETURNS_TWICE (fndecl))
669 return ECF_RETURNS_TWICE;
f2d33f13
JH
670 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
671}
672
726a989a 673
159e8ef0 674/* Return true if STMT may be an alloca call. */
726a989a
RB
675
676bool
159e8ef0 677gimple_maybe_alloca_call_p (const gimple *stmt)
726a989a
RB
678{
679 tree fndecl;
680
681 if (!is_gimple_call (stmt))
682 return false;
683
684 fndecl = gimple_call_fndecl (stmt);
685 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
686 return true;
687
688 return false;
689}
690
159e8ef0
BE
691/* Return true if STMT is a builtin alloca call. */
692
693bool
694gimple_alloca_call_p (const gimple *stmt)
695{
696 tree fndecl;
697
698 if (!is_gimple_call (stmt))
699 return false;
700
701 fndecl = gimple_call_fndecl (stmt);
3d78e008 702 if (fndecl && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
159e8ef0
BE
703 switch (DECL_FUNCTION_CODE (fndecl))
704 {
9e878cf1 705 CASE_BUILT_IN_ALLOCA:
eacac712 706 return gimple_call_num_args (stmt) > 0;
159e8ef0
BE
707 default:
708 break;
709 }
710
711 return false;
712}
713
714/* Return true when exp contains a builtin alloca call. */
726a989a 715
c986baf6 716bool
6ea2b70d 717alloca_call_p (const_tree exp)
c986baf6 718{
2284b034 719 tree fndecl;
c986baf6 720 if (TREE_CODE (exp) == CALL_EXPR
2284b034 721 && (fndecl = get_callee_fndecl (exp))
159e8ef0
BE
722 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
723 switch (DECL_FUNCTION_CODE (fndecl))
724 {
9e878cf1 725 CASE_BUILT_IN_ALLOCA:
159e8ef0
BE
726 return true;
727 default:
728 break;
729 }
730
c986baf6
JH
731 return false;
732}
733
0a35513e
AH
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
b5cd4ed4 797/* Detect flags (function attributes) from the function decl or type node. */
7393c642 798
4977bab6 799int
6ea2b70d 800flags_from_decl_or_type (const_tree exp)
f2d33f13
JH
801{
802 int flags = 0;
36dbb93d 803
f2d33f13
JH
804 if (DECL_P (exp))
805 {
806 /* The function exp may have the `malloc' attribute. */
36dbb93d 807 if (DECL_IS_MALLOC (exp))
f2d33f13
JH
808 flags |= ECF_MALLOC;
809
6e9a3221
AN
810 /* The function exp may have the `returns_twice' attribute. */
811 if (DECL_IS_RETURNS_TWICE (exp))
812 flags |= ECF_RETURNS_TWICE;
813
becfd6e5 814 /* Process the pure and const attributes. */
9e3920e9 815 if (TREE_READONLY (exp))
becfd6e5
KZ
816 flags |= ECF_CONST;
817 if (DECL_PURE_P (exp))
e238ccac 818 flags |= ECF_PURE;
becfd6e5
KZ
819 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
820 flags |= ECF_LOOPING_CONST_OR_PURE;
2a8f6b90 821
dcd6de6d
ZD
822 if (DECL_IS_NOVOPS (exp))
823 flags |= ECF_NOVOPS;
46a4da10
JH
824 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
825 flags |= ECF_LEAF;
cb59f689
JH
826 if (lookup_attribute ("cold", DECL_ATTRIBUTES (exp)))
827 flags |= ECF_COLD;
dcd6de6d 828
f2d33f13
JH
829 if (TREE_NOTHROW (exp))
830 flags |= ECF_NOTHROW;
2b187c63 831
0a35513e
AH
832 if (flag_tm)
833 {
834 if (is_tm_builtin (exp))
835 flags |= ECF_TM_BUILTIN;
fe924d9f 836 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
0a35513e
AH
837 || lookup_attribute ("transaction_pure",
838 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
839 flags |= ECF_TM_PURE;
840 }
841
6de9cd9a 842 flags = special_function_p (exp, flags);
f2d33f13 843 }
0a35513e
AH
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 }
17fc8d6f
AH
854 else
855 gcc_unreachable ();
f2d33f13
JH
856
857 if (TREE_THIS_VOLATILE (exp))
9e3920e9
JJ
858 {
859 flags |= ECF_NORETURN;
860 if (flags & (ECF_CONST|ECF_PURE))
861 flags |= ECF_LOOPING_CONST_OR_PURE;
862 }
f2d33f13
JH
863
864 return flags;
865}
866
f027e0a2
JM
867/* Detect flags from a CALL_EXPR. */
868
869int
fa233e34 870call_expr_flags (const_tree t)
f027e0a2
JM
871{
872 int flags;
873 tree decl = get_callee_fndecl (t);
874
875 if (decl)
876 flags = flags_from_decl_or_type (decl);
1691b2e1
TV
877 else if (CALL_EXPR_FN (t) == NULL_TREE)
878 flags = internal_fn_flags (CALL_EXPR_IFN (t));
f027e0a2
JM
879 else
880 {
4c640e26
EB
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));
f027e0a2
JM
884 else
885 flags = 0;
4c640e26
EB
886 if (CALL_EXPR_BY_DESCRIPTOR (t))
887 flags |= ECF_BY_DESCRIPTOR;
f027e0a2
JM
888 }
889
890 return flags;
891}
892
52090e4d 893/* Return true if ARG should be passed by invisible reference. */
16a16ec7
AM
894
895bool
52090e4d 896pass_by_reference (CUMULATIVE_ARGS *ca, function_arg_info arg)
16a16ec7 897{
52090e4d 898 if (tree type = arg.type)
16a16ec7
AM
899 {
900 /* If this type contains non-trivial constructors, then it is
901 forbidden for the middle-end to create any new copies. */
902 if (TREE_ADDRESSABLE (type))
903 return true;
904
905 /* GCC post 3.4 passes *all* variable sized types by reference. */
c600df9a 906 if (!TYPE_SIZE (type) || !poly_int_tree_p (TYPE_SIZE (type)))
16a16ec7
AM
907 return true;
908
909 /* If a record type should be passed the same as its first (and only)
910 member, use the type and mode of that member. */
911 if (TREE_CODE (type) == RECORD_TYPE && TYPE_TRANSPARENT_AGGR (type))
912 {
52090e4d
RS
913 arg.type = TREE_TYPE (first_field (type));
914 arg.mode = TYPE_MODE (arg.type);
16a16ec7
AM
915 }
916 }
917
52090e4d 918 return targetm.calls.pass_by_reference (pack_cumulative_args (ca), arg);
16a16ec7
AM
919}
920
fde65a89
RS
921/* Return true if TYPE should be passed by reference when passed to
922 the "..." arguments of a function. */
923
924bool
925pass_va_arg_by_reference (tree type)
926{
52090e4d 927 return pass_by_reference (NULL, function_arg_info (type, /*named=*/false));
fde65a89
RS
928}
929
b12cdd6e
RS
930/* Decide whether ARG, which occurs in the state described by CA,
931 should be passed by reference. Return true if so and update
932 ARG accordingly. */
933
934bool
935apply_pass_by_reference_rules (CUMULATIVE_ARGS *ca, function_arg_info &arg)
936{
937 if (pass_by_reference (ca, arg))
938 {
939 arg.type = build_pointer_type (arg.type);
940 arg.mode = TYPE_MODE (arg.type);
257caa55 941 arg.pass_by_reference = true;
b12cdd6e
RS
942 return true;
943 }
944 return false;
945}
946
7256c719 947/* Return true if ARG, which is passed by reference, should be callee
16a16ec7
AM
948 copied instead of caller copied. */
949
950bool
7256c719 951reference_callee_copied (CUMULATIVE_ARGS *ca, const function_arg_info &arg)
16a16ec7 952{
7256c719 953 if (arg.type && TREE_ADDRESSABLE (arg.type))
16a16ec7 954 return false;
7256c719 955 return targetm.calls.callee_copies (pack_cumulative_args (ca), arg);
16a16ec7
AM
956}
957
958
20efdf74
JL
959/* Precompute all register parameters as described by ARGS, storing values
960 into fields within the ARGS array.
961
962 NUM_ACTUALS indicates the total number elements in the ARGS array.
963
964 Set REG_PARM_SEEN if we encounter a register parameter. */
965
966static void
27e29549
RH
967precompute_register_parameters (int num_actuals, struct arg_data *args,
968 int *reg_parm_seen)
20efdf74
JL
969{
970 int i;
971
972 *reg_parm_seen = 0;
973
974 for (i = 0; i < num_actuals; i++)
975 if (args[i].reg != 0 && ! args[i].pass_on_stack)
976 {
977 *reg_parm_seen = 1;
978
979 if (args[i].value == 0)
980 {
981 push_temp_slots ();
84217346 982 args[i].value = expand_normal (args[i].tree_value);
20efdf74
JL
983 preserve_temp_slots (args[i].value);
984 pop_temp_slots ();
20efdf74
JL
985 }
986
987 /* If we are to promote the function arg to a wider mode,
988 do it now. */
989
990 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
991 args[i].value
992 = convert_modes (args[i].mode,
993 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
994 args[i].value, args[i].unsignedp);
995
a7adbbcb
L
996 /* If the value is a non-legitimate constant, force it into a
997 pseudo now. TLS symbols sometimes need a call to resolve. */
998 if (CONSTANT_P (args[i].value)
999 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
1000 args[i].value = force_reg (args[i].mode, args[i].value);
1001
27e29549
RH
1002 /* If we're going to have to load the value by parts, pull the
1003 parts into pseudos. The part extraction process can involve
1004 non-trivial computation. */
1005 if (GET_CODE (args[i].reg) == PARALLEL)
1006 {
1007 tree type = TREE_TYPE (args[i].tree_value);
8df3dbb7 1008 args[i].parallel_value
27e29549
RH
1009 = emit_group_load_into_temps (args[i].reg, args[i].value,
1010 type, int_size_in_bytes (type));
1011 }
1012
f725a3ec 1013 /* If the value is expensive, and we are inside an appropriately
20efdf74
JL
1014 short loop, put the value into a pseudo and then put the pseudo
1015 into the hard reg.
1016
1017 For small register classes, also do this if this call uses
1018 register parameters. This is to avoid reload conflicts while
1019 loading the parameters registers. */
1020
27e29549
RH
1021 else if ((! (REG_P (args[i].value)
1022 || (GET_CODE (args[i].value) == SUBREG
1023 && REG_P (SUBREG_REG (args[i].value)))))
1024 && args[i].mode != BLKmode
e548c9df
AM
1025 && (set_src_cost (args[i].value, args[i].mode,
1026 optimize_insn_for_speed_p ())
1027 > COSTS_N_INSNS (1))
42db504c
SB
1028 && ((*reg_parm_seen
1029 && targetm.small_register_classes_for_mode_p (args[i].mode))
27e29549 1030 || optimize))
20efdf74
JL
1031 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
1032 }
1033}
1034
f73ad30e 1035#ifdef REG_PARM_STACK_SPACE
20efdf74
JL
1036
1037 /* The argument list is the property of the called routine and it
1038 may clobber it. If the fixed area has been used for previous
1039 parameters, we must save and restore it. */
3bdf5ad1 1040
20efdf74 1041static rtx
d329e058 1042save_fixed_argument_area (int reg_parm_stack_space, rtx argblock, int *low_to_save, int *high_to_save)
20efdf74 1043{
a20c5714
RS
1044 unsigned int low;
1045 unsigned int high;
20efdf74 1046
b820d2b8
AM
1047 /* Compute the boundary of the area that needs to be saved, if any. */
1048 high = reg_parm_stack_space;
6dad9361
TS
1049 if (ARGS_GROW_DOWNWARD)
1050 high += 1;
1051
b820d2b8
AM
1052 if (high > highest_outgoing_arg_in_use)
1053 high = highest_outgoing_arg_in_use;
20efdf74 1054
b820d2b8 1055 for (low = 0; low < high; low++)
a20c5714 1056 if (stack_usage_map[low] != 0 || low >= stack_usage_watermark)
b820d2b8
AM
1057 {
1058 int num_to_save;
ef4bddc2 1059 machine_mode save_mode;
b820d2b8 1060 int delta;
0a81f074 1061 rtx addr;
b820d2b8
AM
1062 rtx stack_area;
1063 rtx save_area;
20efdf74 1064
b820d2b8
AM
1065 while (stack_usage_map[--high] == 0)
1066 ;
20efdf74 1067
b820d2b8
AM
1068 *low_to_save = low;
1069 *high_to_save = high;
1070
1071 num_to_save = high - low + 1;
20efdf74 1072
b820d2b8
AM
1073 /* If we don't have the required alignment, must do this
1074 in BLKmode. */
fffbab82
RS
1075 scalar_int_mode imode;
1076 if (int_mode_for_size (num_to_save * BITS_PER_UNIT, 1).exists (&imode)
1077 && (low & (MIN (GET_MODE_SIZE (imode),
1078 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)) == 0)
1079 save_mode = imode;
1080 else
b820d2b8 1081 save_mode = BLKmode;
20efdf74 1082
6dad9361
TS
1083 if (ARGS_GROW_DOWNWARD)
1084 delta = -high;
1085 else
1086 delta = low;
1087
0a81f074
RS
1088 addr = plus_constant (Pmode, argblock, delta);
1089 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
8ac61af7 1090
b820d2b8
AM
1091 set_mem_align (stack_area, PARM_BOUNDARY);
1092 if (save_mode == BLKmode)
1093 {
9474e8ab 1094 save_area = assign_stack_temp (BLKmode, num_to_save);
b820d2b8
AM
1095 emit_block_move (validize_mem (save_area), stack_area,
1096 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
1097 }
1098 else
1099 {
1100 save_area = gen_reg_rtx (save_mode);
1101 emit_move_insn (save_area, stack_area);
1102 }
8ac61af7 1103
b820d2b8
AM
1104 return save_area;
1105 }
1106
1107 return NULL_RTX;
20efdf74
JL
1108}
1109
1110static void
d329e058 1111restore_fixed_argument_area (rtx save_area, rtx argblock, int high_to_save, int low_to_save)
20efdf74 1112{
ef4bddc2 1113 machine_mode save_mode = GET_MODE (save_area);
b820d2b8 1114 int delta;
0a81f074 1115 rtx addr, stack_area;
b820d2b8 1116
6dad9361
TS
1117 if (ARGS_GROW_DOWNWARD)
1118 delta = -high_to_save;
1119 else
1120 delta = low_to_save;
1121
0a81f074
RS
1122 addr = plus_constant (Pmode, argblock, delta);
1123 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
b820d2b8 1124 set_mem_align (stack_area, PARM_BOUNDARY);
20efdf74
JL
1125
1126 if (save_mode != BLKmode)
1127 emit_move_insn (stack_area, save_area);
1128 else
44bb111a
RH
1129 emit_block_move (stack_area, validize_mem (save_area),
1130 GEN_INT (high_to_save - low_to_save + 1),
1131 BLOCK_OP_CALL_PARM);
20efdf74 1132}
19652adf 1133#endif /* REG_PARM_STACK_SPACE */
f725a3ec 1134
20efdf74
JL
1135/* If any elements in ARGS refer to parameters that are to be passed in
1136 registers, but not in memory, and whose alignment does not permit a
1137 direct copy into registers. Copy the values into a group of pseudos
f725a3ec 1138 which we will later copy into the appropriate hard registers.
8e6a59fe
MM
1139
1140 Pseudos for each unaligned argument will be stored into the array
1141 args[argnum].aligned_regs. The caller is responsible for deallocating
1142 the aligned_regs array if it is nonzero. */
1143
20efdf74 1144static void
d329e058 1145store_unaligned_arguments_into_pseudos (struct arg_data *args, int num_actuals)
20efdf74
JL
1146{
1147 int i, j;
f725a3ec 1148
20efdf74
JL
1149 for (i = 0; i < num_actuals; i++)
1150 if (args[i].reg != 0 && ! args[i].pass_on_stack
a7973050 1151 && GET_CODE (args[i].reg) != PARALLEL
20efdf74 1152 && args[i].mode == BLKmode
852d22b4
EB
1153 && MEM_P (args[i].value)
1154 && (MEM_ALIGN (args[i].value)
20efdf74
JL
1155 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
1156 {
1157 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
6e985040 1158 int endian_correction = 0;
20efdf74 1159
78a52f11
RH
1160 if (args[i].partial)
1161 {
1162 gcc_assert (args[i].partial % UNITS_PER_WORD == 0);
1163 args[i].n_aligned_regs = args[i].partial / UNITS_PER_WORD;
1164 }
1165 else
1166 {
1167 args[i].n_aligned_regs
1168 = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1169 }
1170
5ed6ace5 1171 args[i].aligned_regs = XNEWVEC (rtx, args[i].n_aligned_regs);
20efdf74 1172
6e985040
AM
1173 /* Structures smaller than a word are normally aligned to the
1174 least significant byte. On a BYTES_BIG_ENDIAN machine,
20efdf74
JL
1175 this means we must skip the empty high order bytes when
1176 calculating the bit offset. */
6e985040
AM
1177 if (bytes < UNITS_PER_WORD
1178#ifdef BLOCK_REG_PADDING
1179 && (BLOCK_REG_PADDING (args[i].mode,
1180 TREE_TYPE (args[i].tree_value), 1)
76b0cbf8 1181 == PAD_DOWNWARD)
6e985040
AM
1182#else
1183 && BYTES_BIG_ENDIAN
1184#endif
1185 )
1186 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
20efdf74
JL
1187
1188 for (j = 0; j < args[i].n_aligned_regs; j++)
1189 {
1190 rtx reg = gen_reg_rtx (word_mode);
1191 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1192 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
20efdf74
JL
1193
1194 args[i].aligned_regs[j] = reg;
c6285bd7 1195 word = extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
f96bf49a 1196 word_mode, word_mode, false, NULL);
20efdf74
JL
1197
1198 /* There is no need to restrict this code to loading items
1199 in TYPE_ALIGN sized hunks. The bitfield instructions can
1200 load up entire word sized registers efficiently.
1201
1202 ??? This may not be needed anymore.
1203 We use to emit a clobber here but that doesn't let later
1204 passes optimize the instructions we emit. By storing 0 into
1205 the register later passes know the first AND to zero out the
1206 bitfield being set in the register is unnecessary. The store
1207 of 0 will be deleted as will at least the first AND. */
1208
1209 emit_move_insn (reg, const0_rtx);
1210
1211 bytes -= bitsize / BITS_PER_UNIT;
1169e45d 1212 store_bit_field (reg, bitsize, endian_correction, 0, 0,
ee45a32d 1213 word_mode, word, false);
20efdf74
JL
1214 }
1215 }
1216}
1217
8bd9f164
MS
1218/* The limit set by -Walloc-larger-than=. */
1219static GTY(()) tree alloc_object_size_limit;
1220
1221/* Initialize ALLOC_OBJECT_SIZE_LIMIT based on the -Walloc-size-larger-than=
1222 setting if the option is specified, or to the maximum object size if it
1223 is not. Return the initialized value. */
1224
1225static tree
1226alloc_max_size (void)
1227{
d258f4aa
MS
1228 if (alloc_object_size_limit)
1229 return alloc_object_size_limit;
8bd9f164 1230
0aaafa5e
MS
1231 HOST_WIDE_INT limit = warn_alloc_size_limit;
1232 if (limit == HOST_WIDE_INT_MAX)
1233 limit = tree_to_shwi (TYPE_MAX_VALUE (ptrdiff_type_node));
1234
1235 alloc_object_size_limit = build_int_cst (size_type_node, limit);
d258f4aa 1236
8bd9f164
MS
1237 return alloc_object_size_limit;
1238}
1239
c16880ef 1240/* Return true when EXP's range can be determined and set RANGE[] to it
cc8bea0a
MS
1241 after adjusting it if necessary to make EXP a represents a valid size
1242 of object, or a valid size argument to an allocation function declared
1243 with attribute alloc_size (whose argument may be signed), or to a string
1244 manipulation function like memset. When ALLOW_ZERO is true, allow
1245 returning a range of [0, 0] for a size in an anti-range [1, N] where
1246 N > PTRDIFF_MAX. A zero range is a (nearly) invalid argument to
1247 allocation functions like malloc but it is a valid argument to
1248 functions like memset. */
8bd9f164 1249
c16880ef 1250bool
cc8bea0a 1251get_size_range (tree exp, tree range[2], bool allow_zero /* = false */)
8bd9f164 1252{
54aa6b58
MS
1253 if (!exp)
1254 return false;
1255
c16880ef 1256 if (tree_fits_uhwi_p (exp))
8bd9f164 1257 {
c16880ef
MS
1258 /* EXP is a constant. */
1259 range[0] = range[1] = exp;
1260 return true;
1261 }
1262
cc8bea0a
MS
1263 tree exptype = TREE_TYPE (exp);
1264 bool integral = INTEGRAL_TYPE_P (exptype);
1265
c16880ef 1266 wide_int min, max;
54994253 1267 enum value_range_kind range_type;
cc8bea0a 1268
72930d9f
MS
1269 if (integral)
1270 range_type = determine_value_range (exp, &min, &max);
cc8bea0a
MS
1271 else
1272 range_type = VR_VARYING;
c16880ef
MS
1273
1274 if (range_type == VR_VARYING)
1275 {
cc8bea0a
MS
1276 if (integral)
1277 {
1278 /* Use the full range of the type of the expression when
1279 no value range information is available. */
1280 range[0] = TYPE_MIN_VALUE (exptype);
1281 range[1] = TYPE_MAX_VALUE (exptype);
1282 return true;
1283 }
1284
c16880ef
MS
1285 range[0] = NULL_TREE;
1286 range[1] = NULL_TREE;
1287 return false;
1288 }
1289
c16880ef 1290 unsigned expprec = TYPE_PRECISION (exptype);
c16880ef
MS
1291
1292 bool signed_p = !TYPE_UNSIGNED (exptype);
1293
1294 if (range_type == VR_ANTI_RANGE)
1295 {
1296 if (signed_p)
8bd9f164 1297 {
8e6cdc90 1298 if (wi::les_p (max, 0))
8bd9f164 1299 {
c16880ef
MS
1300 /* EXP is not in a strictly negative range. That means
1301 it must be in some (not necessarily strictly) positive
1302 range which includes zero. Since in signed to unsigned
1303 conversions negative values end up converted to large
1304 positive values, and otherwise they are not valid sizes,
1305 the resulting range is in both cases [0, TYPE_MAX]. */
8e6cdc90
RS
1306 min = wi::zero (expprec);
1307 max = wi::to_wide (TYPE_MAX_VALUE (exptype));
8bd9f164 1308 }
8e6cdc90 1309 else if (wi::les_p (min - 1, 0))
c16880ef
MS
1310 {
1311 /* EXP is not in a negative-positive range. That means EXP
1312 is either negative, or greater than max. Since negative
1313 sizes are invalid make the range [MAX + 1, TYPE_MAX]. */
1314 min = max + 1;
8e6cdc90 1315 max = wi::to_wide (TYPE_MAX_VALUE (exptype));
c16880ef
MS
1316 }
1317 else
1318 {
1319 max = min - 1;
8e6cdc90 1320 min = wi::zero (expprec);
c16880ef
MS
1321 }
1322 }
8e6cdc90 1323 else if (wi::eq_p (0, min - 1))
c16880ef
MS
1324 {
1325 /* EXP is unsigned and not in the range [1, MAX]. That means
1326 it's either zero or greater than MAX. Even though 0 would
cc8bea0a
MS
1327 normally be detected by -Walloc-zero, unless ALLOW_ZERO
1328 is true, set the range to [MAX, TYPE_MAX] so that when MAX
1329 is greater than the limit the whole range is diagnosed. */
1330 if (allow_zero)
1331 min = max = wi::zero (expprec);
1332 else
1333 {
1334 min = max + 1;
1335 max = wi::to_wide (TYPE_MAX_VALUE (exptype));
1336 }
c16880ef
MS
1337 }
1338 else
1339 {
1340 max = min - 1;
8e6cdc90 1341 min = wi::zero (expprec);
8bd9f164
MS
1342 }
1343 }
1344
c16880ef
MS
1345 range[0] = wide_int_to_tree (exptype, min);
1346 range[1] = wide_int_to_tree (exptype, max);
1347
1348 return true;
8bd9f164
MS
1349}
1350
1351/* Diagnose a call EXP to function FN decorated with attribute alloc_size
1352 whose argument numbers given by IDX with values given by ARGS exceed
1353 the maximum object size or cause an unsigned oveflow (wrapping) when
302db8ba
MS
1354 multiplied. FN is null when EXP is a call via a function pointer.
1355 When ARGS[0] is null the function does nothing. ARGS[1] may be null
1356 for functions like malloc, and non-null for those like calloc that
1357 are decorated with a two-argument attribute alloc_size. */
8bd9f164
MS
1358
1359void
1360maybe_warn_alloc_args_overflow (tree fn, tree exp, tree args[2], int idx[2])
1361{
1362 /* The range each of the (up to) two arguments is known to be in. */
1363 tree argrange[2][2] = { { NULL_TREE, NULL_TREE }, { NULL_TREE, NULL_TREE } };
1364
1365 /* Maximum object size set by -Walloc-size-larger-than= or SIZE_MAX / 2. */
1366 tree maxobjsize = alloc_max_size ();
1367
1368 location_t loc = EXPR_LOCATION (exp);
1369
302db8ba 1370 tree fntype = fn ? TREE_TYPE (fn) : TREE_TYPE (TREE_TYPE (exp));
8bd9f164
MS
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_,
c16880ef
MS
1384 "%Kargument %i value %qE is negative",
1385 exp, idx[i] + 1, args[i]);
8bd9f164
MS
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". */
cb1180d5
RS
1396 if (fn && fndecl_built_in_p (fn, BUILT_IN_ALLOCA)
1397 ? IDENTIFIER_LENGTH (DECL_NAME (fn)) != 6
1398 : !lookup_attribute ("returns_nonnull",
1399 TYPE_ATTRIBUTES (fntype)))
8bd9f164 1400 warned = warning_at (loc, OPT_Walloc_zero,
c16880ef
MS
1401 "%Kargument %i value is zero",
1402 exp, idx[i] + 1);
8bd9f164
MS
1403 }
1404 else if (tree_int_cst_lt (maxobjsize, args[i]))
1405 {
1406 /* G++ emits calls to ::operator new[](SIZE_MAX) in C++98
1407 mode and with -fno-exceptions as a way to indicate array
1408 size overflow. There's no good way to detect C++98 here
1409 so avoid diagnosing these calls for all C++ modes. */
1410 if (i == 0
302db8ba 1411 && fn
8bd9f164
MS
1412 && !args[1]
1413 && lang_GNU_CXX ()
cb50701e 1414 && DECL_IS_OPERATOR_NEW_P (fn)
8bd9f164
MS
1415 && integer_all_onesp (args[i]))
1416 continue;
1417
1418 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
c16880ef 1419 "%Kargument %i value %qE exceeds "
8bd9f164 1420 "maximum object size %E",
c16880ef 1421 exp, idx[i] + 1, args[i], maxobjsize);
8bd9f164
MS
1422 }
1423 }
c16880ef
MS
1424 else if (TREE_CODE (args[i]) == SSA_NAME
1425 && get_size_range (args[i], argrange[i]))
8bd9f164 1426 {
8bd9f164
MS
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_,
c16880ef
MS
1433 "%Kargument %i range [%E, %E] is negative",
1434 exp, idx[i] + 1,
1435 argrange[i][0], argrange[i][1]);
8bd9f164
MS
1436 }
1437 else if (tree_int_cst_lt (maxobjsize, argrange[i][0]))
1438 {
1439 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
c16880ef 1440 "%Kargument %i range [%E, %E] exceeds "
8bd9f164 1441 "maximum object size %E",
c16880ef
MS
1442 exp, idx[i] + 1,
1443 argrange[i][0], argrange[i][1],
8bd9f164
MS
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
4a669ac3 1465 wi::overflow_type vflow;
8bd9f164
MS
1466 wide_int prod = wi::umul (x, y, &vflow);
1467
1468 if (vflow)
1469 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
c16880ef 1470 "%Kproduct %<%E * %E%> of arguments %i and %i "
8bd9f164 1471 "exceeds %<SIZE_MAX%>",
c16880ef 1472 exp, argrange[0][0], argrange[1][0],
8bd9f164
MS
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_,
c16880ef 1476 "%Kproduct %<%E * %E%> of arguments %i and %i "
8bd9f164 1477 "exceeds maximum object size %E",
c16880ef 1478 exp, argrange[0][0], argrange[1][0],
8bd9f164
MS
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
302db8ba 1495 if (warned && fn)
8bd9f164
MS
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
6a33d0ff
MS
1508/* If EXPR refers to a character array or pointer declared attribute
1509 nonstring return a decl for that array or pointer and set *REF to
1510 the referenced enclosing object or pointer. Otherwise returns
1511 null. */
1512
1513tree
1514get_attr_nonstring_decl (tree expr, tree *ref)
1515{
1516 tree decl = expr;
665db3ae 1517 tree var = NULL_TREE;
6a33d0ff
MS
1518 if (TREE_CODE (decl) == SSA_NAME)
1519 {
1520 gimple *def = SSA_NAME_DEF_STMT (decl);
1521
1522 if (is_gimple_assign (def))
1523 {
1524 tree_code code = gimple_assign_rhs_code (def);
1525 if (code == ADDR_EXPR
1526 || code == COMPONENT_REF
1527 || code == VAR_DECL)
1528 decl = gimple_assign_rhs1 (def);
1529 }
665db3ae
JL
1530 else
1531 var = SSA_NAME_VAR (decl);
6a33d0ff
MS
1532 }
1533
1534 if (TREE_CODE (decl) == ADDR_EXPR)
1535 decl = TREE_OPERAND (decl, 0);
1536
665db3ae
JL
1537 /* To simplify calling code, store the referenced DECL regardless of
1538 the attribute determined below, but avoid storing the SSA_NAME_VAR
1539 obtained above (it's not useful for dataflow purposes). */
6a33d0ff
MS
1540 if (ref)
1541 *ref = decl;
1542
665db3ae
JL
1543 /* Use the SSA_NAME_VAR that was determined above to see if it's
1544 declared nonstring. Otherwise drill down into the referenced
1545 DECL. */
1546 if (var)
1547 decl = var;
1548 else if (TREE_CODE (decl) == ARRAY_REF)
27560569
MS
1549 decl = TREE_OPERAND (decl, 0);
1550 else if (TREE_CODE (decl) == COMPONENT_REF)
6a33d0ff 1551 decl = TREE_OPERAND (decl, 1);
27560569
MS
1552 else if (TREE_CODE (decl) == MEM_REF)
1553 return get_attr_nonstring_decl (TREE_OPERAND (decl, 0), ref);
6a33d0ff
MS
1554
1555 if (DECL_P (decl)
1556 && lookup_attribute ("nonstring", DECL_ATTRIBUTES (decl)))
1557 return decl;
1558
1559 return NULL_TREE;
1560}
1561
6a33d0ff
MS
1562/* Warn about passing a non-string array/pointer to a function that
1563 expects a nul-terminated string argument. */
1564
1565void
1566maybe_warn_nonstring_arg (tree fndecl, tree exp)
1567{
3d78e008 1568 if (!fndecl || !fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
6a33d0ff
MS
1569 return;
1570
2c8861b7 1571 if (TREE_NO_WARNING (exp) || !warn_stringop_overflow)
781ff3d8
MS
1572 return;
1573
1a9b15a7 1574 /* Avoid clearly invalid calls (more checking done below). */
2438cb6a 1575 unsigned nargs = call_expr_nargs (exp);
1a9b15a7
MS
1576 if (!nargs)
1577 return;
2438cb6a 1578
6a33d0ff
MS
1579 /* The bound argument to a bounded string function like strncpy. */
1580 tree bound = NULL_TREE;
1581
5d6655eb
MS
1582 /* The longest known or possible string argument to one of the comparison
1583 functions. If the length is less than the bound it is used instead.
1584 Since the length is only used for warning and not for code generation
1585 disable strict mode in the calls to get_range_strlen below. */
1586 tree maxlen = NULL_TREE;
d677a8b6 1587
6a33d0ff
MS
1588 /* It's safe to call "bounded" string functions with a non-string
1589 argument since the functions provide an explicit bound for this
4252ccd7
MS
1590 purpose. The exception is strncat where the bound may refer to
1591 either the destination or the source. */
1592 int fncode = DECL_FUNCTION_CODE (fndecl);
1593 switch (fncode)
6a33d0ff 1594 {
d677a8b6 1595 case BUILT_IN_STRCMP:
6a33d0ff
MS
1596 case BUILT_IN_STRNCMP:
1597 case BUILT_IN_STRNCASECMP:
d677a8b6
MS
1598 {
1599 /* For these, if one argument refers to one or more of a set
1600 of string constants or arrays of known size, determine
1601 the range of their known or possible lengths and use it
1602 conservatively as the bound for the unbounded function,
1603 and to adjust the range of the bound of the bounded ones. */
2c8861b7
JJ
1604 for (unsigned argno = 0;
1605 argno < MIN (nargs, 2)
5d6655eb 1606 && !(maxlen && TREE_CODE (maxlen) == INTEGER_CST); argno++)
d677a8b6
MS
1607 {
1608 tree arg = CALL_EXPR_ARG (exp, argno);
1609 if (!get_attr_nonstring_decl (arg))
5d6655eb
MS
1610 {
1611 c_strlen_data lendata = { };
a7160771
MS
1612 /* Set MAXBOUND to an arbitrary non-null non-integer
1613 node as a request to have it set to the length of
1614 the longest string in a PHI. */
1615 lendata.maxbound = arg;
5d6655eb
MS
1616 get_range_strlen (arg, &lendata, /* eltsize = */ 1);
1617 maxlen = lendata.maxbound;
1618 }
d677a8b6
MS
1619 }
1620 }
1621 /* Fall through. */
1622
4252ccd7 1623 case BUILT_IN_STRNCAT:
d677a8b6 1624 case BUILT_IN_STPNCPY:
6a33d0ff 1625 case BUILT_IN_STRNCPY:
2c8861b7 1626 if (nargs > 2)
781ff3d8
MS
1627 bound = CALL_EXPR_ARG (exp, 2);
1628 break;
6a33d0ff
MS
1629
1630 case BUILT_IN_STRNDUP:
2c8861b7 1631 if (nargs > 1)
781ff3d8
MS
1632 bound = CALL_EXPR_ARG (exp, 1);
1633 break;
1634
1635 case BUILT_IN_STRNLEN:
2438cb6a 1636 {
781ff3d8
MS
1637 tree arg = CALL_EXPR_ARG (exp, 0);
1638 if (!get_attr_nonstring_decl (arg))
5d6655eb
MS
1639 {
1640 c_strlen_data lendata = { };
a7160771
MS
1641 /* Set MAXBOUND to an arbitrary non-null non-integer
1642 node as a request to have it set to the length of
1643 the longest string in a PHI. */
1644 lendata.maxbound = arg;
5d6655eb
MS
1645 get_range_strlen (arg, &lendata, /* eltsize = */ 1);
1646 maxlen = lendata.maxbound;
1647 }
2c8861b7 1648 if (nargs > 1)
781ff3d8 1649 bound = CALL_EXPR_ARG (exp, 1);
2438cb6a
MS
1650 break;
1651 }
6a33d0ff
MS
1652
1653 default:
1654 break;
1655 }
1656
1657 /* Determine the range of the bound argument (if specified). */
1658 tree bndrng[2] = { NULL_TREE, NULL_TREE };
1659 if (bound)
36537a1c
MS
1660 {
1661 STRIP_NOPS (bound);
1662 get_size_range (bound, bndrng);
1663 }
6a33d0ff 1664
781ff3d8
MS
1665 location_t loc = EXPR_LOCATION (exp);
1666
1667 if (bndrng[0])
1668 {
1669 /* Diagnose excessive bound prior the adjustment below and
1670 regardless of attribute nonstring. */
1671 tree maxobjsize = max_object_size ();
1672 if (tree_int_cst_lt (maxobjsize, bndrng[0]))
1673 {
1674 if (tree_int_cst_equal (bndrng[0], bndrng[1]))
1675 warning_at (loc, OPT_Wstringop_overflow_,
1676 "%K%qD specified bound %E "
1677 "exceeds maximum object size %E",
1678 exp, fndecl, bndrng[0], maxobjsize);
1679 else
1680 warning_at (loc, OPT_Wstringop_overflow_,
1681 "%K%qD specified bound [%E, %E] "
1682 "exceeds maximum object size %E",
1683 exp, fndecl, bndrng[0], bndrng[1], maxobjsize);
1684 return;
1685 }
1686 }
1687
5d6655eb 1688 if (maxlen && !integer_all_onesp (maxlen))
d677a8b6
MS
1689 {
1690 /* Add one for the nul. */
5d6655eb
MS
1691 maxlen = const_binop (PLUS_EXPR, TREE_TYPE (maxlen), maxlen,
1692 size_one_node);
d677a8b6
MS
1693
1694 if (!bndrng[0])
1695 {
1696 /* Conservatively use the upper bound of the lengths for
1697 both the lower and the upper bound of the operation. */
5d6655eb
MS
1698 bndrng[0] = maxlen;
1699 bndrng[1] = maxlen;
d677a8b6
MS
1700 bound = void_type_node;
1701 }
df161fc2 1702 else if (maxlen)
d677a8b6 1703 {
39c71bc3 1704 /* Replace the bound on the operation with the upper bound
d677a8b6 1705 of the length of the string if the latter is smaller. */
5d6655eb
MS
1706 if (tree_int_cst_lt (maxlen, bndrng[0]))
1707 bndrng[0] = maxlen;
1708 else if (tree_int_cst_lt (maxlen, bndrng[1]))
1709 bndrng[1] = maxlen;
d677a8b6
MS
1710 }
1711 }
1712
6a33d0ff
MS
1713 /* Iterate over the built-in function's formal arguments and check
1714 each const char* against the actual argument. If the actual
1715 argument is declared attribute non-string issue a warning unless
1716 the argument's maximum length is bounded. */
1717 function_args_iterator it;
1718 function_args_iter_init (&it, TREE_TYPE (fndecl));
1719
1720 for (unsigned argno = 0; ; ++argno, function_args_iter_next (&it))
1721 {
2438cb6a
MS
1722 /* Avoid iterating past the declared argument in a call
1723 to function declared without a prototype. */
1724 if (argno >= nargs)
1725 break;
1726
6a33d0ff
MS
1727 tree argtype = function_args_iter_cond (&it);
1728 if (!argtype)
1729 break;
1730
1731 if (TREE_CODE (argtype) != POINTER_TYPE)
1732 continue;
1733
1734 argtype = TREE_TYPE (argtype);
1735
1736 if (TREE_CODE (argtype) != INTEGER_TYPE
1737 || !TYPE_READONLY (argtype))
1738 continue;
1739
1740 argtype = TYPE_MAIN_VARIANT (argtype);
1741 if (argtype != char_type_node)
1742 continue;
1743
1744 tree callarg = CALL_EXPR_ARG (exp, argno);
1745 if (TREE_CODE (callarg) == ADDR_EXPR)
1746 callarg = TREE_OPERAND (callarg, 0);
1747
1748 /* See if the destination is declared with attribute "nonstring". */
1749 tree decl = get_attr_nonstring_decl (callarg);
1750 if (!decl)
1751 continue;
1752
d677a8b6 1753 /* The maximum number of array elements accessed. */
6a33d0ff 1754 offset_int wibnd = 0;
4252ccd7
MS
1755
1756 if (argno && fncode == BUILT_IN_STRNCAT)
1757 {
1758 /* See if the bound in strncat is derived from the length
1759 of the strlen of the destination (as it's expected to be).
1760 If so, reset BOUND and FNCODE to trigger a warning. */
1761 tree dstarg = CALL_EXPR_ARG (exp, 0);
1762 if (is_strlen_related_p (dstarg, bound))
1763 {
1764 /* The bound applies to the destination, not to the source,
1765 so reset these to trigger a warning without mentioning
1766 the bound. */
1767 bound = NULL;
1768 fncode = 0;
1769 }
1770 else if (bndrng[1])
1771 /* Use the upper bound of the range for strncat. */
1772 wibnd = wi::to_offset (bndrng[1]);
1773 }
1774 else if (bndrng[0])
1775 /* Use the lower bound of the range for functions other than
1776 strncat. */
6a33d0ff
MS
1777 wibnd = wi::to_offset (bndrng[0]);
1778
4252ccd7 1779 /* Determine the size of the argument array if it is one. */
6a33d0ff 1780 offset_int asize = wibnd;
4252ccd7
MS
1781 bool known_size = false;
1782 tree type = TREE_TYPE (decl);
6a33d0ff 1783
d677a8b6
MS
1784 /* Determine the array size. For arrays of unknown bound and
1785 pointers reset BOUND to trigger the appropriate warning. */
6a33d0ff 1786 if (TREE_CODE (type) == ARRAY_TYPE)
d677a8b6
MS
1787 {
1788 if (tree arrbnd = TYPE_DOMAIN (type))
1789 {
1790 if ((arrbnd = TYPE_MAX_VALUE (arrbnd)))
4252ccd7
MS
1791 {
1792 asize = wi::to_offset (arrbnd) + 1;
1793 known_size = true;
1794 }
d677a8b6
MS
1795 }
1796 else if (bound == void_type_node)
1797 bound = NULL_TREE;
1798 }
1799 else if (bound == void_type_node)
1800 bound = NULL_TREE;
6a33d0ff 1801
4252ccd7
MS
1802 /* In a call to strncat with a bound in a range whose lower but
1803 not upper bound is less than the array size, reset ASIZE to
1804 be the same as the bound and the other variable to trigger
1805 the apprpriate warning below. */
1806 if (fncode == BUILT_IN_STRNCAT
1807 && bndrng[0] != bndrng[1]
1808 && wi::ltu_p (wi::to_offset (bndrng[0]), asize)
1809 && (!known_size
1810 || wi::ltu_p (asize, wibnd)))
1811 {
1812 asize = wibnd;
1813 bound = NULL_TREE;
1814 fncode = 0;
1815 }
1816
6a33d0ff
MS
1817 bool warned = false;
1818
097f82ec 1819 auto_diagnostic_group d;
6a33d0ff 1820 if (wi::ltu_p (asize, wibnd))
4252ccd7
MS
1821 {
1822 if (bndrng[0] == bndrng[1])
1823 warned = warning_at (loc, OPT_Wstringop_overflow_,
1824 "%qD argument %i declared attribute "
1825 "%<nonstring%> is smaller than the specified "
1826 "bound %wu",
1827 fndecl, argno + 1, wibnd.to_uhwi ());
1828 else if (wi::ltu_p (asize, wi::to_offset (bndrng[0])))
1829 warned = warning_at (loc, OPT_Wstringop_overflow_,
1830 "%qD argument %i declared attribute "
1831 "%<nonstring%> is smaller than "
1832 "the specified bound [%E, %E]",
1833 fndecl, argno + 1, bndrng[0], bndrng[1]);
1834 else
1835 warned = warning_at (loc, OPT_Wstringop_overflow_,
1836 "%qD argument %i declared attribute "
1837 "%<nonstring%> may be smaller than "
1838 "the specified bound [%E, %E]",
1839 fndecl, argno + 1, bndrng[0], bndrng[1]);
1840 }
1841 else if (fncode == BUILT_IN_STRNCAT)
1842 ; /* Avoid warning for calls to strncat() when the bound
1843 is equal to the size of the non-string argument. */
6a33d0ff
MS
1844 else if (!bound)
1845 warned = warning_at (loc, OPT_Wstringop_overflow_,
1846 "%qD argument %i declared attribute %<nonstring%>",
1847 fndecl, argno + 1);
1848
1849 if (warned)
1850 inform (DECL_SOURCE_LOCATION (decl),
1851 "argument %qD declared here", decl);
1852 }
1853}
1854
9a385c2d
DM
1855/* Issue an error if CALL_EXPR was flagged as requiring
1856 tall-call optimization. */
1857
1858static void
1859maybe_complain_about_tail_call (tree call_expr, const char *reason)
1860{
1861 gcc_assert (TREE_CODE (call_expr) == CALL_EXPR);
1862 if (!CALL_EXPR_MUST_TAIL_CALL (call_expr))
1863 return;
1864
1865 error_at (EXPR_LOCATION (call_expr), "cannot tail-call: %s", reason);
1866}
1867
54aa6b58
MS
1868/* Returns the type of the argument ARGNO to function with type FNTYPE
1869 or null when the typoe cannot be determined or no such argument exists. */
1870
1871static tree
1872fntype_argno_type (tree fntype, unsigned argno)
1873{
1874 if (!prototype_p (fntype))
1875 return NULL_TREE;
1876
1877 tree argtype;
1878 function_args_iterator it;
1879 FOREACH_FUNCTION_ARGS (fntype, argtype, it)
1880 if (argno-- == 0)
1881 return argtype;
1882
1883 return NULL_TREE;
1884}
1885
1886/* Helper to append the "rdwr" attribute specification described
1887 by ACCESS to the array ATTRSTR with size STRSIZE. Used in
1888 diagnostics. */
1889
1890static inline void
1891append_attrname (const std::pair<int, attr_access> &access,
1892 char *attrstr, size_t strsize)
1893{
1894 /* Append the relevant attribute to the string. This (deliberately)
1895 appends the attribute pointer operand even when none was specified. */
1896 size_t len = strlen (attrstr);
1897
b825a228 1898 const char* const atname
54aa6b58
MS
1899 = (access.second.mode == attr_access::read_only
1900 ? "read_only"
1901 : (access.second.mode == attr_access::write_only
b825a228
MS
1902 ? "write_only"
1903 : (access.second.mode == attr_access::read_write
1904 ? "read_write" : "none")));
54aa6b58
MS
1905
1906 const char *sep = len ? ", " : "";
1907
1908 if (access.second.sizarg == UINT_MAX)
1909 snprintf (attrstr + len, strsize - len,
1910 "%s%s (%i)", sep, atname,
1911 access.second.ptrarg + 1);
1912 else
1913 snprintf (attrstr + len, strsize - len,
1914 "%s%s (%i, %i)", sep, atname,
1915 access.second.ptrarg + 1, access.second.sizarg + 1);
1916}
1917
1918/* Iterate over attribute access read-only, read-write, and write-only
1919 arguments and diagnose past-the-end accesses and related problems
1920 in the function call EXP. */
1921
1922static void
1923maybe_warn_rdwr_sizes (rdwr_map *rwm, tree exp)
1924{
1925 tree fndecl = NULL_TREE;
1926 tree fntype = NULL_TREE;
1927 if (tree fnaddr = CALL_EXPR_FN (exp))
1928 {
1929 if (TREE_CODE (fnaddr) == ADDR_EXPR)
1930 {
1931 fndecl = TREE_OPERAND (fnaddr, 0);
1932 fntype = TREE_TYPE (fndecl);
1933 }
1934 else
1935 fntype = TREE_TYPE (TREE_TYPE (fnaddr));
1936 }
1937
1938 if (!fntype)
1939 return;
1940
1941 /* A string describing the attributes that the warnings issued by this
1942 function apply to. Used to print one informational note per function
1943 call, rather than one per warning. That reduces clutter. */
1944 char attrstr[80];
1945 attrstr[0] = 0;
1946
1947 for (rdwr_map::iterator it = rwm->begin (); it != rwm->end (); ++it)
1948 {
1949 std::pair<int, attr_access> access = *it;
1950
1951 /* Get the function call arguments corresponding to the attribute's
1952 positional arguments. When both arguments have been specified
1953 there will be two entries in *RWM, one for each. They are
1954 cross-referenced by their respective argument numbers in
1955 ACCESS.PTRARG and ACCESS.SIZARG. */
1956 const int ptridx = access.second.ptrarg;
1957 const int sizidx = access.second.sizarg;
1958
1959 gcc_assert (ptridx != -1);
1960 gcc_assert (access.first == ptridx || access.first == sizidx);
1961
1962 /* The pointer is set to null for the entry corresponding to
1963 the size argument. Skip it. It's handled when the entry
1964 corresponding to the pointer argument comes up. */
1965 if (!access.second.ptr)
1966 continue;
1967
1968 tree argtype = fntype_argno_type (fntype, ptridx);
1969 argtype = TREE_TYPE (argtype);
1970
1971 tree size;
1972 if (sizidx == -1)
1973 {
1974 /* If only the pointer attribute operand was specified
1975 and not size, set SIZE to the size of one element of
1976 the pointed to type to detect smaller objects (null
1977 pointers are diagnosed in this case only if
1978 the pointer is also declared with attribute nonnull. */
1979 size = size_one_node;
1980 }
1981 else
1982 size = rwm->get (sizidx)->size;
1983
1984 tree ptr = access.second.ptr;
1985 tree sizrng[2] = { size_zero_node, build_all_ones_cst (sizetype) };
1986 if (get_size_range (size, sizrng, true)
1987 && tree_int_cst_sgn (sizrng[0]) < 0
1988 && tree_int_cst_sgn (sizrng[1]) < 0)
1989 {
1990 /* Warn about negative sizes. */
1991 bool warned = false;
1992 location_t loc = EXPR_LOCATION (exp);
1993 if (tree_int_cst_equal (sizrng[0], sizrng[1]))
1994 warned = warning_at (loc, OPT_Wstringop_overflow_,
1995 "%Kargument %i value %E is negative",
1996 exp, sizidx + 1, size);
1997 else
1998 warned = warning_at (loc, OPT_Wstringop_overflow_,
1999 "%Kargument %i range [%E, %E] is negative",
2000 exp, sizidx + 1, sizrng[0], sizrng[1]);
2001 if (warned)
2002 {
2003 append_attrname (access, attrstr, sizeof attrstr);
2004 /* Avoid warning again for the same attribute. */
2005 continue;
2006 }
2007 }
2008
2009 if (tree_int_cst_sgn (sizrng[0]) >= 0)
2010 {
2011 if (COMPLETE_TYPE_P (argtype))
2012 {
2013 /* Multiple SIZE by the size of the type the pointer
2014 argument points to. If it's incomplete the size
2015 is used as is. */
2016 size = NULL_TREE;
2017 if (tree argsize = TYPE_SIZE_UNIT (argtype))
2018 if (TREE_CODE (argsize) == INTEGER_CST)
2019 {
2020 const int prec = TYPE_PRECISION (sizetype);
2021 wide_int minsize = wi::to_wide (sizrng[0], prec);
2022 minsize *= wi::to_wide (argsize, prec);
2023 size = wide_int_to_tree (sizetype, minsize);
2024 }
2025 }
2026 }
2027 else
2028 size = NULL_TREE;
2029
2030 if (sizidx >= 0
2031 && integer_zerop (ptr)
2032 && tree_int_cst_sgn (sizrng[0]) > 0)
2033 {
2034 /* Warn about null pointers with positive sizes. This is
2035 different from also declaring the pointer argument with
2036 attribute nonnull when the function accepts null pointers
2037 only when the corresponding size is zero. */
2038 bool warned = false;
2039 location_t loc = EXPR_LOCATION (exp);
2040 if (tree_int_cst_equal (sizrng[0], sizrng[1]))
2041 warned = warning_at (loc, OPT_Wnonnull,
2042 "%Kargument %i is null but the corresponding "
2043 "size argument %i value is %E",
2044 exp, ptridx + 1, sizidx + 1, size);
2045 else
2046 warned = warning_at (loc, OPT_Wnonnull,
2047 "%Kargument %i is null but the corresponding "
2048 "size argument %i range is [%E, %E]",
2049 exp, ptridx + 1, sizidx + 1,
2050 sizrng[0], sizrng[1]);
2051 if (warned)
2052 {
2053 append_attrname (access, attrstr, sizeof attrstr);
2054 /* Avoid warning again for the same attribute. */
2055 continue;
2056 }
2057 }
2058
2059 tree objsize = compute_objsize (ptr, 0);
2060
2061 tree srcsize;
2062 if (access.second.mode == attr_access::write_only)
2063 {
2064 /* For a write-only argument there is no source. */
2065 srcsize = NULL_TREE;
2066 }
2067 else
2068 {
2069 /* For read-only and read-write attributes also set the source
2070 size. */
2071 srcsize = objsize;
b825a228
MS
2072 if (access.second.mode == attr_access::read_only
2073 || access.second.mode == attr_access::none)
54aa6b58
MS
2074 {
2075 /* For a read-only attribute there is no destination so
2076 clear OBJSIZE. This emits "reading N bytes" kind of
b825a228
MS
2077 diagnostics instead of the "writing N bytes" kind,
2078 unless MODE is none. */
54aa6b58
MS
2079 objsize = NULL_TREE;
2080 }
2081 }
2082
2083 /* Clear the no-warning bit in case it was set in a prior
2084 iteration so that accesses via different arguments are
2085 diagnosed. */
2086 TREE_NO_WARNING (exp) = false;
2087 check_access (exp, NULL_TREE, NULL_TREE, size, /*maxread=*/ NULL_TREE,
b825a228 2088 srcsize, objsize, access.second.mode != attr_access::none);
54aa6b58
MS
2089
2090 if (TREE_NO_WARNING (exp))
2091 /* If check_access issued a warning above, append the relevant
2092 attribute to the string. */
2093 append_attrname (access, attrstr, sizeof attrstr);
2094 }
2095
2096 if (!*attrstr)
2097 return;
2098
2099 if (fndecl)
2100 inform (DECL_SOURCE_LOCATION (fndecl),
2101 "in a call to function %qD declared with attribute %qs",
2102 fndecl, attrstr);
2103 else
2104 inform (EXPR_LOCATION (fndecl),
2105 "in a call with type %qT and attribute %qs",
2106 fntype, attrstr);
2107
2108 /* Set the bit in case if was cleared and not set above. */
2109 TREE_NO_WARNING (exp) = true;
2110}
2111
d7cdf113 2112/* Fill in ARGS_SIZE and ARGS array based on the parameters found in
b8698a0f 2113 CALL_EXPR EXP.
d7cdf113
JL
2114
2115 NUM_ACTUALS is the total number of parameters.
2116
2117 N_NAMED_ARGS is the total number of named arguments.
2118
078a18a4
SL
2119 STRUCT_VALUE_ADDR_VALUE is the implicit argument for a struct return
2120 value, or null.
2121
d7cdf113
JL
2122 FNDECL is the tree code for the target of this call (if known)
2123
2124 ARGS_SO_FAR holds state needed by the target to know where to place
2125 the next argument.
2126
2127 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
2128 for arguments which are passed in registers.
2129
2130 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
2131 and may be modified by this routine.
2132
f2d33f13 2133 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
026c3cfd 2134 flags which may be modified by this routine.
dd292d0a 2135
6de9cd9a
DN
2136 MAY_TAILCALL is cleared if we encounter an invisible pass-by-reference
2137 that requires allocation of stack space.
2138
dd292d0a
MM
2139 CALL_FROM_THUNK_P is true if this call is the jump from a thunk to
2140 the thunked-to function. */
d7cdf113
JL
2141
2142static void
d329e058
AJ
2143initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
2144 struct arg_data *args,
2145 struct args_size *args_size,
2146 int n_named_args ATTRIBUTE_UNUSED,
078a18a4 2147 tree exp, tree struct_value_addr_value,
45769134 2148 tree fndecl, tree fntype,
d5cc9181 2149 cumulative_args_t args_so_far,
d329e058 2150 int reg_parm_stack_space,
a20c5714
RS
2151 rtx *old_stack_level,
2152 poly_int64_pod *old_pending_adj,
dd292d0a 2153 int *must_preallocate, int *ecf_flags,
6de9cd9a 2154 bool *may_tailcall, bool call_from_thunk_p)
d7cdf113 2155{
d5cc9181 2156 CUMULATIVE_ARGS *args_so_far_pnt = get_cumulative_args (args_so_far);
db3927fb 2157 location_t loc = EXPR_LOCATION (exp);
d7cdf113
JL
2158
2159 /* Count arg position in order args appear. */
2160 int argpos;
2161
2162 int i;
f725a3ec 2163
d7cdf113
JL
2164 args_size->constant = 0;
2165 args_size->var = 0;
2166
d5e254e1
IE
2167 bitmap_obstack_initialize (NULL);
2168
d7cdf113 2169 /* In this loop, we consider args in the order they are written.
3d9684ae 2170 We fill up ARGS from the back. */
d7cdf113 2171
3d9684ae 2172 i = num_actuals - 1;
078a18a4 2173 {
31db0fe0 2174 int j = i;
078a18a4
SL
2175 call_expr_arg_iterator iter;
2176 tree arg;
d5e254e1 2177 bitmap slots = NULL;
078a18a4
SL
2178
2179 if (struct_value_addr_value)
2180 {
2181 args[j].tree_value = struct_value_addr_value;
3d9684ae 2182 j--;
078a18a4 2183 }
afc610db 2184 argpos = 0;
078a18a4
SL
2185 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2186 {
2187 tree argtype = TREE_TYPE (arg);
d5e254e1 2188
078a18a4
SL
2189 if (targetm.calls.split_complex_arg
2190 && argtype
2191 && TREE_CODE (argtype) == COMPLEX_TYPE
2192 && targetm.calls.split_complex_arg (argtype))
2193 {
2194 tree subtype = TREE_TYPE (argtype);
078a18a4 2195 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
3d9684ae 2196 j--;
078a18a4
SL
2197 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
2198 }
2199 else
2200 args[j].tree_value = arg;
3d9684ae 2201 j--;
afc610db 2202 argpos++;
078a18a4 2203 }
d5e254e1
IE
2204
2205 if (slots)
2206 BITMAP_FREE (slots);
078a18a4
SL
2207 }
2208
d5e254e1
IE
2209 bitmap_obstack_release (NULL);
2210
302db8ba
MS
2211 /* Extract attribute alloc_size from the type of the called expression
2212 (which could be a function or a function pointer) and if set, store
2213 the indices of the corresponding arguments in ALLOC_IDX, and then
2214 the actual argument(s) at those indices in ALLOC_ARGS. */
8bd9f164 2215 int alloc_idx[2] = { -1, -1 };
302db8ba
MS
2216 if (tree alloc_size = lookup_attribute ("alloc_size",
2217 TYPE_ATTRIBUTES (fntype)))
8bd9f164
MS
2218 {
2219 tree args = TREE_VALUE (alloc_size);
2220 alloc_idx[0] = TREE_INT_CST_LOW (TREE_VALUE (args)) - 1;
2221 if (TREE_CHAIN (args))
2222 alloc_idx[1] = TREE_INT_CST_LOW (TREE_VALUE (TREE_CHAIN (args))) - 1;
2223 }
2224
2225 /* Array for up to the two attribute alloc_size arguments. */
2226 tree alloc_args[] = { NULL_TREE, NULL_TREE };
2227
b825a228 2228 /* Map of attribute accewss specifications for function arguments. */
54aa6b58
MS
2229 rdwr_map rdwr_idx;
2230 init_attr_rdwr_indices (&rdwr_idx, fntype);
2231
d7cdf113 2232 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
3d9684ae 2233 for (argpos = 0; argpos < num_actuals; i--, argpos++)
d7cdf113 2234 {
078a18a4 2235 tree type = TREE_TYPE (args[i].tree_value);
d7cdf113 2236 int unsignedp;
d7cdf113 2237
d7cdf113 2238 /* Replace erroneous argument with constant zero. */
d0f062fb 2239 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
d7cdf113
JL
2240 args[i].tree_value = integer_zero_node, type = integer_type_node;
2241
ebf0bf7f
JJ
2242 /* If TYPE is a transparent union or record, pass things the way
2243 we would pass the first field of the union or record. We have
2244 already verified that the modes are the same. */
920ea3b8 2245 if (RECORD_OR_UNION_TYPE_P (type) && TYPE_TRANSPARENT_AGGR (type))
ebf0bf7f 2246 type = TREE_TYPE (first_field (type));
d7cdf113
JL
2247
2248 /* Decide where to pass this arg.
2249
2250 args[i].reg is nonzero if all or part is passed in registers.
2251
2252 args[i].partial is nonzero if part but not all is passed in registers,
78a52f11 2253 and the exact value says how many bytes are passed in registers.
d7cdf113
JL
2254
2255 args[i].pass_on_stack is nonzero if the argument must at least be
2256 computed on the stack. It may then be loaded back into registers
2257 if args[i].reg is nonzero.
2258
2259 These decisions are driven by the FUNCTION_... macros and must agree
2260 with those made by function.c. */
2261
2262 /* See if this argument should be passed by invisible reference. */
cf0d189e
RS
2263 function_arg_info arg (type, argpos < n_named_args);
2264 if (pass_by_reference (args_so_far_pnt, arg))
d7cdf113 2265 {
9969aaf6 2266 bool callee_copies;
d6e1acf6 2267 tree base = NULL_TREE;
9969aaf6 2268
cf0d189e 2269 callee_copies = reference_callee_copied (args_so_far_pnt, arg);
9969aaf6
RH
2270
2271 /* If we're compiling a thunk, pass through invisible references
2272 instead of making a copy. */
dd292d0a 2273 if (call_from_thunk_p
9969aaf6
RH
2274 || (callee_copies
2275 && !TREE_ADDRESSABLE (type)
2276 && (base = get_base_address (args[i].tree_value))
9c3d55b4 2277 && TREE_CODE (base) != SSA_NAME
9969aaf6 2278 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
d7cdf113 2279 {
006e317a
JH
2280 /* We may have turned the parameter value into an SSA name.
2281 Go back to the original parameter so we can take the
2282 address. */
2283 if (TREE_CODE (args[i].tree_value) == SSA_NAME)
2284 {
2285 gcc_assert (SSA_NAME_IS_DEFAULT_DEF (args[i].tree_value));
2286 args[i].tree_value = SSA_NAME_VAR (args[i].tree_value);
2287 gcc_assert (TREE_CODE (args[i].tree_value) == PARM_DECL);
2288 }
fe8dd12e
JH
2289 /* Argument setup code may have copied the value to register. We
2290 revert that optimization now because the tail call code must
2291 use the original location. */
2292 if (TREE_CODE (args[i].tree_value) == PARM_DECL
2293 && !MEM_P (DECL_RTL (args[i].tree_value))
2294 && DECL_INCOMING_RTL (args[i].tree_value)
2295 && MEM_P (DECL_INCOMING_RTL (args[i].tree_value)))
2296 set_decl_rtl (args[i].tree_value,
2297 DECL_INCOMING_RTL (args[i].tree_value));
2298
c4b9a87e
ER
2299 mark_addressable (args[i].tree_value);
2300
9969aaf6
RH
2301 /* We can't use sibcalls if a callee-copied argument is
2302 stored in the current function's frame. */
2303 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
9a385c2d
DM
2304 {
2305 *may_tailcall = false;
2306 maybe_complain_about_tail_call (exp,
2307 "a callee-copied argument is"
cefc0906 2308 " stored in the current"
9a385c2d
DM
2309 " function's frame");
2310 }
9fd47435 2311
db3927fb
AH
2312 args[i].tree_value = build_fold_addr_expr_loc (loc,
2313 args[i].tree_value);
9969aaf6
RH
2314 type = TREE_TYPE (args[i].tree_value);
2315
becfd6e5
KZ
2316 if (*ecf_flags & ECF_CONST)
2317 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
f21add07 2318 }
d7cdf113
JL
2319 else
2320 {
2321 /* We make a copy of the object and pass the address to the
2322 function being called. */
2323 rtx copy;
2324
d0f062fb 2325 if (!COMPLETE_TYPE_P (type)
b38f3813
EB
2326 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
2327 || (flag_stack_check == GENERIC_STACK_CHECK
2328 && compare_tree_int (TYPE_SIZE_UNIT (type),
2329 STACK_CHECK_MAX_VAR_SIZE) > 0))
d7cdf113
JL
2330 {
2331 /* This is a variable-sized object. Make space on the stack
2332 for it. */
078a18a4 2333 rtx size_rtx = expr_size (args[i].tree_value);
d7cdf113
JL
2334
2335 if (*old_stack_level == 0)
2336 {
9eac0f2a 2337 emit_stack_save (SAVE_BLOCK, old_stack_level);
d7cdf113
JL
2338 *old_pending_adj = pending_stack_adjust;
2339 pending_stack_adjust = 0;
2340 }
2341
d3c12306
EB
2342 /* We can pass TRUE as the 4th argument because we just
2343 saved the stack pointer and will restore it right after
2344 the call. */
3a42502d
RH
2345 copy = allocate_dynamic_stack_space (size_rtx,
2346 TYPE_ALIGN (type),
2347 TYPE_ALIGN (type),
9e878cf1
EB
2348 max_int_size_in_bytes
2349 (type),
3a42502d
RH
2350 true);
2351 copy = gen_rtx_MEM (BLKmode, copy);
3bdf5ad1 2352 set_mem_attributes (copy, type, 1);
d7cdf113
JL
2353 }
2354 else
9474e8ab 2355 copy = assign_temp (type, 1, 0);
d7cdf113 2356
ee45a32d 2357 store_expr (args[i].tree_value, copy, 0, false, false);
d7cdf113 2358
becfd6e5
KZ
2359 /* Just change the const function to pure and then let
2360 the next test clear the pure based on
2361 callee_copies. */
2362 if (*ecf_flags & ECF_CONST)
2363 {
2364 *ecf_flags &= ~ECF_CONST;
2365 *ecf_flags |= ECF_PURE;
2366 }
2367
2368 if (!callee_copies && *ecf_flags & ECF_PURE)
2369 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
9969aaf6
RH
2370
2371 args[i].tree_value
db3927fb 2372 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
9969aaf6 2373 type = TREE_TYPE (args[i].tree_value);
6de9cd9a 2374 *may_tailcall = false;
9a385c2d
DM
2375 maybe_complain_about_tail_call (exp,
2376 "argument must be passed"
2377 " by copying");
d7cdf113 2378 }
257caa55 2379 arg.pass_by_reference = true;
d7cdf113
JL
2380 }
2381
8df83eae 2382 unsignedp = TYPE_UNSIGNED (type);
cf0d189e
RS
2383 arg.type = type;
2384 arg.mode
2385 = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
2386 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
d7cdf113
JL
2387
2388 args[i].unsignedp = unsignedp;
cf0d189e 2389 args[i].mode = arg.mode;
7d167afd 2390
974aedcc
MP
2391 targetm.calls.warn_parameter_passing_abi (args_so_far, type);
2392
6783fdb7 2393 args[i].reg = targetm.calls.function_arg (args_so_far, arg);
3c07301f 2394
d5e254e1 2395 if (args[i].reg && CONST_INT_P (args[i].reg))
dbcdd561 2396 args[i].reg = NULL;
d5e254e1 2397
7d167afd
JJ
2398 /* If this is a sibling call and the machine has register windows, the
2399 register window has to be unwinded before calling the routine, so
2400 arguments have to go into the incoming registers. */
3c07301f
NF
2401 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
2402 args[i].tail_call_reg
6783fdb7 2403 = targetm.calls.function_incoming_arg (args_so_far, arg);
3c07301f
NF
2404 else
2405 args[i].tail_call_reg = args[i].reg;
7d167afd 2406
d7cdf113 2407 if (args[i].reg)
a7c81bc1 2408 args[i].partial = targetm.calls.arg_partial_bytes (args_so_far, arg);
d7cdf113 2409
0ffef200 2410 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (arg);
d7cdf113
JL
2411
2412 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
2413 it means that we are to pass this arg in the register(s) designated
2414 by the PARALLEL, but also to pass it in the stack. */
2415 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
2416 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
2417 args[i].pass_on_stack = 1;
2418
2419 /* If this is an addressable type, we must preallocate the stack
2420 since we must evaluate the object into its final location.
2421
2422 If this is to be passed in both registers and the stack, it is simpler
2423 to preallocate. */
2424 if (TREE_ADDRESSABLE (type)
2425 || (args[i].pass_on_stack && args[i].reg != 0))
2426 *must_preallocate = 1;
2427
d7cdf113 2428 /* Compute the stack-size of this argument. */
31db0fe0 2429 if (args[i].reg == 0 || args[i].partial != 0
d5e254e1
IE
2430 || reg_parm_stack_space > 0
2431 || args[i].pass_on_stack)
cf0d189e 2432 locate_and_pad_parm (arg.mode, type,
d7cdf113
JL
2433#ifdef STACK_PARMS_IN_REG_PARM_AREA
2434 1,
2435#else
2436 args[i].reg != 0,
2437#endif
2e4ceca5 2438 reg_parm_stack_space,
e7949876
AM
2439 args[i].pass_on_stack ? 0 : args[i].partial,
2440 fndecl, args_size, &args[i].locate);
648bb159
RS
2441#ifdef BLOCK_REG_PADDING
2442 else
2443 /* The argument is passed entirely in registers. See at which
2444 end it should be padded. */
2445 args[i].locate.where_pad =
cf0d189e 2446 BLOCK_REG_PADDING (arg.mode, type,
648bb159
RS
2447 int_size_in_bytes (type) <= UNITS_PER_WORD);
2448#endif
f725a3ec 2449
d7cdf113
JL
2450 /* Update ARGS_SIZE, the total stack space for args so far. */
2451
e7949876
AM
2452 args_size->constant += args[i].locate.size.constant;
2453 if (args[i].locate.size.var)
2454 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
d7cdf113
JL
2455
2456 /* Increment ARGS_SO_FAR, which has info about which arg-registers
2457 have been used, etc. */
2458
6930c98c
RS
2459 /* ??? Traditionally we've passed TYPE_MODE here, instead of the
2460 promoted_mode used for function_arg above. However, the
2461 corresponding handling of incoming arguments in function.c
2462 does pass the promoted mode. */
cf0d189e
RS
2463 arg.mode = TYPE_MODE (type);
2464 targetm.calls.function_arg_advance (args_so_far, arg);
8bd9f164
MS
2465
2466 /* Store argument values for functions decorated with attribute
2467 alloc_size. */
2468 if (argpos == alloc_idx[0])
2469 alloc_args[0] = args[i].tree_value;
2470 else if (argpos == alloc_idx[1])
2471 alloc_args[1] = args[i].tree_value;
54aa6b58
MS
2472
2473 /* Save the actual argument that corresponds to the access attribute
2474 operand for later processing. */
2475 if (attr_access *access = rdwr_idx.get (argpos))
2476 {
2477 if (POINTER_TYPE_P (type))
2478 {
2479 access->ptr = args[i].tree_value;
2480 gcc_assert (access->size == NULL_TREE);
2481 }
2482 else
2483 {
2484 access->size = args[i].tree_value;
2485 gcc_assert (access->ptr == NULL_TREE);
2486 }
2487 }
8bd9f164
MS
2488 }
2489
2490 if (alloc_args[0])
2491 {
2492 /* Check the arguments of functions decorated with attribute
2493 alloc_size. */
2494 maybe_warn_alloc_args_overflow (fndecl, exp, alloc_args, alloc_idx);
d7cdf113 2495 }
6a33d0ff
MS
2496
2497 /* Detect passing non-string arguments to functions expecting
2498 nul-terminated strings. */
2499 maybe_warn_nonstring_arg (fndecl, exp);
54aa6b58 2500
b825a228 2501 /* Check attribute access arguments. */
54aa6b58 2502 maybe_warn_rdwr_sizes (&rdwr_idx, exp);
d7cdf113
JL
2503}
2504
599f37b6
JL
2505/* Update ARGS_SIZE to contain the total size for the argument block.
2506 Return the original constant component of the argument block's size.
2507
2508 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
2509 for arguments passed in registers. */
2510
a20c5714 2511static poly_int64
d329e058
AJ
2512compute_argument_block_size (int reg_parm_stack_space,
2513 struct args_size *args_size,
033df0b9 2514 tree fndecl ATTRIBUTE_UNUSED,
5d059ed9 2515 tree fntype ATTRIBUTE_UNUSED,
d329e058 2516 int preferred_stack_boundary ATTRIBUTE_UNUSED)
599f37b6 2517{
a20c5714 2518 poly_int64 unadjusted_args_size = args_size->constant;
599f37b6 2519
f73ad30e
JH
2520 /* For accumulate outgoing args mode we don't need to align, since the frame
2521 will be already aligned. Align to STACK_BOUNDARY in order to prevent
f5143c46 2522 backends from generating misaligned frame sizes. */
f73ad30e
JH
2523 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
2524 preferred_stack_boundary = STACK_BOUNDARY;
f73ad30e 2525
599f37b6
JL
2526 /* Compute the actual size of the argument block required. The variable
2527 and constant sizes must be combined, the size may have to be rounded,
2528 and there may be a minimum required size. */
2529
2530 if (args_size->var)
2531 {
2532 args_size->var = ARGS_SIZE_TREE (*args_size);
2533 args_size->constant = 0;
2534
c2f8b491
JH
2535 preferred_stack_boundary /= BITS_PER_UNIT;
2536 if (preferred_stack_boundary > 1)
1503a7ec
JH
2537 {
2538 /* We don't handle this case yet. To handle it correctly we have
f5143c46 2539 to add the delta, round and subtract the delta.
1503a7ec 2540 Currently no machine description requires this support. */
a20c5714
RS
2541 gcc_assert (multiple_p (stack_pointer_delta,
2542 preferred_stack_boundary));
1503a7ec
JH
2543 args_size->var = round_up (args_size->var, preferred_stack_boundary);
2544 }
599f37b6
JL
2545
2546 if (reg_parm_stack_space > 0)
2547 {
2548 args_size->var
2549 = size_binop (MAX_EXPR, args_size->var,
fed3cef0 2550 ssize_int (reg_parm_stack_space));
599f37b6 2551
599f37b6
JL
2552 /* The area corresponding to register parameters is not to count in
2553 the size of the block we need. So make the adjustment. */
5d059ed9 2554 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
ac294f0b
KT
2555 args_size->var
2556 = size_binop (MINUS_EXPR, args_size->var,
2557 ssize_int (reg_parm_stack_space));
599f37b6
JL
2558 }
2559 }
2560 else
2561 {
c2f8b491 2562 preferred_stack_boundary /= BITS_PER_UNIT;
0a1c58a2
JL
2563 if (preferred_stack_boundary < 1)
2564 preferred_stack_boundary = 1;
a20c5714
RS
2565 args_size->constant = (aligned_upper_bound (args_size->constant
2566 + stack_pointer_delta,
2567 preferred_stack_boundary)
1503a7ec 2568 - stack_pointer_delta);
599f37b6 2569
a20c5714
RS
2570 args_size->constant = upper_bound (args_size->constant,
2571 reg_parm_stack_space);
599f37b6 2572
5d059ed9 2573 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
ac294f0b 2574 args_size->constant -= reg_parm_stack_space;
599f37b6
JL
2575 }
2576 return unadjusted_args_size;
2577}
2578
19832c77 2579/* Precompute parameters as needed for a function call.
cc0b1adc 2580
f2d33f13 2581 FLAGS is mask of ECF_* constants.
cc0b1adc 2582
cc0b1adc
JL
2583 NUM_ACTUALS is the number of arguments.
2584
f725a3ec
KH
2585 ARGS is an array containing information for each argument; this
2586 routine fills in the INITIAL_VALUE and VALUE fields for each
2587 precomputed argument. */
cc0b1adc
JL
2588
2589static void
84b8030f 2590precompute_arguments (int num_actuals, struct arg_data *args)
cc0b1adc
JL
2591{
2592 int i;
2593
3638733b 2594 /* If this is a libcall, then precompute all arguments so that we do not
82c82743 2595 get extraneous instructions emitted as part of the libcall sequence. */
6a4e56a9
JJ
2596
2597 /* If we preallocated the stack space, and some arguments must be passed
2598 on the stack, then we must precompute any parameter which contains a
2599 function call which will store arguments on the stack.
2600 Otherwise, evaluating the parameter may clobber previous parameters
2601 which have already been stored into the stack. (we have code to avoid
2602 such case by saving the outgoing stack arguments, but it results in
2603 worse code) */
84b8030f 2604 if (!ACCUMULATE_OUTGOING_ARGS)
82c82743 2605 return;
7ae4ad28 2606
cc0b1adc 2607 for (i = 0; i < num_actuals; i++)
82c82743 2608 {
cde0f3fd 2609 tree type;
ef4bddc2 2610 machine_mode mode;
ddef6bc7 2611
84b8030f 2612 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
6a4e56a9
JJ
2613 continue;
2614
82c82743 2615 /* If this is an addressable type, we cannot pre-evaluate it. */
cde0f3fd
PB
2616 type = TREE_TYPE (args[i].tree_value);
2617 gcc_assert (!TREE_ADDRESSABLE (type));
cc0b1adc 2618
82c82743 2619 args[i].initial_value = args[i].value
84217346 2620 = expand_normal (args[i].tree_value);
cc0b1adc 2621
cde0f3fd 2622 mode = TYPE_MODE (type);
82c82743
RH
2623 if (mode != args[i].mode)
2624 {
cde0f3fd 2625 int unsignedp = args[i].unsignedp;
82c82743
RH
2626 args[i].value
2627 = convert_modes (args[i].mode, mode,
2628 args[i].value, args[i].unsignedp);
cde0f3fd 2629
82c82743
RH
2630 /* CSE will replace this only if it contains args[i].value
2631 pseudo, so convert it down to the declared mode using
2632 a SUBREG. */
2633 if (REG_P (args[i].value)
cde0f3fd
PB
2634 && GET_MODE_CLASS (args[i].mode) == MODE_INT
2635 && promote_mode (type, mode, &unsignedp) != args[i].mode)
82c82743
RH
2636 {
2637 args[i].initial_value
2638 = gen_lowpart_SUBREG (mode, args[i].value);
2639 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
27be0c32 2640 SUBREG_PROMOTED_SET (args[i].initial_value, args[i].unsignedp);
82c82743 2641 }
82c82743
RH
2642 }
2643 }
cc0b1adc
JL
2644}
2645
0f9b3ea6
JL
2646/* Given the current state of MUST_PREALLOCATE and information about
2647 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
2648 compute and return the final value for MUST_PREALLOCATE. */
2649
2650static int
b8698a0f 2651finalize_must_preallocate (int must_preallocate, int num_actuals,
5039610b 2652 struct arg_data *args, struct args_size *args_size)
0f9b3ea6
JL
2653{
2654 /* See if we have or want to preallocate stack space.
2655
2656 If we would have to push a partially-in-regs parm
2657 before other stack parms, preallocate stack space instead.
2658
2659 If the size of some parm is not a multiple of the required stack
2660 alignment, we must preallocate.
2661
2662 If the total size of arguments that would otherwise create a copy in
2663 a temporary (such as a CALL) is more than half the total argument list
2664 size, preallocation is faster.
2665
2666 Another reason to preallocate is if we have a machine (like the m88k)
2667 where stack alignment is required to be maintained between every
2668 pair of insns, not just when the call is made. However, we assume here
2669 that such machines either do not have push insns (and hence preallocation
2670 would occur anyway) or the problem is taken care of with
2671 PUSH_ROUNDING. */
2672
2673 if (! must_preallocate)
2674 {
2675 int partial_seen = 0;
a20c5714 2676 poly_int64 copy_to_evaluate_size = 0;
0f9b3ea6
JL
2677 int i;
2678
2679 for (i = 0; i < num_actuals && ! must_preallocate; i++)
2680 {
2681 if (args[i].partial > 0 && ! args[i].pass_on_stack)
2682 partial_seen = 1;
2683 else if (partial_seen && args[i].reg == 0)
2684 must_preallocate = 1;
2685
2686 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
2687 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
2688 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
2689 || TREE_CODE (args[i].tree_value) == COND_EXPR
2690 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
2691 copy_to_evaluate_size
2692 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
2693 }
2694
a20c5714
RS
2695 if (maybe_ne (args_size->constant, 0)
2696 && maybe_ge (copy_to_evaluate_size * 2, args_size->constant))
0f9b3ea6
JL
2697 must_preallocate = 1;
2698 }
2699 return must_preallocate;
2700}
599f37b6 2701
a45bdd02
JL
2702/* If we preallocated stack space, compute the address of each argument
2703 and store it into the ARGS array.
2704
f725a3ec 2705 We need not ensure it is a valid memory address here; it will be
a45bdd02
JL
2706 validized when it is used.
2707
2708 ARGBLOCK is an rtx for the address of the outgoing arguments. */
2709
2710static void
d329e058 2711compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
a45bdd02
JL
2712{
2713 if (argblock)
2714 {
2715 rtx arg_reg = argblock;
a20c5714
RS
2716 int i;
2717 poly_int64 arg_offset = 0;
a45bdd02
JL
2718
2719 if (GET_CODE (argblock) == PLUS)
a20c5714
RS
2720 {
2721 arg_reg = XEXP (argblock, 0);
2722 arg_offset = rtx_to_poly_int64 (XEXP (argblock, 1));
2723 }
a45bdd02
JL
2724
2725 for (i = 0; i < num_actuals; i++)
2726 {
e7949876
AM
2727 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
2728 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
a45bdd02 2729 rtx addr;
bfc45551 2730 unsigned int align, boundary;
a20c5714 2731 poly_uint64 units_on_stack = 0;
ef4bddc2 2732 machine_mode partial_mode = VOIDmode;
a45bdd02
JL
2733
2734 /* Skip this parm if it will not be passed on the stack. */
7816b87e
JC
2735 if (! args[i].pass_on_stack
2736 && args[i].reg != 0
2737 && args[i].partial == 0)
a45bdd02
JL
2738 continue;
2739
5b8b4a88
JJ
2740 if (TYPE_EMPTY_P (TREE_TYPE (args[i].tree_value)))
2741 continue;
2742
a708f4b6 2743 addr = simplify_gen_binary (PLUS, Pmode, arg_reg, offset);
0a81f074 2744 addr = plus_constant (Pmode, addr, arg_offset);
7816b87e
JC
2745
2746 if (args[i].partial != 0)
2747 {
2748 /* Only part of the parameter is being passed on the stack.
2749 Generate a simple memory reference of the correct size. */
2750 units_on_stack = args[i].locate.size.constant;
a20c5714 2751 poly_uint64 bits_on_stack = units_on_stack * BITS_PER_UNIT;
f4b31647 2752 partial_mode = int_mode_for_size (bits_on_stack, 1).else_blk ();
7816b87e 2753 args[i].stack = gen_rtx_MEM (partial_mode, addr);
f5541398 2754 set_mem_size (args[i].stack, units_on_stack);
7816b87e
JC
2755 }
2756 else
2757 {
2758 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
2759 set_mem_attributes (args[i].stack,
2760 TREE_TYPE (args[i].tree_value), 1);
2761 }
bfc45551
AM
2762 align = BITS_PER_UNIT;
2763 boundary = args[i].locate.boundary;
a20c5714 2764 poly_int64 offset_val;
76b0cbf8 2765 if (args[i].locate.where_pad != PAD_DOWNWARD)
bfc45551 2766 align = boundary;
a20c5714 2767 else if (poly_int_rtx_p (offset, &offset_val))
bfc45551 2768 {
a20c5714
RS
2769 align = least_bit_hwi (boundary);
2770 unsigned int offset_align
2771 = known_alignment (offset_val) * BITS_PER_UNIT;
2772 if (offset_align != 0)
2773 align = MIN (align, offset_align);
bfc45551
AM
2774 }
2775 set_mem_align (args[i].stack, align);
a45bdd02 2776
a708f4b6 2777 addr = simplify_gen_binary (PLUS, Pmode, arg_reg, slot_offset);
0a81f074 2778 addr = plus_constant (Pmode, addr, arg_offset);
7816b87e
JC
2779
2780 if (args[i].partial != 0)
2781 {
2782 /* Only part of the parameter is being passed on the stack.
2783 Generate a simple memory reference of the correct size.
2784 */
2785 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
f5541398 2786 set_mem_size (args[i].stack_slot, units_on_stack);
7816b87e
JC
2787 }
2788 else
2789 {
2790 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
2791 set_mem_attributes (args[i].stack_slot,
2792 TREE_TYPE (args[i].tree_value), 1);
2793 }
bfc45551 2794 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
7ab923cc
JJ
2795
2796 /* Function incoming arguments may overlap with sibling call
2797 outgoing arguments and we cannot allow reordering of reads
2798 from function arguments with stores to outgoing arguments
2799 of sibling calls. */
ba4828e0
RK
2800 set_mem_alias_set (args[i].stack, 0);
2801 set_mem_alias_set (args[i].stack_slot, 0);
a45bdd02
JL
2802 }
2803 }
2804}
f725a3ec 2805
a45bdd02
JL
2806/* Given a FNDECL and EXP, return an rtx suitable for use as a target address
2807 in a call instruction.
2808
2809 FNDECL is the tree node for the target function. For an indirect call
2810 FNDECL will be NULL_TREE.
2811
09e2bf48 2812 ADDR is the operand 0 of CALL_EXPR for this call. */
a45bdd02
JL
2813
2814static rtx
d329e058 2815rtx_for_function_call (tree fndecl, tree addr)
a45bdd02
JL
2816{
2817 rtx funexp;
2818
2819 /* Get the function to call, in the form of RTL. */
2820 if (fndecl)
2821 {
ad960f56 2822 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
bbee5843 2823 TREE_USED (fndecl) = 1;
a45bdd02
JL
2824
2825 /* Get a SYMBOL_REF rtx for the function address. */
2826 funexp = XEXP (DECL_RTL (fndecl), 0);
2827 }
2828 else
2829 /* Generate an rtx (probably a pseudo-register) for the address. */
2830 {
2831 push_temp_slots ();
84217346 2832 funexp = expand_normal (addr);
f725a3ec 2833 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
a45bdd02
JL
2834 }
2835 return funexp;
2836}
2837
4b522b8f
TV
2838/* Return the static chain for this function, if any. */
2839
2840rtx
2841rtx_for_static_chain (const_tree fndecl_or_type, bool incoming_p)
2842{
2843 if (DECL_P (fndecl_or_type) && !DECL_STATIC_CHAIN (fndecl_or_type))
2844 return NULL;
2845
2846 return targetm.calls.static_chain (fndecl_or_type, incoming_p);
2847}
2848
5275901c
JJ
2849/* Internal state for internal_arg_pointer_based_exp and its helpers. */
2850static struct
2851{
2852 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
2853 or NULL_RTX if none has been scanned yet. */
48810515 2854 rtx_insn *scan_start;
5275901c
JJ
2855 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
2856 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
2857 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
2858 with fixed offset, or PC if this is with variable or unknown offset. */
9771b263 2859 vec<rtx> cache;
5275901c
JJ
2860} internal_arg_pointer_exp_state;
2861
e9f56944 2862static rtx internal_arg_pointer_based_exp (const_rtx, bool);
5275901c
JJ
2863
2864/* Helper function for internal_arg_pointer_based_exp. Scan insns in
2865 the tail call sequence, starting with first insn that hasn't been
2866 scanned yet, and note for each pseudo on the LHS whether it is based
2867 on crtl->args.internal_arg_pointer or not, and what offset from that
2868 that pointer it has. */
2869
2870static void
2871internal_arg_pointer_based_exp_scan (void)
2872{
48810515 2873 rtx_insn *insn, *scan_start = internal_arg_pointer_exp_state.scan_start;
5275901c
JJ
2874
2875 if (scan_start == NULL_RTX)
2876 insn = get_insns ();
2877 else
2878 insn = NEXT_INSN (scan_start);
2879
2880 while (insn)
2881 {
2882 rtx set = single_set (insn);
2883 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
2884 {
2885 rtx val = NULL_RTX;
2886 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
2887 /* Punt on pseudos set multiple times. */
9771b263
DN
2888 if (idx < internal_arg_pointer_exp_state.cache.length ()
2889 && (internal_arg_pointer_exp_state.cache[idx]
5275901c
JJ
2890 != NULL_RTX))
2891 val = pc_rtx;
2892 else
2893 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
2894 if (val != NULL_RTX)
2895 {
9771b263 2896 if (idx >= internal_arg_pointer_exp_state.cache.length ())
c3284718
RS
2897 internal_arg_pointer_exp_state.cache
2898 .safe_grow_cleared (idx + 1);
9771b263 2899 internal_arg_pointer_exp_state.cache[idx] = val;
5275901c
JJ
2900 }
2901 }
2902 if (NEXT_INSN (insn) == NULL_RTX)
2903 scan_start = insn;
2904 insn = NEXT_INSN (insn);
2905 }
2906
2907 internal_arg_pointer_exp_state.scan_start = scan_start;
2908}
2909
5275901c
JJ
2910/* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
2911 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
2912 it with fixed offset, or PC if this is with variable or unknown offset.
2913 TOPLEVEL is true if the function is invoked at the topmost level. */
2914
2915static rtx
e9f56944 2916internal_arg_pointer_based_exp (const_rtx rtl, bool toplevel)
5275901c
JJ
2917{
2918 if (CONSTANT_P (rtl))
2919 return NULL_RTX;
2920
2921 if (rtl == crtl->args.internal_arg_pointer)
2922 return const0_rtx;
2923
2924 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
2925 return NULL_RTX;
2926
a20c5714
RS
2927 poly_int64 offset;
2928 if (GET_CODE (rtl) == PLUS && poly_int_rtx_p (XEXP (rtl, 1), &offset))
5275901c
JJ
2929 {
2930 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
2931 if (val == NULL_RTX || val == pc_rtx)
2932 return val;
a20c5714 2933 return plus_constant (Pmode, val, offset);
5275901c
JJ
2934 }
2935
2936 /* When called at the topmost level, scan pseudo assignments in between the
2937 last scanned instruction in the tail call sequence and the latest insn
2938 in that sequence. */
2939 if (toplevel)
2940 internal_arg_pointer_based_exp_scan ();
2941
2942 if (REG_P (rtl))
2943 {
2944 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
9771b263
DN
2945 if (idx < internal_arg_pointer_exp_state.cache.length ())
2946 return internal_arg_pointer_exp_state.cache[idx];
5275901c
JJ
2947
2948 return NULL_RTX;
2949 }
2950
e9f56944
RS
2951 subrtx_iterator::array_type array;
2952 FOR_EACH_SUBRTX (iter, array, rtl, NONCONST)
2953 {
2954 const_rtx x = *iter;
2955 if (REG_P (x) && internal_arg_pointer_based_exp (x, false) != NULL_RTX)
2956 return pc_rtx;
2957 if (MEM_P (x))
2958 iter.skip_subrtxes ();
2959 }
5275901c
JJ
2960
2961 return NULL_RTX;
2962}
2963
a20c5714
RS
2964/* Return true if SIZE bytes starting from address ADDR might overlap an
2965 already-clobbered argument area. This function is used to determine
2966 if we should give up a sibcall. */
07eef816
KH
2967
2968static bool
a20c5714 2969mem_might_overlap_already_clobbered_arg_p (rtx addr, poly_uint64 size)
07eef816 2970{
a20c5714
RS
2971 poly_int64 i;
2972 unsigned HOST_WIDE_INT start, end;
5275901c 2973 rtx val;
07eef816 2974
a20c5714
RS
2975 if (bitmap_empty_p (stored_args_map)
2976 && stored_args_watermark == HOST_WIDE_INT_M1U)
4189fb53 2977 return false;
5275901c
JJ
2978 val = internal_arg_pointer_based_exp (addr, true);
2979 if (val == NULL_RTX)
2980 return false;
a20c5714 2981 else if (!poly_int_rtx_p (val, &i))
6c3cb698 2982 return true;
a20c5714
RS
2983
2984 if (known_eq (size, 0U))
2985 return false;
76e048a8
KT
2986
2987 if (STACK_GROWS_DOWNWARD)
2988 i -= crtl->args.pretend_args_size;
2989 else
2990 i += crtl->args.pretend_args_size;
2991
6dad9361
TS
2992 if (ARGS_GROW_DOWNWARD)
2993 i = -i - size;
2994
a20c5714
RS
2995 /* We can ignore any references to the function's pretend args,
2996 which at this point would manifest as negative values of I. */
2997 if (known_le (i, 0) && known_le (size, poly_uint64 (-i)))
2998 return false;
07eef816 2999
a20c5714
RS
3000 start = maybe_lt (i, 0) ? 0 : constant_lower_bound (i);
3001 if (!(i + size).is_constant (&end))
3002 end = HOST_WIDE_INT_M1U;
3003
3004 if (end > stored_args_watermark)
3005 return true;
3006
3007 end = MIN (end, SBITMAP_SIZE (stored_args_map));
3008 for (unsigned HOST_WIDE_INT k = start; k < end; ++k)
3009 if (bitmap_bit_p (stored_args_map, k))
3010 return true;
07eef816
KH
3011
3012 return false;
3013}
3014
21a3b983
JL
3015/* Do the register loads required for any wholly-register parms or any
3016 parms which are passed both on the stack and in a register. Their
f725a3ec 3017 expressions were already evaluated.
21a3b983
JL
3018
3019 Mark all register-parms as living through the call, putting these USE
d329e058
AJ
3020 insns in the CALL_INSN_FUNCTION_USAGE field.
3021
40b0345d 3022 When IS_SIBCALL, perform the check_sibcall_argument_overlap
0cdca92b 3023 checking, setting *SIBCALL_FAILURE if appropriate. */
21a3b983
JL
3024
3025static void
d329e058
AJ
3026load_register_parameters (struct arg_data *args, int num_actuals,
3027 rtx *call_fusage, int flags, int is_sibcall,
3028 int *sibcall_failure)
21a3b983
JL
3029{
3030 int i, j;
3031
21a3b983 3032 for (i = 0; i < num_actuals; i++)
21a3b983 3033 {
099e9712
JH
3034 rtx reg = ((flags & ECF_SIBCALL)
3035 ? args[i].tail_call_reg : args[i].reg);
21a3b983
JL
3036 if (reg)
3037 {
6e985040
AM
3038 int partial = args[i].partial;
3039 int nregs;
95fe7b48
RS
3040 poly_int64 size = 0;
3041 HOST_WIDE_INT const_size = 0;
48810515 3042 rtx_insn *before_arg = get_last_insn ();
72834792 3043 tree type = TREE_TYPE (args[i].tree_value);
920ea3b8 3044 if (RECORD_OR_UNION_TYPE_P (type) && TYPE_TRANSPARENT_AGGR (type))
72834792 3045 type = TREE_TYPE (first_field (type));
f0078f86
AM
3046 /* Set non-negative if we must move a word at a time, even if
3047 just one word (e.g, partial == 4 && mode == DFmode). Set
3048 to -1 if we just use a normal move insn. This value can be
3049 zero if the argument is a zero size structure. */
6e985040 3050 nregs = -1;
78a52f11
RH
3051 if (GET_CODE (reg) == PARALLEL)
3052 ;
3053 else if (partial)
3054 {
3055 gcc_assert (partial % UNITS_PER_WORD == 0);
3056 nregs = partial / UNITS_PER_WORD;
3057 }
72834792 3058 else if (TYPE_MODE (type) == BLKmode)
6e985040 3059 {
95fe7b48
RS
3060 /* Variable-sized parameters should be described by a
3061 PARALLEL instead. */
72834792 3062 const_size = int_size_in_bytes (type);
95fe7b48
RS
3063 gcc_assert (const_size >= 0);
3064 nregs = (const_size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
3065 size = const_size;
6e985040
AM
3066 }
3067 else
3068 size = GET_MODE_SIZE (args[i].mode);
21a3b983
JL
3069
3070 /* Handle calls that pass values in multiple non-contiguous
3071 locations. The Irix 6 ABI has examples of this. */
3072
3073 if (GET_CODE (reg) == PARALLEL)
8df3dbb7 3074 emit_group_move (reg, args[i].parallel_value);
21a3b983
JL
3075
3076 /* If simple case, just do move. If normal partial, store_one_arg
3077 has already loaded the register for us. In all other cases,
3078 load the register(s) from memory. */
3079
9206d736
AM
3080 else if (nregs == -1)
3081 {
3082 emit_move_insn (reg, args[i].value);
6e985040 3083#ifdef BLOCK_REG_PADDING
9206d736
AM
3084 /* Handle case where we have a value that needs shifting
3085 up to the msb. eg. a QImode value and we're padding
3086 upward on a BYTES_BIG_ENDIAN machine. */
95fe7b48
RS
3087 if (args[i].locate.where_pad
3088 == (BYTES_BIG_ENDIAN ? PAD_UPWARD : PAD_DOWNWARD))
9206d736 3089 {
95fe7b48
RS
3090 gcc_checking_assert (ordered_p (size, UNITS_PER_WORD));
3091 if (maybe_lt (size, UNITS_PER_WORD))
3092 {
3093 rtx x;
3094 poly_int64 shift
3095 = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
3096
3097 /* Assigning REG here rather than a temp makes
3098 CALL_FUSAGE report the whole reg as used.
3099 Strictly speaking, the call only uses SIZE
3100 bytes at the msb end, but it doesn't seem worth
3101 generating rtl to say that. */
3102 reg = gen_rtx_REG (word_mode, REGNO (reg));
3103 x = expand_shift (LSHIFT_EXPR, word_mode,
3104 reg, shift, reg, 1);
3105 if (x != reg)
3106 emit_move_insn (reg, x);
3107 }
9206d736 3108 }
6e985040 3109#endif
9206d736 3110 }
21a3b983
JL
3111
3112 /* If we have pre-computed the values to put in the registers in
3113 the case of non-aligned structures, copy them in now. */
3114
3115 else if (args[i].n_aligned_regs != 0)
3116 for (j = 0; j < args[i].n_aligned_regs; j++)
3117 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
3118 args[i].aligned_regs[j]);
3119
3b2ee170 3120 else if (partial == 0 || args[i].pass_on_stack)
6e985040 3121 {
95fe7b48
RS
3122 /* SIZE and CONST_SIZE are 0 for partial arguments and
3123 the size of a BLKmode type otherwise. */
3124 gcc_checking_assert (known_eq (size, const_size));
1a8cb155 3125 rtx mem = validize_mem (copy_rtx (args[i].value));
6e985040 3126
3b2ee170
IS
3127 /* Check for overlap with already clobbered argument area,
3128 providing that this has non-zero size. */
07eef816 3129 if (is_sibcall
95fe7b48 3130 && const_size != 0
a20c5714 3131 && (mem_might_overlap_already_clobbered_arg_p
95fe7b48 3132 (XEXP (args[i].value, 0), const_size)))
07eef816
KH
3133 *sibcall_failure = 1;
3134
95fe7b48 3135 if (const_size % UNITS_PER_WORD == 0
984b2054
AM
3136 || MEM_ALIGN (mem) % BITS_PER_WORD == 0)
3137 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
3138 else
3139 {
3140 if (nregs > 1)
3141 move_block_to_reg (REGNO (reg), mem, nregs - 1,
3142 args[i].mode);
3143 rtx dest = gen_rtx_REG (word_mode, REGNO (reg) + nregs - 1);
3144 unsigned int bitoff = (nregs - 1) * BITS_PER_WORD;
95fe7b48 3145 unsigned int bitsize = const_size * BITS_PER_UNIT - bitoff;
ee45a32d 3146 rtx x = extract_bit_field (mem, bitsize, bitoff, 1, dest,
f96bf49a
JW
3147 word_mode, word_mode, false,
3148 NULL);
984b2054
AM
3149 if (BYTES_BIG_ENDIAN)
3150 x = expand_shift (LSHIFT_EXPR, word_mode, x,
3151 BITS_PER_WORD - bitsize, dest, 1);
3152 if (x != dest)
3153 emit_move_insn (dest, x);
3154 }
3155
6e985040 3156 /* Handle a BLKmode that needs shifting. */
95fe7b48 3157 if (nregs == 1 && const_size < UNITS_PER_WORD
03ca1672 3158#ifdef BLOCK_REG_PADDING
76b0cbf8 3159 && args[i].locate.where_pad == PAD_DOWNWARD
03ca1672
UW
3160#else
3161 && BYTES_BIG_ENDIAN
3162#endif
984b2054 3163 )
6e985040 3164 {
984b2054 3165 rtx dest = gen_rtx_REG (word_mode, REGNO (reg));
95fe7b48 3166 int shift = (UNITS_PER_WORD - const_size) * BITS_PER_UNIT;
984b2054
AM
3167 enum tree_code dir = (BYTES_BIG_ENDIAN
3168 ? RSHIFT_EXPR : LSHIFT_EXPR);
3169 rtx x;
6e985040 3170
984b2054
AM
3171 x = expand_shift (dir, word_mode, dest, shift, dest, 1);
3172 if (x != dest)
3173 emit_move_insn (dest, x);
6e985040 3174 }
6e985040 3175 }
21a3b983 3176
0cdca92b
DJ
3177 /* When a parameter is a block, and perhaps in other cases, it is
3178 possible that it did a load from an argument slot that was
32dd366d 3179 already clobbered. */
0cdca92b
DJ
3180 if (is_sibcall
3181 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
3182 *sibcall_failure = 1;
3183
21a3b983
JL
3184 /* Handle calls that pass values in multiple non-contiguous
3185 locations. The Irix 6 ABI has examples of this. */
3186 if (GET_CODE (reg) == PARALLEL)
3187 use_group_regs (call_fusage, reg);
3188 else if (nregs == -1)
72834792 3189 use_reg_mode (call_fusage, reg, TYPE_MODE (type));
faa00334
AO
3190 else if (nregs > 0)
3191 use_regs (call_fusage, REGNO (reg), nregs);
21a3b983
JL
3192 }
3193 }
3194}
3195
739fb049
MM
3196/* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
3197 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
3198 bytes, then we would need to push some additional bytes to pad the
a20c5714 3199 arguments. So, we try to compute an adjust to the stack pointer for an
ce48579b
RH
3200 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
3201 bytes. Then, when the arguments are pushed the stack will be perfectly
a20c5714 3202 aligned.
739fb049 3203
a20c5714
RS
3204 Return true if this optimization is possible, storing the adjustment
3205 in ADJUSTMENT_OUT and setting ARGS_SIZE->CONSTANT to the number of
3206 bytes that should be popped after the call. */
3207
3208static bool
3209combine_pending_stack_adjustment_and_call (poly_int64_pod *adjustment_out,
3210 poly_int64 unadjusted_args_size,
d329e058 3211 struct args_size *args_size,
95899b34 3212 unsigned int preferred_unit_stack_boundary)
739fb049
MM
3213{
3214 /* The number of bytes to pop so that the stack will be
3215 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
a20c5714 3216 poly_int64 adjustment;
739fb049
MM
3217 /* The alignment of the stack after the arguments are pushed, if we
3218 just pushed the arguments without adjust the stack here. */
95899b34 3219 unsigned HOST_WIDE_INT unadjusted_alignment;
739fb049 3220
a20c5714
RS
3221 if (!known_misalignment (stack_pointer_delta + unadjusted_args_size,
3222 preferred_unit_stack_boundary,
3223 &unadjusted_alignment))
3224 return false;
739fb049
MM
3225
3226 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
3227 as possible -- leaving just enough left to cancel out the
3228 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
3229 PENDING_STACK_ADJUST is non-negative, and congruent to
3230 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
3231
3232 /* Begin by trying to pop all the bytes. */
a20c5714
RS
3233 unsigned HOST_WIDE_INT tmp_misalignment;
3234 if (!known_misalignment (pending_stack_adjust,
3235 preferred_unit_stack_boundary,
3236 &tmp_misalignment))
3237 return false;
3238 unadjusted_alignment -= tmp_misalignment;
739fb049
MM
3239 adjustment = pending_stack_adjust;
3240 /* Push enough additional bytes that the stack will be aligned
3241 after the arguments are pushed. */
0aae1572
NS
3242 if (preferred_unit_stack_boundary > 1 && unadjusted_alignment)
3243 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
f725a3ec 3244
a20c5714
RS
3245 /* We need to know whether the adjusted argument size
3246 (UNADJUSTED_ARGS_SIZE - ADJUSTMENT) constitutes an allocation
3247 or a deallocation. */
3248 if (!ordered_p (adjustment, unadjusted_args_size))
3249 return false;
3250
739fb049
MM
3251 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
3252 bytes after the call. The right number is the entire
3253 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
3254 by the arguments in the first place. */
f725a3ec 3255 args_size->constant
739fb049
MM
3256 = pending_stack_adjust - adjustment + unadjusted_args_size;
3257
a20c5714
RS
3258 *adjustment_out = adjustment;
3259 return true;
739fb049
MM
3260}
3261
c67846f2
JJ
3262/* Scan X expression if it does not dereference any argument slots
3263 we already clobbered by tail call arguments (as noted in stored_args_map
3264 bitmap).
da7d8304 3265 Return nonzero if X expression dereferences such argument slots,
c67846f2
JJ
3266 zero otherwise. */
3267
3268static int
d329e058 3269check_sibcall_argument_overlap_1 (rtx x)
c67846f2
JJ
3270{
3271 RTX_CODE code;
3272 int i, j;
c67846f2
JJ
3273 const char *fmt;
3274
3275 if (x == NULL_RTX)
3276 return 0;
3277
3278 code = GET_CODE (x);
3279
6c3cb698
KY
3280 /* We need not check the operands of the CALL expression itself. */
3281 if (code == CALL)
3282 return 0;
3283
c67846f2 3284 if (code == MEM)
a20c5714
RS
3285 return (mem_might_overlap_already_clobbered_arg_p
3286 (XEXP (x, 0), GET_MODE_SIZE (GET_MODE (x))));
c67846f2 3287
f725a3ec 3288 /* Scan all subexpressions. */
c67846f2
JJ
3289 fmt = GET_RTX_FORMAT (code);
3290 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
3291 {
3292 if (*fmt == 'e')
f725a3ec
KH
3293 {
3294 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
3295 return 1;
3296 }
c67846f2 3297 else if (*fmt == 'E')
f725a3ec
KH
3298 {
3299 for (j = 0; j < XVECLEN (x, i); j++)
3300 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
3301 return 1;
3302 }
c67846f2
JJ
3303 }
3304 return 0;
c67846f2
JJ
3305}
3306
3307/* Scan sequence after INSN if it does not dereference any argument slots
3308 we already clobbered by tail call arguments (as noted in stored_args_map
0cdca92b
DJ
3309 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
3310 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
3311 should be 0). Return nonzero if sequence after INSN dereferences such argument
3312 slots, zero otherwise. */
c67846f2
JJ
3313
3314static int
48810515
DM
3315check_sibcall_argument_overlap (rtx_insn *insn, struct arg_data *arg,
3316 int mark_stored_args_map)
f725a3ec 3317{
a20c5714
RS
3318 poly_uint64 low, high;
3319 unsigned HOST_WIDE_INT const_low, const_high;
c67846f2
JJ
3320
3321 if (insn == NULL_RTX)
3322 insn = get_insns ();
3323 else
3324 insn = NEXT_INSN (insn);
3325
3326 for (; insn; insn = NEXT_INSN (insn))
f725a3ec
KH
3327 if (INSN_P (insn)
3328 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
c67846f2
JJ
3329 break;
3330
0cdca92b
DJ
3331 if (mark_stored_args_map)
3332 {
6dad9361
TS
3333 if (ARGS_GROW_DOWNWARD)
3334 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
3335 else
3336 low = arg->locate.slot_offset.constant;
a20c5714 3337 high = low + arg->locate.size.constant;
d60eab50 3338
a20c5714
RS
3339 const_low = constant_lower_bound (low);
3340 if (high.is_constant (&const_high))
3341 for (unsigned HOST_WIDE_INT i = const_low; i < const_high; ++i)
3342 bitmap_set_bit (stored_args_map, i);
3343 else
3344 stored_args_watermark = MIN (stored_args_watermark, const_low);
0cdca92b 3345 }
c67846f2
JJ
3346 return insn != NULL_RTX;
3347}
3348
bef5d8b6
RS
3349/* Given that a function returns a value of mode MODE at the most
3350 significant end of hard register VALUE, shift VALUE left or right
3351 as specified by LEFT_P. Return true if some action was needed. */
c988af2b 3352
bef5d8b6 3353bool
ef4bddc2 3354shift_return_value (machine_mode mode, bool left_p, rtx value)
c988af2b 3355{
bef5d8b6 3356 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
abd3c800 3357 machine_mode value_mode = GET_MODE (value);
73a699ae
RS
3358 poly_int64 shift = GET_MODE_BITSIZE (value_mode) - GET_MODE_BITSIZE (mode);
3359
3360 if (known_eq (shift, 0))
bef5d8b6
RS
3361 return false;
3362
3363 /* Use ashr rather than lshr for right shifts. This is for the benefit
3364 of the MIPS port, which requires SImode values to be sign-extended
3365 when stored in 64-bit registers. */
abd3c800
RS
3366 if (!force_expand_binop (value_mode, left_p ? ashl_optab : ashr_optab,
3367 value, gen_int_shift_amount (value_mode, shift),
3368 value, 1, OPTAB_WIDEN))
bef5d8b6
RS
3369 gcc_unreachable ();
3370 return true;
c988af2b
RS
3371}
3372
3fb30019
RS
3373/* If X is a likely-spilled register value, copy it to a pseudo
3374 register and return that register. Return X otherwise. */
3375
3376static rtx
3377avoid_likely_spilled_reg (rtx x)
3378{
82d6e6fc 3379 rtx new_rtx;
3fb30019
RS
3380
3381 if (REG_P (x)
3382 && HARD_REGISTER_P (x)
07b8f0a8 3383 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
3fb30019
RS
3384 {
3385 /* Make sure that we generate a REG rather than a CONCAT.
3386 Moves into CONCATs can need nontrivial instructions,
3387 and the whole point of this function is to avoid
3388 using the hard register directly in such a situation. */
3389 generating_concat_p = 0;
82d6e6fc 3390 new_rtx = gen_reg_rtx (GET_MODE (x));
3fb30019 3391 generating_concat_p = 1;
82d6e6fc
KG
3392 emit_move_insn (new_rtx, x);
3393 return new_rtx;
3fb30019
RS
3394 }
3395 return x;
3396}
3397
b40d90e6
DM
3398/* Helper function for expand_call.
3399 Return false is EXP is not implementable as a sibling call. */
3400
3401static bool
3402can_implement_as_sibling_call_p (tree exp,
3403 rtx structure_value_addr,
3404 tree funtype,
dfbdde16 3405 int reg_parm_stack_space ATTRIBUTE_UNUSED,
b40d90e6
DM
3406 tree fndecl,
3407 int flags,
3408 tree addr,
3409 const args_size &args_size)
3410{
3411 if (!targetm.have_sibcall_epilogue ())
9a385c2d
DM
3412 {
3413 maybe_complain_about_tail_call
3414 (exp,
3415 "machine description does not have"
3416 " a sibcall_epilogue instruction pattern");
3417 return false;
3418 }
b40d90e6
DM
3419
3420 /* Doing sibling call optimization needs some work, since
3421 structure_value_addr can be allocated on the stack.
3422 It does not seem worth the effort since few optimizable
3423 sibling calls will return a structure. */
3424 if (structure_value_addr != NULL_RTX)
9a385c2d
DM
3425 {
3426 maybe_complain_about_tail_call (exp, "callee returns a structure");
3427 return false;
3428 }
b40d90e6
DM
3429
3430#ifdef REG_PARM_STACK_SPACE
67914693 3431 /* If outgoing reg parm stack space changes, we cannot do sibcall. */
b40d90e6
DM
3432 if (OUTGOING_REG_PARM_STACK_SPACE (funtype)
3433 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl))
3434 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (current_function_decl)))
9a385c2d
DM
3435 {
3436 maybe_complain_about_tail_call (exp,
3437 "inconsistent size of stack space"
3438 " allocated for arguments which are"
3439 " passed in registers");
3440 return false;
3441 }
b40d90e6
DM
3442#endif
3443
3444 /* Check whether the target is able to optimize the call
3445 into a sibcall. */
3446 if (!targetm.function_ok_for_sibcall (fndecl, exp))
9a385c2d
DM
3447 {
3448 maybe_complain_about_tail_call (exp,
3449 "target is not able to optimize the"
3450 " call into a sibling call");
3451 return false;
3452 }
b40d90e6
DM
3453
3454 /* Functions that do not return exactly once may not be sibcall
3455 optimized. */
9a385c2d
DM
3456 if (flags & ECF_RETURNS_TWICE)
3457 {
3458 maybe_complain_about_tail_call (exp, "callee returns twice");
3459 return false;
3460 }
3461 if (flags & ECF_NORETURN)
3462 {
3463 maybe_complain_about_tail_call (exp, "callee does not return");
3464 return false;
3465 }
b40d90e6
DM
3466
3467 if (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr))))
9a385c2d
DM
3468 {
3469 maybe_complain_about_tail_call (exp, "volatile function type");
3470 return false;
3471 }
b40d90e6
DM
3472
3473 /* If the called function is nested in the current one, it might access
3474 some of the caller's arguments, but could clobber them beforehand if
3475 the argument areas are shared. */
3476 if (fndecl && decl_function_context (fndecl) == current_function_decl)
9a385c2d
DM
3477 {
3478 maybe_complain_about_tail_call (exp, "nested function");
3479 return false;
3480 }
b40d90e6
DM
3481
3482 /* If this function requires more stack slots than the current
3483 function, we cannot change it into a sibling call.
3484 crtl->args.pretend_args_size is not part of the
3485 stack allocated by our caller. */
a20c5714
RS
3486 if (maybe_gt (args_size.constant,
3487 crtl->args.size - crtl->args.pretend_args_size))
9a385c2d
DM
3488 {
3489 maybe_complain_about_tail_call (exp,
3490 "callee required more stack slots"
3491 " than the caller");
3492 return false;
3493 }
b40d90e6
DM
3494
3495 /* If the callee pops its own arguments, then it must pop exactly
3496 the same number of arguments as the current function. */
a20c5714
RS
3497 if (maybe_ne (targetm.calls.return_pops_args (fndecl, funtype,
3498 args_size.constant),
3499 targetm.calls.return_pops_args (current_function_decl,
3500 TREE_TYPE
3501 (current_function_decl),
3502 crtl->args.size)))
9a385c2d
DM
3503 {
3504 maybe_complain_about_tail_call (exp,
3505 "inconsistent number of"
3506 " popped arguments");
3507 return false;
3508 }
b40d90e6
DM
3509
3510 if (!lang_hooks.decls.ok_for_sibcall (fndecl))
9a385c2d
DM
3511 {
3512 maybe_complain_about_tail_call (exp, "frontend does not support"
3513 " sibling call");
3514 return false;
3515 }
b40d90e6
DM
3516
3517 /* All checks passed. */
3518 return true;
3519}
3520
957ed738
L
3521/* Update stack alignment when the parameter is passed in the stack
3522 since the outgoing parameter requires extra alignment on the calling
3523 function side. */
3524
3525static void
3526update_stack_alignment_for_call (struct locate_and_pad_arg_data *locate)
3527{
3528 if (crtl->stack_alignment_needed < locate->boundary)
3529 crtl->stack_alignment_needed = locate->boundary;
3530 if (crtl->preferred_stack_boundary < locate->boundary)
3531 crtl->preferred_stack_boundary = locate->boundary;
3532}
3533
5039610b 3534/* Generate all the code for a CALL_EXPR exp
51bbfa0c
RS
3535 and return an rtx for its value.
3536 Store the value in TARGET (specified as an rtx) if convenient.
3537 If the value is stored in TARGET then TARGET is returned.
3538 If IGNORE is nonzero, then we ignore the value of the function call. */
3539
3540rtx
d329e058 3541expand_call (tree exp, rtx target, int ignore)
51bbfa0c 3542{
0a1c58a2
JL
3543 /* Nonzero if we are currently expanding a call. */
3544 static int currently_expanding_call = 0;
3545
51bbfa0c
RS
3546 /* RTX for the function to be called. */
3547 rtx funexp;
0a1c58a2 3548 /* Sequence of insns to perform a normal "call". */
48810515 3549 rtx_insn *normal_call_insns = NULL;
6de9cd9a 3550 /* Sequence of insns to perform a tail "call". */
48810515 3551 rtx_insn *tail_call_insns = NULL;
51bbfa0c
RS
3552 /* Data type of the function. */
3553 tree funtype;
ded9bf77 3554 tree type_arg_types;
28ed065e 3555 tree rettype;
51bbfa0c
RS
3556 /* Declaration of the function being called,
3557 or 0 if the function is computed (not known by name). */
3558 tree fndecl = 0;
57782ad8
MM
3559 /* The type of the function being called. */
3560 tree fntype;
6de9cd9a 3561 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
9a385c2d 3562 bool must_tail_call = CALL_EXPR_MUST_TAIL_CALL (exp);
0a1c58a2 3563 int pass;
51bbfa0c
RS
3564
3565 /* Register in which non-BLKmode value will be returned,
3566 or 0 if no value or if value is BLKmode. */
3567 rtx valreg;
3568 /* Address where we should return a BLKmode value;
3569 0 if value not BLKmode. */
3570 rtx structure_value_addr = 0;
3571 /* Nonzero if that address is being passed by treating it as
3572 an extra, implicit first parameter. Otherwise,
3573 it is passed by being copied directly into struct_value_rtx. */
3574 int structure_value_addr_parm = 0;
078a18a4
SL
3575 /* Holds the value of implicit argument for the struct value. */
3576 tree structure_value_addr_value = NULL_TREE;
51bbfa0c
RS
3577 /* Size of aggregate value wanted, or zero if none wanted
3578 or if we are using the non-reentrant PCC calling convention
3579 or expecting the value in registers. */
5c8e61cf 3580 poly_int64 struct_value_size = 0;
51bbfa0c
RS
3581 /* Nonzero if called function returns an aggregate in memory PCC style,
3582 by returning the address of where to find it. */
3583 int pcc_struct_value = 0;
61f71b34 3584 rtx struct_value = 0;
51bbfa0c
RS
3585
3586 /* Number of actual parameters in this call, including struct value addr. */
3587 int num_actuals;
3588 /* Number of named args. Args after this are anonymous ones
3589 and they must all go on the stack. */
3590 int n_named_args;
078a18a4
SL
3591 /* Number of complex actual arguments that need to be split. */
3592 int num_complex_actuals = 0;
51bbfa0c
RS
3593
3594 /* Vector of information about each argument.
3595 Arguments are numbered in the order they will be pushed,
3596 not the order they are written. */
3597 struct arg_data *args;
3598
3599 /* Total size in bytes of all the stack-parms scanned so far. */
3600 struct args_size args_size;
099e9712 3601 struct args_size adjusted_args_size;
51bbfa0c 3602 /* Size of arguments before any adjustments (such as rounding). */
a20c5714 3603 poly_int64 unadjusted_args_size;
51bbfa0c 3604 /* Data on reg parms scanned so far. */
d5cc9181
JR
3605 CUMULATIVE_ARGS args_so_far_v;
3606 cumulative_args_t args_so_far;
51bbfa0c
RS
3607 /* Nonzero if a reg parm has been scanned. */
3608 int reg_parm_seen;
efd65a8b 3609 /* Nonzero if this is an indirect function call. */
51bbfa0c 3610
f725a3ec 3611 /* Nonzero if we must avoid push-insns in the args for this call.
51bbfa0c
RS
3612 If stack space is allocated for register parameters, but not by the
3613 caller, then it is preallocated in the fixed part of the stack frame.
3614 So the entire argument block must then be preallocated (i.e., we
3615 ignore PUSH_ROUNDING in that case). */
3616
f73ad30e 3617 int must_preallocate = !PUSH_ARGS;
51bbfa0c 3618
f72aed24 3619 /* Size of the stack reserved for parameter registers. */
6f90e075
JW
3620 int reg_parm_stack_space = 0;
3621
51bbfa0c
RS
3622 /* Address of space preallocated for stack parms
3623 (on machines that lack push insns), or 0 if space not preallocated. */
3624 rtx argblock = 0;
3625
e384e6b5 3626 /* Mask of ECF_ and ERF_ flags. */
f2d33f13 3627 int flags = 0;
e384e6b5 3628 int return_flags = 0;
f73ad30e 3629#ifdef REG_PARM_STACK_SPACE
51bbfa0c 3630 /* Define the boundary of the register parm stack space that needs to be
b820d2b8
AM
3631 saved, if any. */
3632 int low_to_save, high_to_save;
51bbfa0c
RS
3633 rtx save_area = 0; /* Place that it is saved */
3634#endif
3635
a20c5714 3636 unsigned int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
51bbfa0c 3637 char *initial_stack_usage_map = stack_usage_map;
a20c5714 3638 unsigned HOST_WIDE_INT initial_stack_usage_watermark = stack_usage_watermark;
d9725c41 3639 char *stack_usage_map_buf = NULL;
51bbfa0c 3640
a20c5714 3641 poly_int64 old_stack_allocated;
38afb23f
OH
3642
3643 /* State variables to track stack modifications. */
51bbfa0c 3644 rtx old_stack_level = 0;
38afb23f 3645 int old_stack_arg_under_construction = 0;
a20c5714 3646 poly_int64 old_pending_adj = 0;
51bbfa0c 3647 int old_inhibit_defer_pop = inhibit_defer_pop;
38afb23f
OH
3648
3649 /* Some stack pointer alterations we make are performed via
3650 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
3651 which we then also need to save/restore along the way. */
a20c5714 3652 poly_int64 old_stack_pointer_delta = 0;
38afb23f 3653
0a1c58a2 3654 rtx call_fusage;
5039610b 3655 tree addr = CALL_EXPR_FN (exp);
b3694847 3656 int i;
739fb049 3657 /* The alignment of the stack, in bits. */
95899b34 3658 unsigned HOST_WIDE_INT preferred_stack_boundary;
739fb049 3659 /* The alignment of the stack, in bytes. */
95899b34 3660 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
6de9cd9a
DN
3661 /* The static chain value to use for this call. */
3662 rtx static_chain_value;
f2d33f13
JH
3663 /* See if this is "nothrow" function call. */
3664 if (TREE_NOTHROW (exp))
3665 flags |= ECF_NOTHROW;
3666
6de9cd9a
DN
3667 /* See if we can find a DECL-node for the actual function, and get the
3668 function attributes (flags) from the function decl or type node. */
39b0dce7
JM
3669 fndecl = get_callee_fndecl (exp);
3670 if (fndecl)
51bbfa0c 3671 {
57782ad8 3672 fntype = TREE_TYPE (fndecl);
39b0dce7 3673 flags |= flags_from_decl_or_type (fndecl);
e384e6b5 3674 return_flags |= decl_return_flags (fndecl);
51bbfa0c 3675 }
39b0dce7 3676 else
72954a4f 3677 {
28ed065e 3678 fntype = TREE_TYPE (TREE_TYPE (addr));
57782ad8 3679 flags |= flags_from_decl_or_type (fntype);
4c640e26
EB
3680 if (CALL_EXPR_BY_DESCRIPTOR (exp))
3681 flags |= ECF_BY_DESCRIPTOR;
72954a4f 3682 }
28ed065e 3683 rettype = TREE_TYPE (exp);
7393c642 3684
57782ad8 3685 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
61f71b34 3686
8c6a8269
RS
3687 /* Warn if this value is an aggregate type,
3688 regardless of which calling convention we are using for it. */
28ed065e 3689 if (AGGREGATE_TYPE_P (rettype))
ccf08a6e 3690 warning (OPT_Waggregate_return, "function call has aggregate value");
8c6a8269 3691
becfd6e5
KZ
3692 /* If the result of a non looping pure or const function call is
3693 ignored (or void), and none of its arguments are volatile, we can
3694 avoid expanding the call and just evaluate the arguments for
3695 side-effects. */
8c6a8269 3696 if ((flags & (ECF_CONST | ECF_PURE))
becfd6e5 3697 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
8c6a8269 3698 && (ignore || target == const0_rtx
28ed065e 3699 || TYPE_MODE (rettype) == VOIDmode))
8c6a8269
RS
3700 {
3701 bool volatilep = false;
3702 tree arg;
078a18a4 3703 call_expr_arg_iterator iter;
8c6a8269 3704
078a18a4
SL
3705 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
3706 if (TREE_THIS_VOLATILE (arg))
8c6a8269
RS
3707 {
3708 volatilep = true;
3709 break;
3710 }
3711
3712 if (! volatilep)
3713 {
078a18a4
SL
3714 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
3715 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
8c6a8269
RS
3716 return const0_rtx;
3717 }
3718 }
3719
6f90e075 3720#ifdef REG_PARM_STACK_SPACE
5d059ed9 3721 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
6f90e075 3722#endif
6f90e075 3723
5d059ed9 3724 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
81464b2c 3725 && reg_parm_stack_space > 0 && PUSH_ARGS)
e5e809f4 3726 must_preallocate = 1;
e5e809f4 3727
51bbfa0c
RS
3728 /* Set up a place to return a structure. */
3729
3730 /* Cater to broken compilers. */
d47d0a8d 3731 if (aggregate_value_p (exp, fntype))
51bbfa0c
RS
3732 {
3733 /* This call returns a big structure. */
84b8030f 3734 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
51bbfa0c
RS
3735
3736#ifdef PCC_STATIC_STRUCT_RETURN
9e7b1d0a
RS
3737 {
3738 pcc_struct_value = 1;
9e7b1d0a
RS
3739 }
3740#else /* not PCC_STATIC_STRUCT_RETURN */
3741 {
5c8e61cf
RS
3742 if (!poly_int_tree_p (TYPE_SIZE_UNIT (rettype), &struct_value_size))
3743 struct_value_size = -1;
51bbfa0c 3744
391756ad
EB
3745 /* Even if it is semantically safe to use the target as the return
3746 slot, it may be not sufficiently aligned for the return type. */
3747 if (CALL_EXPR_RETURN_SLOT_OPT (exp)
3748 && target
3749 && MEM_P (target)
ffc8b52f
JJ
3750 /* If rettype is addressable, we may not create a temporary.
3751 If target is properly aligned at runtime and the compiler
3752 just doesn't know about it, it will work fine, otherwise it
3753 will be UB. */
3754 && (TREE_ADDRESSABLE (rettype)
3755 || !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
3756 && targetm.slow_unaligned_access (TYPE_MODE (rettype),
3757 MEM_ALIGN (target)))))
9e7b1d0a
RS
3758 structure_value_addr = XEXP (target, 0);
3759 else
3760 {
9e7b1d0a
RS
3761 /* For variable-sized objects, we must be called with a target
3762 specified. If we were to allocate space on the stack here,
3763 we would have no way of knowing when to free it. */
9474e8ab 3764 rtx d = assign_temp (rettype, 1, 1);
4361b41d 3765 structure_value_addr = XEXP (d, 0);
9e7b1d0a
RS
3766 target = 0;
3767 }
3768 }
3769#endif /* not PCC_STATIC_STRUCT_RETURN */
51bbfa0c
RS
3770 }
3771
099e9712 3772 /* Figure out the amount to which the stack should be aligned. */
099e9712 3773 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
b255a036
JH
3774 if (fndecl)
3775 {
3dafb85c 3776 struct cgraph_rtl_info *i = cgraph_node::rtl_info (fndecl);
17b29c0a
L
3777 /* Without automatic stack alignment, we can't increase preferred
3778 stack boundary. With automatic stack alignment, it is
3779 unnecessary since unless we can guarantee that all callers will
3780 align the outgoing stack properly, callee has to align its
3781 stack anyway. */
3782 if (i
3783 && i->preferred_incoming_stack_boundary
3784 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
b255a036
JH
3785 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
3786 }
099e9712
JH
3787
3788 /* Operand 0 is a pointer-to-function; get the type of the function. */
09e2bf48 3789 funtype = TREE_TYPE (addr);
366de0ce 3790 gcc_assert (POINTER_TYPE_P (funtype));
099e9712
JH
3791 funtype = TREE_TYPE (funtype);
3792
078a18a4
SL
3793 /* Count whether there are actual complex arguments that need to be split
3794 into their real and imaginary parts. Munge the type_arg_types
3795 appropriately here as well. */
42ba5130 3796 if (targetm.calls.split_complex_arg)
ded9bf77 3797 {
078a18a4
SL
3798 call_expr_arg_iterator iter;
3799 tree arg;
3800 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
3801 {
3802 tree type = TREE_TYPE (arg);
3803 if (type && TREE_CODE (type) == COMPLEX_TYPE
3804 && targetm.calls.split_complex_arg (type))
3805 num_complex_actuals++;
3806 }
ded9bf77 3807 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
ded9bf77
AH
3808 }
3809 else
3810 type_arg_types = TYPE_ARG_TYPES (funtype);
3811
099e9712 3812 if (flags & ECF_MAY_BE_ALLOCA)
e3b5732b 3813 cfun->calls_alloca = 1;
099e9712
JH
3814
3815 /* If struct_value_rtx is 0, it means pass the address
078a18a4
SL
3816 as if it were an extra parameter. Put the argument expression
3817 in structure_value_addr_value. */
61f71b34 3818 if (structure_value_addr && struct_value == 0)
099e9712
JH
3819 {
3820 /* If structure_value_addr is a REG other than
3821 virtual_outgoing_args_rtx, we can use always use it. If it
3822 is not a REG, we must always copy it into a register.
3823 If it is virtual_outgoing_args_rtx, we must copy it to another
3824 register in some cases. */
f8cfc6aa 3825 rtx temp = (!REG_P (structure_value_addr)
099e9712
JH
3826 || (ACCUMULATE_OUTGOING_ARGS
3827 && stack_arg_under_construction
3828 && structure_value_addr == virtual_outgoing_args_rtx)
7ae4ad28 3829 ? copy_addr_to_reg (convert_memory_address
57782ad8 3830 (Pmode, structure_value_addr))
099e9712
JH
3831 : structure_value_addr);
3832
078a18a4
SL
3833 structure_value_addr_value =
3834 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
31db0fe0 3835 structure_value_addr_parm = 1;
099e9712
JH
3836 }
3837
3838 /* Count the arguments and set NUM_ACTUALS. */
078a18a4
SL
3839 num_actuals =
3840 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
099e9712
JH
3841
3842 /* Compute number of named args.
3a4d587b
AM
3843 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
3844
3845 if (type_arg_types != 0)
3846 n_named_args
3847 = (list_length (type_arg_types)
3848 /* Count the struct value address, if it is passed as a parm. */
3849 + structure_value_addr_parm);
3850 else
3851 /* If we know nothing, treat all args as named. */
3852 n_named_args = num_actuals;
3853
3854 /* Start updating where the next arg would go.
3855
3856 On some machines (such as the PA) indirect calls have a different
3857 calling convention than normal calls. The fourth argument in
3858 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
3859 or not. */
d5cc9181
JR
3860 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
3861 args_so_far = pack_cumulative_args (&args_so_far_v);
3a4d587b
AM
3862
3863 /* Now possibly adjust the number of named args.
099e9712 3864 Normally, don't include the last named arg if anonymous args follow.
3a179764
KH
3865 We do include the last named arg if
3866 targetm.calls.strict_argument_naming() returns nonzero.
099e9712
JH
3867 (If no anonymous args follow, the result of list_length is actually
3868 one too large. This is harmless.)
3869
4ac8340c 3870 If targetm.calls.pretend_outgoing_varargs_named() returns
3a179764
KH
3871 nonzero, and targetm.calls.strict_argument_naming() returns zero,
3872 this machine will be able to place unnamed args that were passed
3873 in registers into the stack. So treat all args as named. This
3874 allows the insns emitting for a specific argument list to be
3875 independent of the function declaration.
4ac8340c
KH
3876
3877 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
3878 we do not have any reliable way to pass unnamed args in
3879 registers, so we must force them into memory. */
099e9712 3880
3a4d587b 3881 if (type_arg_types != 0
d5cc9181 3882 && targetm.calls.strict_argument_naming (args_so_far))
3a4d587b
AM
3883 ;
3884 else if (type_arg_types != 0
d5cc9181 3885 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
3a4d587b
AM
3886 /* Don't include the last named arg. */
3887 --n_named_args;
099e9712 3888 else
3a4d587b 3889 /* Treat all args as named. */
099e9712
JH
3890 n_named_args = num_actuals;
3891
099e9712 3892 /* Make a vector to hold all the information about each arg. */
765fc0f7 3893 args = XCNEWVEC (struct arg_data, num_actuals);
099e9712 3894
d80d2d2a
KH
3895 /* Build up entries in the ARGS array, compute the size of the
3896 arguments into ARGS_SIZE, etc. */
099e9712 3897 initialize_argument_information (num_actuals, args, &args_size,
078a18a4 3898 n_named_args, exp,
45769134 3899 structure_value_addr_value, fndecl, fntype,
d5cc9181 3900 args_so_far, reg_parm_stack_space,
099e9712 3901 &old_stack_level, &old_pending_adj,
dd292d0a 3902 &must_preallocate, &flags,
6de9cd9a 3903 &try_tail_call, CALL_FROM_THUNK_P (exp));
099e9712
JH
3904
3905 if (args_size.var)
84b8030f 3906 must_preallocate = 1;
099e9712
JH
3907
3908 /* Now make final decision about preallocating stack space. */
3909 must_preallocate = finalize_must_preallocate (must_preallocate,
3910 num_actuals, args,
3911 &args_size);
3912
3913 /* If the structure value address will reference the stack pointer, we
3914 must stabilize it. We don't need to do this if we know that we are
3915 not going to adjust the stack pointer in processing this call. */
3916
3917 if (structure_value_addr
3918 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
3919 || reg_mentioned_p (virtual_outgoing_args_rtx,
3920 structure_value_addr))
3921 && (args_size.var
a20c5714
RS
3922 || (!ACCUMULATE_OUTGOING_ARGS
3923 && maybe_ne (args_size.constant, 0))))
099e9712 3924 structure_value_addr = copy_to_reg (structure_value_addr);
0a1c58a2 3925
7ae4ad28 3926 /* Tail calls can make things harder to debug, and we've traditionally
194c7c45 3927 pushed these optimizations into -O2. Don't try if we're already
fb158467 3928 expanding a call, as that means we're an argument. Don't try if
3fbd86b1 3929 there's cleanups, as we know there's code to follow the call. */
099e9712 3930 if (currently_expanding_call++ != 0
44662f68 3931 || (!flag_optimize_sibling_calls && !CALL_FROM_THUNK_P (exp))
6de9cd9a 3932 || args_size.var
6fb5fa3c 3933 || dbg_cnt (tail_call) == false)
6de9cd9a 3934 try_tail_call = 0;
099e9712 3935
4b8e35f1
JJ
3936 /* Workaround buggy C/C++ wrappers around Fortran routines with
3937 character(len=constant) arguments if the hidden string length arguments
3938 are passed on the stack; if the callers forget to pass those arguments,
3939 attempting to tail call in such routines leads to stack corruption.
3940 Avoid tail calls in functions where at least one such hidden string
3941 length argument is passed (partially or fully) on the stack in the
3942 caller and the callee needs to pass any arguments on the stack.
3943 See PR90329. */
3944 if (try_tail_call && maybe_ne (args_size.constant, 0))
3945 for (tree arg = DECL_ARGUMENTS (current_function_decl);
3946 arg; arg = DECL_CHAIN (arg))
3947 if (DECL_HIDDEN_STRING_LENGTH (arg) && DECL_INCOMING_RTL (arg))
3948 {
3949 subrtx_iterator::array_type array;
3950 FOR_EACH_SUBRTX (iter, array, DECL_INCOMING_RTL (arg), NONCONST)
3951 if (MEM_P (*iter))
3952 {
3953 try_tail_call = 0;
3954 break;
3955 }
3956 }
3957
9a385c2d
DM
3958 /* If the user has marked the function as requiring tail-call
3959 optimization, attempt it. */
3960 if (must_tail_call)
3961 try_tail_call = 1;
3962
099e9712 3963 /* Rest of purposes for tail call optimizations to fail. */
b40d90e6 3964 if (try_tail_call)
9a385c2d
DM
3965 try_tail_call = can_implement_as_sibling_call_p (exp,
3966 structure_value_addr,
3967 funtype,
3968 reg_parm_stack_space,
3969 fndecl,
b40d90e6 3970 flags, addr, args_size);
497eb8c3 3971
c69cd1f5
JJ
3972 /* Check if caller and callee disagree in promotion of function
3973 return value. */
3974 if (try_tail_call)
3975 {
ef4bddc2
RS
3976 machine_mode caller_mode, caller_promoted_mode;
3977 machine_mode callee_mode, callee_promoted_mode;
c69cd1f5
JJ
3978 int caller_unsignedp, callee_unsignedp;
3979 tree caller_res = DECL_RESULT (current_function_decl);
3980
3981 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
cde0f3fd 3982 caller_mode = DECL_MODE (caller_res);
c69cd1f5 3983 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
cde0f3fd
PB
3984 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
3985 caller_promoted_mode
3986 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
3987 &caller_unsignedp,
3988 TREE_TYPE (current_function_decl), 1);
3989 callee_promoted_mode
666e3ceb 3990 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
cde0f3fd 3991 &callee_unsignedp,
666e3ceb 3992 funtype, 1);
c69cd1f5
JJ
3993 if (caller_mode != VOIDmode
3994 && (caller_promoted_mode != callee_promoted_mode
3995 || ((caller_mode != caller_promoted_mode
3996 || callee_mode != callee_promoted_mode)
3997 && (caller_unsignedp != callee_unsignedp
bd4288c0 3998 || partial_subreg_p (caller_mode, callee_mode)))))
9a385c2d
DM
3999 {
4000 try_tail_call = 0;
4001 maybe_complain_about_tail_call (exp,
4002 "caller and callee disagree in"
4003 " promotion of function"
4004 " return value");
4005 }
c69cd1f5
JJ
4006 }
4007
01973e26
L
4008 /* Ensure current function's preferred stack boundary is at least
4009 what we need. Stack alignment may also increase preferred stack
4010 boundary. */
957ed738
L
4011 for (i = 0; i < num_actuals; i++)
4012 if (reg_parm_stack_space > 0
4013 || args[i].reg == 0
4014 || args[i].partial != 0
4015 || args[i].pass_on_stack)
4016 update_stack_alignment_for_call (&args[i].locate);
b5f772ce 4017 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
cb91fab0 4018 crtl->preferred_stack_boundary = preferred_stack_boundary;
01973e26
L
4019 else
4020 preferred_stack_boundary = crtl->preferred_stack_boundary;
c2f8b491 4021
099e9712 4022 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
497eb8c3 4023
3cf3da88
EB
4024 if (flag_callgraph_info)
4025 record_final_call (fndecl, EXPR_LOCATION (exp));
4026
0a1c58a2
JL
4027 /* We want to make two insn chains; one for a sibling call, the other
4028 for a normal call. We will select one of the two chains after
4029 initial RTL generation is complete. */
b820d2b8 4030 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
0a1c58a2
JL
4031 {
4032 int sibcall_failure = 0;
f5143c46 4033 /* We want to emit any pending stack adjustments before the tail
0a1c58a2 4034 recursion "call". That way we know any adjustment after the tail
7ae4ad28 4035 recursion call can be ignored if we indeed use the tail
0a1c58a2 4036 call expansion. */
7f2f0a01 4037 saved_pending_stack_adjust save;
48810515
DM
4038 rtx_insn *insns, *before_call, *after_args;
4039 rtx next_arg_reg;
39842893 4040
0a1c58a2
JL
4041 if (pass == 0)
4042 {
0a1c58a2
JL
4043 /* State variables we need to save and restore between
4044 iterations. */
7f2f0a01 4045 save_pending_stack_adjust (&save);
0a1c58a2 4046 }
f2d33f13
JH
4047 if (pass)
4048 flags &= ~ECF_SIBCALL;
4049 else
4050 flags |= ECF_SIBCALL;
51bbfa0c 4051
0a1c58a2 4052 /* Other state variables that we must reinitialize each time
f2d33f13 4053 through the loop (that are not initialized by the loop itself). */
0a1c58a2
JL
4054 argblock = 0;
4055 call_fusage = 0;
fa76d9e0 4056
f725a3ec 4057 /* Start a new sequence for the normal call case.
51bbfa0c 4058
0a1c58a2
JL
4059 From this point on, if the sibling call fails, we want to set
4060 sibcall_failure instead of continuing the loop. */
4061 start_sequence ();
eecb6f50 4062
0a1c58a2
JL
4063 /* Don't let pending stack adjusts add up to too much.
4064 Also, do all pending adjustments now if there is any chance
4065 this might be a call to alloca or if we are expanding a sibling
9dd9bf80 4066 call sequence.
63579539
DJ
4067 Also do the adjustments before a throwing call, otherwise
4068 exception handling can fail; PR 19225. */
a20c5714
RS
4069 if (maybe_ge (pending_stack_adjust, 32)
4070 || (maybe_ne (pending_stack_adjust, 0)
9dd9bf80 4071 && (flags & ECF_MAY_BE_ALLOCA))
a20c5714 4072 || (maybe_ne (pending_stack_adjust, 0)
63579539 4073 && flag_exceptions && !(flags & ECF_NOTHROW))
0a1c58a2
JL
4074 || pass == 0)
4075 do_pending_stack_adjust ();
51bbfa0c 4076
0a1c58a2 4077 /* Precompute any arguments as needed. */
f8a097cd 4078 if (pass)
84b8030f 4079 precompute_arguments (num_actuals, args);
51bbfa0c 4080
0a1c58a2
JL
4081 /* Now we are about to start emitting insns that can be deleted
4082 if a libcall is deleted. */
84b8030f 4083 if (pass && (flags & ECF_MALLOC))
0a1c58a2 4084 start_sequence ();
51bbfa0c 4085
87a5dc2d
JW
4086 if (pass == 0
4087 && crtl->stack_protect_guard
4088 && targetm.stack_protect_runtime_enabled_p ())
b755446c
RH
4089 stack_protect_epilogue ();
4090
099e9712 4091 adjusted_args_size = args_size;
ce48579b
RH
4092 /* Compute the actual size of the argument block required. The variable
4093 and constant sizes must be combined, the size may have to be rounded,
4094 and there may be a minimum required size. When generating a sibcall
4095 pattern, do not round up, since we'll be re-using whatever space our
4096 caller provided. */
4097 unadjusted_args_size
f725a3ec
KH
4098 = compute_argument_block_size (reg_parm_stack_space,
4099 &adjusted_args_size,
5d059ed9 4100 fndecl, fntype,
ce48579b
RH
4101 (pass == 0 ? 0
4102 : preferred_stack_boundary));
4103
f725a3ec 4104 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
ce48579b 4105
f8a097cd 4106 /* The argument block when performing a sibling call is the
c22cacf3 4107 incoming argument block. */
f8a097cd 4108 if (pass == 0)
c67846f2 4109 {
2e3f842f 4110 argblock = crtl->args.internal_arg_pointer;
76e048a8
KT
4111 if (STACK_GROWS_DOWNWARD)
4112 argblock
4113 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
4114 else
4115 argblock
4116 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
4117
a20c5714
RS
4118 HOST_WIDE_INT map_size = constant_lower_bound (args_size.constant);
4119 stored_args_map = sbitmap_alloc (map_size);
f61e445a 4120 bitmap_clear (stored_args_map);
a20c5714 4121 stored_args_watermark = HOST_WIDE_INT_M1U;
c67846f2 4122 }
ce48579b 4123
0a1c58a2
JL
4124 /* If we have no actual push instructions, or shouldn't use them,
4125 make space for all args right now. */
099e9712 4126 else if (adjusted_args_size.var != 0)
51bbfa0c 4127 {
0a1c58a2
JL
4128 if (old_stack_level == 0)
4129 {
9eac0f2a 4130 emit_stack_save (SAVE_BLOCK, &old_stack_level);
38afb23f 4131 old_stack_pointer_delta = stack_pointer_delta;
0a1c58a2
JL
4132 old_pending_adj = pending_stack_adjust;
4133 pending_stack_adjust = 0;
0a1c58a2
JL
4134 /* stack_arg_under_construction says whether a stack arg is
4135 being constructed at the old stack level. Pushing the stack
4136 gets a clean outgoing argument block. */
4137 old_stack_arg_under_construction = stack_arg_under_construction;
4138 stack_arg_under_construction = 0;
0a1c58a2 4139 }
099e9712 4140 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
a11e0df4 4141 if (flag_stack_usage_info)
d3c12306 4142 current_function_has_unbounded_dynamic_stack_size = 1;
51bbfa0c 4143 }
0a1c58a2
JL
4144 else
4145 {
4146 /* Note that we must go through the motions of allocating an argument
4147 block even if the size is zero because we may be storing args
4148 in the area reserved for register arguments, which may be part of
4149 the stack frame. */
26a258fe 4150
a20c5714 4151 poly_int64 needed = adjusted_args_size.constant;
51bbfa0c 4152
0a1c58a2
JL
4153 /* Store the maximum argument space used. It will be pushed by
4154 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
4155 checking). */
51bbfa0c 4156
a20c5714
RS
4157 crtl->outgoing_args_size = upper_bound (crtl->outgoing_args_size,
4158 needed);
51bbfa0c 4159
0a1c58a2
JL
4160 if (must_preallocate)
4161 {
f73ad30e
JH
4162 if (ACCUMULATE_OUTGOING_ARGS)
4163 {
f8a097cd
JH
4164 /* Since the stack pointer will never be pushed, it is
4165 possible for the evaluation of a parm to clobber
4166 something we have already written to the stack.
4167 Since most function calls on RISC machines do not use
4168 the stack, this is uncommon, but must work correctly.
26a258fe 4169
f73ad30e 4170 Therefore, we save any area of the stack that was already
f8a097cd
JH
4171 written and that we are using. Here we set up to do this
4172 by making a new stack usage map from the old one. The
f725a3ec 4173 actual save will be done by store_one_arg.
26a258fe 4174
f73ad30e
JH
4175 Another approach might be to try to reorder the argument
4176 evaluations to avoid this conflicting stack usage. */
26a258fe 4177
f8a097cd
JH
4178 /* Since we will be writing into the entire argument area,
4179 the map must be allocated for its entire size, not just
4180 the part that is the responsibility of the caller. */
5d059ed9 4181 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
ac294f0b 4182 needed += reg_parm_stack_space;
51bbfa0c 4183
a20c5714 4184 poly_int64 limit = needed;
6dad9361 4185 if (ARGS_GROW_DOWNWARD)
a20c5714
RS
4186 limit += 1;
4187
4188 /* For polynomial sizes, this is the maximum possible
4189 size needed for arguments with a constant size
4190 and offset. */
4191 HOST_WIDE_INT const_limit = constant_lower_bound (limit);
4192 highest_outgoing_arg_in_use
4193 = MAX (initial_highest_arg_in_use, const_limit);
6dad9361 4194
04695783 4195 free (stack_usage_map_buf);
5ed6ace5 4196 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
d9725c41 4197 stack_usage_map = stack_usage_map_buf;
51bbfa0c 4198
f73ad30e 4199 if (initial_highest_arg_in_use)
2e09e75a
JM
4200 memcpy (stack_usage_map, initial_stack_usage_map,
4201 initial_highest_arg_in_use);
2f4aa534 4202
f73ad30e 4203 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
961192e1 4204 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
f73ad30e
JH
4205 (highest_outgoing_arg_in_use
4206 - initial_highest_arg_in_use));
4207 needed = 0;
2f4aa534 4208
f8a097cd
JH
4209 /* The address of the outgoing argument list must not be
4210 copied to a register here, because argblock would be left
4211 pointing to the wrong place after the call to
f725a3ec 4212 allocate_dynamic_stack_space below. */
2f4aa534 4213
f73ad30e 4214 argblock = virtual_outgoing_args_rtx;
f725a3ec 4215 }
f73ad30e 4216 else
26a258fe 4217 {
a20c5714
RS
4218 /* Try to reuse some or all of the pending_stack_adjust
4219 to get this space. */
4220 if (inhibit_defer_pop == 0
4221 && (combine_pending_stack_adjustment_and_call
4222 (&needed,
4223 unadjusted_args_size,
4224 &adjusted_args_size,
4225 preferred_unit_stack_boundary)))
0a1c58a2 4226 {
ce48579b
RH
4227 /* combine_pending_stack_adjustment_and_call computes
4228 an adjustment before the arguments are allocated.
4229 Account for them and see whether or not the stack
4230 needs to go up or down. */
4231 needed = unadjusted_args_size - needed;
4232
a20c5714
RS
4233 /* Checked by
4234 combine_pending_stack_adjustment_and_call. */
4235 gcc_checking_assert (ordered_p (needed, 0));
4236 if (maybe_lt (needed, 0))
f73ad30e 4237 {
ce48579b
RH
4238 /* We're releasing stack space. */
4239 /* ??? We can avoid any adjustment at all if we're
4240 already aligned. FIXME. */
4241 pending_stack_adjust = -needed;
4242 do_pending_stack_adjust ();
f73ad30e
JH
4243 needed = 0;
4244 }
f725a3ec 4245 else
ce48579b
RH
4246 /* We need to allocate space. We'll do that in
4247 push_block below. */
4248 pending_stack_adjust = 0;
0a1c58a2 4249 }
ce48579b
RH
4250
4251 /* Special case this because overhead of `push_block' in
4252 this case is non-trivial. */
a20c5714 4253 if (known_eq (needed, 0))
f73ad30e 4254 argblock = virtual_outgoing_args_rtx;
0a1c58a2 4255 else
d892f288 4256 {
a20c5714
RS
4257 rtx needed_rtx = gen_int_mode (needed, Pmode);
4258 argblock = push_block (needed_rtx, 0, 0);
6dad9361
TS
4259 if (ARGS_GROW_DOWNWARD)
4260 argblock = plus_constant (Pmode, argblock, needed);
d892f288 4261 }
f73ad30e 4262
f8a097cd
JH
4263 /* We only really need to call `copy_to_reg' in the case
4264 where push insns are going to be used to pass ARGBLOCK
4265 to a function call in ARGS. In that case, the stack
4266 pointer changes value from the allocation point to the
4267 call point, and hence the value of
4268 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
4269 as well always do it. */
f73ad30e 4270 argblock = copy_to_reg (argblock);
38afb23f
OH
4271 }
4272 }
4273 }
0a1c58a2 4274
38afb23f
OH
4275 if (ACCUMULATE_OUTGOING_ARGS)
4276 {
4277 /* The save/restore code in store_one_arg handles all
4278 cases except one: a constructor call (including a C
4279 function returning a BLKmode struct) to initialize
4280 an argument. */
4281 if (stack_arg_under_construction)
4282 {
ac294f0b 4283 rtx push_size
a20c5714
RS
4284 = (gen_int_mode
4285 (adjusted_args_size.constant
4286 + (OUTGOING_REG_PARM_STACK_SPACE (!fndecl ? fntype
4287 : TREE_TYPE (fndecl))
4288 ? 0 : reg_parm_stack_space), Pmode));
38afb23f
OH
4289 if (old_stack_level == 0)
4290 {
9eac0f2a 4291 emit_stack_save (SAVE_BLOCK, &old_stack_level);
38afb23f
OH
4292 old_stack_pointer_delta = stack_pointer_delta;
4293 old_pending_adj = pending_stack_adjust;
4294 pending_stack_adjust = 0;
4295 /* stack_arg_under_construction says whether a stack
4296 arg is being constructed at the old stack level.
4297 Pushing the stack gets a clean outgoing argument
4298 block. */
4299 old_stack_arg_under_construction
4300 = stack_arg_under_construction;
4301 stack_arg_under_construction = 0;
4302 /* Make a new map for the new argument list. */
04695783 4303 free (stack_usage_map_buf);
b9eae1a9 4304 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
d9725c41 4305 stack_usage_map = stack_usage_map_buf;
38afb23f 4306 highest_outgoing_arg_in_use = 0;
a20c5714 4307 stack_usage_watermark = HOST_WIDE_INT_M1U;
f73ad30e 4308 }
d3c12306
EB
4309 /* We can pass TRUE as the 4th argument because we just
4310 saved the stack pointer and will restore it right after
4311 the call. */
9e878cf1
EB
4312 allocate_dynamic_stack_space (push_size, 0, BIGGEST_ALIGNMENT,
4313 -1, true);
0a1c58a2 4314 }
bfbf933a 4315
38afb23f
OH
4316 /* If argument evaluation might modify the stack pointer,
4317 copy the address of the argument list to a register. */
4318 for (i = 0; i < num_actuals; i++)
4319 if (args[i].pass_on_stack)
4320 {
4321 argblock = copy_addr_to_reg (argblock);
4322 break;
4323 }
4324 }
d329e058 4325
0a1c58a2 4326 compute_argument_addresses (args, argblock, num_actuals);
bfbf933a 4327
5ba53785
UB
4328 /* Stack is properly aligned, pops can't safely be deferred during
4329 the evaluation of the arguments. */
4330 NO_DEFER_POP;
4331
ac4ee457
UB
4332 /* Precompute all register parameters. It isn't safe to compute
4333 anything once we have started filling any specific hard regs.
4334 TLS symbols sometimes need a call to resolve. Precompute
4335 register parameters before any stack pointer manipulation
4336 to avoid unaligned stack in the called function. */
4337 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
4338
5ba53785
UB
4339 OK_DEFER_POP;
4340
3d9684ae
JG
4341 /* Perform stack alignment before the first push (the last arg). */
4342 if (argblock == 0
a20c5714
RS
4343 && maybe_gt (adjusted_args_size.constant, reg_parm_stack_space)
4344 && maybe_ne (adjusted_args_size.constant, unadjusted_args_size))
4e217aed 4345 {
0a1c58a2
JL
4346 /* When the stack adjustment is pending, we get better code
4347 by combining the adjustments. */
a20c5714
RS
4348 if (maybe_ne (pending_stack_adjust, 0)
4349 && ! inhibit_defer_pop
4350 && (combine_pending_stack_adjustment_and_call
4351 (&pending_stack_adjust,
4352 unadjusted_args_size,
4353 &adjusted_args_size,
4354 preferred_unit_stack_boundary)))
4355 do_pending_stack_adjust ();
0a1c58a2 4356 else if (argblock == 0)
a20c5714
RS
4357 anti_adjust_stack (gen_int_mode (adjusted_args_size.constant
4358 - unadjusted_args_size,
4359 Pmode));
0a1c58a2 4360 }
ebcd0b57
JH
4361 /* Now that the stack is properly aligned, pops can't safely
4362 be deferred during the evaluation of the arguments. */
4363 NO_DEFER_POP;
51bbfa0c 4364
d3c12306
EB
4365 /* Record the maximum pushed stack space size. We need to delay
4366 doing it this far to take into account the optimization done
4367 by combine_pending_stack_adjustment_and_call. */
a11e0df4 4368 if (flag_stack_usage_info
d3c12306
EB
4369 && !ACCUMULATE_OUTGOING_ARGS
4370 && pass
4371 && adjusted_args_size.var == 0)
4372 {
a20c5714
RS
4373 poly_int64 pushed = (adjusted_args_size.constant
4374 + pending_stack_adjust);
4375 current_function_pushed_stack_size
4376 = upper_bound (current_function_pushed_stack_size, pushed);
d3c12306
EB
4377 }
4378
09e2bf48 4379 funexp = rtx_for_function_call (fndecl, addr);
51bbfa0c 4380
5039610b
SL
4381 if (CALL_EXPR_STATIC_CHAIN (exp))
4382 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
6de9cd9a
DN
4383 else
4384 static_chain_value = 0;
4385
f73ad30e 4386#ifdef REG_PARM_STACK_SPACE
0a1c58a2
JL
4387 /* Save the fixed argument area if it's part of the caller's frame and
4388 is clobbered by argument setup for this call. */
f8a097cd 4389 if (ACCUMULATE_OUTGOING_ARGS && pass)
f73ad30e
JH
4390 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
4391 &low_to_save, &high_to_save);
b94301c2 4392#endif
51bbfa0c 4393
0a1c58a2
JL
4394 /* Now store (and compute if necessary) all non-register parms.
4395 These come before register parms, since they can require block-moves,
4396 which could clobber the registers used for register parms.
4397 Parms which have partial registers are not stored here,
4398 but we do preallocate space here if they want that. */
51bbfa0c 4399
0a1c58a2 4400 for (i = 0; i < num_actuals; i++)
0196c95e 4401 {
31db0fe0 4402 if (args[i].reg == 0 || args[i].pass_on_stack)
0196c95e 4403 {
48810515 4404 rtx_insn *before_arg = get_last_insn ();
0196c95e 4405
ddc923b5
MP
4406 /* We don't allow passing huge (> 2^30 B) arguments
4407 by value. It would cause an overflow later on. */
a20c5714 4408 if (constant_lower_bound (adjusted_args_size.constant)
ddc923b5
MP
4409 >= (1 << (HOST_BITS_PER_INT - 2)))
4410 {
4411 sorry ("passing too large argument on stack");
4412 continue;
4413 }
4414
0196c95e
JJ
4415 if (store_one_arg (&args[i], argblock, flags,
4416 adjusted_args_size.var != 0,
4417 reg_parm_stack_space)
4418 || (pass == 0
4419 && check_sibcall_argument_overlap (before_arg,
4420 &args[i], 1)))
4421 sibcall_failure = 1;
4422 }
4423
2b1c5433 4424 if (args[i].stack)
7d810276
JJ
4425 call_fusage
4426 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
4427 gen_rtx_USE (VOIDmode, args[i].stack),
4428 call_fusage);
0196c95e 4429 }
0a1c58a2
JL
4430
4431 /* If we have a parm that is passed in registers but not in memory
4432 and whose alignment does not permit a direct copy into registers,
4433 make a group of pseudos that correspond to each register that we
4434 will later fill. */
4435 if (STRICT_ALIGNMENT)
4436 store_unaligned_arguments_into_pseudos (args, num_actuals);
4437
4438 /* Now store any partially-in-registers parm.
4439 This is the last place a block-move can happen. */
4440 if (reg_parm_seen)
4441 for (i = 0; i < num_actuals; i++)
4442 if (args[i].partial != 0 && ! args[i].pass_on_stack)
c67846f2 4443 {
48810515 4444 rtx_insn *before_arg = get_last_insn ();
c67846f2 4445
99206968
KT
4446 /* On targets with weird calling conventions (e.g. PA) it's
4447 hard to ensure that all cases of argument overlap between
4448 stack and registers work. Play it safe and bail out. */
4449 if (ARGS_GROW_DOWNWARD && !STACK_GROWS_DOWNWARD)
4450 {
4451 sibcall_failure = 1;
4452 break;
4453 }
4454
4c6b3b2a
JJ
4455 if (store_one_arg (&args[i], argblock, flags,
4456 adjusted_args_size.var != 0,
4457 reg_parm_stack_space)
4458 || (pass == 0
4459 && check_sibcall_argument_overlap (before_arg,
0cdca92b 4460 &args[i], 1)))
c67846f2
JJ
4461 sibcall_failure = 1;
4462 }
51bbfa0c 4463
2f21e1ba
BS
4464 bool any_regs = false;
4465 for (i = 0; i < num_actuals; i++)
4466 if (args[i].reg != NULL_RTX)
4467 {
4468 any_regs = true;
4469 targetm.calls.call_args (args[i].reg, funtype);
4470 }
4471 if (!any_regs)
4472 targetm.calls.call_args (pc_rtx, funtype);
4473
4474 /* Figure out the register where the value, if any, will come back. */
4475 valreg = 0;
2f21e1ba
BS
4476 if (TYPE_MODE (rettype) != VOIDmode
4477 && ! structure_value_addr)
4478 {
4479 if (pcc_struct_value)
31db0fe0
ML
4480 valreg = hard_function_value (build_pointer_type (rettype),
4481 fndecl, NULL, (pass == 0));
2f21e1ba 4482 else
31db0fe0
ML
4483 valreg = hard_function_value (rettype, fndecl, fntype,
4484 (pass == 0));
2f21e1ba
BS
4485
4486 /* If VALREG is a PARALLEL whose first member has a zero
4487 offset, use that. This is for targets such as m68k that
4488 return the same value in multiple places. */
4489 if (GET_CODE (valreg) == PARALLEL)
4490 {
4491 rtx elem = XVECEXP (valreg, 0, 0);
4492 rtx where = XEXP (elem, 0);
4493 rtx offset = XEXP (elem, 1);
4494 if (offset == const0_rtx
4495 && GET_MODE (where) == GET_MODE (valreg))
4496 valreg = where;
4497 }
4498 }
4499
0a1c58a2
JL
4500 /* If register arguments require space on the stack and stack space
4501 was not preallocated, allocate stack space here for arguments
4502 passed in registers. */
5d059ed9 4503 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
81464b2c 4504 && !ACCUMULATE_OUTGOING_ARGS
f725a3ec 4505 && must_preallocate == 0 && reg_parm_stack_space > 0)
0a1c58a2 4506 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
756e0e12 4507
0a1c58a2
JL
4508 /* Pass the function the address in which to return a
4509 structure value. */
4510 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
4511 {
7ae4ad28 4512 structure_value_addr
5ae6cd0d 4513 = convert_memory_address (Pmode, structure_value_addr);
61f71b34 4514 emit_move_insn (struct_value,
0a1c58a2
JL
4515 force_reg (Pmode,
4516 force_operand (structure_value_addr,
4517 NULL_RTX)));
4518
f8cfc6aa 4519 if (REG_P (struct_value))
61f71b34 4520 use_reg (&call_fusage, struct_value);
0a1c58a2 4521 }
c2939b57 4522
05e6ee93 4523 after_args = get_last_insn ();
78bcf3dc
EB
4524 funexp = prepare_call_address (fndecl ? fndecl : fntype, funexp,
4525 static_chain_value, &call_fusage,
4526 reg_parm_seen, flags);
6b8805cf 4527
0cdca92b
DJ
4528 load_register_parameters (args, num_actuals, &call_fusage, flags,
4529 pass == 0, &sibcall_failure);
f725a3ec 4530
0a1c58a2
JL
4531 /* Save a pointer to the last insn before the call, so that we can
4532 later safely search backwards to find the CALL_INSN. */
4533 before_call = get_last_insn ();
51bbfa0c 4534
7d167afd
JJ
4535 /* Set up next argument register. For sibling calls on machines
4536 with register windows this should be the incoming register. */
7d167afd 4537 if (pass == 0)
6783fdb7
RS
4538 next_arg_reg = targetm.calls.function_incoming_arg
4539 (args_so_far, function_arg_info::end_marker ());
7d167afd 4540 else
6783fdb7
RS
4541 next_arg_reg = targetm.calls.function_arg
4542 (args_so_far, function_arg_info::end_marker ());
7d167afd 4543
e384e6b5
BS
4544 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
4545 {
4546 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
3d9684ae 4547 arg_nr = num_actuals - arg_nr - 1;
b3681f13
TV
4548 if (arg_nr >= 0
4549 && arg_nr < num_actuals
4550 && args[arg_nr].reg
e384e6b5
BS
4551 && valreg
4552 && REG_P (valreg)
4553 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
4554 call_fusage
4555 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
f7df4a84 4556 gen_rtx_SET (valreg, args[arg_nr].reg),
e384e6b5
BS
4557 call_fusage);
4558 }
0a1c58a2
JL
4559 /* All arguments and registers used for the call must be set up by
4560 now! */
4561
ce48579b 4562 /* Stack must be properly aligned now. */
366de0ce 4563 gcc_assert (!pass
a20c5714
RS
4564 || multiple_p (stack_pointer_delta,
4565 preferred_unit_stack_boundary));
ebcd0b57 4566
0a1c58a2 4567 /* Generate the actual call instruction. */
6de9cd9a 4568 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
099e9712 4569 adjusted_args_size.constant, struct_value_size,
7d167afd 4570 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
d5cc9181 4571 flags, args_so_far);
0a1c58a2 4572
1e288103 4573 if (flag_ipa_ra)
4f660b15 4574 {
48810515
DM
4575 rtx_call_insn *last;
4576 rtx datum = NULL_RTX;
4f660b15
RO
4577 if (fndecl != NULL_TREE)
4578 {
4579 datum = XEXP (DECL_RTL (fndecl), 0);
4580 gcc_assert (datum != NULL_RTX
4581 && GET_CODE (datum) == SYMBOL_REF);
4582 }
4583 last = last_call_insn ();
4584 add_reg_note (last, REG_CALL_DECL, datum);
4585 }
4586
05e6ee93
MM
4587 /* If the call setup or the call itself overlaps with anything
4588 of the argument setup we probably clobbered our call address.
4589 In that case we can't do sibcalls. */
4590 if (pass == 0
4591 && check_sibcall_argument_overlap (after_args, 0, 0))
4592 sibcall_failure = 1;
4593
bef5d8b6
RS
4594 /* If a non-BLKmode value is returned at the most significant end
4595 of a register, shift the register right by the appropriate amount
4596 and update VALREG accordingly. BLKmode values are handled by the
4597 group load/store machinery below. */
4598 if (!structure_value_addr
4599 && !pcc_struct_value
66de4d7c 4600 && TYPE_MODE (rettype) != VOIDmode
28ed065e 4601 && TYPE_MODE (rettype) != BLKmode
66de4d7c 4602 && REG_P (valreg)
28ed065e 4603 && targetm.calls.return_in_msb (rettype))
bef5d8b6 4604 {
28ed065e 4605 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
bef5d8b6 4606 sibcall_failure = 1;
28ed065e 4607 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
bef5d8b6
RS
4608 }
4609
84b8030f 4610 if (pass && (flags & ECF_MALLOC))
0a1c58a2
JL
4611 {
4612 rtx temp = gen_reg_rtx (GET_MODE (valreg));
48810515 4613 rtx_insn *last, *insns;
0a1c58a2 4614
f725a3ec 4615 /* The return value from a malloc-like function is a pointer. */
28ed065e 4616 if (TREE_CODE (rettype) == POINTER_TYPE)
d154bfa2 4617 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
0a1c58a2
JL
4618
4619 emit_move_insn (temp, valreg);
4620
67914693 4621 /* The return value from a malloc-like function cannot alias
0a1c58a2
JL
4622 anything else. */
4623 last = get_last_insn ();
65c5f2a6 4624 add_reg_note (last, REG_NOALIAS, temp);
0a1c58a2
JL
4625
4626 /* Write out the sequence. */
4627 insns = get_insns ();
4628 end_sequence ();
2f937369 4629 emit_insn (insns);
0a1c58a2
JL
4630 valreg = temp;
4631 }
51bbfa0c 4632
6fb5fa3c
DB
4633 /* For calls to `setjmp', etc., inform
4634 function.c:setjmp_warnings that it should complain if
4635 nonvolatile values are live. For functions that cannot
4636 return, inform flow that control does not fall through. */
51bbfa0c 4637
6e14af16 4638 if ((flags & ECF_NORETURN) || pass == 0)
c2939b57 4639 {
570a98eb 4640 /* The barrier must be emitted
0a1c58a2
JL
4641 immediately after the CALL_INSN. Some ports emit more
4642 than just a CALL_INSN above, so we must search for it here. */
51bbfa0c 4643
48810515 4644 rtx_insn *last = get_last_insn ();
4b4bf941 4645 while (!CALL_P (last))
0a1c58a2
JL
4646 {
4647 last = PREV_INSN (last);
4648 /* There was no CALL_INSN? */
366de0ce 4649 gcc_assert (last != before_call);
0a1c58a2 4650 }
51bbfa0c 4651
570a98eb 4652 emit_barrier_after (last);
8af61113 4653
f451eeef
JS
4654 /* Stack adjustments after a noreturn call are dead code.
4655 However when NO_DEFER_POP is in effect, we must preserve
4656 stack_pointer_delta. */
4657 if (inhibit_defer_pop == 0)
4658 {
4659 stack_pointer_delta = old_stack_allocated;
4660 pending_stack_adjust = 0;
4661 }
0a1c58a2 4662 }
51bbfa0c 4663
0a1c58a2 4664 /* If value type not void, return an rtx for the value. */
51bbfa0c 4665
28ed065e 4666 if (TYPE_MODE (rettype) == VOIDmode
0a1c58a2 4667 || ignore)
b5cd4ed4 4668 target = const0_rtx;
0a1c58a2
JL
4669 else if (structure_value_addr)
4670 {
3c0cb5de 4671 if (target == 0 || !MEM_P (target))
0a1c58a2 4672 {
3bdf5ad1 4673 target
28ed065e
MM
4674 = gen_rtx_MEM (TYPE_MODE (rettype),
4675 memory_address (TYPE_MODE (rettype),
3bdf5ad1 4676 structure_value_addr));
28ed065e 4677 set_mem_attributes (target, rettype, 1);
0a1c58a2
JL
4678 }
4679 }
4680 else if (pcc_struct_value)
cacbd532 4681 {
0a1c58a2
JL
4682 /* This is the special C++ case where we need to
4683 know what the true target was. We take care to
4684 never use this value more than once in one expression. */
28ed065e 4685 target = gen_rtx_MEM (TYPE_MODE (rettype),
0a1c58a2 4686 copy_to_reg (valreg));
28ed065e 4687 set_mem_attributes (target, rettype, 1);
cacbd532 4688 }
0a1c58a2
JL
4689 /* Handle calls that return values in multiple non-contiguous locations.
4690 The Irix 6 ABI has examples of this. */
4691 else if (GET_CODE (valreg) == PARALLEL)
4692 {
6de9cd9a 4693 if (target == 0)
5ef0b50d 4694 target = emit_group_move_into_temps (valreg);
1d1b7dc4
RS
4695 else if (rtx_equal_p (target, valreg))
4696 ;
4697 else if (GET_CODE (target) == PARALLEL)
4698 /* Handle the result of a emit_group_move_into_temps
4699 call in the previous pass. */
4700 emit_group_move (target, valreg);
4701 else
28ed065e
MM
4702 emit_group_store (target, valreg, rettype,
4703 int_size_in_bytes (rettype));
0a1c58a2
JL
4704 }
4705 else if (target
28ed065e 4706 && GET_MODE (target) == TYPE_MODE (rettype)
0a1c58a2
JL
4707 && GET_MODE (target) == GET_MODE (valreg))
4708 {
51caaefe
EB
4709 bool may_overlap = false;
4710
f2d18690
KK
4711 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
4712 reg to a plain register. */
3fb30019
RS
4713 if (!REG_P (target) || HARD_REGISTER_P (target))
4714 valreg = avoid_likely_spilled_reg (valreg);
f2d18690 4715
51caaefe
EB
4716 /* If TARGET is a MEM in the argument area, and we have
4717 saved part of the argument area, then we can't store
4718 directly into TARGET as it may get overwritten when we
4719 restore the argument save area below. Don't work too
4720 hard though and simply force TARGET to a register if it
4721 is a MEM; the optimizer is quite likely to sort it out. */
4722 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
4723 for (i = 0; i < num_actuals; i++)
4724 if (args[i].save_area)
4725 {
4726 may_overlap = true;
4727 break;
4728 }
0219237c 4729
51caaefe
EB
4730 if (may_overlap)
4731 target = copy_to_reg (valreg);
4732 else
4733 {
4734 /* TARGET and VALREG cannot be equal at this point
4735 because the latter would not have
4736 REG_FUNCTION_VALUE_P true, while the former would if
4737 it were referring to the same register.
4738
4739 If they refer to the same register, this move will be
4740 a no-op, except when function inlining is being
4741 done. */
4742 emit_move_insn (target, valreg);
4743
4744 /* If we are setting a MEM, this code must be executed.
4745 Since it is emitted after the call insn, sibcall
4746 optimization cannot be performed in that case. */
4747 if (MEM_P (target))
4748 sibcall_failure = 1;
4749 }
0a1c58a2 4750 }
0a1c58a2 4751 else
3fb30019 4752 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
51bbfa0c 4753
cde0f3fd
PB
4754 /* If we promoted this return value, make the proper SUBREG.
4755 TARGET might be const0_rtx here, so be careful. */
4756 if (REG_P (target)
28ed065e
MM
4757 && TYPE_MODE (rettype) != BLKmode
4758 && GET_MODE (target) != TYPE_MODE (rettype))
61f71b34 4759 {
28ed065e 4760 tree type = rettype;
cde0f3fd 4761 int unsignedp = TYPE_UNSIGNED (type);
ef4bddc2 4762 machine_mode pmode;
cde0f3fd
PB
4763
4764 /* Ensure we promote as expected, and get the new unsignedness. */
4765 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
4766 funtype, 1);
4767 gcc_assert (GET_MODE (target) == pmode);
4768
91914e56
RS
4769 poly_uint64 offset = subreg_lowpart_offset (TYPE_MODE (type),
4770 GET_MODE (target));
cde0f3fd
PB
4771 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
4772 SUBREG_PROMOTED_VAR_P (target) = 1;
362d42dc 4773 SUBREG_PROMOTED_SET (target, unsignedp);
61f71b34 4774 }
84b55618 4775
0a1c58a2
JL
4776 /* If size of args is variable or this was a constructor call for a stack
4777 argument, restore saved stack-pointer value. */
51bbfa0c 4778
9dd9bf80 4779 if (old_stack_level)
0a1c58a2 4780 {
48810515 4781 rtx_insn *prev = get_last_insn ();
9a08d230 4782
9eac0f2a 4783 emit_stack_restore (SAVE_BLOCK, old_stack_level);
38afb23f 4784 stack_pointer_delta = old_stack_pointer_delta;
9a08d230 4785
faf7a23d 4786 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
9a08d230 4787
0a1c58a2 4788 pending_stack_adjust = old_pending_adj;
d25cee4d 4789 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
0a1c58a2
JL
4790 stack_arg_under_construction = old_stack_arg_under_construction;
4791 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4792 stack_usage_map = initial_stack_usage_map;
a20c5714 4793 stack_usage_watermark = initial_stack_usage_watermark;
0a1c58a2
JL
4794 sibcall_failure = 1;
4795 }
f8a097cd 4796 else if (ACCUMULATE_OUTGOING_ARGS && pass)
0a1c58a2 4797 {
51bbfa0c 4798#ifdef REG_PARM_STACK_SPACE
0a1c58a2 4799 if (save_area)
b820d2b8
AM
4800 restore_fixed_argument_area (save_area, argblock,
4801 high_to_save, low_to_save);
b94301c2 4802#endif
51bbfa0c 4803
0a1c58a2
JL
4804 /* If we saved any argument areas, restore them. */
4805 for (i = 0; i < num_actuals; i++)
4806 if (args[i].save_area)
4807 {
ef4bddc2 4808 machine_mode save_mode = GET_MODE (args[i].save_area);
0a1c58a2
JL
4809 rtx stack_area
4810 = gen_rtx_MEM (save_mode,
4811 memory_address (save_mode,
4812 XEXP (args[i].stack_slot, 0)));
4813
4814 if (save_mode != BLKmode)
4815 emit_move_insn (stack_area, args[i].save_area);
4816 else
44bb111a 4817 emit_block_move (stack_area, args[i].save_area,
a20c5714
RS
4818 (gen_int_mode
4819 (args[i].locate.size.constant, Pmode)),
44bb111a 4820 BLOCK_OP_CALL_PARM);
0a1c58a2 4821 }
51bbfa0c 4822
0a1c58a2
JL
4823 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4824 stack_usage_map = initial_stack_usage_map;
a20c5714 4825 stack_usage_watermark = initial_stack_usage_watermark;
0a1c58a2 4826 }
51bbfa0c 4827
d33606c3
EB
4828 /* If this was alloca, record the new stack level. */
4829 if (flags & ECF_MAY_BE_ALLOCA)
4830 record_new_stack_level ();
51bbfa0c 4831
0a1c58a2
JL
4832 /* Free up storage we no longer need. */
4833 for (i = 0; i < num_actuals; ++i)
04695783 4834 free (args[i].aligned_regs);
0a1c58a2 4835
2f21e1ba
BS
4836 targetm.calls.end_call_args ();
4837
0a1c58a2
JL
4838 insns = get_insns ();
4839 end_sequence ();
4840
4841 if (pass == 0)
4842 {
4843 tail_call_insns = insns;
4844
0a1c58a2
JL
4845 /* Restore the pending stack adjustment now that we have
4846 finished generating the sibling call sequence. */
1503a7ec 4847
7f2f0a01 4848 restore_pending_stack_adjust (&save);
099e9712
JH
4849
4850 /* Prepare arg structure for next iteration. */
f725a3ec 4851 for (i = 0; i < num_actuals; i++)
099e9712
JH
4852 {
4853 args[i].value = 0;
4854 args[i].aligned_regs = 0;
4855 args[i].stack = 0;
4856 }
c67846f2
JJ
4857
4858 sbitmap_free (stored_args_map);
48810515 4859 internal_arg_pointer_exp_state.scan_start = NULL;
9771b263 4860 internal_arg_pointer_exp_state.cache.release ();
0a1c58a2
JL
4861 }
4862 else
38afb23f
OH
4863 {
4864 normal_call_insns = insns;
4865
4866 /* Verify that we've deallocated all the stack we used. */
6e14af16 4867 gcc_assert ((flags & ECF_NORETURN)
a20c5714
RS
4868 || known_eq (old_stack_allocated,
4869 stack_pointer_delta
4870 - pending_stack_adjust));
38afb23f 4871 }
fadb729c
JJ
4872
4873 /* If something prevents making this a sibling call,
4874 zero out the sequence. */
4875 if (sibcall_failure)
48810515 4876 tail_call_insns = NULL;
6de9cd9a
DN
4877 else
4878 break;
0a1c58a2
JL
4879 }
4880
1ea7e6ad 4881 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
6de9cd9a
DN
4882 arguments too, as argument area is now clobbered by the call. */
4883 if (tail_call_insns)
0a1c58a2 4884 {
6de9cd9a 4885 emit_insn (tail_call_insns);
e3b5732b 4886 crtl->tail_call_emit = true;
0a1c58a2
JL
4887 }
4888 else
9a385c2d
DM
4889 {
4890 emit_insn (normal_call_insns);
4891 if (try_tail_call)
4892 /* Ideally we'd emit a message for all of the ways that it could
4893 have failed. */
4894 maybe_complain_about_tail_call (exp, "tail call production failed");
4895 }
51bbfa0c 4896
0a1c58a2 4897 currently_expanding_call--;
8e6a59fe 4898
04695783 4899 free (stack_usage_map_buf);
765fc0f7 4900 free (args);
51bbfa0c
RS
4901 return target;
4902}
ded9bf77 4903
6de9cd9a
DN
4904/* A sibling call sequence invalidates any REG_EQUIV notes made for
4905 this function's incoming arguments.
4906
4907 At the start of RTL generation we know the only REG_EQUIV notes
29d51cdb
SB
4908 in the rtl chain are those for incoming arguments, so we can look
4909 for REG_EQUIV notes between the start of the function and the
4910 NOTE_INSN_FUNCTION_BEG.
6de9cd9a
DN
4911
4912 This is (slight) overkill. We could keep track of the highest
4913 argument we clobber and be more selective in removing notes, but it
4914 does not seem to be worth the effort. */
29d51cdb 4915
6de9cd9a
DN
4916void
4917fixup_tail_calls (void)
4918{
48810515 4919 rtx_insn *insn;
29d51cdb
SB
4920
4921 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4922 {
a31830a7
SB
4923 rtx note;
4924
29d51cdb
SB
4925 /* There are never REG_EQUIV notes for the incoming arguments
4926 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
4927 if (NOTE_P (insn)
a38e7aa5 4928 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
29d51cdb
SB
4929 break;
4930
a31830a7
SB
4931 note = find_reg_note (insn, REG_EQUIV, 0);
4932 if (note)
4933 remove_note (insn, note);
4934 note = find_reg_note (insn, REG_EQUIV, 0);
4935 gcc_assert (!note);
29d51cdb 4936 }
6de9cd9a
DN
4937}
4938
ded9bf77
AH
4939/* Traverse a list of TYPES and expand all complex types into their
4940 components. */
2f2b4a02 4941static tree
ded9bf77
AH
4942split_complex_types (tree types)
4943{
4944 tree p;
4945
42ba5130
RH
4946 /* Before allocating memory, check for the common case of no complex. */
4947 for (p = types; p; p = TREE_CHAIN (p))
4948 {
4949 tree type = TREE_VALUE (p);
4950 if (TREE_CODE (type) == COMPLEX_TYPE
4951 && targetm.calls.split_complex_arg (type))
c22cacf3 4952 goto found;
42ba5130
RH
4953 }
4954 return types;
4955
4956 found:
ded9bf77
AH
4957 types = copy_list (types);
4958
4959 for (p = types; p; p = TREE_CHAIN (p))
4960 {
4961 tree complex_type = TREE_VALUE (p);
4962
42ba5130
RH
4963 if (TREE_CODE (complex_type) == COMPLEX_TYPE
4964 && targetm.calls.split_complex_arg (complex_type))
ded9bf77
AH
4965 {
4966 tree next, imag;
4967
4968 /* Rewrite complex type with component type. */
4969 TREE_VALUE (p) = TREE_TYPE (complex_type);
4970 next = TREE_CHAIN (p);
4971
4972 /* Add another component type for the imaginary part. */
4973 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
4974 TREE_CHAIN (p) = imag;
4975 TREE_CHAIN (imag) = next;
4976
4977 /* Skip the newly created node. */
4978 p = TREE_CHAIN (p);
4979 }
4980 }
4981
4982 return types;
4983}
51bbfa0c 4984\f
db69559b
RS
4985/* Output a library call to function ORGFUN (a SYMBOL_REF rtx)
4986 for a value of mode OUTMODE,
4987 with NARGS different arguments, passed as ARGS.
4988 Store the return value if RETVAL is nonzero: store it in VALUE if
4989 VALUE is nonnull, otherwise pick a convenient location. In either
4990 case return the location of the stored value.
8ac61af7 4991
db69559b
RS
4992 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4993 `const' calls, LCT_PURE for `pure' calls, or another LCT_ value for
4994 other types of library calls. */
4995
4996rtx
d329e058
AJ
4997emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
4998 enum libcall_type fn_type,
db69559b 4999 machine_mode outmode, int nargs, rtx_mode_t *args)
43bc5f13 5000{
3c0fca12
RH
5001 /* Total size in bytes of all the stack-parms scanned so far. */
5002 struct args_size args_size;
5003 /* Size of arguments before any adjustments (such as rounding). */
5004 struct args_size original_args_size;
b3694847 5005 int argnum;
3c0fca12 5006 rtx fun;
81464b2c
KT
5007 /* Todo, choose the correct decl type of orgfun. Sadly this information
5008 isn't present here, so we default to native calling abi here. */
033df0b9 5009 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
5d059ed9 5010 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3c0fca12 5011 int count;
3c0fca12 5012 rtx argblock = 0;
d5cc9181
JR
5013 CUMULATIVE_ARGS args_so_far_v;
5014 cumulative_args_t args_so_far;
f725a3ec
KH
5015 struct arg
5016 {
5017 rtx value;
ef4bddc2 5018 machine_mode mode;
f725a3ec
KH
5019 rtx reg;
5020 int partial;
e7949876 5021 struct locate_and_pad_arg_data locate;
f725a3ec
KH
5022 rtx save_area;
5023 };
3c0fca12
RH
5024 struct arg *argvec;
5025 int old_inhibit_defer_pop = inhibit_defer_pop;
5026 rtx call_fusage = 0;
5027 rtx mem_value = 0;
5591ee6f 5028 rtx valreg;
3c0fca12 5029 int pcc_struct_value = 0;
cf098191 5030 poly_int64 struct_value_size = 0;
52a11cbf 5031 int flags;
3c0fca12 5032 int reg_parm_stack_space = 0;
a20c5714 5033 poly_int64 needed;
48810515 5034 rtx_insn *before_call;
0ed4bf92 5035 bool have_push_fusage;
b0c48229 5036 tree tfom; /* type_for_mode (outmode, 0) */
3c0fca12 5037
f73ad30e 5038#ifdef REG_PARM_STACK_SPACE
3c0fca12
RH
5039 /* Define the boundary of the register parm stack space that needs to be
5040 save, if any. */
726a989a 5041 int low_to_save = 0, high_to_save = 0;
f725a3ec 5042 rtx save_area = 0; /* Place that it is saved. */
3c0fca12
RH
5043#endif
5044
3c0fca12 5045 /* Size of the stack reserved for parameter registers. */
a20c5714 5046 unsigned int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3c0fca12 5047 char *initial_stack_usage_map = stack_usage_map;
a20c5714 5048 unsigned HOST_WIDE_INT initial_stack_usage_watermark = stack_usage_watermark;
d9725c41 5049 char *stack_usage_map_buf = NULL;
3c0fca12 5050
61f71b34
DD
5051 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
5052
3c0fca12 5053#ifdef REG_PARM_STACK_SPACE
3c0fca12 5054 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3c0fca12
RH
5055#endif
5056
0529235d 5057 /* By default, library functions cannot throw. */
52a11cbf
RH
5058 flags = ECF_NOTHROW;
5059
9555a122
RH
5060 switch (fn_type)
5061 {
5062 case LCT_NORMAL:
53d4257f 5063 break;
9555a122 5064 case LCT_CONST:
53d4257f
JH
5065 flags |= ECF_CONST;
5066 break;
9555a122 5067 case LCT_PURE:
53d4257f 5068 flags |= ECF_PURE;
9555a122 5069 break;
9555a122
RH
5070 case LCT_NORETURN:
5071 flags |= ECF_NORETURN;
5072 break;
5073 case LCT_THROW:
0529235d 5074 flags &= ~ECF_NOTHROW;
9555a122 5075 break;
9defc9b7
RH
5076 case LCT_RETURNS_TWICE:
5077 flags = ECF_RETURNS_TWICE;
5078 break;
9555a122 5079 }
3c0fca12
RH
5080 fun = orgfun;
5081
3c0fca12
RH
5082 /* Ensure current function's preferred stack boundary is at least
5083 what we need. */
cb91fab0
JH
5084 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
5085 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3c0fca12
RH
5086
5087 /* If this kind of value comes back in memory,
5088 decide where in memory it should come back. */
b0c48229 5089 if (outmode != VOIDmode)
3c0fca12 5090 {
ae2bcd98 5091 tfom = lang_hooks.types.type_for_mode (outmode, 0);
61f71b34 5092 if (aggregate_value_p (tfom, 0))
b0c48229 5093 {
3c0fca12 5094#ifdef PCC_STATIC_STRUCT_RETURN
b0c48229 5095 rtx pointer_reg
1d636cc6 5096 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
b0c48229
NB
5097 mem_value = gen_rtx_MEM (outmode, pointer_reg);
5098 pcc_struct_value = 1;
5099 if (value == 0)
5100 value = gen_reg_rtx (outmode);
3c0fca12 5101#else /* not PCC_STATIC_STRUCT_RETURN */
b0c48229 5102 struct_value_size = GET_MODE_SIZE (outmode);
3c0cb5de 5103 if (value != 0 && MEM_P (value))
b0c48229
NB
5104 mem_value = value;
5105 else
9474e8ab 5106 mem_value = assign_temp (tfom, 1, 1);
3c0fca12 5107#endif
b0c48229 5108 /* This call returns a big structure. */
84b8030f 5109 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
b0c48229 5110 }
3c0fca12 5111 }
b0c48229
NB
5112 else
5113 tfom = void_type_node;
3c0fca12
RH
5114
5115 /* ??? Unfinished: must pass the memory address as an argument. */
5116
5117 /* Copy all the libcall-arguments out of the varargs data
5118 and into a vector ARGVEC.
5119
5120 Compute how to pass each argument. We only support a very small subset
5121 of the full argument passing conventions to limit complexity here since
5122 library functions shouldn't have many args. */
5123
f883e0a7 5124 argvec = XALLOCAVEC (struct arg, nargs + 1);
703ad42b 5125 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
3c0fca12 5126
97fc4caf 5127#ifdef INIT_CUMULATIVE_LIBCALL_ARGS
d5cc9181 5128 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
97fc4caf 5129#else
d5cc9181 5130 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
97fc4caf 5131#endif
d5cc9181 5132 args_so_far = pack_cumulative_args (&args_so_far_v);
3c0fca12
RH
5133
5134 args_size.constant = 0;
5135 args_size.var = 0;
5136
5137 count = 0;
5138
5139 push_temp_slots ();
5140
5141 /* If there's a structure value address to be passed,
5142 either pass it in the special place, or pass it as an extra argument. */
61f71b34 5143 if (mem_value && struct_value == 0 && ! pcc_struct_value)
3c0fca12
RH
5144 {
5145 rtx addr = XEXP (mem_value, 0);
c22cacf3 5146
3c0fca12
RH
5147 nargs++;
5148
ee88d9aa
MK
5149 /* Make sure it is a reasonable operand for a move or push insn. */
5150 if (!REG_P (addr) && !MEM_P (addr)
1a627b35
RS
5151 && !(CONSTANT_P (addr)
5152 && targetm.legitimate_constant_p (Pmode, addr)))
ee88d9aa
MK
5153 addr = force_operand (addr, NULL_RTX);
5154
3c0fca12
RH
5155 argvec[count].value = addr;
5156 argvec[count].mode = Pmode;
5157 argvec[count].partial = 0;
5158
a7c81bc1 5159 function_arg_info ptr_arg (Pmode, /*named=*/true);
6783fdb7 5160 argvec[count].reg = targetm.calls.function_arg (args_so_far, ptr_arg);
a7c81bc1 5161 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, ptr_arg) == 0);
3c0fca12
RH
5162
5163 locate_and_pad_parm (Pmode, NULL_TREE,
a4d5044f 5164#ifdef STACK_PARMS_IN_REG_PARM_AREA
c22cacf3 5165 1,
a4d5044f
CM
5166#else
5167 argvec[count].reg != 0,
5168#endif
2e4ceca5
UW
5169 reg_parm_stack_space, 0,
5170 NULL_TREE, &args_size, &argvec[count].locate);
3c0fca12 5171
3c0fca12
RH
5172 if (argvec[count].reg == 0 || argvec[count].partial != 0
5173 || reg_parm_stack_space > 0)
e7949876 5174 args_size.constant += argvec[count].locate.size.constant;
3c0fca12 5175
6930c98c 5176 targetm.calls.function_arg_advance (args_so_far, ptr_arg);
3c0fca12
RH
5177
5178 count++;
5179 }
5180
db69559b 5181 for (unsigned int i = 0; count < nargs; i++, count++)
3c0fca12 5182 {
db69559b 5183 rtx val = args[i].first;
cf0d189e 5184 function_arg_info arg (args[i].second, /*named=*/true);
5e617be8 5185 int unsigned_p = 0;
3c0fca12
RH
5186
5187 /* We cannot convert the arg value to the mode the library wants here;
5188 must do it earlier where we know the signedness of the arg. */
cf0d189e
RS
5189 gcc_assert (arg.mode != BLKmode
5190 && (GET_MODE (val) == arg.mode
5191 || GET_MODE (val) == VOIDmode));
3c0fca12 5192
ee88d9aa
MK
5193 /* Make sure it is a reasonable operand for a move or push insn. */
5194 if (!REG_P (val) && !MEM_P (val)
cf0d189e
RS
5195 && !(CONSTANT_P (val)
5196 && targetm.legitimate_constant_p (arg.mode, val)))
ee88d9aa
MK
5197 val = force_operand (val, NULL_RTX);
5198
cf0d189e 5199 if (pass_by_reference (&args_so_far_v, arg))
3c0fca12 5200 {
f474c6f8 5201 rtx slot;
cf0d189e 5202 int must_copy = !reference_callee_copied (&args_so_far_v, arg);
f474c6f8 5203
becfd6e5
KZ
5204 /* If this was a CONST function, it is now PURE since it now
5205 reads memory. */
99a32567
DM
5206 if (flags & ECF_CONST)
5207 {
5208 flags &= ~ECF_CONST;
5209 flags |= ECF_PURE;
5210 }
5211
e0c68ce9 5212 if (MEM_P (val) && !must_copy)
c4b9a87e
ER
5213 {
5214 tree val_expr = MEM_EXPR (val);
5215 if (val_expr)
5216 mark_addressable (val_expr);
5217 slot = val;
5218 }
9969aaf6 5219 else
f474c6f8 5220 {
cf0d189e 5221 slot = assign_temp (lang_hooks.types.type_for_mode (arg.mode, 0),
9474e8ab 5222 1, 1);
f474c6f8
AO
5223 emit_move_insn (slot, val);
5224 }
1da68f56 5225
6b5273c3
AO
5226 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
5227 gen_rtx_USE (VOIDmode, slot),
5228 call_fusage);
f474c6f8
AO
5229 if (must_copy)
5230 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
5231 gen_rtx_CLOBBER (VOIDmode,
5232 slot),
5233 call_fusage);
5234
cf0d189e 5235 arg.mode = Pmode;
257caa55 5236 arg.pass_by_reference = true;
f474c6f8 5237 val = force_operand (XEXP (slot, 0), NULL_RTX);
3c0fca12 5238 }
3c0fca12 5239
cf0d189e
RS
5240 arg.mode = promote_function_mode (NULL_TREE, arg.mode, &unsigned_p,
5241 NULL_TREE, 0);
5242 argvec[count].mode = arg.mode;
5243 argvec[count].value = convert_modes (arg.mode, GET_MODE (val), val,
5244 unsigned_p);
6783fdb7 5245 argvec[count].reg = targetm.calls.function_arg (args_so_far, arg);
3c0fca12 5246
3c0fca12 5247 argvec[count].partial
a7c81bc1 5248 = targetm.calls.arg_partial_bytes (args_so_far, arg);
3c0fca12 5249
3576f984
RS
5250 if (argvec[count].reg == 0
5251 || argvec[count].partial != 0
5252 || reg_parm_stack_space > 0)
5253 {
cf0d189e 5254 locate_and_pad_parm (arg.mode, NULL_TREE,
a4d5044f 5255#ifdef STACK_PARMS_IN_REG_PARM_AREA
3576f984 5256 1,
a4d5044f 5257#else
3576f984
RS
5258 argvec[count].reg != 0,
5259#endif
2e4ceca5 5260 reg_parm_stack_space, argvec[count].partial,
3576f984
RS
5261 NULL_TREE, &args_size, &argvec[count].locate);
5262 args_size.constant += argvec[count].locate.size.constant;
5263 gcc_assert (!argvec[count].locate.size.var);
5264 }
5265#ifdef BLOCK_REG_PADDING
5266 else
5267 /* The argument is passed entirely in registers. See at which
5268 end it should be padded. */
5269 argvec[count].locate.where_pad =
cf0d189e
RS
5270 BLOCK_REG_PADDING (arg.mode, NULL_TREE,
5271 known_le (GET_MODE_SIZE (arg.mode),
5272 UNITS_PER_WORD));
a4d5044f 5273#endif
3c0fca12 5274
6930c98c 5275 targetm.calls.function_arg_advance (args_so_far, arg);
3c0fca12 5276 }
3c0fca12 5277
957ed738
L
5278 for (int i = 0; i < nargs; i++)
5279 if (reg_parm_stack_space > 0
5280 || argvec[i].reg == 0
5281 || argvec[i].partial != 0)
5282 update_stack_alignment_for_call (&argvec[i].locate);
5283
3c0fca12
RH
5284 /* If this machine requires an external definition for library
5285 functions, write one out. */
5286 assemble_external_libcall (fun);
5287
5288 original_args_size = args_size;
a20c5714
RS
5289 args_size.constant = (aligned_upper_bound (args_size.constant
5290 + stack_pointer_delta,
5291 STACK_BYTES)
5292 - stack_pointer_delta);
3c0fca12 5293
a20c5714
RS
5294 args_size.constant = upper_bound (args_size.constant,
5295 reg_parm_stack_space);
3c0fca12 5296
5d059ed9 5297 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
ac294f0b 5298 args_size.constant -= reg_parm_stack_space;
3c0fca12 5299
a20c5714
RS
5300 crtl->outgoing_args_size = upper_bound (crtl->outgoing_args_size,
5301 args_size.constant);
3c0fca12 5302
a11e0df4 5303 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
d3c12306 5304 {
a20c5714
RS
5305 poly_int64 pushed = args_size.constant + pending_stack_adjust;
5306 current_function_pushed_stack_size
5307 = upper_bound (current_function_pushed_stack_size, pushed);
d3c12306
EB
5308 }
5309
f73ad30e
JH
5310 if (ACCUMULATE_OUTGOING_ARGS)
5311 {
5312 /* Since the stack pointer will never be pushed, it is possible for
5313 the evaluation of a parm to clobber something we have already
5314 written to the stack. Since most function calls on RISC machines
5315 do not use the stack, this is uncommon, but must work correctly.
3c0fca12 5316
f73ad30e
JH
5317 Therefore, we save any area of the stack that was already written
5318 and that we are using. Here we set up to do this by making a new
5319 stack usage map from the old one.
3c0fca12 5320
f73ad30e
JH
5321 Another approach might be to try to reorder the argument
5322 evaluations to avoid this conflicting stack usage. */
3c0fca12 5323
f73ad30e 5324 needed = args_size.constant;
3c0fca12 5325
f73ad30e
JH
5326 /* Since we will be writing into the entire argument area, the
5327 map must be allocated for its entire size, not just the part that
5328 is the responsibility of the caller. */
5d059ed9 5329 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
ac294f0b 5330 needed += reg_parm_stack_space;
3c0fca12 5331
a20c5714 5332 poly_int64 limit = needed;
6dad9361 5333 if (ARGS_GROW_DOWNWARD)
a20c5714
RS
5334 limit += 1;
5335
5336 /* For polynomial sizes, this is the maximum possible size needed
5337 for arguments with a constant size and offset. */
5338 HOST_WIDE_INT const_limit = constant_lower_bound (limit);
5339 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
5340 const_limit);
6dad9361 5341
5ed6ace5 5342 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
d9725c41 5343 stack_usage_map = stack_usage_map_buf;
3c0fca12 5344
f73ad30e 5345 if (initial_highest_arg_in_use)
2e09e75a
JM
5346 memcpy (stack_usage_map, initial_stack_usage_map,
5347 initial_highest_arg_in_use);
3c0fca12 5348
f73ad30e 5349 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
961192e1 5350 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
f73ad30e
JH
5351 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
5352 needed = 0;
3c0fca12 5353
c39ada04 5354 /* We must be careful to use virtual regs before they're instantiated,
c22cacf3 5355 and real regs afterwards. Loop optimization, for example, can create
c39ada04
DD
5356 new libcalls after we've instantiated the virtual regs, and if we
5357 use virtuals anyway, they won't match the rtl patterns. */
3c0fca12 5358
c39ada04 5359 if (virtuals_instantiated)
0a81f074
RS
5360 argblock = plus_constant (Pmode, stack_pointer_rtx,
5361 STACK_POINTER_OFFSET);
c39ada04
DD
5362 else
5363 argblock = virtual_outgoing_args_rtx;
f73ad30e
JH
5364 }
5365 else
5366 {
5367 if (!PUSH_ARGS)
a20c5714 5368 argblock = push_block (gen_int_mode (args_size.constant, Pmode), 0, 0);
f73ad30e 5369 }
3c0fca12 5370
3d9684ae 5371 /* We push args individually in reverse order, perform stack alignment
3c0fca12 5372 before the first push (the last arg). */
3d9684ae 5373 if (argblock == 0)
a20c5714
RS
5374 anti_adjust_stack (gen_int_mode (args_size.constant
5375 - original_args_size.constant,
5376 Pmode));
3c0fca12 5377
3d9684ae 5378 argnum = nargs - 1;
3c0fca12 5379
f73ad30e
JH
5380#ifdef REG_PARM_STACK_SPACE
5381 if (ACCUMULATE_OUTGOING_ARGS)
5382 {
5383 /* The argument list is the property of the called routine and it
5384 may clobber it. If the fixed area has been used for previous
b820d2b8
AM
5385 parameters, we must save and restore it. */
5386 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
5387 &low_to_save, &high_to_save);
3c0fca12
RH
5388 }
5389#endif
f725a3ec 5390
2f21e1ba
BS
5391 /* When expanding a normal call, args are stored in push order,
5392 which is the reverse of what we have here. */
5393 bool any_regs = false;
5394 for (int i = nargs; i-- > 0; )
5395 if (argvec[i].reg != NULL_RTX)
5396 {
5397 targetm.calls.call_args (argvec[i].reg, NULL_TREE);
5398 any_regs = true;
5399 }
5400 if (!any_regs)
5401 targetm.calls.call_args (pc_rtx, NULL_TREE);
5402
3c0fca12
RH
5403 /* Push the args that need to be pushed. */
5404
0ed4bf92
BS
5405 have_push_fusage = false;
5406
3c0fca12
RH
5407 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
5408 are to be pushed. */
3d9684ae 5409 for (count = 0; count < nargs; count++, argnum--)
3c0fca12 5410 {
ef4bddc2 5411 machine_mode mode = argvec[argnum].mode;
b3694847 5412 rtx val = argvec[argnum].value;
3c0fca12
RH
5413 rtx reg = argvec[argnum].reg;
5414 int partial = argvec[argnum].partial;
6bdf8c2e 5415 unsigned int parm_align = argvec[argnum].locate.boundary;
a20c5714 5416 poly_int64 lower_bound = 0, upper_bound = 0;
3c0fca12
RH
5417
5418 if (! (reg != 0 && partial == 0))
5419 {
2b1c5433
JJ
5420 rtx use;
5421
f73ad30e
JH
5422 if (ACCUMULATE_OUTGOING_ARGS)
5423 {
f8a097cd
JH
5424 /* If this is being stored into a pre-allocated, fixed-size,
5425 stack area, save any previous data at that location. */
3c0fca12 5426
6dad9361
TS
5427 if (ARGS_GROW_DOWNWARD)
5428 {
5429 /* stack_slot is negative, but we want to index stack_usage_map
5430 with positive values. */
5431 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
5432 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
5433 }
5434 else
5435 {
5436 lower_bound = argvec[argnum].locate.slot_offset.constant;
5437 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
5438 }
3c0fca12 5439
a20c5714
RS
5440 if (stack_region_maybe_used_p (lower_bound, upper_bound,
5441 reg_parm_stack_space))
f73ad30e 5442 {
e7949876 5443 /* We need to make a save area. */
a20c5714 5444 poly_uint64 size
e7949876 5445 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
ef4bddc2 5446 machine_mode save_mode
f4b31647 5447 = int_mode_for_size (size, 1).else_blk ();
e7949876 5448 rtx adr
0a81f074 5449 = plus_constant (Pmode, argblock,
e7949876 5450 argvec[argnum].locate.offset.constant);
f73ad30e 5451 rtx stack_area
e7949876 5452 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
f73ad30e 5453
9778f2f8
JH
5454 if (save_mode == BLKmode)
5455 {
5456 argvec[argnum].save_area
5457 = assign_stack_temp (BLKmode,
9474e8ab
MM
5458 argvec[argnum].locate.size.constant
5459 );
9778f2f8 5460
1a8cb155
RS
5461 emit_block_move (validize_mem
5462 (copy_rtx (argvec[argnum].save_area)),
c22cacf3 5463 stack_area,
a20c5714
RS
5464 (gen_int_mode
5465 (argvec[argnum].locate.size.constant,
5466 Pmode)),
9778f2f8
JH
5467 BLOCK_OP_CALL_PARM);
5468 }
5469 else
5470 {
5471 argvec[argnum].save_area = gen_reg_rtx (save_mode);
5472
5473 emit_move_insn (argvec[argnum].save_area, stack_area);
5474 }
f73ad30e 5475 }
3c0fca12 5476 }
19caa751 5477
6bdf8c2e 5478 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
44bb111a 5479 partial, reg, 0, argblock,
a20c5714
RS
5480 (gen_int_mode
5481 (argvec[argnum].locate.offset.constant, Pmode)),
e7949876 5482 reg_parm_stack_space,
99206968 5483 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad), false);
3c0fca12 5484
3c0fca12 5485 /* Now mark the segment we just used. */
f73ad30e 5486 if (ACCUMULATE_OUTGOING_ARGS)
a20c5714 5487 mark_stack_region_used (lower_bound, upper_bound);
3c0fca12
RH
5488
5489 NO_DEFER_POP;
475a3eef 5490
2b1c5433
JJ
5491 /* Indicate argument access so that alias.c knows that these
5492 values are live. */
5493 if (argblock)
0a81f074 5494 use = plus_constant (Pmode, argblock,
2b1c5433 5495 argvec[argnum].locate.offset.constant);
0ed4bf92
BS
5496 else if (have_push_fusage)
5497 continue;
2b1c5433 5498 else
0ed4bf92
BS
5499 {
5500 /* When arguments are pushed, trying to tell alias.c where
5501 exactly this argument is won't work, because the
5502 auto-increment causes confusion. So we merely indicate
5503 that we access something with a known mode somewhere on
5504 the stack. */
5505 use = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
5506 gen_rtx_SCRATCH (Pmode));
5507 have_push_fusage = true;
5508 }
2b1c5433
JJ
5509 use = gen_rtx_MEM (argvec[argnum].mode, use);
5510 use = gen_rtx_USE (VOIDmode, use);
5511 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
3c0fca12
RH
5512 }
5513 }
5514
3d9684ae 5515 argnum = nargs - 1;
3c0fca12 5516
531ca746 5517 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
3c0fca12
RH
5518
5519 /* Now load any reg parms into their regs. */
5520
5521 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
5522 are to be pushed. */
3d9684ae 5523 for (count = 0; count < nargs; count++, argnum--)
3c0fca12 5524 {
ef4bddc2 5525 machine_mode mode = argvec[argnum].mode;
b3694847 5526 rtx val = argvec[argnum].value;
3c0fca12
RH
5527 rtx reg = argvec[argnum].reg;
5528 int partial = argvec[argnum].partial;
460b171d 5529
3c0fca12
RH
5530 /* Handle calls that pass values in multiple non-contiguous
5531 locations. The PA64 has examples of this for library calls. */
5532 if (reg != 0 && GET_CODE (reg) == PARALLEL)
ff15c351 5533 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
3c0fca12 5534 else if (reg != 0 && partial == 0)
460b171d
JB
5535 {
5536 emit_move_insn (reg, val);
5537#ifdef BLOCK_REG_PADDING
cf098191 5538 poly_int64 size = GET_MODE_SIZE (argvec[argnum].mode);
460b171d
JB
5539
5540 /* Copied from load_register_parameters. */
5541
5542 /* Handle case where we have a value that needs shifting
5543 up to the msb. eg. a QImode value and we're padding
5544 upward on a BYTES_BIG_ENDIAN machine. */
cf098191 5545 if (known_lt (size, UNITS_PER_WORD)
460b171d 5546 && (argvec[argnum].locate.where_pad
76b0cbf8 5547 == (BYTES_BIG_ENDIAN ? PAD_UPWARD : PAD_DOWNWARD)))
460b171d
JB
5548 {
5549 rtx x;
cf098191 5550 poly_int64 shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
460b171d
JB
5551
5552 /* Assigning REG here rather than a temp makes CALL_FUSAGE
5553 report the whole reg as used. Strictly speaking, the
5554 call only uses SIZE bytes at the msb end, but it doesn't
5555 seem worth generating rtl to say that. */
5556 reg = gen_rtx_REG (word_mode, REGNO (reg));
5557 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
5558 if (x != reg)
5559 emit_move_insn (reg, x);
5560 }
5561#endif
5562 }
3c0fca12
RH
5563
5564 NO_DEFER_POP;
5565 }
5566
3c0fca12
RH
5567 /* Any regs containing parms remain in use through the call. */
5568 for (count = 0; count < nargs; count++)
5569 {
5570 rtx reg = argvec[count].reg;
5571 if (reg != 0 && GET_CODE (reg) == PARALLEL)
5572 use_group_regs (&call_fusage, reg);
5573 else if (reg != 0)
3b1bf459
BS
5574 {
5575 int partial = argvec[count].partial;
5576 if (partial)
5577 {
5578 int nregs;
5579 gcc_assert (partial % UNITS_PER_WORD == 0);
5580 nregs = partial / UNITS_PER_WORD;
5581 use_regs (&call_fusage, REGNO (reg), nregs);
5582 }
5583 else
5584 use_reg (&call_fusage, reg);
5585 }
3c0fca12
RH
5586 }
5587
5588 /* Pass the function the address in which to return a structure value. */
61f71b34 5589 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
3c0fca12 5590 {
61f71b34 5591 emit_move_insn (struct_value,
3c0fca12
RH
5592 force_reg (Pmode,
5593 force_operand (XEXP (mem_value, 0),
5594 NULL_RTX)));
f8cfc6aa 5595 if (REG_P (struct_value))
61f71b34 5596 use_reg (&call_fusage, struct_value);
3c0fca12
RH
5597 }
5598
5599 /* Don't allow popping to be deferred, since then
5600 cse'ing of library calls could delete a call and leave the pop. */
5601 NO_DEFER_POP;
5591ee6f 5602 valreg = (mem_value == 0 && outmode != VOIDmode
390b17c2 5603 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
3c0fca12 5604
ce48579b 5605 /* Stack must be properly aligned now. */
a20c5714
RS
5606 gcc_assert (multiple_p (stack_pointer_delta,
5607 PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT));
ebcd0b57 5608
695ee791
RH
5609 before_call = get_last_insn ();
5610
3cf3da88
EB
5611 if (flag_callgraph_info)
5612 record_final_call (SYMBOL_REF_DECL (orgfun), UNKNOWN_LOCATION);
5613
3c0fca12
RH
5614 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
5615 will set inhibit_defer_pop to that value. */
de76b467
JH
5616 /* The return type is needed to decide how many bytes the function pops.
5617 Signedness plays no role in that, so for simplicity, we pretend it's
5618 always signed. We also assume that the list of arguments passed has
5619 no impact, so we pretend it is unknown. */
3c0fca12 5620
6de9cd9a 5621 emit_call_1 (fun, NULL,
f725a3ec 5622 get_identifier (XSTR (orgfun, 0)),
b0c48229 5623 build_function_type (tfom, NULL_TREE),
f725a3ec 5624 original_args_size.constant, args_size.constant,
3c0fca12 5625 struct_value_size,
d5cc9181 5626 targetm.calls.function_arg (args_so_far,
6783fdb7 5627 function_arg_info::end_marker ()),
5591ee6f 5628 valreg,
d5cc9181 5629 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
3c0fca12 5630
1e288103 5631 if (flag_ipa_ra)
4f660b15 5632 {
e67d1102 5633 rtx datum = orgfun;
4f660b15 5634 gcc_assert (GET_CODE (datum) == SYMBOL_REF);
e67d1102 5635 rtx_call_insn *last = last_call_insn ();
4f660b15
RO
5636 add_reg_note (last, REG_CALL_DECL, datum);
5637 }
5638
460b171d
JB
5639 /* Right-shift returned value if necessary. */
5640 if (!pcc_struct_value
5641 && TYPE_MODE (tfom) != BLKmode
5642 && targetm.calls.return_in_msb (tfom))
5643 {
5644 shift_return_value (TYPE_MODE (tfom), false, valreg);
5645 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
5646 }
5647
2f21e1ba
BS
5648 targetm.calls.end_call_args ();
5649
6fb5fa3c
DB
5650 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
5651 that it should complain if nonvolatile values are live. For
5652 functions that cannot return, inform flow that control does not
5653 fall through. */
6e14af16 5654 if (flags & ECF_NORETURN)
695ee791 5655 {
570a98eb 5656 /* The barrier note must be emitted
695ee791
RH
5657 immediately after the CALL_INSN. Some ports emit more than
5658 just a CALL_INSN above, so we must search for it here. */
48810515 5659 rtx_insn *last = get_last_insn ();
4b4bf941 5660 while (!CALL_P (last))
695ee791
RH
5661 {
5662 last = PREV_INSN (last);
5663 /* There was no CALL_INSN? */
366de0ce 5664 gcc_assert (last != before_call);
695ee791
RH
5665 }
5666
570a98eb 5667 emit_barrier_after (last);
695ee791
RH
5668 }
5669
85da11a6
EB
5670 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
5671 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
5672 if (flags & ECF_NOTHROW)
5673 {
48810515 5674 rtx_insn *last = get_last_insn ();
85da11a6
EB
5675 while (!CALL_P (last))
5676 {
5677 last = PREV_INSN (last);
5678 /* There was no CALL_INSN? */
5679 gcc_assert (last != before_call);
5680 }
5681
5682 make_reg_eh_region_note_nothrow_nononlocal (last);
5683 }
5684
3c0fca12
RH
5685 /* Now restore inhibit_defer_pop to its actual original value. */
5686 OK_DEFER_POP;
5687
5688 pop_temp_slots ();
5689
5690 /* Copy the value to the right place. */
de76b467 5691 if (outmode != VOIDmode && retval)
3c0fca12
RH
5692 {
5693 if (mem_value)
5694 {
5695 if (value == 0)
5696 value = mem_value;
5697 if (value != mem_value)
5698 emit_move_insn (value, mem_value);
5699 }
c3297561
AO
5700 else if (GET_CODE (valreg) == PARALLEL)
5701 {
5702 if (value == 0)
5703 value = gen_reg_rtx (outmode);
643642eb 5704 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
c3297561 5705 }
3c0fca12 5706 else
7ab0aca2 5707 {
cde0f3fd 5708 /* Convert to the proper mode if a promotion has been active. */
7ab0aca2
RH
5709 if (GET_MODE (valreg) != outmode)
5710 {
5711 int unsignedp = TYPE_UNSIGNED (tfom);
5712
cde0f3fd
PB
5713 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
5714 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
7ab0aca2 5715 == GET_MODE (valreg));
7ab0aca2
RH
5716 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
5717 }
5718
5719 if (value != 0)
5720 emit_move_insn (value, valreg);
5721 else
5722 value = valreg;
5723 }
3c0fca12
RH
5724 }
5725
f73ad30e 5726 if (ACCUMULATE_OUTGOING_ARGS)
3c0fca12 5727 {
f73ad30e
JH
5728#ifdef REG_PARM_STACK_SPACE
5729 if (save_area)
b820d2b8
AM
5730 restore_fixed_argument_area (save_area, argblock,
5731 high_to_save, low_to_save);
3c0fca12 5732#endif
f725a3ec 5733
f73ad30e
JH
5734 /* If we saved any argument areas, restore them. */
5735 for (count = 0; count < nargs; count++)
5736 if (argvec[count].save_area)
5737 {
ef4bddc2 5738 machine_mode save_mode = GET_MODE (argvec[count].save_area);
0a81f074 5739 rtx adr = plus_constant (Pmode, argblock,
e7949876
AM
5740 argvec[count].locate.offset.constant);
5741 rtx stack_area = gen_rtx_MEM (save_mode,
5742 memory_address (save_mode, adr));
f73ad30e 5743
9778f2f8
JH
5744 if (save_mode == BLKmode)
5745 emit_block_move (stack_area,
1a8cb155
RS
5746 validize_mem
5747 (copy_rtx (argvec[count].save_area)),
a20c5714
RS
5748 (gen_int_mode
5749 (argvec[count].locate.size.constant, Pmode)),
9778f2f8
JH
5750 BLOCK_OP_CALL_PARM);
5751 else
5752 emit_move_insn (stack_area, argvec[count].save_area);
f73ad30e 5753 }
3c0fca12 5754
f73ad30e
JH
5755 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
5756 stack_usage_map = initial_stack_usage_map;
a20c5714 5757 stack_usage_watermark = initial_stack_usage_watermark;
f73ad30e 5758 }
43bc5f13 5759
04695783 5760 free (stack_usage_map_buf);
d9725c41 5761
de76b467
JH
5762 return value;
5763
5764}
5765\f
d5e254e1 5766
51bbfa0c
RS
5767/* Store a single argument for a function call
5768 into the register or memory area where it must be passed.
5769 *ARG describes the argument value and where to pass it.
5770
5771 ARGBLOCK is the address of the stack-block for all the arguments,
d45cf215 5772 or 0 on a machine where arguments are pushed individually.
51bbfa0c
RS
5773
5774 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
f725a3ec 5775 so must be careful about how the stack is used.
51bbfa0c
RS
5776
5777 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
5778 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
5779 that we need not worry about saving and restoring the stack.
5780
4c6b3b2a 5781 FNDECL is the declaration of the function we are calling.
f725a3ec 5782
da7d8304 5783 Return nonzero if this arg should cause sibcall failure,
4c6b3b2a 5784 zero otherwise. */
51bbfa0c 5785
4c6b3b2a 5786static int
d329e058
AJ
5787store_one_arg (struct arg_data *arg, rtx argblock, int flags,
5788 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
51bbfa0c 5789{
b3694847 5790 tree pval = arg->tree_value;
51bbfa0c
RS
5791 rtx reg = 0;
5792 int partial = 0;
a20c5714
RS
5793 poly_int64 used = 0;
5794 poly_int64 lower_bound = 0, upper_bound = 0;
4c6b3b2a 5795 int sibcall_failure = 0;
51bbfa0c
RS
5796
5797 if (TREE_CODE (pval) == ERROR_MARK)
4c6b3b2a 5798 return 1;
51bbfa0c 5799
cc79451b
RK
5800 /* Push a new temporary level for any temporaries we make for
5801 this argument. */
5802 push_temp_slots ();
5803
f8a097cd 5804 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
51bbfa0c 5805 {
f73ad30e
JH
5806 /* If this is being stored into a pre-allocated, fixed-size, stack area,
5807 save any previous data at that location. */
5808 if (argblock && ! variable_size && arg->stack)
5809 {
6dad9361
TS
5810 if (ARGS_GROW_DOWNWARD)
5811 {
5812 /* stack_slot is negative, but we want to index stack_usage_map
5813 with positive values. */
5814 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
a20c5714
RS
5815 {
5816 rtx offset = XEXP (XEXP (arg->stack_slot, 0), 1);
5817 upper_bound = -rtx_to_poly_int64 (offset) + 1;
5818 }
6dad9361
TS
5819 else
5820 upper_bound = 0;
51bbfa0c 5821
6dad9361
TS
5822 lower_bound = upper_bound - arg->locate.size.constant;
5823 }
f73ad30e 5824 else
6dad9361
TS
5825 {
5826 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
a20c5714
RS
5827 {
5828 rtx offset = XEXP (XEXP (arg->stack_slot, 0), 1);
5829 lower_bound = rtx_to_poly_int64 (offset);
5830 }
6dad9361
TS
5831 else
5832 lower_bound = 0;
51bbfa0c 5833
6dad9361
TS
5834 upper_bound = lower_bound + arg->locate.size.constant;
5835 }
51bbfa0c 5836
a20c5714
RS
5837 if (stack_region_maybe_used_p (lower_bound, upper_bound,
5838 reg_parm_stack_space))
51bbfa0c 5839 {
e7949876 5840 /* We need to make a save area. */
a20c5714 5841 poly_uint64 size = arg->locate.size.constant * BITS_PER_UNIT;
f4b31647
RS
5842 machine_mode save_mode
5843 = int_mode_for_size (size, 1).else_blk ();
e7949876
AM
5844 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
5845 rtx stack_area = gen_rtx_MEM (save_mode, adr);
f73ad30e
JH
5846
5847 if (save_mode == BLKmode)
5848 {
9ee5337d
EB
5849 arg->save_area
5850 = assign_temp (TREE_TYPE (arg->tree_value), 1, 1);
f73ad30e 5851 preserve_temp_slots (arg->save_area);
1a8cb155
RS
5852 emit_block_move (validize_mem (copy_rtx (arg->save_area)),
5853 stack_area,
a20c5714
RS
5854 (gen_int_mode
5855 (arg->locate.size.constant, Pmode)),
44bb111a 5856 BLOCK_OP_CALL_PARM);
f73ad30e
JH
5857 }
5858 else
5859 {
5860 arg->save_area = gen_reg_rtx (save_mode);
5861 emit_move_insn (arg->save_area, stack_area);
5862 }
51bbfa0c
RS
5863 }
5864 }
5865 }
b564df06 5866
51bbfa0c
RS
5867 /* If this isn't going to be placed on both the stack and in registers,
5868 set up the register and number of words. */
5869 if (! arg->pass_on_stack)
aa7634dd
DM
5870 {
5871 if (flags & ECF_SIBCALL)
5872 reg = arg->tail_call_reg;
5873 else
5874 reg = arg->reg;
5875 partial = arg->partial;
5876 }
51bbfa0c 5877
366de0ce
NS
5878 /* Being passed entirely in a register. We shouldn't be called in
5879 this case. */
5880 gcc_assert (reg == 0 || partial != 0);
c22cacf3 5881
4ab56118
RK
5882 /* If this arg needs special alignment, don't load the registers
5883 here. */
5884 if (arg->n_aligned_regs != 0)
5885 reg = 0;
f725a3ec 5886
4ab56118 5887 /* If this is being passed partially in a register, we can't evaluate
51bbfa0c
RS
5888 it directly into its stack slot. Otherwise, we can. */
5889 if (arg->value == 0)
d64f5a78 5890 {
d64f5a78
RS
5891 /* stack_arg_under_construction is nonzero if a function argument is
5892 being evaluated directly into the outgoing argument list and
5893 expand_call must take special action to preserve the argument list
5894 if it is called recursively.
5895
5896 For scalar function arguments stack_usage_map is sufficient to
5897 determine which stack slots must be saved and restored. Scalar
5898 arguments in general have pass_on_stack == 0.
5899
5900 If this argument is initialized by a function which takes the
5901 address of the argument (a C++ constructor or a C function
5902 returning a BLKmode structure), then stack_usage_map is
5903 insufficient and expand_call must push the stack around the
5904 function call. Such arguments have pass_on_stack == 1.
5905
5906 Note that it is always safe to set stack_arg_under_construction,
5907 but this generates suboptimal code if set when not needed. */
5908
5909 if (arg->pass_on_stack)
5910 stack_arg_under_construction++;
f73ad30e 5911
3a08477a
RK
5912 arg->value = expand_expr (pval,
5913 (partial
5914 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
5915 ? NULL_RTX : arg->stack,
8403445a 5916 VOIDmode, EXPAND_STACK_PARM);
1efe6448
RK
5917
5918 /* If we are promoting object (or for any other reason) the mode
5919 doesn't agree, convert the mode. */
5920
7373d92d
RK
5921 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
5922 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
5923 arg->value, arg->unsignedp);
1efe6448 5924
d64f5a78
RS
5925 if (arg->pass_on_stack)
5926 stack_arg_under_construction--;
d64f5a78 5927 }
51bbfa0c 5928
0dc42b03 5929 /* Check for overlap with already clobbered argument area. */
07eef816
KH
5930 if ((flags & ECF_SIBCALL)
5931 && MEM_P (arg->value)
a20c5714
RS
5932 && mem_might_overlap_already_clobbered_arg_p (XEXP (arg->value, 0),
5933 arg->locate.size.constant))
07eef816 5934 sibcall_failure = 1;
0dc42b03 5935
51bbfa0c
RS
5936 /* Don't allow anything left on stack from computation
5937 of argument to alloca. */
f8a097cd 5938 if (flags & ECF_MAY_BE_ALLOCA)
51bbfa0c
RS
5939 do_pending_stack_adjust ();
5940
5941 if (arg->value == arg->stack)
37a08a29
RK
5942 /* If the value is already in the stack slot, we are done. */
5943 ;
1efe6448 5944 else if (arg->mode != BLKmode)
51bbfa0c 5945 {
46bd2bee 5946 unsigned int parm_align;
51bbfa0c
RS
5947
5948 /* Argument is a scalar, not entirely passed in registers.
5949 (If part is passed in registers, arg->partial says how much
5950 and emit_push_insn will take care of putting it there.)
f725a3ec 5951
51bbfa0c
RS
5952 Push it, and if its size is less than the
5953 amount of space allocated to it,
5954 also bump stack pointer by the additional space.
5955 Note that in C the default argument promotions
5956 will prevent such mismatches. */
5957
7b4df2bf
RS
5958 poly_int64 size = (TYPE_EMPTY_P (TREE_TYPE (pval))
5959 ? 0 : GET_MODE_SIZE (arg->mode));
974aedcc 5960
51bbfa0c
RS
5961 /* Compute how much space the push instruction will push.
5962 On many machines, pushing a byte will advance the stack
5963 pointer by a halfword. */
5964#ifdef PUSH_ROUNDING
5965 size = PUSH_ROUNDING (size);
5966#endif
5967 used = size;
5968
5969 /* Compute how much space the argument should get:
5970 round up to a multiple of the alignment for arguments. */
76b0cbf8
RS
5971 if (targetm.calls.function_arg_padding (arg->mode, TREE_TYPE (pval))
5972 != PAD_NONE)
7b4df2bf
RS
5973 /* At the moment we don't (need to) support ABIs for which the
5974 padding isn't known at compile time. In principle it should
5975 be easy to add though. */
5976 used = force_align_up (size, PARM_BOUNDARY / BITS_PER_UNIT);
51bbfa0c 5977
46bd2bee
JM
5978 /* Compute the alignment of the pushed argument. */
5979 parm_align = arg->locate.boundary;
76b0cbf8
RS
5980 if (targetm.calls.function_arg_padding (arg->mode, TREE_TYPE (pval))
5981 == PAD_DOWNWARD)
46bd2bee 5982 {
a20c5714
RS
5983 poly_int64 pad = used - size;
5984 unsigned int pad_align = known_alignment (pad) * BITS_PER_UNIT;
5985 if (pad_align != 0)
5986 parm_align = MIN (parm_align, pad_align);
46bd2bee
JM
5987 }
5988
51bbfa0c
RS
5989 /* This isn't already where we want it on the stack, so put it there.
5990 This can either be done with push or copy insns. */
a20c5714 5991 if (maybe_ne (used, 0)
974aedcc
MP
5992 && !emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval),
5993 NULL_RTX, parm_align, partial, reg, used - size,
5994 argblock, ARGS_SIZE_RTX (arg->locate.offset),
5995 reg_parm_stack_space,
5996 ARGS_SIZE_RTX (arg->locate.alignment_pad), true))
99206968 5997 sibcall_failure = 1;
841404cd
AO
5998
5999 /* Unless this is a partially-in-register argument, the argument is now
6000 in the stack. */
6001 if (partial == 0)
6002 arg->value = arg->stack;
51bbfa0c
RS
6003 }
6004 else
6005 {
6006 /* BLKmode, at least partly to be pushed. */
6007
1b1f20ca 6008 unsigned int parm_align;
a20c5714 6009 poly_int64 excess;
51bbfa0c
RS
6010 rtx size_rtx;
6011
6012 /* Pushing a nonscalar.
6013 If part is passed in registers, PARTIAL says how much
6014 and emit_push_insn will take care of putting it there. */
6015
6016 /* Round its size up to a multiple
6017 of the allocation unit for arguments. */
6018
e7949876 6019 if (arg->locate.size.var != 0)
51bbfa0c
RS
6020 {
6021 excess = 0;
e7949876 6022 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
51bbfa0c
RS
6023 }
6024 else
6025 {
78a52f11
RH
6026 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
6027 for BLKmode is careful to avoid it. */
6028 excess = (arg->locate.size.constant
974aedcc 6029 - arg_int_size_in_bytes (TREE_TYPE (pval))
78a52f11 6030 + partial);
974aedcc 6031 size_rtx = expand_expr (arg_size_in_bytes (TREE_TYPE (pval)),
bbbbb16a
ILT
6032 NULL_RTX, TYPE_MODE (sizetype),
6033 EXPAND_NORMAL);
51bbfa0c
RS
6034 }
6035
bfc45551 6036 parm_align = arg->locate.boundary;
1b1f20ca
RH
6037
6038 /* When an argument is padded down, the block is aligned to
6039 PARM_BOUNDARY, but the actual argument isn't. */
76b0cbf8
RS
6040 if (targetm.calls.function_arg_padding (arg->mode, TREE_TYPE (pval))
6041 == PAD_DOWNWARD)
1b1f20ca 6042 {
e7949876 6043 if (arg->locate.size.var)
1b1f20ca 6044 parm_align = BITS_PER_UNIT;
a20c5714 6045 else
1b1f20ca 6046 {
a20c5714
RS
6047 unsigned int excess_align
6048 = known_alignment (excess) * BITS_PER_UNIT;
6049 if (excess_align != 0)
6050 parm_align = MIN (parm_align, excess_align);
1b1f20ca
RH
6051 }
6052 }
6053
3c0cb5de 6054 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
4c6b3b2a
JJ
6055 {
6056 /* emit_push_insn might not work properly if arg->value and
e7949876 6057 argblock + arg->locate.offset areas overlap. */
4c6b3b2a 6058 rtx x = arg->value;
a20c5714 6059 poly_int64 i = 0;
4c6b3b2a 6060
5284e559
RS
6061 if (strip_offset (XEXP (x, 0), &i)
6062 == crtl->args.internal_arg_pointer)
4c6b3b2a 6063 {
b3877860
KT
6064 /* arg.locate doesn't contain the pretend_args_size offset,
6065 it's part of argblock. Ensure we don't count it in I. */
6066 if (STACK_GROWS_DOWNWARD)
6067 i -= crtl->args.pretend_args_size;
6068 else
6069 i += crtl->args.pretend_args_size;
6070
e0a21ab9 6071 /* expand_call should ensure this. */
366de0ce 6072 gcc_assert (!arg->locate.offset.var
a20c5714
RS
6073 && arg->locate.size.var == 0);
6074 poly_int64 size_val = rtx_to_poly_int64 (size_rtx);
4c6b3b2a 6075
a20c5714 6076 if (known_eq (arg->locate.offset.constant, i))
d6c2c77c
JC
6077 {
6078 /* Even though they appear to be at the same location,
6079 if part of the outgoing argument is in registers,
6080 they aren't really at the same location. Check for
6081 this by making sure that the incoming size is the
6082 same as the outgoing size. */
a20c5714 6083 if (maybe_ne (arg->locate.size.constant, size_val))
4c6b3b2a
JJ
6084 sibcall_failure = 1;
6085 }
a20c5714
RS
6086 else if (maybe_in_range_p (arg->locate.offset.constant,
6087 i, size_val))
6088 sibcall_failure = 1;
6089 /* Use arg->locate.size.constant instead of size_rtx
6090 because we only care about the part of the argument
6091 on the stack. */
6092 else if (maybe_in_range_p (i, arg->locate.offset.constant,
6093 arg->locate.size.constant))
6094 sibcall_failure = 1;
4c6b3b2a
JJ
6095 }
6096 }
6097
974aedcc
MP
6098 if (!CONST_INT_P (size_rtx) || INTVAL (size_rtx) != 0)
6099 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
6100 parm_align, partial, reg, excess, argblock,
6101 ARGS_SIZE_RTX (arg->locate.offset),
6102 reg_parm_stack_space,
6103 ARGS_SIZE_RTX (arg->locate.alignment_pad), false);
51bbfa0c 6104
841404cd
AO
6105 /* Unless this is a partially-in-register argument, the argument is now
6106 in the stack.
51bbfa0c 6107
841404cd
AO
6108 ??? Unlike the case above, in which we want the actual
6109 address of the data, so that we can load it directly into a
6110 register, here we want the address of the stack slot, so that
6111 it's properly aligned for word-by-word copying or something
6112 like that. It's not clear that this is always correct. */
6113 if (partial == 0)
6114 arg->value = arg->stack_slot;
6115 }
8df3dbb7
RH
6116
6117 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
6118 {
6119 tree type = TREE_TYPE (arg->tree_value);
6120 arg->parallel_value
6121 = emit_group_load_into_temps (arg->reg, arg->value, type,
6122 int_size_in_bytes (type));
6123 }
51bbfa0c 6124
8403445a
AM
6125 /* Mark all slots this store used. */
6126 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
6127 && argblock && ! variable_size && arg->stack)
a20c5714 6128 mark_stack_region_used (lower_bound, upper_bound);
8403445a 6129
51bbfa0c
RS
6130 /* Once we have pushed something, pops can't safely
6131 be deferred during the rest of the arguments. */
6132 NO_DEFER_POP;
6133
9474e8ab 6134 /* Free any temporary slots made in processing this argument. */
cc79451b 6135 pop_temp_slots ();
4c6b3b2a
JJ
6136
6137 return sibcall_failure;
51bbfa0c 6138}
a4b1b92a 6139
0ffef200 6140/* Nonzero if we do not know how to pass ARG solely in registers. */
a4b1b92a 6141
fe984136 6142bool
0ffef200 6143must_pass_in_stack_var_size (const function_arg_info &arg)
fe984136 6144{
0ffef200 6145 if (!arg.type)
fe984136
RH
6146 return false;
6147
6148 /* If the type has variable size... */
c600df9a 6149 if (!poly_int_tree_p (TYPE_SIZE (arg.type)))
fe984136 6150 return true;
a4b1b92a 6151
fe984136
RH
6152 /* If the type is marked as addressable (it is required
6153 to be constructed into the stack)... */
0ffef200 6154 if (TREE_ADDRESSABLE (arg.type))
fe984136
RH
6155 return true;
6156
6157 return false;
6158}
a4b1b92a 6159
7ae4ad28 6160/* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
fe984136
RH
6161 takes trailing padding of a structure into account. */
6162/* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
a4b1b92a
RH
6163
6164bool
0ffef200 6165must_pass_in_stack_var_size_or_pad (const function_arg_info &arg)
a4b1b92a 6166{
0ffef200 6167 if (!arg.type)
40cdfd5a 6168 return false;
a4b1b92a
RH
6169
6170 /* If the type has variable size... */
0ffef200 6171 if (TREE_CODE (TYPE_SIZE (arg.type)) != INTEGER_CST)
a4b1b92a
RH
6172 return true;
6173
6174 /* If the type is marked as addressable (it is required
6175 to be constructed into the stack)... */
0ffef200 6176 if (TREE_ADDRESSABLE (arg.type))
a4b1b92a
RH
6177 return true;
6178
0ffef200 6179 if (TYPE_EMPTY_P (arg.type))
974aedcc
MP
6180 return false;
6181
a4b1b92a
RH
6182 /* If the padding and mode of the type is such that a copy into
6183 a register would put it into the wrong part of the register. */
0ffef200
RS
6184 if (arg.mode == BLKmode
6185 && int_size_in_bytes (arg.type) % (PARM_BOUNDARY / BITS_PER_UNIT)
6186 && (targetm.calls.function_arg_padding (arg.mode, arg.type)
76b0cbf8 6187 == (BYTES_BIG_ENDIAN ? PAD_UPWARD : PAD_DOWNWARD)))
a4b1b92a
RH
6188 return true;
6189
6190 return false;
6191}
6bf29a7e 6192
4f53599c
RS
6193/* Return true if TYPE must be passed on the stack when passed to
6194 the "..." arguments of a function. */
6195
6196bool
6197must_pass_va_arg_in_stack (tree type)
6198{
0ffef200
RS
6199 function_arg_info arg (type, /*named=*/false);
6200 return targetm.calls.must_pass_in_stack (arg);
4f53599c
RS
6201}
6202
3bce7904
RS
6203/* Return true if FIELD is the C++17 empty base field that should
6204 be ignored for ABI calling convention decisions in order to
6205 maintain ABI compatibility between C++14 and earlier, which doesn't
6206 add this FIELD to classes with empty bases, and C++17 and later
6207 which does. */
6208
6209bool
6210cxx17_empty_base_field_p (const_tree field)
6211{
6212 return (DECL_FIELD_ABI_IGNORED (field)
6213 && DECL_ARTIFICIAL (field)
6214 && RECORD_OR_UNION_TYPE_P (TREE_TYPE (field))
6215 && !lookup_attribute ("no_unique_address", DECL_ATTRIBUTES (field)));
6216}
6217
6bf29a7e
MS
6218/* Tell the garbage collector about GTY markers in this source file. */
6219#include "gt-calls.h"