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