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