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