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