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