]> gcc.gnu.org Git - gcc.git/blame - gcc/calls.c
aix.h (ASM_DECLARE_FUNCTION_NAME): Call named_section() or text_section() as appropri...
[gcc.git] / gcc / calls.c
CommitLineData
51bbfa0c 1/* Convert function calls to rtl insns, for GNU C compiler.
3c71940f
JL
2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998
3 1999, 2000 Free Software Foundation, Inc.
51bbfa0c
RS
4
5This file is part of GNU CC.
6
7GNU CC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU CC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU CC; see the file COPYING. If not, write to
940d9d63
RK
19the Free Software Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
51bbfa0c
RS
21
22#include "config.h"
670ee920
KG
23#include "system.h"
24#include "rtl.h"
25#include "tree.h"
26#include "flags.h"
27#include "expr.h"
49ad7cfa 28#include "function.h"
670ee920 29#include "regs.h"
51bbfa0c 30#include "insn-flags.h"
5f6da302 31#include "toplev.h"
d6f4ec51 32#include "output.h"
b1474bb7 33#include "tm_p.h"
ea11ca7e 34#include "timevar.h"
c67846f2 35#include "sbitmap.h"
51bbfa0c 36
f73ad30e
JH
37#ifndef ACCUMULATE_OUTGOING_ARGS
38#define ACCUMULATE_OUTGOING_ARGS 0
39#endif
40
41/* Supply a default definition for PUSH_ARGS. */
42#ifndef PUSH_ARGS
43#ifdef PUSH_ROUNDING
44#define PUSH_ARGS !ACCUMULATE_OUTGOING_ARGS
45#else
46#define PUSH_ARGS 0
47#endif
48#endif
49
0a1c58a2
JL
50#if !defined FUNCTION_OK_FOR_SIBCALL
51#define FUNCTION_OK_FOR_SIBCALL(DECL) 1
52#endif
53
c795bca9
BS
54#if !defined PREFERRED_STACK_BOUNDARY && defined STACK_BOUNDARY
55#define PREFERRED_STACK_BOUNDARY STACK_BOUNDARY
56#endif
57
51bbfa0c 58/* Decide whether a function's arguments should be processed
bbc8a071
RK
59 from first to last or from last to first.
60
61 They should if the stack and args grow in opposite directions, but
62 only if we have push insns. */
51bbfa0c 63
51bbfa0c 64#ifdef PUSH_ROUNDING
bbc8a071 65
40083ddf 66#if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
f73ad30e 67#define PUSH_ARGS_REVERSED PUSH_ARGS
51bbfa0c 68#endif
bbc8a071 69
51bbfa0c
RS
70#endif
71
f73ad30e
JH
72#ifndef PUSH_ARGS_REVERSED
73#define PUSH_ARGS_REVERSED 0
74#endif
75
c795bca9
BS
76/* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
77#define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
51bbfa0c
RS
78
79/* Data structure and subroutines used within expand_call. */
80
81struct arg_data
82{
83 /* Tree node for this argument. */
84 tree tree_value;
1efe6448
RK
85 /* Mode for value; TYPE_MODE unless promoted. */
86 enum machine_mode mode;
51bbfa0c
RS
87 /* Current RTL value for argument, or 0 if it isn't precomputed. */
88 rtx value;
89 /* Initially-compute RTL value for argument; only for const functions. */
90 rtx initial_value;
91 /* Register to pass this argument in, 0 if passed on stack, or an
cacbd532 92 PARALLEL if the arg is to be copied into multiple non-contiguous
51bbfa0c
RS
93 registers. */
94 rtx reg;
099e9712
JH
95 /* Register to pass this argument in when generating tail call sequence.
96 This is not the same register as for normal calls on machines with
97 register windows. */
98 rtx tail_call_reg;
84b55618
RK
99 /* If REG was promoted from the actual mode of the argument expression,
100 indicates whether the promotion is sign- or zero-extended. */
101 int unsignedp;
51bbfa0c
RS
102 /* Number of registers to use. 0 means put the whole arg in registers.
103 Also 0 if not passed in registers. */
104 int partial;
d64f5a78
RS
105 /* Non-zero if argument must be passed on stack.
106 Note that some arguments may be passed on the stack
107 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
108 pass_on_stack identifies arguments that *cannot* go in registers. */
51bbfa0c
RS
109 int pass_on_stack;
110 /* Offset of this argument from beginning of stack-args. */
111 struct args_size offset;
112 /* Similar, but offset to the start of the stack slot. Different from
113 OFFSET if this arg pads downward. */
114 struct args_size slot_offset;
115 /* Size of this argument on the stack, rounded up for any padding it gets,
116 parts of the argument passed in registers do not count.
117 If REG_PARM_STACK_SPACE is defined, then register parms
118 are counted here as well. */
119 struct args_size size;
120 /* Location on the stack at which parameter should be stored. The store
121 has already been done if STACK == VALUE. */
122 rtx stack;
123 /* Location on the stack of the start of this argument slot. This can
124 differ from STACK if this arg pads downward. This location is known
125 to be aligned to FUNCTION_ARG_BOUNDARY. */
126 rtx stack_slot;
51bbfa0c
RS
127 /* Place that this stack area has been saved, if needed. */
128 rtx save_area;
4ab56118
RK
129 /* If an argument's alignment does not permit direct copying into registers,
130 copy in smaller-sized pieces into pseudos. These are stored in a
131 block pointed to by this field. The next field says how many
132 word-sized pseudos we made. */
133 rtx *aligned_regs;
134 int n_aligned_regs;
4fc026cd
CM
135 /* The amount that the stack pointer needs to be adjusted to
136 force alignment for the next argument. */
137 struct args_size alignment_pad;
51bbfa0c
RS
138};
139
b94301c2 140/* A vector of one char per byte of stack space. A byte if non-zero if
51bbfa0c
RS
141 the corresponding stack location has been used.
142 This vector is used to prevent a function call within an argument from
143 clobbering any stack already set up. */
144static char *stack_usage_map;
145
146/* Size of STACK_USAGE_MAP. */
147static int highest_outgoing_arg_in_use;
2f4aa534 148
c67846f2
JJ
149/* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
150 stack location's tail call argument has been already stored into the stack.
151 This bitmap is used to prevent sibling call optimization if function tries
152 to use parent's incoming argument slots when they have been already
153 overwritten with tail call arguments. */
154static sbitmap stored_args_map;
155
2f4aa534
RS
156/* stack_arg_under_construction is nonzero when an argument may be
157 initialized with a constructor call (including a C function that
158 returns a BLKmode struct) and expand_call must take special action
159 to make sure the object being constructed does not overlap the
160 argument list for the constructor call. */
161int stack_arg_under_construction;
51bbfa0c 162
3d994c6b
KG
163static int calls_function PARAMS ((tree, int));
164static int calls_function_1 PARAMS ((tree, int));
0a1c58a2 165
f2d33f13
JH
166/* Nonzero if this is a call to a `const' function. */
167#define ECF_CONST 1
168/* Nonzero if this is a call to a `volatile' function. */
169#define ECF_NORETURN 2
170/* Nonzero if this is a call to malloc or a related function. */
171#define ECF_MALLOC 4
172/* Nonzero if it is plausible that this is a call to alloca. */
173#define ECF_MAY_BE_ALLOCA 8
174/* Nonzero if this is a call to a function that won't throw an exception. */
175#define ECF_NOTHROW 16
176/* Nonzero if this is a call to setjmp or a related function. */
177#define ECF_RETURNS_TWICE 32
178/* Nonzero if this is a call to `longjmp'. */
179#define ECF_LONGJMP 64
180/* Nonzero if this is a syscall that makes a new process in the image of
181 the current one. */
182#define ECF_FORK_OR_EXEC 128
183#define ECF_SIBCALL 256
2a8f6b90
JH
184/* Nonzero if this is a call to "pure" function (like const function,
185 but may read memory. */
186#define ECF_PURE 512
7393c642
RK
187/* Nonzero if this is a call to a function that returns with the stack
188 pointer depressed. */
189#define ECF_SP_DEPRESSED 1024
f2d33f13 190
3d994c6b
KG
191static void emit_call_1 PARAMS ((rtx, tree, tree, HOST_WIDE_INT,
192 HOST_WIDE_INT, HOST_WIDE_INT, rtx,
0a1c58a2 193 rtx, int, rtx, int));
3d994c6b
KG
194static void precompute_register_parameters PARAMS ((int,
195 struct arg_data *,
196 int *));
4c6b3b2a 197static int store_one_arg PARAMS ((struct arg_data *, rtx, int, int,
3d994c6b
KG
198 int));
199static void store_unaligned_arguments_into_pseudos PARAMS ((struct arg_data *,
200 int));
201static int finalize_must_preallocate PARAMS ((int, int,
202 struct arg_data *,
203 struct args_size *));
40d6e956
JH
204static void precompute_arguments PARAMS ((int, int,
205 struct arg_data *));
3d994c6b 206static int compute_argument_block_size PARAMS ((int,
c2f8b491
JH
207 struct args_size *,
208 int));
3d994c6b
KG
209static void initialize_argument_information PARAMS ((int,
210 struct arg_data *,
211 struct args_size *,
212 int, tree, tree,
213 CUMULATIVE_ARGS *,
214 int, rtx *, int *,
f2d33f13 215 int *, int *));
3d994c6b
KG
216static void compute_argument_addresses PARAMS ((struct arg_data *,
217 rtx, int));
218static rtx rtx_for_function_call PARAMS ((tree, tree));
219static void load_register_parameters PARAMS ((struct arg_data *,
099e9712 220 int, rtx *, int));
12a22e76 221static int libfunc_nothrow PARAMS ((rtx));
de76b467
JH
222static rtx emit_library_call_value_1 PARAMS ((int, rtx, rtx, int,
223 enum machine_mode,
224 int, va_list));
f2d33f13
JH
225static int special_function_p PARAMS ((tree, int));
226static int flags_from_decl_or_type PARAMS ((tree));
227static rtx try_to_integrate PARAMS ((tree, tree, rtx,
228 int, tree, rtx));
c67846f2
JJ
229static int check_sibcall_argument_overlap_1 PARAMS ((rtx));
230static int check_sibcall_argument_overlap PARAMS ((rtx, struct arg_data *));
231
ce48579b 232static int combine_pending_stack_adjustment_and_call
739fb049 233 PARAMS ((int, struct args_size *, int));
21a3b983 234
f73ad30e 235#ifdef REG_PARM_STACK_SPACE
3d994c6b
KG
236static rtx save_fixed_argument_area PARAMS ((int, rtx, int *, int *));
237static void restore_fixed_argument_area PARAMS ((rtx, rtx, int, int));
20efdf74 238#endif
51bbfa0c 239\f
1ce0cb53
JW
240/* If WHICH is 1, return 1 if EXP contains a call to the built-in function
241 `alloca'.
242
243 If WHICH is 0, return 1 if EXP contains a call to any function.
244 Actually, we only need return 1 if evaluating EXP would require pushing
245 arguments on the stack, but that is too difficult to compute, so we just
246 assume any function call might require the stack. */
51bbfa0c 247
1c8d7aef
RS
248static tree calls_function_save_exprs;
249
51bbfa0c 250static int
1ce0cb53 251calls_function (exp, which)
51bbfa0c 252 tree exp;
1ce0cb53 253 int which;
1c8d7aef
RS
254{
255 int val;
8d5e6e25 256
1c8d7aef
RS
257 calls_function_save_exprs = 0;
258 val = calls_function_1 (exp, which);
259 calls_function_save_exprs = 0;
260 return val;
261}
262
8d5e6e25
RK
263/* Recursive function to do the work of above function. */
264
1c8d7aef
RS
265static int
266calls_function_1 (exp, which)
267 tree exp;
268 int which;
51bbfa0c
RS
269{
270 register int i;
0207efa2 271 enum tree_code code = TREE_CODE (exp);
8d5e6e25
RK
272 int class = TREE_CODE_CLASS (code);
273 int length = first_rtl_op (code);
51bbfa0c 274
ddd5a7c1 275 /* If this code is language-specific, we don't know what it will do. */
0207efa2
RK
276 if ((int) code >= NUM_TREE_CODES)
277 return 1;
51bbfa0c 278
0207efa2 279 switch (code)
51bbfa0c
RS
280 {
281 case CALL_EXPR:
1ce0cb53
JW
282 if (which == 0)
283 return 1;
43db0363
RK
284 else if ((TREE_CODE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))))
285 == FUNCTION_TYPE)
286 && (TYPE_RETURNS_STACK_DEPRESSED
287 (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))))))
7393c642 288 return 1;
1ce0cb53
JW
289 else if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
290 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
8d5e6e25
RK
291 == FUNCTION_DECL)
292 && (special_function_p (TREE_OPERAND (TREE_OPERAND (exp, 0), 0),
293 0)
294 & ECF_MAY_BE_ALLOCA))
295 return 1;
51bbfa0c 296
51bbfa0c
RS
297 break;
298
299 case SAVE_EXPR:
300 if (SAVE_EXPR_RTL (exp) != 0)
301 return 0;
1c8d7aef
RS
302 if (value_member (exp, calls_function_save_exprs))
303 return 0;
304 calls_function_save_exprs = tree_cons (NULL_TREE, exp,
305 calls_function_save_exprs);
306 return (TREE_OPERAND (exp, 0) != 0
307 && calls_function_1 (TREE_OPERAND (exp, 0), which));
51bbfa0c
RS
308
309 case BLOCK:
ef03bc85
CH
310 {
311 register tree local;
8d5e6e25 312 register tree subblock;
ef03bc85
CH
313
314 for (local = BLOCK_VARS (exp); local; local = TREE_CHAIN (local))
1ce0cb53 315 if (DECL_INITIAL (local) != 0
1c8d7aef 316 && calls_function_1 (DECL_INITIAL (local), which))
ef03bc85 317 return 1;
ef03bc85
CH
318
319 for (subblock = BLOCK_SUBBLOCKS (exp);
320 subblock;
321 subblock = TREE_CHAIN (subblock))
1c8d7aef 322 if (calls_function_1 (subblock, which))
ef03bc85
CH
323 return 1;
324 }
325 return 0;
8d5e6e25 326
0c4c16df
JH
327 case TREE_LIST:
328 for (; exp != 0; exp = TREE_CHAIN (exp))
329 if (calls_function_1 (TREE_VALUE (exp), which))
330 return 1;
331 return 0;
51bbfa0c 332
e9a25f70
JL
333 default:
334 break;
51bbfa0c
RS
335 }
336
8d5e6e25
RK
337 /* Only expressions, references, and blocks can contain calls. */
338 if (! IS_EXPR_CODE_CLASS (class) && class != 'r' && class != 'b')
0c4c16df
JH
339 return 0;
340
51bbfa0c
RS
341 for (i = 0; i < length; i++)
342 if (TREE_OPERAND (exp, i) != 0
1c8d7aef 343 && calls_function_1 (TREE_OPERAND (exp, i), which))
51bbfa0c
RS
344 return 1;
345
346 return 0;
347}
348\f
349/* Force FUNEXP into a form suitable for the address of a CALL,
350 and return that as an rtx. Also load the static chain register
351 if FNDECL is a nested function.
352
77cac2f2
RK
353 CALL_FUSAGE points to a variable holding the prospective
354 CALL_INSN_FUNCTION_USAGE information. */
51bbfa0c 355
03dacb02 356rtx
77cac2f2 357prepare_call_address (funexp, fndecl, call_fusage, reg_parm_seen)
51bbfa0c
RS
358 rtx funexp;
359 tree fndecl;
77cac2f2 360 rtx *call_fusage;
01368078 361 int reg_parm_seen;
51bbfa0c
RS
362{
363 rtx static_chain_value = 0;
364
365 funexp = protect_from_queue (funexp, 0);
366
367 if (fndecl != 0)
0f41302f 368 /* Get possible static chain value for nested function in C. */
51bbfa0c
RS
369 static_chain_value = lookup_static_chain (fndecl);
370
371 /* Make a valid memory address and copy constants thru pseudo-regs,
372 but not for a constant address if -fno-function-cse. */
373 if (GET_CODE (funexp) != SYMBOL_REF)
01368078 374 /* If we are using registers for parameters, force the
e9a25f70
JL
375 function address into a register now. */
376 funexp = ((SMALL_REGISTER_CLASSES && reg_parm_seen)
377 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
378 : memory_address (FUNCTION_MODE, funexp));
51bbfa0c
RS
379 else
380 {
381#ifndef NO_FUNCTION_CSE
382 if (optimize && ! flag_no_function_cse)
383#ifdef NO_RECURSIVE_FUNCTION_CSE
384 if (fndecl != current_function_decl)
385#endif
386 funexp = force_reg (Pmode, funexp);
387#endif
388 }
389
390 if (static_chain_value != 0)
391 {
392 emit_move_insn (static_chain_rtx, static_chain_value);
393
f991a240
RK
394 if (GET_CODE (static_chain_rtx) == REG)
395 use_reg (call_fusage, static_chain_rtx);
51bbfa0c
RS
396 }
397
398 return funexp;
399}
400
401/* Generate instructions to call function FUNEXP,
402 and optionally pop the results.
403 The CALL_INSN is the first insn generated.
404
607ea900 405 FNDECL is the declaration node of the function. This is given to the
2c8da025
RK
406 macro RETURN_POPS_ARGS to determine whether this function pops its own args.
407
334c4f0f
RK
408 FUNTYPE is the data type of the function. This is given to the macro
409 RETURN_POPS_ARGS to determine whether this function pops its own args.
410 We used to allow an identifier for library functions, but that doesn't
411 work when the return type is an aggregate type and the calling convention
412 says that the pointer to this aggregate is to be popped by the callee.
51bbfa0c
RS
413
414 STACK_SIZE is the number of bytes of arguments on the stack,
c2732da3
JM
415 ROUNDED_STACK_SIZE is that number rounded up to
416 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
417 both to put into the call insn and to generate explicit popping
418 code if necessary.
51bbfa0c
RS
419
420 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
421 It is zero if this call doesn't want a structure value.
422
423 NEXT_ARG_REG is the rtx that results from executing
424 FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1)
425 just after all the args have had their registers assigned.
426 This could be whatever you like, but normally it is the first
427 arg-register beyond those used for args in this call,
428 or 0 if all the arg-registers are used in this call.
429 It is passed on to `gen_call' so you can put this info in the call insn.
430
431 VALREG is a hard register in which a value is returned,
432 or 0 if the call does not return a value.
433
434 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
435 the args to this call were processed.
436 We restore `inhibit_defer_pop' to that value.
437
94b25f81 438 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
7393c642
RK
439 denote registers used by the called function. */
440
322e3e34 441static void
fb5eebb9
RH
442emit_call_1 (funexp, fndecl, funtype, stack_size, rounded_stack_size,
443 struct_value_size, next_arg_reg, valreg, old_inhibit_defer_pop,
0a1c58a2 444 call_fusage, ecf_flags)
51bbfa0c 445 rtx funexp;
c84e2712
KG
446 tree fndecl ATTRIBUTE_UNUSED;
447 tree funtype ATTRIBUTE_UNUSED;
6a651371 448 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED;
fb5eebb9 449 HOST_WIDE_INT rounded_stack_size;
962f1324 450 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED;
51bbfa0c
RS
451 rtx next_arg_reg;
452 rtx valreg;
453 int old_inhibit_defer_pop;
77cac2f2 454 rtx call_fusage;
0a1c58a2 455 int ecf_flags;
51bbfa0c 456{
062e7fd8 457 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
51bbfa0c
RS
458 rtx call_insn;
459 int already_popped = 0;
fb5eebb9 460 HOST_WIDE_INT n_popped = RETURN_POPS_ARGS (fndecl, funtype, stack_size);
f45c9d95
ZW
461#if defined (HAVE_call) && defined (HAVE_call_value)
462 rtx struct_value_size_rtx;
463 struct_value_size_rtx = GEN_INT (struct_value_size);
464#endif
51bbfa0c
RS
465
466 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
467 and we don't want to load it into a register as an optimization,
468 because prepare_call_address already did it if it should be done. */
469 if (GET_CODE (funexp) != SYMBOL_REF)
470 funexp = memory_address (FUNCTION_MODE, funexp);
471
0a1c58a2
JL
472#if defined (HAVE_sibcall_pop) && defined (HAVE_sibcall_value_pop)
473 if ((ecf_flags & ECF_SIBCALL)
474 && HAVE_sibcall_pop && HAVE_sibcall_value_pop
475 && (RETURN_POPS_ARGS (fndecl, funtype, stack_size) > 0
476 || stack_size == 0))
477 {
478 rtx n_pop = GEN_INT (RETURN_POPS_ARGS (fndecl, funtype, stack_size));
479 rtx pat;
480
481 /* If this subroutine pops its own args, record that in the call insn
482 if possible, for the sake of frame pointer elimination. */
483
484 if (valreg)
f45c9d95 485 pat = GEN_SIBCALL_VALUE_POP (valreg,
0a1c58a2
JL
486 gen_rtx_MEM (FUNCTION_MODE, funexp),
487 rounded_stack_size_rtx, next_arg_reg,
488 n_pop);
489 else
f45c9d95 490 pat = GEN_SIBCALL_POP (gen_rtx_MEM (FUNCTION_MODE, funexp),
0a1c58a2
JL
491 rounded_stack_size_rtx, next_arg_reg, n_pop);
492
493 emit_call_insn (pat);
494 already_popped = 1;
495 }
496 else
497#endif
498
51bbfa0c 499#if defined (HAVE_call_pop) && defined (HAVE_call_value_pop)
8bcafee3
JDA
500/* If the target has "call" or "call_value" insns, then prefer them
501 if no arguments are actually popped. If the target does not have
502 "call" or "call_value" insns, then we must use the popping versions
503 even if the call has no arguments to pop. */
504#if defined (HAVE_call) && defined (HAVE_call_value)
505 if (HAVE_call && HAVE_call_value && HAVE_call_pop && HAVE_call_value_pop
7393c642 506 && n_popped > 0 && ! (ecf_flags & ECF_SP_DEPRESSED))
8bcafee3
JDA
507#else
508 if (HAVE_call_pop && HAVE_call_value_pop)
509#endif
51bbfa0c 510 {
fb5eebb9 511 rtx n_pop = GEN_INT (n_popped);
51bbfa0c
RS
512 rtx pat;
513
514 /* If this subroutine pops its own args, record that in the call insn
515 if possible, for the sake of frame pointer elimination. */
2c8da025 516
51bbfa0c 517 if (valreg)
f45c9d95 518 pat = GEN_CALL_VALUE_POP (valreg,
38a448ca 519 gen_rtx_MEM (FUNCTION_MODE, funexp),
062e7fd8 520 rounded_stack_size_rtx, next_arg_reg, n_pop);
51bbfa0c 521 else
f45c9d95 522 pat = GEN_CALL_POP (gen_rtx_MEM (FUNCTION_MODE, funexp),
062e7fd8 523 rounded_stack_size_rtx, next_arg_reg, n_pop);
51bbfa0c
RS
524
525 emit_call_insn (pat);
526 already_popped = 1;
527 }
528 else
529#endif
51bbfa0c 530
0a1c58a2
JL
531#if defined (HAVE_sibcall) && defined (HAVE_sibcall_value)
532 if ((ecf_flags & ECF_SIBCALL)
533 && HAVE_sibcall && HAVE_sibcall_value)
534 {
535 if (valreg)
f45c9d95 536 emit_call_insn (GEN_SIBCALL_VALUE (valreg,
0a1c58a2
JL
537 gen_rtx_MEM (FUNCTION_MODE, funexp),
538 rounded_stack_size_rtx,
539 next_arg_reg, NULL_RTX));
540 else
f45c9d95 541 emit_call_insn (GEN_SIBCALL (gen_rtx_MEM (FUNCTION_MODE, funexp),
0a1c58a2
JL
542 rounded_stack_size_rtx, next_arg_reg,
543 struct_value_size_rtx));
544 }
545 else
546#endif
547
51bbfa0c
RS
548#if defined (HAVE_call) && defined (HAVE_call_value)
549 if (HAVE_call && HAVE_call_value)
550 {
551 if (valreg)
f45c9d95 552 emit_call_insn (GEN_CALL_VALUE (valreg,
38a448ca 553 gen_rtx_MEM (FUNCTION_MODE, funexp),
062e7fd8 554 rounded_stack_size_rtx, next_arg_reg,
e992302c 555 NULL_RTX));
51bbfa0c 556 else
f45c9d95 557 emit_call_insn (GEN_CALL (gen_rtx_MEM (FUNCTION_MODE, funexp),
062e7fd8 558 rounded_stack_size_rtx, next_arg_reg,
51bbfa0c
RS
559 struct_value_size_rtx));
560 }
561 else
562#endif
563 abort ();
564
77cac2f2 565 /* Find the CALL insn we just emitted. */
51bbfa0c
RS
566 for (call_insn = get_last_insn ();
567 call_insn && GET_CODE (call_insn) != CALL_INSN;
568 call_insn = PREV_INSN (call_insn))
569 ;
570
571 if (! call_insn)
572 abort ();
573
2a8f6b90
JH
574 /* Mark memory as used for "pure" function call. */
575 if (ecf_flags & ECF_PURE)
576 {
577 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
578 gen_rtx_USE (VOIDmode,
579 gen_rtx_MEM (BLKmode,
580 gen_rtx_SCRATCH (VOIDmode))), call_fusage);
581 }
582
e59e60a7
RK
583 /* Put the register usage information on the CALL. If there is already
584 some usage information, put ours at the end. */
585 if (CALL_INSN_FUNCTION_USAGE (call_insn))
586 {
587 rtx link;
588
589 for (link = CALL_INSN_FUNCTION_USAGE (call_insn); XEXP (link, 1) != 0;
590 link = XEXP (link, 1))
591 ;
592
593 XEXP (link, 1) = call_fusage;
594 }
595 else
596 CALL_INSN_FUNCTION_USAGE (call_insn) = call_fusage;
51bbfa0c
RS
597
598 /* If this is a const call, then set the insn's unchanging bit. */
2a8f6b90 599 if (ecf_flags & (ECF_CONST | ECF_PURE))
51bbfa0c
RS
600 CONST_CALL_P (call_insn) = 1;
601
12a22e76
JM
602 /* If this call can't throw, attach a REG_EH_REGION reg note to that
603 effect. */
0a1c58a2 604 if (ecf_flags & ECF_NOTHROW)
54cea123 605 REG_NOTES (call_insn) = gen_rtx_EXPR_LIST (REG_EH_REGION, const0_rtx,
12a22e76
JM
606 REG_NOTES (call_insn));
607
0a1c58a2
JL
608 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
609
b1e64e0d
RS
610 /* Restore this now, so that we do defer pops for this call's args
611 if the context of the call as a whole permits. */
612 inhibit_defer_pop = old_inhibit_defer_pop;
613
fb5eebb9 614 if (n_popped > 0)
51bbfa0c
RS
615 {
616 if (!already_popped)
e3da301d 617 CALL_INSN_FUNCTION_USAGE (call_insn)
38a448ca
RH
618 = gen_rtx_EXPR_LIST (VOIDmode,
619 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
620 CALL_INSN_FUNCTION_USAGE (call_insn));
fb5eebb9 621 rounded_stack_size -= n_popped;
062e7fd8 622 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
1503a7ec 623 stack_pointer_delta -= n_popped;
51bbfa0c
RS
624 }
625
f73ad30e 626 if (!ACCUMULATE_OUTGOING_ARGS)
51bbfa0c 627 {
f73ad30e
JH
628 /* If returning from the subroutine does not automatically pop the args,
629 we need an instruction to pop them sooner or later.
630 Perhaps do it now; perhaps just record how much space to pop later.
631
632 If returning from the subroutine does pop the args, indicate that the
633 stack pointer will be changed. */
634
7393c642 635 if (rounded_stack_size != 0 && ! (ecf_flags & ECF_SP_DEPRESSED))
f73ad30e
JH
636 {
637 if (flag_defer_pop && inhibit_defer_pop == 0
7393c642 638 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
f73ad30e
JH
639 pending_stack_adjust += rounded_stack_size;
640 else
641 adjust_stack (rounded_stack_size_rtx);
642 }
51bbfa0c 643 }
f73ad30e
JH
644 /* When we accumulate outgoing args, we must avoid any stack manipulations.
645 Restore the stack pointer to its original value now. Usually
646 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
647 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
648 popping variants of functions exist as well.
649
650 ??? We may optimize similar to defer_pop above, but it is
651 probably not worthwhile.
652
653 ??? It will be worthwhile to enable combine_stack_adjustments even for
654 such machines. */
655 else if (n_popped)
656 anti_adjust_stack (GEN_INT (n_popped));
51bbfa0c
RS
657}
658
20efdf74
JL
659/* Determine if the function identified by NAME and FNDECL is one with
660 special properties we wish to know about.
661
662 For example, if the function might return more than one time (setjmp), then
663 set RETURNS_TWICE to a nonzero value.
664
f2d33f13 665 Similarly set LONGJMP for if the function is in the longjmp family.
20efdf74 666
f2d33f13 667 Set MALLOC for any of the standard memory allocation functions which
20efdf74
JL
668 allocate from the heap.
669
670 Set MAY_BE_ALLOCA for any memory allocation function that might allocate
671 space from the stack such as alloca. */
672
f2d33f13
JH
673static int
674special_function_p (fndecl, flags)
20efdf74 675 tree fndecl;
f2d33f13 676 int flags;
20efdf74 677{
f2d33f13 678 if (! (flags & ECF_MALLOC)
3a8c995b 679 && fndecl && DECL_NAME (fndecl)
140592a0 680 && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) <= 17
20efdf74
JL
681 /* Exclude functions not at the file scope, or not `extern',
682 since they are not the magic functions we would otherwise
683 think they are. */
684 && DECL_CONTEXT (fndecl) == NULL_TREE && TREE_PUBLIC (fndecl))
685 {
3a8c995b 686 char *name = IDENTIFIER_POINTER (DECL_NAME (fndecl));
20efdf74
JL
687 char *tname = name;
688
ca54603f
JL
689 /* We assume that alloca will always be called by name. It
690 makes no sense to pass it as a pointer-to-function to
691 anything that does not understand its behavior. */
f2d33f13
JH
692 if (((IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 6
693 && name[0] == 'a'
694 && ! strcmp (name, "alloca"))
695 || (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 16
696 && name[0] == '_'
697 && ! strcmp (name, "__builtin_alloca"))))
698 flags |= ECF_MAY_BE_ALLOCA;
ca54603f 699
20efdf74
JL
700 /* Disregard prefix _, __ or __x. */
701 if (name[0] == '_')
702 {
703 if (name[1] == '_' && name[2] == 'x')
704 tname += 3;
705 else if (name[1] == '_')
706 tname += 2;
707 else
708 tname += 1;
709 }
710
711 if (tname[0] == 's')
712 {
f2d33f13
JH
713 if ((tname[1] == 'e'
714 && (! strcmp (tname, "setjmp")
715 || ! strcmp (tname, "setjmp_syscall")))
716 || (tname[1] == 'i'
717 && ! strcmp (tname, "sigsetjmp"))
718 || (tname[1] == 'a'
719 && ! strcmp (tname, "savectx")))
720 flags |= ECF_RETURNS_TWICE;
721
20efdf74
JL
722 if (tname[1] == 'i'
723 && ! strcmp (tname, "siglongjmp"))
f2d33f13 724 flags |= ECF_LONGJMP;
20efdf74
JL
725 }
726 else if ((tname[0] == 'q' && tname[1] == 's'
727 && ! strcmp (tname, "qsetjmp"))
728 || (tname[0] == 'v' && tname[1] == 'f'
729 && ! strcmp (tname, "vfork")))
f2d33f13 730 flags |= ECF_RETURNS_TWICE;
20efdf74
JL
731
732 else if (tname[0] == 'l' && tname[1] == 'o'
733 && ! strcmp (tname, "longjmp"))
f2d33f13 734 flags |= ECF_LONGJMP;
fa76d9e0
JR
735
736 else if ((tname[0] == 'f' && tname[1] == 'o'
737 && ! strcmp (tname, "fork"))
738 /* Linux specific: __clone. check NAME to insist on the
739 leading underscores, to avoid polluting the ISO / POSIX
740 namespace. */
741 || (name[0] == '_' && name[1] == '_'
742 && ! strcmp (tname, "clone"))
743 || (tname[0] == 'e' && tname[1] == 'x' && tname[2] == 'e'
744 && tname[3] == 'c' && (tname[4] == 'l' || tname[4] == 'v')
745 && (tname[5] == '\0'
746 || ((tname[5] == 'p' || tname[5] == 'e')
747 && tname[6] == '\0'))))
f2d33f13 748 flags |= ECF_FORK_OR_EXEC;
fa76d9e0 749
140592a0 750 /* Do not add any more malloc-like functions to this list,
82514696
KG
751 instead mark them as malloc functions using the malloc attribute.
752 Note, realloc is not suitable for attribute malloc since
1e5a1107
JM
753 it may return the same address across multiple calls.
754 C++ operator new is not suitable because it is not required
755 to return a unique pointer; indeed, the standard placement new
756 just returns its argument. */
91d024d5
ML
757 else if (TYPE_MODE (TREE_TYPE (TREE_TYPE (fndecl))) == Pmode
758 && (! strcmp (tname, "malloc")
759 || ! strcmp (tname, "calloc")
760 || ! strcmp (tname, "strdup")))
f2d33f13 761 flags |= ECF_MALLOC;
20efdf74 762 }
f2d33f13 763 return flags;
20efdf74
JL
764}
765
f2d33f13 766/* Return nonzero when tree represent call to longjmp. */
7393c642 767
f2d33f13
JH
768int
769setjmp_call_p (fndecl)
770 tree fndecl;
771{
772 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
773}
774
775/* Detect flags (function attributes) from the function type node. */
7393c642 776
f2d33f13
JH
777static int
778flags_from_decl_or_type (exp)
779 tree exp;
780{
781 int flags = 0;
7393c642 782
f2d33f13
JH
783 /* ??? We can't set IS_MALLOC for function types? */
784 if (DECL_P (exp))
785 {
786 /* The function exp may have the `malloc' attribute. */
787 if (DECL_P (exp) && DECL_IS_MALLOC (exp))
788 flags |= ECF_MALLOC;
789
2a8f6b90
JH
790 /* The function exp may have the `pure' attribute. */
791 if (DECL_P (exp) && DECL_IS_PURE (exp))
792 flags |= ECF_PURE;
793
f2d33f13
JH
794 if (TREE_NOTHROW (exp))
795 flags |= ECF_NOTHROW;
796 }
797
7393c642 798 if (TREE_READONLY (exp) && ! TREE_THIS_VOLATILE (exp))
f2d33f13
JH
799 flags |= ECF_CONST;
800
801 if (TREE_THIS_VOLATILE (exp))
802 flags |= ECF_NORETURN;
803
804 return flags;
805}
806
807
20efdf74
JL
808/* Precompute all register parameters as described by ARGS, storing values
809 into fields within the ARGS array.
810
811 NUM_ACTUALS indicates the total number elements in the ARGS array.
812
813 Set REG_PARM_SEEN if we encounter a register parameter. */
814
815static void
816precompute_register_parameters (num_actuals, args, reg_parm_seen)
817 int num_actuals;
818 struct arg_data *args;
819 int *reg_parm_seen;
820{
821 int i;
822
823 *reg_parm_seen = 0;
824
825 for (i = 0; i < num_actuals; i++)
826 if (args[i].reg != 0 && ! args[i].pass_on_stack)
827 {
828 *reg_parm_seen = 1;
829
830 if (args[i].value == 0)
831 {
832 push_temp_slots ();
833 args[i].value = expand_expr (args[i].tree_value, NULL_RTX,
834 VOIDmode, 0);
835 preserve_temp_slots (args[i].value);
836 pop_temp_slots ();
837
838 /* ANSI doesn't require a sequence point here,
839 but PCC has one, so this will avoid some problems. */
840 emit_queue ();
841 }
842
843 /* If we are to promote the function arg to a wider mode,
844 do it now. */
845
846 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
847 args[i].value
848 = convert_modes (args[i].mode,
849 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
850 args[i].value, args[i].unsignedp);
851
852 /* If the value is expensive, and we are inside an appropriately
853 short loop, put the value into a pseudo and then put the pseudo
854 into the hard reg.
855
856 For small register classes, also do this if this call uses
857 register parameters. This is to avoid reload conflicts while
858 loading the parameters registers. */
859
860 if ((! (GET_CODE (args[i].value) == REG
861 || (GET_CODE (args[i].value) == SUBREG
862 && GET_CODE (SUBREG_REG (args[i].value)) == REG)))
863 && args[i].mode != BLKmode
864 && rtx_cost (args[i].value, SET) > 2
865 && ((SMALL_REGISTER_CLASSES && *reg_parm_seen)
866 || preserve_subexpressions_p ()))
867 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
868 }
869}
870
f73ad30e 871#ifdef REG_PARM_STACK_SPACE
20efdf74
JL
872
873 /* The argument list is the property of the called routine and it
874 may clobber it. If the fixed area has been used for previous
875 parameters, we must save and restore it. */
3bdf5ad1 876
20efdf74
JL
877static rtx
878save_fixed_argument_area (reg_parm_stack_space, argblock,
879 low_to_save, high_to_save)
880 int reg_parm_stack_space;
881 rtx argblock;
882 int *low_to_save;
883 int *high_to_save;
884{
885 int i;
886 rtx save_area = NULL_RTX;
887
888 /* Compute the boundary of the that needs to be saved, if any. */
889#ifdef ARGS_GROW_DOWNWARD
890 for (i = 0; i < reg_parm_stack_space + 1; i++)
891#else
892 for (i = 0; i < reg_parm_stack_space; i++)
893#endif
894 {
895 if (i >= highest_outgoing_arg_in_use
896 || stack_usage_map[i] == 0)
897 continue;
898
899 if (*low_to_save == -1)
900 *low_to_save = i;
901
902 *high_to_save = i;
903 }
904
905 if (*low_to_save >= 0)
906 {
907 int num_to_save = *high_to_save - *low_to_save + 1;
908 enum machine_mode save_mode
909 = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
910 rtx stack_area;
911
912 /* If we don't have the required alignment, must do this in BLKmode. */
913 if ((*low_to_save & (MIN (GET_MODE_SIZE (save_mode),
914 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
915 save_mode = BLKmode;
916
917#ifdef ARGS_GROW_DOWNWARD
3bdf5ad1
RK
918 stack_area
919 = gen_rtx_MEM (save_mode,
920 memory_address (save_mode,
921 plus_constant (argblock,
922 - *high_to_save)));
20efdf74
JL
923#else
924 stack_area = gen_rtx_MEM (save_mode,
925 memory_address (save_mode,
926 plus_constant (argblock,
927 *low_to_save)));
928#endif
929 if (save_mode == BLKmode)
930 {
931 save_area = assign_stack_temp (BLKmode, num_to_save, 0);
19caa751
RK
932 /* Cannot use emit_block_move here because it can be done by a
933 library call which in turn gets into this place again and deadly
934 infinite recursion happens. */
04572513 935 move_by_pieces (validize_mem (save_area), stack_area, num_to_save,
19caa751 936 PARM_BOUNDARY);
20efdf74
JL
937 }
938 else
939 {
940 save_area = gen_reg_rtx (save_mode);
941 emit_move_insn (save_area, stack_area);
942 }
943 }
944 return save_area;
945}
946
947static void
948restore_fixed_argument_area (save_area, argblock, high_to_save, low_to_save)
949 rtx save_area;
950 rtx argblock;
951 int high_to_save;
952 int low_to_save;
953{
954 enum machine_mode save_mode = GET_MODE (save_area);
955#ifdef ARGS_GROW_DOWNWARD
956 rtx stack_area
957 = gen_rtx_MEM (save_mode,
958 memory_address (save_mode,
959 plus_constant (argblock,
960 - high_to_save)));
961#else
962 rtx stack_area
963 = gen_rtx_MEM (save_mode,
964 memory_address (save_mode,
965 plus_constant (argblock,
966 low_to_save)));
967#endif
968
969 if (save_mode != BLKmode)
970 emit_move_insn (stack_area, save_area);
971 else
04572513
JJ
972 /* Cannot use emit_block_move here because it can be done by a library
973 call which in turn gets into this place again and deadly infinite
974 recursion happens. */
975 move_by_pieces (stack_area, validize_mem (save_area),
19caa751 976 high_to_save - low_to_save + 1, PARM_BOUNDARY);
20efdf74
JL
977}
978#endif
979
980/* If any elements in ARGS refer to parameters that are to be passed in
981 registers, but not in memory, and whose alignment does not permit a
982 direct copy into registers. Copy the values into a group of pseudos
8e6a59fe
MM
983 which we will later copy into the appropriate hard registers.
984
985 Pseudos for each unaligned argument will be stored into the array
986 args[argnum].aligned_regs. The caller is responsible for deallocating
987 the aligned_regs array if it is nonzero. */
988
20efdf74
JL
989static void
990store_unaligned_arguments_into_pseudos (args, num_actuals)
991 struct arg_data *args;
992 int num_actuals;
993{
994 int i, j;
995
996 for (i = 0; i < num_actuals; i++)
997 if (args[i].reg != 0 && ! args[i].pass_on_stack
998 && args[i].mode == BLKmode
999 && (TYPE_ALIGN (TREE_TYPE (args[i].tree_value))
1000 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
1001 {
1002 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1003 int big_endian_correction = 0;
1004
1005 args[i].n_aligned_regs
1006 = args[i].partial ? args[i].partial
1007 : (bytes + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
1008
8e6a59fe
MM
1009 args[i].aligned_regs = (rtx *) xmalloc (sizeof (rtx)
1010 * args[i].n_aligned_regs);
20efdf74
JL
1011
1012 /* Structures smaller than a word are aligned to the least
1013 significant byte (to the right). On a BYTES_BIG_ENDIAN machine,
1014 this means we must skip the empty high order bytes when
1015 calculating the bit offset. */
1016 if (BYTES_BIG_ENDIAN && bytes < UNITS_PER_WORD)
1017 big_endian_correction = (BITS_PER_WORD - (bytes * BITS_PER_UNIT));
1018
1019 for (j = 0; j < args[i].n_aligned_regs; j++)
1020 {
1021 rtx reg = gen_reg_rtx (word_mode);
1022 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1023 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
1024 int bitalign = TYPE_ALIGN (TREE_TYPE (args[i].tree_value));
1025
1026 args[i].aligned_regs[j] = reg;
1027
1028 /* There is no need to restrict this code to loading items
1029 in TYPE_ALIGN sized hunks. The bitfield instructions can
1030 load up entire word sized registers efficiently.
1031
1032 ??? This may not be needed anymore.
1033 We use to emit a clobber here but that doesn't let later
1034 passes optimize the instructions we emit. By storing 0 into
1035 the register later passes know the first AND to zero out the
1036 bitfield being set in the register is unnecessary. The store
1037 of 0 will be deleted as will at least the first AND. */
1038
1039 emit_move_insn (reg, const0_rtx);
1040
1041 bytes -= bitsize / BITS_PER_UNIT;
1042 store_bit_field (reg, bitsize, big_endian_correction, word_mode,
19caa751
RK
1043 extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
1044 word_mode, word_mode, bitalign,
20efdf74 1045 BITS_PER_WORD),
19caa751 1046 bitalign, BITS_PER_WORD);
20efdf74
JL
1047 }
1048 }
1049}
1050
d7cdf113
JL
1051/* Fill in ARGS_SIZE and ARGS array based on the parameters found in
1052 ACTPARMS.
1053
1054 NUM_ACTUALS is the total number of parameters.
1055
1056 N_NAMED_ARGS is the total number of named arguments.
1057
1058 FNDECL is the tree code for the target of this call (if known)
1059
1060 ARGS_SO_FAR holds state needed by the target to know where to place
1061 the next argument.
1062
1063 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1064 for arguments which are passed in registers.
1065
1066 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1067 and may be modified by this routine.
1068
f2d33f13 1069 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
d7cdf113
JL
1070 flags which may may be modified by this routine. */
1071
1072static void
1073initialize_argument_information (num_actuals, args, args_size, n_named_args,
1074 actparms, fndecl, args_so_far,
1075 reg_parm_stack_space, old_stack_level,
f2d33f13 1076 old_pending_adj, must_preallocate,
7d167afd 1077 ecf_flags)
91813b28 1078 int num_actuals ATTRIBUTE_UNUSED;
d7cdf113
JL
1079 struct arg_data *args;
1080 struct args_size *args_size;
91813b28 1081 int n_named_args ATTRIBUTE_UNUSED;
d7cdf113
JL
1082 tree actparms;
1083 tree fndecl;
959f3a06 1084 CUMULATIVE_ARGS *args_so_far;
d7cdf113
JL
1085 int reg_parm_stack_space;
1086 rtx *old_stack_level;
1087 int *old_pending_adj;
1088 int *must_preallocate;
f2d33f13 1089 int *ecf_flags;
d7cdf113
JL
1090{
1091 /* 1 if scanning parms front to back, -1 if scanning back to front. */
1092 int inc;
1093
1094 /* Count arg position in order args appear. */
1095 int argpos;
1096
4fc026cd 1097 struct args_size alignment_pad;
d7cdf113
JL
1098 int i;
1099 tree p;
1100
1101 args_size->constant = 0;
1102 args_size->var = 0;
1103
1104 /* In this loop, we consider args in the order they are written.
1105 We fill up ARGS from the front or from the back if necessary
1106 so that in any case the first arg to be pushed ends up at the front. */
1107
f73ad30e
JH
1108 if (PUSH_ARGS_REVERSED)
1109 {
1110 i = num_actuals - 1, inc = -1;
1111 /* In this case, must reverse order of args
1112 so that we compute and push the last arg first. */
1113 }
1114 else
1115 {
1116 i = 0, inc = 1;
1117 }
d7cdf113
JL
1118
1119 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1120 for (p = actparms, argpos = 0; p; p = TREE_CHAIN (p), i += inc, argpos++)
1121 {
1122 tree type = TREE_TYPE (TREE_VALUE (p));
1123 int unsignedp;
1124 enum machine_mode mode;
1125
1126 args[i].tree_value = TREE_VALUE (p);
1127
1128 /* Replace erroneous argument with constant zero. */
d0f062fb 1129 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
d7cdf113
JL
1130 args[i].tree_value = integer_zero_node, type = integer_type_node;
1131
1132 /* If TYPE is a transparent union, pass things the way we would
1133 pass the first field of the union. We have already verified that
1134 the modes are the same. */
2bf105ab 1135 if (TREE_CODE (type) == UNION_TYPE && TYPE_TRANSPARENT_UNION (type))
d7cdf113
JL
1136 type = TREE_TYPE (TYPE_FIELDS (type));
1137
1138 /* Decide where to pass this arg.
1139
1140 args[i].reg is nonzero if all or part is passed in registers.
1141
1142 args[i].partial is nonzero if part but not all is passed in registers,
1143 and the exact value says how many words are passed in registers.
1144
1145 args[i].pass_on_stack is nonzero if the argument must at least be
1146 computed on the stack. It may then be loaded back into registers
1147 if args[i].reg is nonzero.
1148
1149 These decisions are driven by the FUNCTION_... macros and must agree
1150 with those made by function.c. */
1151
1152 /* See if this argument should be passed by invisible reference. */
1153 if ((TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST
1154 && contains_placeholder_p (TYPE_SIZE (type)))
1155 || TREE_ADDRESSABLE (type)
1156#ifdef FUNCTION_ARG_PASS_BY_REFERENCE
959f3a06 1157 || FUNCTION_ARG_PASS_BY_REFERENCE (*args_so_far, TYPE_MODE (type),
d7cdf113
JL
1158 type, argpos < n_named_args)
1159#endif
1160 )
1161 {
1162 /* If we're compiling a thunk, pass through invisible
1163 references instead of making a copy. */
1164 if (current_function_is_thunk
1165#ifdef FUNCTION_ARG_CALLEE_COPIES
959f3a06 1166 || (FUNCTION_ARG_CALLEE_COPIES (*args_so_far, TYPE_MODE (type),
d7cdf113
JL
1167 type, argpos < n_named_args)
1168 /* If it's in a register, we must make a copy of it too. */
1169 /* ??? Is this a sufficient test? Is there a better one? */
1170 && !(TREE_CODE (args[i].tree_value) == VAR_DECL
1171 && REG_P (DECL_RTL (args[i].tree_value)))
1172 && ! TREE_ADDRESSABLE (type))
1173#endif
1174 )
1175 {
1176 /* C++ uses a TARGET_EXPR to indicate that we want to make a
1177 new object from the argument. If we are passing by
1178 invisible reference, the callee will do that for us, so we
1179 can strip off the TARGET_EXPR. This is not always safe,
1180 but it is safe in the only case where this is a useful
1181 optimization; namely, when the argument is a plain object.
1182 In that case, the frontend is just asking the backend to
1183 make a bitwise copy of the argument. */
1184
1185 if (TREE_CODE (args[i].tree_value) == TARGET_EXPR
2f939d94 1186 && (DECL_P (TREE_OPERAND (args[i].tree_value, 1)))
d7cdf113
JL
1187 && ! REG_P (DECL_RTL (TREE_OPERAND (args[i].tree_value, 1))))
1188 args[i].tree_value = TREE_OPERAND (args[i].tree_value, 1);
1189
1190 args[i].tree_value = build1 (ADDR_EXPR,
1191 build_pointer_type (type),
1192 args[i].tree_value);
1193 type = build_pointer_type (type);
1194 }
1195 else
1196 {
1197 /* We make a copy of the object and pass the address to the
1198 function being called. */
1199 rtx copy;
1200
d0f062fb 1201 if (!COMPLETE_TYPE_P (type)
d7cdf113
JL
1202 || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST
1203 || (flag_stack_check && ! STACK_CHECK_BUILTIN
05bccae2
RK
1204 && (0 < compare_tree_int (TYPE_SIZE_UNIT (type),
1205 STACK_CHECK_MAX_VAR_SIZE))))
d7cdf113
JL
1206 {
1207 /* This is a variable-sized object. Make space on the stack
1208 for it. */
1209 rtx size_rtx = expr_size (TREE_VALUE (p));
1210
1211 if (*old_stack_level == 0)
1212 {
1213 emit_stack_save (SAVE_BLOCK, old_stack_level, NULL_RTX);
1214 *old_pending_adj = pending_stack_adjust;
1215 pending_stack_adjust = 0;
1216 }
1217
1218 copy = gen_rtx_MEM (BLKmode,
3bdf5ad1
RK
1219 allocate_dynamic_stack_space
1220 (size_rtx, NULL_RTX, TYPE_ALIGN (type)));
1221 set_mem_attributes (copy, type, 1);
d7cdf113
JL
1222 }
1223 else
3bdf5ad1 1224 copy = assign_temp (type, 0, 1, 0);
d7cdf113
JL
1225
1226 store_expr (args[i].tree_value, copy, 0);
2a8f6b90 1227 *ecf_flags &= ~(ECF_CONST | ECF_PURE);
d7cdf113
JL
1228
1229 args[i].tree_value = build1 (ADDR_EXPR,
1230 build_pointer_type (type),
1231 make_tree (type, copy));
1232 type = build_pointer_type (type);
1233 }
1234 }
1235
1236 mode = TYPE_MODE (type);
1237 unsignedp = TREE_UNSIGNED (type);
1238
1239#ifdef PROMOTE_FUNCTION_ARGS
1240 mode = promote_mode (type, mode, &unsignedp, 1);
1241#endif
1242
1243 args[i].unsignedp = unsignedp;
1244 args[i].mode = mode;
7d167afd 1245
099e9712
JH
1246 args[i].reg = FUNCTION_ARG (*args_so_far, mode, type,
1247 argpos < n_named_args);
7d167afd
JJ
1248#ifdef FUNCTION_INCOMING_ARG
1249 /* If this is a sibling call and the machine has register windows, the
1250 register window has to be unwinded before calling the routine, so
1251 arguments have to go into the incoming registers. */
099e9712 1252 args[i].tail_call_reg = FUNCTION_INCOMING_ARG (*args_so_far, mode, type,
7d167afd 1253 argpos < n_named_args);
099e9712
JH
1254#else
1255 args[i].tail_call_reg = args[i].reg;
7d167afd 1256#endif
7d167afd 1257
d7cdf113
JL
1258#ifdef FUNCTION_ARG_PARTIAL_NREGS
1259 if (args[i].reg)
1260 args[i].partial
959f3a06 1261 = FUNCTION_ARG_PARTIAL_NREGS (*args_so_far, mode, type,
d7cdf113
JL
1262 argpos < n_named_args);
1263#endif
1264
1265 args[i].pass_on_stack = MUST_PASS_IN_STACK (mode, type);
1266
1267 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1268 it means that we are to pass this arg in the register(s) designated
1269 by the PARALLEL, but also to pass it in the stack. */
1270 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1271 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1272 args[i].pass_on_stack = 1;
1273
1274 /* If this is an addressable type, we must preallocate the stack
1275 since we must evaluate the object into its final location.
1276
1277 If this is to be passed in both registers and the stack, it is simpler
1278 to preallocate. */
1279 if (TREE_ADDRESSABLE (type)
1280 || (args[i].pass_on_stack && args[i].reg != 0))
1281 *must_preallocate = 1;
1282
1283 /* If this is an addressable type, we cannot pre-evaluate it. Thus,
1284 we cannot consider this function call constant. */
1285 if (TREE_ADDRESSABLE (type))
2a8f6b90 1286 *ecf_flags &= ~(ECF_CONST | ECF_PURE);
d7cdf113
JL
1287
1288 /* Compute the stack-size of this argument. */
1289 if (args[i].reg == 0 || args[i].partial != 0
1290 || reg_parm_stack_space > 0
1291 || args[i].pass_on_stack)
1292 locate_and_pad_parm (mode, type,
1293#ifdef STACK_PARMS_IN_REG_PARM_AREA
1294 1,
1295#else
1296 args[i].reg != 0,
1297#endif
1298 fndecl, args_size, &args[i].offset,
4fc026cd 1299 &args[i].size, &alignment_pad);
d7cdf113
JL
1300
1301#ifndef ARGS_GROW_DOWNWARD
1302 args[i].slot_offset = *args_size;
1303#endif
1304
4fc026cd
CM
1305 args[i].alignment_pad = alignment_pad;
1306
d7cdf113
JL
1307 /* If a part of the arg was put into registers,
1308 don't include that part in the amount pushed. */
1309 if (reg_parm_stack_space == 0 && ! args[i].pass_on_stack)
1310 args[i].size.constant -= ((args[i].partial * UNITS_PER_WORD)
1311 / (PARM_BOUNDARY / BITS_PER_UNIT)
1312 * (PARM_BOUNDARY / BITS_PER_UNIT));
1313
1314 /* Update ARGS_SIZE, the total stack space for args so far. */
1315
1316 args_size->constant += args[i].size.constant;
1317 if (args[i].size.var)
1318 {
1319 ADD_PARM_SIZE (*args_size, args[i].size.var);
1320 }
1321
1322 /* Since the slot offset points to the bottom of the slot,
1323 we must record it after incrementing if the args grow down. */
1324#ifdef ARGS_GROW_DOWNWARD
1325 args[i].slot_offset = *args_size;
1326
1327 args[i].slot_offset.constant = -args_size->constant;
1328 if (args_size->var)
fed3cef0 1329 SUB_PARM_SIZE (args[i].slot_offset, args_size->var);
d7cdf113
JL
1330#endif
1331
1332 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1333 have been used, etc. */
1334
959f3a06 1335 FUNCTION_ARG_ADVANCE (*args_so_far, TYPE_MODE (type), type,
d7cdf113
JL
1336 argpos < n_named_args);
1337 }
1338}
1339
599f37b6
JL
1340/* Update ARGS_SIZE to contain the total size for the argument block.
1341 Return the original constant component of the argument block's size.
1342
1343 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1344 for arguments passed in registers. */
1345
1346static int
c2f8b491
JH
1347compute_argument_block_size (reg_parm_stack_space, args_size,
1348 preferred_stack_boundary)
599f37b6
JL
1349 int reg_parm_stack_space;
1350 struct args_size *args_size;
c2f8b491 1351 int preferred_stack_boundary ATTRIBUTE_UNUSED;
599f37b6
JL
1352{
1353 int unadjusted_args_size = args_size->constant;
1354
f73ad30e
JH
1355 /* For accumulate outgoing args mode we don't need to align, since the frame
1356 will be already aligned. Align to STACK_BOUNDARY in order to prevent
1357 backends from generating missaligned frame sizes. */
1358#ifdef STACK_BOUNDARY
1359 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
1360 preferred_stack_boundary = STACK_BOUNDARY;
1361#endif
1362
599f37b6
JL
1363 /* Compute the actual size of the argument block required. The variable
1364 and constant sizes must be combined, the size may have to be rounded,
1365 and there may be a minimum required size. */
1366
1367 if (args_size->var)
1368 {
1369 args_size->var = ARGS_SIZE_TREE (*args_size);
1370 args_size->constant = 0;
1371
1372#ifdef PREFERRED_STACK_BOUNDARY
c2f8b491
JH
1373 preferred_stack_boundary /= BITS_PER_UNIT;
1374 if (preferred_stack_boundary > 1)
1503a7ec
JH
1375 {
1376 /* We don't handle this case yet. To handle it correctly we have
1377 to add the delta, round and substract the delta.
1378 Currently no machine description requires this support. */
1379 if (stack_pointer_delta & (preferred_stack_boundary - 1))
1380 abort();
1381 args_size->var = round_up (args_size->var, preferred_stack_boundary);
1382 }
599f37b6
JL
1383#endif
1384
1385 if (reg_parm_stack_space > 0)
1386 {
1387 args_size->var
1388 = size_binop (MAX_EXPR, args_size->var,
fed3cef0 1389 ssize_int (reg_parm_stack_space));
599f37b6
JL
1390
1391#ifndef OUTGOING_REG_PARM_STACK_SPACE
1392 /* The area corresponding to register parameters is not to count in
1393 the size of the block we need. So make the adjustment. */
1394 args_size->var
1395 = size_binop (MINUS_EXPR, args_size->var,
fed3cef0 1396 ssize_int (reg_parm_stack_space));
599f37b6
JL
1397#endif
1398 }
1399 }
1400 else
1401 {
1402#ifdef PREFERRED_STACK_BOUNDARY
c2f8b491 1403 preferred_stack_boundary /= BITS_PER_UNIT;
0a1c58a2
JL
1404 if (preferred_stack_boundary < 1)
1405 preferred_stack_boundary = 1;
fb5eebb9 1406 args_size->constant = (((args_size->constant
1503a7ec 1407 + stack_pointer_delta
c2f8b491
JH
1408 + preferred_stack_boundary - 1)
1409 / preferred_stack_boundary
1410 * preferred_stack_boundary)
1503a7ec 1411 - stack_pointer_delta);
599f37b6
JL
1412#endif
1413
1414 args_size->constant = MAX (args_size->constant,
1415 reg_parm_stack_space);
1416
1417#ifdef MAYBE_REG_PARM_STACK_SPACE
1418 if (reg_parm_stack_space == 0)
1419 args_size->constant = 0;
1420#endif
1421
1422#ifndef OUTGOING_REG_PARM_STACK_SPACE
1423 args_size->constant -= reg_parm_stack_space;
1424#endif
1425 }
1426 return unadjusted_args_size;
1427}
1428
19832c77 1429/* Precompute parameters as needed for a function call.
cc0b1adc 1430
f2d33f13 1431 FLAGS is mask of ECF_* constants.
cc0b1adc 1432
cc0b1adc
JL
1433 NUM_ACTUALS is the number of arguments.
1434
1435 ARGS is an array containing information for each argument; this routine
40d6e956
JH
1436 fills in the INITIAL_VALUE and VALUE fields for each precomputed argument.
1437 */
cc0b1adc
JL
1438
1439static void
40d6e956 1440precompute_arguments (flags, num_actuals, args)
f2d33f13 1441 int flags;
cc0b1adc
JL
1442 int num_actuals;
1443 struct arg_data *args;
cc0b1adc
JL
1444{
1445 int i;
1446
1447 /* If this function call is cse'able, precompute all the parameters.
1448 Note that if the parameter is constructed into a temporary, this will
1449 cause an additional copy because the parameter will be constructed
1450 into a temporary location and then copied into the outgoing arguments.
1451 If a parameter contains a call to alloca and this function uses the
1452 stack, precompute the parameter. */
1453
1454 /* If we preallocated the stack space, and some arguments must be passed
1455 on the stack, then we must precompute any parameter which contains a
1456 function call which will store arguments on the stack.
1457 Otherwise, evaluating the parameter may clobber previous parameters
40d6e956
JH
1458 which have already been stored into the stack. (we have code to avoid
1459 such case by saving the ougoing stack arguments, but it results in
1460 worse code) */
cc0b1adc
JL
1461
1462 for (i = 0; i < num_actuals; i++)
2a8f6b90 1463 if ((flags & (ECF_CONST | ECF_PURE))
40d6e956 1464 || calls_function (args[i].tree_value, !ACCUMULATE_OUTGOING_ARGS))
cc0b1adc
JL
1465 {
1466 /* If this is an addressable type, we cannot pre-evaluate it. */
1467 if (TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value)))
1468 abort ();
1469
1470 push_temp_slots ();
1471
47841d1b 1472 args[i].value
cc0b1adc
JL
1473 = expand_expr (args[i].tree_value, NULL_RTX, VOIDmode, 0);
1474
1475 preserve_temp_slots (args[i].value);
1476 pop_temp_slots ();
1477
1478 /* ANSI doesn't require a sequence point here,
1479 but PCC has one, so this will avoid some problems. */
1480 emit_queue ();
1481
1482 args[i].initial_value = args[i].value
47841d1b 1483 = protect_from_queue (args[i].value, 0);
cc0b1adc
JL
1484
1485 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) != args[i].mode)
47841d1b
JJ
1486 {
1487 args[i].value
1488 = convert_modes (args[i].mode,
1489 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
1490 args[i].value, args[i].unsignedp);
1491#ifdef PROMOTE_FOR_CALL_ONLY
1492 /* CSE will replace this only if it contains args[i].value
1493 pseudo, so convert it down to the declared mode using
1494 a SUBREG. */
1495 if (GET_CODE (args[i].value) == REG
1496 && GET_MODE_CLASS (args[i].mode) == MODE_INT)
1497 {
1498 args[i].initial_value
1499 = gen_rtx_SUBREG (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
1500 args[i].value, 0);
1501 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
1502 SUBREG_PROMOTED_UNSIGNED_P (args[i].initial_value)
1503 = args[i].unsignedp;
1504 }
1505#endif
1506 }
cc0b1adc
JL
1507 }
1508}
1509
0f9b3ea6
JL
1510/* Given the current state of MUST_PREALLOCATE and information about
1511 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1512 compute and return the final value for MUST_PREALLOCATE. */
1513
1514static int
1515finalize_must_preallocate (must_preallocate, num_actuals, args, args_size)
1516 int must_preallocate;
1517 int num_actuals;
1518 struct arg_data *args;
1519 struct args_size *args_size;
1520{
1521 /* See if we have or want to preallocate stack space.
1522
1523 If we would have to push a partially-in-regs parm
1524 before other stack parms, preallocate stack space instead.
1525
1526 If the size of some parm is not a multiple of the required stack
1527 alignment, we must preallocate.
1528
1529 If the total size of arguments that would otherwise create a copy in
1530 a temporary (such as a CALL) is more than half the total argument list
1531 size, preallocation is faster.
1532
1533 Another reason to preallocate is if we have a machine (like the m88k)
1534 where stack alignment is required to be maintained between every
1535 pair of insns, not just when the call is made. However, we assume here
1536 that such machines either do not have push insns (and hence preallocation
1537 would occur anyway) or the problem is taken care of with
1538 PUSH_ROUNDING. */
1539
1540 if (! must_preallocate)
1541 {
1542 int partial_seen = 0;
1543 int copy_to_evaluate_size = 0;
1544 int i;
1545
1546 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1547 {
1548 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1549 partial_seen = 1;
1550 else if (partial_seen && args[i].reg == 0)
1551 must_preallocate = 1;
1552
1553 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1554 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1555 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1556 || TREE_CODE (args[i].tree_value) == COND_EXPR
1557 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1558 copy_to_evaluate_size
1559 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1560 }
1561
1562 if (copy_to_evaluate_size * 2 >= args_size->constant
1563 && args_size->constant > 0)
1564 must_preallocate = 1;
1565 }
1566 return must_preallocate;
1567}
599f37b6 1568
a45bdd02
JL
1569/* If we preallocated stack space, compute the address of each argument
1570 and store it into the ARGS array.
1571
1572 We need not ensure it is a valid memory address here; it will be
1573 validized when it is used.
1574
1575 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1576
1577static void
1578compute_argument_addresses (args, argblock, num_actuals)
1579 struct arg_data *args;
1580 rtx argblock;
1581 int num_actuals;
1582{
1583 if (argblock)
1584 {
1585 rtx arg_reg = argblock;
1586 int i, arg_offset = 0;
1587
1588 if (GET_CODE (argblock) == PLUS)
1589 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1590
1591 for (i = 0; i < num_actuals; i++)
1592 {
1593 rtx offset = ARGS_SIZE_RTX (args[i].offset);
1594 rtx slot_offset = ARGS_SIZE_RTX (args[i].slot_offset);
1595 rtx addr;
1596
1597 /* Skip this parm if it will not be passed on the stack. */
1598 if (! args[i].pass_on_stack && args[i].reg != 0)
1599 continue;
1600
1601 if (GET_CODE (offset) == CONST_INT)
1602 addr = plus_constant (arg_reg, INTVAL (offset));
1603 else
1604 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1605
1606 addr = plus_constant (addr, arg_offset);
1607 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
3bdf5ad1
RK
1608 set_mem_attributes (args[i].stack,
1609 TREE_TYPE (args[i].tree_value), 1);
a45bdd02
JL
1610
1611 if (GET_CODE (slot_offset) == CONST_INT)
1612 addr = plus_constant (arg_reg, INTVAL (slot_offset));
1613 else
1614 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1615
1616 addr = plus_constant (addr, arg_offset);
1617 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
3bdf5ad1
RK
1618 set_mem_attributes (args[i].stack_slot,
1619 TREE_TYPE (args[i].tree_value), 1);
7ab923cc
JJ
1620
1621 /* Function incoming arguments may overlap with sibling call
1622 outgoing arguments and we cannot allow reordering of reads
1623 from function arguments with stores to outgoing arguments
1624 of sibling calls. */
1625 MEM_ALIAS_SET (args[i].stack) = 0;
1626 MEM_ALIAS_SET (args[i].stack_slot) = 0;
a45bdd02
JL
1627 }
1628 }
1629}
1630
1631/* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1632 in a call instruction.
1633
1634 FNDECL is the tree node for the target function. For an indirect call
1635 FNDECL will be NULL_TREE.
1636
1637 EXP is the CALL_EXPR for this call. */
1638
1639static rtx
1640rtx_for_function_call (fndecl, exp)
1641 tree fndecl;
1642 tree exp;
1643{
1644 rtx funexp;
1645
1646 /* Get the function to call, in the form of RTL. */
1647 if (fndecl)
1648 {
1649 /* If this is the first use of the function, see if we need to
1650 make an external definition for it. */
1651 if (! TREE_USED (fndecl))
1652 {
1653 assemble_external (fndecl);
1654 TREE_USED (fndecl) = 1;
1655 }
1656
1657 /* Get a SYMBOL_REF rtx for the function address. */
1658 funexp = XEXP (DECL_RTL (fndecl), 0);
1659 }
1660 else
1661 /* Generate an rtx (probably a pseudo-register) for the address. */
1662 {
91ab1046 1663 rtx funaddr;
a45bdd02 1664 push_temp_slots ();
91ab1046
DT
1665 funaddr = funexp =
1666 expand_expr (TREE_OPERAND (exp, 0), NULL_RTX, VOIDmode, 0);
a45bdd02
JL
1667 pop_temp_slots (); /* FUNEXP can't be BLKmode */
1668
1669 /* Check the function is executable. */
1670 if (current_function_check_memory_usage)
91ab1046
DT
1671 {
1672#ifdef POINTERS_EXTEND_UNSIGNED
1673 /* It might be OK to convert funexp in place, but there's
1674 a lot going on between here and when it happens naturally
1675 that this seems safer. */
1676 funaddr = convert_memory_address (Pmode, funexp);
1677#endif
1678 emit_library_call (chkr_check_exec_libfunc, 1,
1679 VOIDmode, 1,
1680 funaddr, Pmode);
1681 }
a45bdd02
JL
1682 emit_queue ();
1683 }
1684 return funexp;
1685}
1686
21a3b983
JL
1687/* Do the register loads required for any wholly-register parms or any
1688 parms which are passed both on the stack and in a register. Their
1689 expressions were already evaluated.
1690
1691 Mark all register-parms as living through the call, putting these USE
1692 insns in the CALL_INSN_FUNCTION_USAGE field. */
1693
1694static void
099e9712 1695load_register_parameters (args, num_actuals, call_fusage, flags)
21a3b983
JL
1696 struct arg_data *args;
1697 int num_actuals;
1698 rtx *call_fusage;
099e9712 1699 int flags;
21a3b983
JL
1700{
1701 int i, j;
1702
1703#ifdef LOAD_ARGS_REVERSED
1704 for (i = num_actuals - 1; i >= 0; i--)
1705#else
1706 for (i = 0; i < num_actuals; i++)
1707#endif
1708 {
099e9712
JH
1709 rtx reg = ((flags & ECF_SIBCALL)
1710 ? args[i].tail_call_reg : args[i].reg);
21a3b983
JL
1711 int partial = args[i].partial;
1712 int nregs;
1713
1714 if (reg)
1715 {
1716 /* Set to non-negative if must move a word at a time, even if just
1717 one word (e.g, partial == 1 && mode == DFmode). Set to -1 if
1718 we just use a normal move insn. This value can be zero if the
1719 argument is a zero size structure with no fields. */
1720 nregs = (partial ? partial
1721 : (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1722 ? ((int_size_in_bytes (TREE_TYPE (args[i].tree_value))
1723 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
1724 : -1));
1725
1726 /* Handle calls that pass values in multiple non-contiguous
1727 locations. The Irix 6 ABI has examples of this. */
1728
1729 if (GET_CODE (reg) == PARALLEL)
19caa751
RK
1730 emit_group_load (reg, args[i].value,
1731 int_size_in_bytes (TREE_TYPE (args[i].tree_value)),
1732 TYPE_ALIGN (TREE_TYPE (args[i].tree_value)));
21a3b983
JL
1733
1734 /* If simple case, just do move. If normal partial, store_one_arg
1735 has already loaded the register for us. In all other cases,
1736 load the register(s) from memory. */
1737
1738 else if (nregs == -1)
1739 emit_move_insn (reg, args[i].value);
1740
1741 /* If we have pre-computed the values to put in the registers in
1742 the case of non-aligned structures, copy them in now. */
1743
1744 else if (args[i].n_aligned_regs != 0)
1745 for (j = 0; j < args[i].n_aligned_regs; j++)
1746 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
1747 args[i].aligned_regs[j]);
1748
1749 else if (partial == 0 || args[i].pass_on_stack)
1750 move_block_to_reg (REGNO (reg),
1751 validize_mem (args[i].value), nregs,
1752 args[i].mode);
1753
1754 /* Handle calls that pass values in multiple non-contiguous
1755 locations. The Irix 6 ABI has examples of this. */
1756 if (GET_CODE (reg) == PARALLEL)
1757 use_group_regs (call_fusage, reg);
1758 else if (nregs == -1)
1759 use_reg (call_fusage, reg);
1760 else
1761 use_regs (call_fusage, REGNO (reg), nregs == 0 ? 1 : nregs);
1762 }
1763 }
1764}
1765
ea11ca7e 1766/* Try to integrate function. See expand_inline_function for documentation
f2d33f13
JH
1767 about the parameters. */
1768
1769static rtx
1770try_to_integrate (fndecl, actparms, target, ignore, type, structure_value_addr)
1771 tree fndecl;
1772 tree actparms;
1773 rtx target;
1774 int ignore;
1775 tree type;
1776 rtx structure_value_addr;
1777{
1778 rtx temp;
1779 rtx before_call;
1780 int i;
1781 rtx old_stack_level = 0;
7657ad0a 1782 int reg_parm_stack_space = 0;
f2d33f13
JH
1783
1784#ifdef REG_PARM_STACK_SPACE
1785#ifdef MAYBE_REG_PARM_STACK_SPACE
1786 reg_parm_stack_space = MAYBE_REG_PARM_STACK_SPACE;
1787#else
1788 reg_parm_stack_space = REG_PARM_STACK_SPACE (fndecl);
1789#endif
1790#endif
1791
1792 before_call = get_last_insn ();
1793
ea11ca7e
JM
1794 timevar_push (TV_INTEGRATION);
1795
f2d33f13
JH
1796 temp = expand_inline_function (fndecl, actparms, target,
1797 ignore, type,
1798 structure_value_addr);
1799
ea11ca7e
JM
1800 timevar_pop (TV_INTEGRATION);
1801
f2d33f13
JH
1802 /* If inlining succeeded, return. */
1803 if (temp != (rtx) (HOST_WIDE_INT) - 1)
1804 {
1805 if (ACCUMULATE_OUTGOING_ARGS)
1806 {
1807 /* If the outgoing argument list must be preserved, push
1808 the stack before executing the inlined function if it
1809 makes any calls. */
1810
1811 for (i = reg_parm_stack_space - 1; i >= 0; i--)
1812 if (i < highest_outgoing_arg_in_use && stack_usage_map[i] != 0)
1813 break;
1814
1815 if (stack_arg_under_construction || i >= 0)
1816 {
1817 rtx first_insn
1818 = before_call ? NEXT_INSN (before_call) : get_insns ();
1819 rtx insn = NULL_RTX, seq;
1820
1821 /* Look for a call in the inline function code.
1822 If DECL_SAVED_INSNS (fndecl)->outgoing_args_size is
1823 nonzero then there is a call and it is not necessary
1824 to scan the insns. */
1825
1826 if (DECL_SAVED_INSNS (fndecl)->outgoing_args_size == 0)
1827 for (insn = first_insn; insn; insn = NEXT_INSN (insn))
1828 if (GET_CODE (insn) == CALL_INSN)
1829 break;
1830
1831 if (insn)
1832 {
1833 /* Reserve enough stack space so that the largest
1834 argument list of any function call in the inline
1835 function does not overlap the argument list being
1836 evaluated. This is usually an overestimate because
1837 allocate_dynamic_stack_space reserves space for an
1838 outgoing argument list in addition to the requested
1839 space, but there is no way to ask for stack space such
1840 that an argument list of a certain length can be
1841 safely constructed.
1842
1843 Add the stack space reserved for register arguments, if
1844 any, in the inline function. What is really needed is the
1845 largest value of reg_parm_stack_space in the inline
1846 function, but that is not available. Using the current
1847 value of reg_parm_stack_space is wrong, but gives
1848 correct results on all supported machines. */
1849
1850 int adjust = (DECL_SAVED_INSNS (fndecl)->outgoing_args_size
1851 + reg_parm_stack_space);
1852
1853 start_sequence ();
1854 emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
1855 allocate_dynamic_stack_space (GEN_INT (adjust),
1856 NULL_RTX, BITS_PER_UNIT);
1857 seq = get_insns ();
1858 end_sequence ();
1859 emit_insns_before (seq, first_insn);
1860 emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX);
1861 }
1862 }
1863 }
1864
1865 /* If the result is equivalent to TARGET, return TARGET to simplify
1866 checks in store_expr. They can be equivalent but not equal in the
1867 case of a function that returns BLKmode. */
1868 if (temp != target && rtx_equal_p (temp, target))
1869 return target;
1870 return temp;
1871 }
1872
1873 /* If inlining failed, mark FNDECL as needing to be compiled
1874 separately after all. If function was declared inline,
1875 give a warning. */
1876 if (DECL_INLINE (fndecl) && warn_inline && !flag_no_inline
1877 && optimize > 0 && !TREE_ADDRESSABLE (fndecl))
1878 {
1879 warning_with_decl (fndecl, "inlining failed in call to `%s'");
1880 warning ("called from here");
1881 }
1882 mark_addressable (fndecl);
1883 return (rtx) (HOST_WIDE_INT) - 1;
1884}
1885
739fb049
MM
1886/* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
1887 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
1888 bytes, then we would need to push some additional bytes to pad the
ce48579b
RH
1889 arguments. So, we compute an adjust to the stack pointer for an
1890 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
1891 bytes. Then, when the arguments are pushed the stack will be perfectly
1892 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
1893 be popped after the call. Returns the adjustment. */
739fb049 1894
ce48579b 1895static int
739fb049
MM
1896combine_pending_stack_adjustment_and_call (unadjusted_args_size,
1897 args_size,
1898 preferred_unit_stack_boundary)
1899 int unadjusted_args_size;
1900 struct args_size *args_size;
1901 int preferred_unit_stack_boundary;
1902{
1903 /* The number of bytes to pop so that the stack will be
1904 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
1905 HOST_WIDE_INT adjustment;
1906 /* The alignment of the stack after the arguments are pushed, if we
1907 just pushed the arguments without adjust the stack here. */
1908 HOST_WIDE_INT unadjusted_alignment;
1909
1910 unadjusted_alignment
1911 = ((stack_pointer_delta + unadjusted_args_size)
1912 % preferred_unit_stack_boundary);
1913
1914 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
1915 as possible -- leaving just enough left to cancel out the
1916 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
1917 PENDING_STACK_ADJUST is non-negative, and congruent to
1918 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
1919
1920 /* Begin by trying to pop all the bytes. */
1921 unadjusted_alignment
1922 = (unadjusted_alignment
1923 - (pending_stack_adjust % preferred_unit_stack_boundary));
1924 adjustment = pending_stack_adjust;
1925 /* Push enough additional bytes that the stack will be aligned
1926 after the arguments are pushed. */
e079dcdb
HB
1927 if (preferred_unit_stack_boundary > 1)
1928 {
1929 if (unadjusted_alignment >= 0)
1930 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
1931 else
1932 adjustment += unadjusted_alignment;
1933 }
739fb049
MM
1934
1935 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
1936 bytes after the call. The right number is the entire
1937 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
1938 by the arguments in the first place. */
1939 args_size->constant
1940 = pending_stack_adjust - adjustment + unadjusted_args_size;
1941
ce48579b 1942 return adjustment;
739fb049
MM
1943}
1944
c67846f2
JJ
1945/* Scan X expression if it does not dereference any argument slots
1946 we already clobbered by tail call arguments (as noted in stored_args_map
1947 bitmap).
1948 Return non-zero if X expression dereferences such argument slots,
1949 zero otherwise. */
1950
1951static int
1952check_sibcall_argument_overlap_1 (x)
1953 rtx x;
1954{
1955 RTX_CODE code;
1956 int i, j;
1957 unsigned int k;
1958 const char *fmt;
1959
1960 if (x == NULL_RTX)
1961 return 0;
1962
1963 code = GET_CODE (x);
1964
1965 if (code == MEM)
1966 {
1967 if (XEXP (x, 0) == current_function_internal_arg_pointer)
1968 i = 0;
4c6b3b2a
JJ
1969 else if (GET_CODE (XEXP (x, 0)) == PLUS
1970 && XEXP (XEXP (x, 0), 0) ==
1971 current_function_internal_arg_pointer
1972 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT)
c67846f2
JJ
1973 i = INTVAL (XEXP (XEXP (x, 0), 1));
1974 else
1975 return 0;
1976
1977 for (k = 0; k < GET_MODE_SIZE (GET_MODE (x)); k++)
1978 if (i + k < stored_args_map->n_bits
1979 && TEST_BIT (stored_args_map, i + k))
1980 return 1;
1981
1982 return 0;
1983 }
1984
1985 /* Scan all subexpressions. */
1986 fmt = GET_RTX_FORMAT (code);
1987 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
1988 {
1989 if (*fmt == 'e')
1990 {
1991 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
1992 return 1;
1993 }
1994 else if (*fmt == 'E')
1995 {
1996 for (j = 0; j < XVECLEN (x, i); j++)
1997 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
1998 return 1;
1999 }
2000 }
2001 return 0;
2002
2003}
2004
2005/* Scan sequence after INSN if it does not dereference any argument slots
2006 we already clobbered by tail call arguments (as noted in stored_args_map
2007 bitmap). Add stack slots for ARG to stored_args_map bitmap afterwards.
2008 Return non-zero if sequence after INSN dereferences such argument slots,
2009 zero otherwise. */
2010
2011static int
2012check_sibcall_argument_overlap (insn, arg)
2013 rtx insn;
2014 struct arg_data *arg;
2015{
2016 int low, high;
2017
2018 if (insn == NULL_RTX)
2019 insn = get_insns ();
2020 else
2021 insn = NEXT_INSN (insn);
2022
2023 for (; insn; insn = NEXT_INSN (insn))
2024 if (INSN_P (insn) &&
2025 check_sibcall_argument_overlap_1 (PATTERN (insn)))
2026 break;
2027
2028 low = arg->offset.constant;
2029 for (high = low + arg->size.constant; low < high; low++)
2030 SET_BIT (stored_args_map, low);
2031 return insn != NULL_RTX;
2032}
2033
51bbfa0c
RS
2034/* Generate all the code for a function call
2035 and return an rtx for its value.
2036 Store the value in TARGET (specified as an rtx) if convenient.
2037 If the value is stored in TARGET then TARGET is returned.
2038 If IGNORE is nonzero, then we ignore the value of the function call. */
2039
2040rtx
8129842c 2041expand_call (exp, target, ignore)
51bbfa0c
RS
2042 tree exp;
2043 rtx target;
2044 int ignore;
51bbfa0c 2045{
0a1c58a2
JL
2046 /* Nonzero if we are currently expanding a call. */
2047 static int currently_expanding_call = 0;
2048
51bbfa0c
RS
2049 /* List of actual parameters. */
2050 tree actparms = TREE_OPERAND (exp, 1);
2051 /* RTX for the function to be called. */
2052 rtx funexp;
0a1c58a2
JL
2053 /* Sequence of insns to perform a tail recursive "call". */
2054 rtx tail_recursion_insns = NULL_RTX;
2055 /* Sequence of insns to perform a normal "call". */
2056 rtx normal_call_insns = NULL_RTX;
2057 /* Sequence of insns to perform a tail recursive "call". */
2058 rtx tail_call_insns = NULL_RTX;
51bbfa0c
RS
2059 /* Data type of the function. */
2060 tree funtype;
2061 /* Declaration of the function being called,
2062 or 0 if the function is computed (not known by name). */
2063 tree fndecl = 0;
2064 char *name = 0;
0a1c58a2 2065 rtx insn;
099e9712
JH
2066 int try_tail_call = 1;
2067 int try_tail_recursion = 1;
0a1c58a2 2068 int pass;
51bbfa0c
RS
2069
2070 /* Register in which non-BLKmode value will be returned,
2071 or 0 if no value or if value is BLKmode. */
2072 rtx valreg;
2073 /* Address where we should return a BLKmode value;
2074 0 if value not BLKmode. */
2075 rtx structure_value_addr = 0;
2076 /* Nonzero if that address is being passed by treating it as
2077 an extra, implicit first parameter. Otherwise,
2078 it is passed by being copied directly into struct_value_rtx. */
2079 int structure_value_addr_parm = 0;
2080 /* Size of aggregate value wanted, or zero if none wanted
2081 or if we are using the non-reentrant PCC calling convention
2082 or expecting the value in registers. */
e5e809f4 2083 HOST_WIDE_INT struct_value_size = 0;
51bbfa0c
RS
2084 /* Nonzero if called function returns an aggregate in memory PCC style,
2085 by returning the address of where to find it. */
2086 int pcc_struct_value = 0;
2087
2088 /* Number of actual parameters in this call, including struct value addr. */
2089 int num_actuals;
2090 /* Number of named args. Args after this are anonymous ones
2091 and they must all go on the stack. */
2092 int n_named_args;
51bbfa0c
RS
2093
2094 /* Vector of information about each argument.
2095 Arguments are numbered in the order they will be pushed,
2096 not the order they are written. */
2097 struct arg_data *args;
2098
2099 /* Total size in bytes of all the stack-parms scanned so far. */
2100 struct args_size args_size;
099e9712 2101 struct args_size adjusted_args_size;
51bbfa0c 2102 /* Size of arguments before any adjustments (such as rounding). */
599f37b6 2103 int unadjusted_args_size;
51bbfa0c
RS
2104 /* Data on reg parms scanned so far. */
2105 CUMULATIVE_ARGS args_so_far;
2106 /* Nonzero if a reg parm has been scanned. */
2107 int reg_parm_seen;
efd65a8b 2108 /* Nonzero if this is an indirect function call. */
51bbfa0c
RS
2109
2110 /* Nonzero if we must avoid push-insns in the args for this call.
2111 If stack space is allocated for register parameters, but not by the
2112 caller, then it is preallocated in the fixed part of the stack frame.
2113 So the entire argument block must then be preallocated (i.e., we
2114 ignore PUSH_ROUNDING in that case). */
2115
f73ad30e 2116 int must_preallocate = !PUSH_ARGS;
51bbfa0c 2117
f72aed24 2118 /* Size of the stack reserved for parameter registers. */
6f90e075
JW
2119 int reg_parm_stack_space = 0;
2120
51bbfa0c
RS
2121 /* Address of space preallocated for stack parms
2122 (on machines that lack push insns), or 0 if space not preallocated. */
2123 rtx argblock = 0;
2124
f2d33f13
JH
2125 /* Mask of ECF_ flags. */
2126 int flags = 0;
51bbfa0c
RS
2127 /* Nonzero if this is a call to an inline function. */
2128 int is_integrable = 0;
f73ad30e 2129#ifdef REG_PARM_STACK_SPACE
51bbfa0c
RS
2130 /* Define the boundary of the register parm stack space that needs to be
2131 save, if any. */
2132 int low_to_save = -1, high_to_save;
2133 rtx save_area = 0; /* Place that it is saved */
2134#endif
2135
51bbfa0c
RS
2136 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2137 char *initial_stack_usage_map = stack_usage_map;
a544cfd2 2138 int old_stack_arg_under_construction = 0;
51bbfa0c
RS
2139
2140 rtx old_stack_level = 0;
79be3418 2141 int old_pending_adj = 0;
51bbfa0c 2142 int old_inhibit_defer_pop = inhibit_defer_pop;
1503a7ec 2143 int old_stack_allocated;
0a1c58a2 2144 rtx call_fusage;
7393c642 2145 register tree p = TREE_OPERAND (exp, 0);
21a3b983 2146 register int i;
739fb049
MM
2147 /* The alignment of the stack, in bits. */
2148 HOST_WIDE_INT preferred_stack_boundary;
2149 /* The alignment of the stack, in bytes. */
2150 HOST_WIDE_INT preferred_unit_stack_boundary;
51bbfa0c 2151
7815214e
RK
2152 /* The value of the function call can be put in a hard register. But
2153 if -fcheck-memory-usage, code which invokes functions (and thus
2154 damages some hard registers) can be inserted before using the value.
2155 So, target is always a pseudo-register in that case. */
7d384cc0 2156 if (current_function_check_memory_usage)
7815214e
RK
2157 target = 0;
2158
f2d33f13
JH
2159 /* See if this is "nothrow" function call. */
2160 if (TREE_NOTHROW (exp))
2161 flags |= ECF_NOTHROW;
2162
51bbfa0c
RS
2163 /* See if we can find a DECL-node for the actual function.
2164 As a result, decide whether this is a call to an integrable function. */
2165
39b0dce7
JM
2166 fndecl = get_callee_fndecl (exp);
2167 if (fndecl)
51bbfa0c 2168 {
39b0dce7
JM
2169 if (!flag_no_inline
2170 && fndecl != current_function_decl
2171 && DECL_INLINE (fndecl)
2172 && DECL_SAVED_INSNS (fndecl)
2173 && DECL_SAVED_INSNS (fndecl)->inlinable)
2174 is_integrable = 1;
2175 else if (! TREE_ADDRESSABLE (fndecl))
51bbfa0c 2176 {
39b0dce7
JM
2177 /* In case this function later becomes inlinable,
2178 record that there was already a non-inline call to it.
51bbfa0c 2179
39b0dce7
JM
2180 Use abstraction instead of setting TREE_ADDRESSABLE
2181 directly. */
2182 if (DECL_INLINE (fndecl) && warn_inline && !flag_no_inline
2183 && optimize > 0)
2184 {
2185 warning_with_decl (fndecl, "can't inline call to `%s'");
2186 warning ("called from here");
51bbfa0c 2187 }
39b0dce7 2188 mark_addressable (fndecl);
51bbfa0c 2189 }
39b0dce7
JM
2190
2191 flags |= flags_from_decl_or_type (fndecl);
51bbfa0c
RS
2192 }
2193
fdff8c6d 2194 /* If we don't have specific function to call, see if we have a
f2d33f13 2195 attributes set in the type. */
39b0dce7 2196 else
7393c642
RK
2197 flags |= flags_from_decl_or_type (TREE_TYPE (TREE_TYPE (p)));
2198
2199 /* Mark if the function returns with the stack pointer depressed. */
43db0363
RK
2200 if (TREE_CODE (TREE_TYPE (TREE_TYPE (p))) == FUNCTION_TYPE
2201 && TYPE_RETURNS_STACK_DEPRESSED (TREE_TYPE (TREE_TYPE (p))))
39b0dce7 2202 {
7393c642
RK
2203 flags |= ECF_SP_DEPRESSED;
2204 flags &= ~ (ECF_PURE | ECF_CONST);
39b0dce7 2205 }
fdff8c6d 2206
6f90e075
JW
2207#ifdef REG_PARM_STACK_SPACE
2208#ifdef MAYBE_REG_PARM_STACK_SPACE
2209 reg_parm_stack_space = MAYBE_REG_PARM_STACK_SPACE;
2210#else
2211 reg_parm_stack_space = REG_PARM_STACK_SPACE (fndecl);
2212#endif
2213#endif
2214
f73ad30e
JH
2215#ifndef OUTGOING_REG_PARM_STACK_SPACE
2216 if (reg_parm_stack_space > 0 && PUSH_ARGS)
e5e809f4
JL
2217 must_preallocate = 1;
2218#endif
2219
51bbfa0c
RS
2220 /* Warn if this value is an aggregate type,
2221 regardless of which calling convention we are using for it. */
05e3bdb9 2222 if (warn_aggregate_return && AGGREGATE_TYPE_P (TREE_TYPE (exp)))
51bbfa0c
RS
2223 warning ("function call has aggregate value");
2224
2225 /* Set up a place to return a structure. */
2226
2227 /* Cater to broken compilers. */
2228 if (aggregate_value_p (exp))
2229 {
2230 /* This call returns a big structure. */
2a8f6b90 2231 flags &= ~(ECF_CONST | ECF_PURE);
51bbfa0c
RS
2232
2233#ifdef PCC_STATIC_STRUCT_RETURN
9e7b1d0a
RS
2234 {
2235 pcc_struct_value = 1;
0dd532dc
JW
2236 /* Easier than making that case work right. */
2237 if (is_integrable)
2238 {
2239 /* In case this is a static function, note that it has been
2240 used. */
2241 if (! TREE_ADDRESSABLE (fndecl))
2242 mark_addressable (fndecl);
2243 is_integrable = 0;
2244 }
9e7b1d0a
RS
2245 }
2246#else /* not PCC_STATIC_STRUCT_RETURN */
2247 {
2248 struct_value_size = int_size_in_bytes (TREE_TYPE (exp));
51bbfa0c 2249
9e7b1d0a
RS
2250 if (target && GET_CODE (target) == MEM)
2251 structure_value_addr = XEXP (target, 0);
2252 else
2253 {
e9a25f70
JL
2254 /* Assign a temporary to hold the value. */
2255 tree d;
51bbfa0c 2256
9e7b1d0a
RS
2257 /* For variable-sized objects, we must be called with a target
2258 specified. If we were to allocate space on the stack here,
2259 we would have no way of knowing when to free it. */
51bbfa0c 2260
002bdd6c
RK
2261 if (struct_value_size < 0)
2262 abort ();
2263
e9a25f70
JL
2264 /* This DECL is just something to feed to mark_addressable;
2265 it doesn't get pushed. */
2266 d = build_decl (VAR_DECL, NULL_TREE, TREE_TYPE (exp));
2267 DECL_RTL (d) = assign_temp (TREE_TYPE (exp), 1, 0, 1);
2268 mark_addressable (d);
14a774a9 2269 mark_temp_addr_taken (DECL_RTL (d));
e9a25f70 2270 structure_value_addr = XEXP (DECL_RTL (d), 0);
e5e809f4 2271 TREE_USED (d) = 1;
9e7b1d0a
RS
2272 target = 0;
2273 }
2274 }
2275#endif /* not PCC_STATIC_STRUCT_RETURN */
51bbfa0c
RS
2276 }
2277
2278 /* If called function is inline, try to integrate it. */
2279
2280 if (is_integrable)
2281 {
f2d33f13
JH
2282 rtx temp = try_to_integrate (fndecl, actparms, target,
2283 ignore, TREE_TYPE (exp),
2284 structure_value_addr);
2285 if (temp != (rtx) (HOST_WIDE_INT) - 1)
2286 return temp;
51bbfa0c
RS
2287 }
2288
099e9712
JH
2289 if (fndecl && DECL_NAME (fndecl))
2290 name = IDENTIFIER_POINTER (DECL_NAME (fndecl));
2291
2292 /* Figure out the amount to which the stack should be aligned. */
2293#ifdef PREFERRED_STACK_BOUNDARY
2294 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
2295#else
2296 preferred_stack_boundary = STACK_BOUNDARY;
2297#endif
2298
2299 /* Operand 0 is a pointer-to-function; get the type of the function. */
2300 funtype = TREE_TYPE (TREE_OPERAND (exp, 0));
2301 if (! POINTER_TYPE_P (funtype))
2302 abort ();
2303 funtype = TREE_TYPE (funtype);
2304
2305 /* See if this is a call to a function that can return more than once
2306 or a call to longjmp or malloc. */
2307 flags |= special_function_p (fndecl, flags);
2308
2309 if (flags & ECF_MAY_BE_ALLOCA)
2310 current_function_calls_alloca = 1;
2311
2312 /* If struct_value_rtx is 0, it means pass the address
2313 as if it were an extra parameter. */
2314 if (structure_value_addr && struct_value_rtx == 0)
2315 {
2316 /* If structure_value_addr is a REG other than
2317 virtual_outgoing_args_rtx, we can use always use it. If it
2318 is not a REG, we must always copy it into a register.
2319 If it is virtual_outgoing_args_rtx, we must copy it to another
2320 register in some cases. */
2321 rtx temp = (GET_CODE (structure_value_addr) != REG
2322 || (ACCUMULATE_OUTGOING_ARGS
2323 && stack_arg_under_construction
2324 && structure_value_addr == virtual_outgoing_args_rtx)
2325 ? copy_addr_to_reg (structure_value_addr)
2326 : structure_value_addr);
2327
2328 actparms
2329 = tree_cons (error_mark_node,
2330 make_tree (build_pointer_type (TREE_TYPE (funtype)),
2331 temp),
2332 actparms);
2333 structure_value_addr_parm = 1;
2334 }
2335
2336 /* Count the arguments and set NUM_ACTUALS. */
2337 for (p = actparms, num_actuals = 0; p; p = TREE_CHAIN (p))
2338 num_actuals++;
2339
2340 /* Compute number of named args.
2341 Normally, don't include the last named arg if anonymous args follow.
2342 We do include the last named arg if STRICT_ARGUMENT_NAMING is nonzero.
2343 (If no anonymous args follow, the result of list_length is actually
2344 one too large. This is harmless.)
2345
2346 If PRETEND_OUTGOING_VARARGS_NAMED is set and STRICT_ARGUMENT_NAMING is
2347 zero, this machine will be able to place unnamed args that were
2348 passed in registers into the stack. So treat all args as named.
2349 This allows the insns emitting for a specific argument list to be
2350 independent of the function declaration.
2351
2352 If PRETEND_OUTGOING_VARARGS_NAMED is not set, we do not have any
2353 reliable way to pass unnamed args in registers, so we must force
2354 them into memory. */
2355
2356 if ((STRICT_ARGUMENT_NAMING
2357 || ! PRETEND_OUTGOING_VARARGS_NAMED)
2358 && TYPE_ARG_TYPES (funtype) != 0)
2359 n_named_args
2360 = (list_length (TYPE_ARG_TYPES (funtype))
2361 /* Don't include the last named arg. */
2362 - (STRICT_ARGUMENT_NAMING ? 0 : 1)
2363 /* Count the struct value address, if it is passed as a parm. */
2364 + structure_value_addr_parm);
2365 else
2366 /* If we know nothing, treat all args as named. */
2367 n_named_args = num_actuals;
2368
2369 /* Start updating where the next arg would go.
2370
2371 On some machines (such as the PA) indirect calls have a different
2372 calling convention than normal calls. The last argument in
2373 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2374 or not. */
2375 INIT_CUMULATIVE_ARGS (args_so_far, funtype, NULL_RTX, (fndecl == 0));
2376
2377
2378 /* Make a vector to hold all the information about each arg. */
2379 args = (struct arg_data *) alloca (num_actuals
2380 * sizeof (struct arg_data));
2381 bzero ((char *) args, num_actuals * sizeof (struct arg_data));
2382
2383 /* Build up entries inthe ARGS array, compute the size of the arguments
2384 into ARGS_SIZE, etc. */
2385 initialize_argument_information (num_actuals, args, &args_size,
2386 n_named_args, actparms, fndecl,
2387 &args_so_far, reg_parm_stack_space,
2388 &old_stack_level, &old_pending_adj,
2389 &must_preallocate, &flags);
2390
2391 if (args_size.var)
2392 {
2393 /* If this function requires a variable-sized argument list, don't
2394 try to make a cse'able block for this call. We may be able to
2395 do this eventually, but it is too complicated to keep track of
2396 what insns go in the cse'able block and which don't. */
2397
2398 flags &= ~(ECF_CONST | ECF_PURE);
2399 must_preallocate = 1;
2400 }
2401
2402 /* Now make final decision about preallocating stack space. */
2403 must_preallocate = finalize_must_preallocate (must_preallocate,
2404 num_actuals, args,
2405 &args_size);
2406
2407 /* If the structure value address will reference the stack pointer, we
2408 must stabilize it. We don't need to do this if we know that we are
2409 not going to adjust the stack pointer in processing this call. */
2410
2411 if (structure_value_addr
2412 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2413 || reg_mentioned_p (virtual_outgoing_args_rtx,
2414 structure_value_addr))
2415 && (args_size.var
2416 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2417 structure_value_addr = copy_to_reg (structure_value_addr);
0a1c58a2 2418
194c7c45
RH
2419 /* Tail calls can make things harder to debug, and we're traditionally
2420 pushed these optimizations into -O2. Don't try if we're already
2421 expanding a call, as that means we're an argument. Similarly, if
2422 there's pending loops or cleanups we know there's code to follow
e2ee9912
RH
2423 the call.
2424
2425 If rtx_equal_function_value_matters is false, that means we've
2426 finished with regular parsing. Which means that some of the
2427 machinery we use to generate tail-calls is no longer in place.
2428 This is most often true of sjlj-exceptions, which we couldn't
2429 tail-call to anyway. */
0a1c58a2 2430
099e9712
JH
2431 if (currently_expanding_call++ != 0
2432 || !flag_optimize_sibling_calls
2433 || !rtx_equal_function_value_matters
2434 || !stmt_loop_nest_empty ()
2435 || any_pending_cleanups (1)
2436 || args_size.var)
2437 try_tail_call = try_tail_recursion = 0;
2438
2439 /* Tail recursion fails, when we are not dealing with recursive calls. */
2440 if (!try_tail_recursion
2441 || TREE_CODE (TREE_OPERAND (exp, 0)) != ADDR_EXPR
2442 || TREE_OPERAND (TREE_OPERAND (exp, 0), 0) != current_function_decl)
2443 try_tail_recursion = 0;
2444
2445 /* Rest of purposes for tail call optimizations to fail. */
2446 if (
2447#ifdef HAVE_sibcall_epilogue
2448 !HAVE_sibcall_epilogue
2449#else
2450 1
2451#endif
2452 || !try_tail_call
2453 /* Doing sibling call optimization needs some work, since
2454 structure_value_addr can be allocated on the stack.
2455 It does not seem worth the effort since few optimizable
2456 sibling calls will return a structure. */
2457 || structure_value_addr != NULL_RTX
2458 /* If the register holding the address is a callee saved
2459 register, then we lose. We have no way to prevent that,
2460 so we only allow calls to named functions. */
2461 /* ??? This could be done by having the insn constraints
2462 use a register class that is all call-clobbered. Any
2463 reload insns generated to fix things up would appear
2464 before the sibcall_epilogue. */
2465 || fndecl == NULL_TREE
2466 || (flags & (ECF_RETURNS_TWICE | ECF_LONGJMP))
2467 || !FUNCTION_OK_FOR_SIBCALL (fndecl)
2468 /* If this function requires more stack slots than the current
2469 function, we cannot change it into a sibling call. */
2470 || args_size.constant > current_function_args_size
2471 /* If the callee pops its own arguments, then it must pop exactly
2472 the same number of arguments as the current function. */
2473 || RETURN_POPS_ARGS (fndecl, funtype, args_size.constant)
2474 != RETURN_POPS_ARGS (current_function_decl,
2475 TREE_TYPE (current_function_decl),
2476 current_function_args_size))
497eb8c3 2477 try_tail_call = 0;
497eb8c3 2478
099e9712
JH
2479 if (try_tail_call || try_tail_recursion)
2480 {
2481 int end, inc;
2482 actparms = NULL_TREE;
194c7c45
RH
2483 /* Ok, we're going to give the tail call the old college try.
2484 This means we're going to evaluate the function arguments
2485 up to three times. There are two degrees of badness we can
2486 encounter, those that can be unsaved and those that can't.
2487 (See unsafe_for_reeval commentary for details.)
2488
2489 Generate a new argument list. Pass safe arguments through
2490 unchanged. For the easy badness wrap them in UNSAVE_EXPRs.
2491 For hard badness, evaluate them now and put their resulting
099e9712
JH
2492 rtx in a temporary VAR_DECL.
2493
2494 initialize_argument_information has ordered the array for the
2495 order to be pushed, and we must remember this when reconstructing
2496 the original argument orde. */
4d393a0b 2497
099e9712
JH
2498 if (PUSH_ARGS_REVERSED)
2499 {
2500 inc = 1;
2501 i = 0;
2502 end = num_actuals;
2503 }
2504 else
497eb8c3 2505 {
099e9712
JH
2506 inc = -1;
2507 i = num_actuals - 1;
2508 end = -1;
2509 }
2510
2511 for (; i != end; i += inc)
2512 {
2513 switch (unsafe_for_reeval (args[i].tree_value))
2514 {
497eb8c3 2515 case 0: /* Safe. */
497eb8c3
RH
2516 break;
2517
2518 case 1: /* Mildly unsafe. */
f5e846c8 2519 args[i].tree_value = unsave_expr (args[i].tree_value);
497eb8c3
RH
2520 break;
2521
2522 case 2: /* Wildly unsafe. */
0a1c58a2 2523 {
497eb8c3 2524 tree var = build_decl (VAR_DECL, NULL_TREE,
099e9712
JH
2525 TREE_TYPE (args[i].tree_value));
2526 DECL_RTL (var) = expand_expr (args[i].tree_value, NULL_RTX,
497eb8c3 2527 VOIDmode, EXPAND_NORMAL);
099e9712 2528 args[i].tree_value = var;
497eb8c3
RH
2529 }
2530 break;
0a1c58a2 2531
497eb8c3
RH
2532 default:
2533 abort ();
2534 }
099e9712
JH
2535 /* We need to build actparms for optimize_tail_recursion. We can
2536 safely trash away TREE_PURPOSE, since it is unused by this
2537 function. */
2538 if (try_tail_recursion)
2539 actparms = tree_cons (NULL_TREE, args[i].tree_value, actparms);
2540 }
194c7c45
RH
2541 /* Expanding one of those dangerous arguments could have added
2542 cleanups, but otherwise give it a whirl. */
099e9712
JH
2543 if (any_pending_cleanups (1))
2544 try_tail_call = try_tail_recursion = 0;
0a1c58a2
JL
2545 }
2546
2547 /* Generate a tail recursion sequence when calling ourselves. */
2548
099e9712 2549 if (try_tail_recursion)
0a1c58a2
JL
2550 {
2551 /* We want to emit any pending stack adjustments before the tail
2552 recursion "call". That way we know any adjustment after the tail
2553 recursion call can be ignored if we indeed use the tail recursion
2554 call expansion. */
2555 int save_pending_stack_adjust = pending_stack_adjust;
1503a7ec 2556 int save_stack_pointer_delta = stack_pointer_delta;
0a1c58a2
JL
2557
2558 /* Use a new sequence to hold any RTL we generate. We do not even
2559 know if we will use this RTL yet. The final decision can not be
2560 made until after RTL generation for the entire function is
2561 complete. */
b06775f9 2562 start_sequence ();
f5e846c8
MM
2563 /* If expanding any of the arguments creates cleanups, we can't
2564 do a tailcall. So, we'll need to pop the pending cleanups
2565 list. If, however, all goes well, and there are no cleanups
2566 then the call to expand_start_target_temps will have no
2567 effect. */
2568 expand_start_target_temps ();
b06775f9 2569 if (optimize_tail_recursion (actparms, get_last_insn ()))
f5e846c8
MM
2570 {
2571 if (any_pending_cleanups (1))
2572 try_tail_call = try_tail_recursion = 0;
2573 else
2574 tail_recursion_insns = get_insns ();
2575 }
2576 expand_end_target_temps ();
0a1c58a2
JL
2577 end_sequence ();
2578
0a1c58a2
JL
2579 /* Restore the original pending stack adjustment for the sibling and
2580 normal call cases below. */
2581 pending_stack_adjust = save_pending_stack_adjust;
1503a7ec 2582 stack_pointer_delta = save_stack_pointer_delta;
0a1c58a2
JL
2583 }
2584
099e9712
JH
2585 if (profile_arc_flag && (flags & ECF_FORK_OR_EXEC))
2586 {
2587 /* A fork duplicates the profile information, and an exec discards
2588 it. We can't rely on fork/exec to be paired. So write out the
2589 profile information we have gathered so far, and clear it. */
2590 /* ??? When Linux's __clone is called with CLONE_VM set, profiling
2591 is subject to race conditions, just as with multithreaded
2592 programs. */
2593
2594 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__bb_fork_func"), 0,
2595 VOIDmode, 0);
2596 }
0a1c58a2 2597
c2f8b491
JH
2598 /* Ensure current function's preferred stack boundary is at least
2599 what we need. We don't have to increase alignment for recursive
2600 functions. */
2601 if (cfun->preferred_stack_boundary < preferred_stack_boundary
2602 && fndecl != current_function_decl)
2603 cfun->preferred_stack_boundary = preferred_stack_boundary;
2604
099e9712 2605 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
497eb8c3 2606
099e9712 2607 function_call_count++;
39842893 2608
0a1c58a2
JL
2609 /* We want to make two insn chains; one for a sibling call, the other
2610 for a normal call. We will select one of the two chains after
2611 initial RTL generation is complete. */
2612 for (pass = 0; pass < 2; pass++)
2613 {
2614 int sibcall_failure = 0;
2615 /* We want to emit ay pending stack adjustments before the tail
2616 recursion "call". That way we know any adjustment after the tail
2617 recursion call can be ignored if we indeed use the tail recursion
2618 call expansion. */
5ac9118e
KG
2619 int save_pending_stack_adjust = 0;
2620 int save_stack_pointer_delta = 0;
0a1c58a2 2621 rtx insns;
7d167afd 2622 rtx before_call, next_arg_reg;
39842893 2623
0a1c58a2
JL
2624 if (pass == 0)
2625 {
099e9712 2626 if (! try_tail_call)
0a1c58a2 2627 continue;
51bbfa0c 2628
1c81f9fe
JM
2629 /* Emit any queued insns now; otherwise they would end up in
2630 only one of the alternates. */
2631 emit_queue ();
2632
0a1c58a2
JL
2633 /* State variables we need to save and restore between
2634 iterations. */
2635 save_pending_stack_adjust = pending_stack_adjust;
1503a7ec 2636 save_stack_pointer_delta = stack_pointer_delta;
0a1c58a2 2637 }
f2d33f13
JH
2638 if (pass)
2639 flags &= ~ECF_SIBCALL;
2640 else
2641 flags |= ECF_SIBCALL;
51bbfa0c 2642
0a1c58a2 2643 /* Other state variables that we must reinitialize each time
f2d33f13 2644 through the loop (that are not initialized by the loop itself). */
0a1c58a2
JL
2645 argblock = 0;
2646 call_fusage = 0;
fa76d9e0 2647
0a1c58a2 2648 /* Start a new sequence for the normal call case.
51bbfa0c 2649
0a1c58a2
JL
2650 From this point on, if the sibling call fails, we want to set
2651 sibcall_failure instead of continuing the loop. */
2652 start_sequence ();
eecb6f50 2653
b8d254e6
JJ
2654 if (pass == 0)
2655 {
2656 /* We know at this point that there are not currently any
2657 pending cleanups. If, however, in the process of evaluating
2658 the arguments we were to create some, we'll need to be
2659 able to get rid of them. */
2660 expand_start_target_temps ();
2661 }
2662
0a1c58a2
JL
2663 /* When calling a const function, we must pop the stack args right away,
2664 so that the pop is deleted or moved with the call. */
2a8f6b90 2665 if (flags & (ECF_CONST | ECF_PURE))
0a1c58a2 2666 NO_DEFER_POP;
51bbfa0c 2667
0a1c58a2
JL
2668 /* Don't let pending stack adjusts add up to too much.
2669 Also, do all pending adjustments now if there is any chance
2670 this might be a call to alloca or if we are expanding a sibling
2671 call sequence. */
2672 if (pending_stack_adjust >= 32
f2d33f13 2673 || (pending_stack_adjust > 0 && (flags & ECF_MAY_BE_ALLOCA))
0a1c58a2
JL
2674 || pass == 0)
2675 do_pending_stack_adjust ();
51bbfa0c 2676
0a1c58a2
JL
2677 /* Push the temporary stack slot level so that we can free any
2678 temporaries we make. */
2679 push_temp_slots ();
51bbfa0c 2680
51bbfa0c 2681
6f90e075 2682#ifdef FINAL_REG_PARM_STACK_SPACE
0a1c58a2
JL
2683 reg_parm_stack_space = FINAL_REG_PARM_STACK_SPACE (args_size.constant,
2684 args_size.var);
6f90e075 2685#endif
0a1c58a2 2686 /* Precompute any arguments as needed. */
f8a097cd
JH
2687 if (pass)
2688 precompute_arguments (flags, num_actuals, args);
51bbfa0c 2689
0a1c58a2
JL
2690 /* Now we are about to start emitting insns that can be deleted
2691 if a libcall is deleted. */
2a8f6b90 2692 if (flags & (ECF_CONST | ECF_PURE | ECF_MALLOC))
0a1c58a2 2693 start_sequence ();
51bbfa0c 2694
099e9712 2695 adjusted_args_size = args_size;
ce48579b
RH
2696 /* Compute the actual size of the argument block required. The variable
2697 and constant sizes must be combined, the size may have to be rounded,
2698 and there may be a minimum required size. When generating a sibcall
2699 pattern, do not round up, since we'll be re-using whatever space our
2700 caller provided. */
2701 unadjusted_args_size
099e9712 2702 = compute_argument_block_size (reg_parm_stack_space, &adjusted_args_size,
ce48579b
RH
2703 (pass == 0 ? 0
2704 : preferred_stack_boundary));
2705
1503a7ec 2706 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
ce48579b 2707
f8a097cd
JH
2708 /* The argument block when performing a sibling call is the
2709 incoming argument block. */
2710 if (pass == 0)
c67846f2
JJ
2711 {
2712 argblock = virtual_incoming_args_rtx;
2713 stored_args_map = sbitmap_alloc (args_size.constant);
2714 sbitmap_zero (stored_args_map);
2715 }
ce48579b 2716
0a1c58a2
JL
2717 /* If we have no actual push instructions, or shouldn't use them,
2718 make space for all args right now. */
099e9712 2719 else if (adjusted_args_size.var != 0)
51bbfa0c 2720 {
0a1c58a2
JL
2721 if (old_stack_level == 0)
2722 {
2723 emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
2724 old_pending_adj = pending_stack_adjust;
2725 pending_stack_adjust = 0;
0a1c58a2
JL
2726 /* stack_arg_under_construction says whether a stack arg is
2727 being constructed at the old stack level. Pushing the stack
2728 gets a clean outgoing argument block. */
2729 old_stack_arg_under_construction = stack_arg_under_construction;
2730 stack_arg_under_construction = 0;
0a1c58a2 2731 }
099e9712 2732 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
51bbfa0c 2733 }
0a1c58a2
JL
2734 else
2735 {
2736 /* Note that we must go through the motions of allocating an argument
2737 block even if the size is zero because we may be storing args
2738 in the area reserved for register arguments, which may be part of
2739 the stack frame. */
26a258fe 2740
099e9712 2741 int needed = adjusted_args_size.constant;
51bbfa0c 2742
0a1c58a2
JL
2743 /* Store the maximum argument space used. It will be pushed by
2744 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
2745 checking). */
51bbfa0c 2746
0a1c58a2
JL
2747 if (needed > current_function_outgoing_args_size)
2748 current_function_outgoing_args_size = needed;
51bbfa0c 2749
0a1c58a2
JL
2750 if (must_preallocate)
2751 {
f73ad30e
JH
2752 if (ACCUMULATE_OUTGOING_ARGS)
2753 {
f8a097cd
JH
2754 /* Since the stack pointer will never be pushed, it is
2755 possible for the evaluation of a parm to clobber
2756 something we have already written to the stack.
2757 Since most function calls on RISC machines do not use
2758 the stack, this is uncommon, but must work correctly.
26a258fe 2759
f73ad30e 2760 Therefore, we save any area of the stack that was already
f8a097cd
JH
2761 written and that we are using. Here we set up to do this
2762 by making a new stack usage map from the old one. The
2763 actual save will be done by store_one_arg.
26a258fe 2764
f73ad30e
JH
2765 Another approach might be to try to reorder the argument
2766 evaluations to avoid this conflicting stack usage. */
26a258fe 2767
e5e809f4 2768#ifndef OUTGOING_REG_PARM_STACK_SPACE
f8a097cd
JH
2769 /* Since we will be writing into the entire argument area,
2770 the map must be allocated for its entire size, not just
2771 the part that is the responsibility of the caller. */
f73ad30e 2772 needed += reg_parm_stack_space;
51bbfa0c
RS
2773#endif
2774
2775#ifdef ARGS_GROW_DOWNWARD
f73ad30e
JH
2776 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2777 needed + 1);
51bbfa0c 2778#else
f73ad30e
JH
2779 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2780 needed);
51bbfa0c 2781#endif
f8a097cd
JH
2782 stack_usage_map
2783 = (char *) alloca (highest_outgoing_arg_in_use);
51bbfa0c 2784
f73ad30e
JH
2785 if (initial_highest_arg_in_use)
2786 bcopy (initial_stack_usage_map, stack_usage_map,
2787 initial_highest_arg_in_use);
2f4aa534 2788
f73ad30e
JH
2789 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
2790 bzero (&stack_usage_map[initial_highest_arg_in_use],
2791 (highest_outgoing_arg_in_use
2792 - initial_highest_arg_in_use));
2793 needed = 0;
2f4aa534 2794
f8a097cd
JH
2795 /* The address of the outgoing argument list must not be
2796 copied to a register here, because argblock would be left
2797 pointing to the wrong place after the call to
f73ad30e 2798 allocate_dynamic_stack_space below. */
2f4aa534 2799
f73ad30e
JH
2800 argblock = virtual_outgoing_args_rtx;
2801 }
2802 else
26a258fe 2803 {
f73ad30e 2804 if (inhibit_defer_pop == 0)
0a1c58a2 2805 {
f73ad30e 2806 /* Try to reuse some or all of the pending_stack_adjust
ce48579b
RH
2807 to get this space. */
2808 needed
2809 = (combine_pending_stack_adjustment_and_call
2810 (unadjusted_args_size,
099e9712 2811 &adjusted_args_size,
ce48579b
RH
2812 preferred_unit_stack_boundary));
2813
2814 /* combine_pending_stack_adjustment_and_call computes
2815 an adjustment before the arguments are allocated.
2816 Account for them and see whether or not the stack
2817 needs to go up or down. */
2818 needed = unadjusted_args_size - needed;
2819
2820 if (needed < 0)
f73ad30e 2821 {
ce48579b
RH
2822 /* We're releasing stack space. */
2823 /* ??? We can avoid any adjustment at all if we're
2824 already aligned. FIXME. */
2825 pending_stack_adjust = -needed;
2826 do_pending_stack_adjust ();
f73ad30e
JH
2827 needed = 0;
2828 }
ce48579b
RH
2829 else
2830 /* We need to allocate space. We'll do that in
2831 push_block below. */
2832 pending_stack_adjust = 0;
0a1c58a2 2833 }
ce48579b
RH
2834
2835 /* Special case this because overhead of `push_block' in
2836 this case is non-trivial. */
f73ad30e
JH
2837 if (needed == 0)
2838 argblock = virtual_outgoing_args_rtx;
0a1c58a2 2839 else
f73ad30e
JH
2840 argblock = push_block (GEN_INT (needed), 0, 0);
2841
f8a097cd
JH
2842 /* We only really need to call `copy_to_reg' in the case
2843 where push insns are going to be used to pass ARGBLOCK
2844 to a function call in ARGS. In that case, the stack
2845 pointer changes value from the allocation point to the
2846 call point, and hence the value of
2847 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
2848 as well always do it. */
f73ad30e 2849 argblock = copy_to_reg (argblock);
0a1c58a2 2850
f8a097cd 2851 /* The save/restore code in store_one_arg handles all
ce48579b
RH
2852 cases except one: a constructor call (including a C
2853 function returning a BLKmode struct) to initialize
2854 an argument. */
f8a097cd
JH
2855 if (stack_arg_under_construction)
2856 {
e5e809f4 2857#ifndef OUTGOING_REG_PARM_STACK_SPACE
ce48579b 2858 rtx push_size = GEN_INT (reg_parm_stack_space
099e9712 2859 + adjusted_args_size.constant);
bfbf933a 2860#else
099e9712 2861 rtx push_size = GEN_INT (adjusted_args_size.constant);
bfbf933a 2862#endif
f8a097cd
JH
2863 if (old_stack_level == 0)
2864 {
ce48579b
RH
2865 emit_stack_save (SAVE_BLOCK, &old_stack_level,
2866 NULL_RTX);
f8a097cd
JH
2867 old_pending_adj = pending_stack_adjust;
2868 pending_stack_adjust = 0;
ce48579b
RH
2869 /* stack_arg_under_construction says whether a stack
2870 arg is being constructed at the old stack level.
2871 Pushing the stack gets a clean outgoing argument
2872 block. */
2873 old_stack_arg_under_construction
2874 = stack_arg_under_construction;
f8a097cd
JH
2875 stack_arg_under_construction = 0;
2876 /* Make a new map for the new argument list. */
ce48579b
RH
2877 stack_usage_map = (char *)
2878 alloca (highest_outgoing_arg_in_use);
f8a097cd
JH
2879 bzero (stack_usage_map, highest_outgoing_arg_in_use);
2880 highest_outgoing_arg_in_use = 0;
2881 }
ce48579b
RH
2882 allocate_dynamic_stack_space (push_size, NULL_RTX,
2883 BITS_PER_UNIT);
f8a097cd 2884 }
ce48579b
RH
2885 /* If argument evaluation might modify the stack pointer,
2886 copy the address of the argument list to a register. */
f8a097cd
JH
2887 for (i = 0; i < num_actuals; i++)
2888 if (args[i].pass_on_stack)
2889 {
2890 argblock = copy_addr_to_reg (argblock);
2891 break;
2892 }
f73ad30e 2893 }
0a1c58a2 2894 }
bfbf933a 2895 }
bfbf933a 2896
0a1c58a2 2897 compute_argument_addresses (args, argblock, num_actuals);
bfbf933a 2898
c795bca9 2899#ifdef PREFERRED_STACK_BOUNDARY
0a1c58a2
JL
2900 /* If we push args individually in reverse order, perform stack alignment
2901 before the first push (the last arg). */
f73ad30e 2902 if (PUSH_ARGS_REVERSED && argblock == 0
099e9712 2903 && adjusted_args_size.constant != unadjusted_args_size)
4e217aed 2904 {
0a1c58a2
JL
2905 /* When the stack adjustment is pending, we get better code
2906 by combining the adjustments. */
739fb049
MM
2907 if (pending_stack_adjust
2908 && ! (flags & (ECF_CONST | ECF_PURE))
0a1c58a2 2909 && ! inhibit_defer_pop)
ce48579b
RH
2910 {
2911 pending_stack_adjust
2912 = (combine_pending_stack_adjustment_and_call
2913 (unadjusted_args_size,
099e9712 2914 &adjusted_args_size,
ce48579b
RH
2915 preferred_unit_stack_boundary));
2916 do_pending_stack_adjust ();
2917 }
0a1c58a2 2918 else if (argblock == 0)
099e9712 2919 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
0a1c58a2 2920 - unadjusted_args_size));
0a1c58a2 2921 }
ebcd0b57
JH
2922 /* Now that the stack is properly aligned, pops can't safely
2923 be deferred during the evaluation of the arguments. */
2924 NO_DEFER_POP;
51bbfa0c
RS
2925#endif
2926
0a1c58a2
JL
2927 /* Don't try to defer pops if preallocating, not even from the first arg,
2928 since ARGBLOCK probably refers to the SP. */
2929 if (argblock)
2930 NO_DEFER_POP;
51bbfa0c 2931
0a1c58a2 2932 funexp = rtx_for_function_call (fndecl, exp);
51bbfa0c 2933
0a1c58a2
JL
2934 /* Figure out the register where the value, if any, will come back. */
2935 valreg = 0;
2936 if (TYPE_MODE (TREE_TYPE (exp)) != VOIDmode
2937 && ! structure_value_addr)
2938 {
2939 if (pcc_struct_value)
2940 valreg = hard_function_value (build_pointer_type (TREE_TYPE (exp)),
7d167afd 2941 fndecl, (pass == 0));
0a1c58a2 2942 else
7d167afd 2943 valreg = hard_function_value (TREE_TYPE (exp), fndecl, (pass == 0));
0a1c58a2 2944 }
51bbfa0c 2945
0a1c58a2
JL
2946 /* Precompute all register parameters. It isn't safe to compute anything
2947 once we have started filling any specific hard regs. */
2948 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
51bbfa0c 2949
f73ad30e 2950#ifdef REG_PARM_STACK_SPACE
0a1c58a2
JL
2951 /* Save the fixed argument area if it's part of the caller's frame and
2952 is clobbered by argument setup for this call. */
f8a097cd 2953 if (ACCUMULATE_OUTGOING_ARGS && pass)
f73ad30e
JH
2954 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
2955 &low_to_save, &high_to_save);
b94301c2 2956#endif
51bbfa0c 2957
0a1c58a2
JL
2958 /* Now store (and compute if necessary) all non-register parms.
2959 These come before register parms, since they can require block-moves,
2960 which could clobber the registers used for register parms.
2961 Parms which have partial registers are not stored here,
2962 but we do preallocate space here if they want that. */
51bbfa0c 2963
0a1c58a2
JL
2964 for (i = 0; i < num_actuals; i++)
2965 if (args[i].reg == 0 || args[i].pass_on_stack)
c67846f2
JJ
2966 {
2967 rtx before_arg = get_last_insn ();
2968
4c6b3b2a
JJ
2969 if (store_one_arg (&args[i], argblock, flags,
2970 adjusted_args_size.var != 0,
2971 reg_parm_stack_space)
2972 || (pass == 0
2973 && check_sibcall_argument_overlap (before_arg,
2974 &args[i])))
c67846f2
JJ
2975 sibcall_failure = 1;
2976 }
0a1c58a2
JL
2977
2978 /* If we have a parm that is passed in registers but not in memory
2979 and whose alignment does not permit a direct copy into registers,
2980 make a group of pseudos that correspond to each register that we
2981 will later fill. */
2982 if (STRICT_ALIGNMENT)
2983 store_unaligned_arguments_into_pseudos (args, num_actuals);
2984
2985 /* Now store any partially-in-registers parm.
2986 This is the last place a block-move can happen. */
2987 if (reg_parm_seen)
2988 for (i = 0; i < num_actuals; i++)
2989 if (args[i].partial != 0 && ! args[i].pass_on_stack)
c67846f2
JJ
2990 {
2991 rtx before_arg = get_last_insn ();
2992
4c6b3b2a
JJ
2993 if (store_one_arg (&args[i], argblock, flags,
2994 adjusted_args_size.var != 0,
2995 reg_parm_stack_space)
2996 || (pass == 0
2997 && check_sibcall_argument_overlap (before_arg,
2998 &args[i])))
c67846f2
JJ
2999 sibcall_failure = 1;
3000 }
51bbfa0c 3001
c795bca9 3002#ifdef PREFERRED_STACK_BOUNDARY
0a1c58a2
JL
3003 /* If we pushed args in forward order, perform stack alignment
3004 after pushing the last arg. */
f73ad30e 3005 if (!PUSH_ARGS_REVERSED && argblock == 0)
099e9712 3006 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
0a1c58a2 3007 - unadjusted_args_size));
51bbfa0c
RS
3008#endif
3009
0a1c58a2
JL
3010 /* If register arguments require space on the stack and stack space
3011 was not preallocated, allocate stack space here for arguments
3012 passed in registers. */
f73ad30e
JH
3013#ifdef OUTGOING_REG_PARM_STACK_SPACE
3014 if (!ACCUMULATE_OUTGOING_ARGS
1dfb49b9 3015 && must_preallocate == 0 && reg_parm_stack_space > 0)
0a1c58a2 3016 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
756e0e12
RS
3017#endif
3018
0a1c58a2
JL
3019 /* Pass the function the address in which to return a
3020 structure value. */
3021 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3022 {
3023 emit_move_insn (struct_value_rtx,
3024 force_reg (Pmode,
3025 force_operand (structure_value_addr,
3026 NULL_RTX)));
3027
3028 /* Mark the memory for the aggregate as write-only. */
3029 if (current_function_check_memory_usage)
3030 emit_library_call (chkr_set_right_libfunc, 1,
3031 VOIDmode, 3,
3032 structure_value_addr, ptr_mode,
3033 GEN_INT (struct_value_size),
3034 TYPE_MODE (sizetype),
3035 GEN_INT (MEMORY_USE_WO),
3036 TYPE_MODE (integer_type_node));
3037
3038 if (GET_CODE (struct_value_rtx) == REG)
3039 use_reg (&call_fusage, struct_value_rtx);
3040 }
c2939b57 3041
0a1c58a2
JL
3042 funexp = prepare_call_address (funexp, fndecl, &call_fusage,
3043 reg_parm_seen);
51bbfa0c 3044
099e9712 3045 load_register_parameters (args, num_actuals, &call_fusage, flags);
0a1c58a2
JL
3046
3047 /* Perform postincrements before actually calling the function. */
3048 emit_queue ();
51bbfa0c 3049
0a1c58a2
JL
3050 /* Save a pointer to the last insn before the call, so that we can
3051 later safely search backwards to find the CALL_INSN. */
3052 before_call = get_last_insn ();
51bbfa0c 3053
7d167afd
JJ
3054 /* Set up next argument register. For sibling calls on machines
3055 with register windows this should be the incoming register. */
3056#ifdef FUNCTION_INCOMING_ARG
3057 if (pass == 0)
3058 next_arg_reg = FUNCTION_INCOMING_ARG (args_so_far, VOIDmode,
3059 void_type_node, 1);
3060 else
3061#endif
3062 next_arg_reg = FUNCTION_ARG (args_so_far, VOIDmode,
3063 void_type_node, 1);
3064
0a1c58a2
JL
3065 /* All arguments and registers used for the call must be set up by
3066 now! */
3067
ebcd0b57 3068#ifdef PREFERRED_STACK_BOUNDARY
ce48579b
RH
3069 /* Stack must be properly aligned now. */
3070 if (pass && stack_pointer_delta % preferred_unit_stack_boundary)
d9a7d592 3071 abort ();
ebcd0b57
JH
3072#endif
3073
0a1c58a2
JL
3074 /* Generate the actual call instruction. */
3075 emit_call_1 (funexp, fndecl, funtype, unadjusted_args_size,
099e9712 3076 adjusted_args_size.constant, struct_value_size,
7d167afd 3077 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
f2d33f13 3078 flags);
0a1c58a2 3079
1503a7ec
JH
3080 /* Verify that we've deallocated all the stack we used. */
3081 if (pass
3082 && old_stack_allocated != stack_pointer_delta - pending_stack_adjust)
3083 abort();
3084
0a1c58a2
JL
3085 /* If call is cse'able, make appropriate pair of reg-notes around it.
3086 Test valreg so we don't crash; may safely ignore `const'
3087 if return type is void. Disable for PARALLEL return values, because
3088 we have no way to move such values into a pseudo register. */
8be9eb00
RH
3089 if (pass
3090 && (flags & (ECF_CONST | ECF_PURE))
2a8f6b90 3091 && valreg != 0 && GET_CODE (valreg) != PARALLEL)
9ae8ffe7 3092 {
0a1c58a2
JL
3093 rtx note = 0;
3094 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3095 rtx insns;
9ae8ffe7 3096
0a1c58a2
JL
3097 /* Mark the return value as a pointer if needed. */
3098 if (TREE_CODE (TREE_TYPE (exp)) == POINTER_TYPE)
bdb429a5 3099 mark_reg_pointer (temp, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp))));
0a1c58a2
JL
3100
3101 /* Construct an "equal form" for the value which mentions all the
3102 arguments in order as well as the function name. */
5591ee6f
JH
3103 for (i = 0; i < num_actuals; i++)
3104 note = gen_rtx_EXPR_LIST (VOIDmode, args[i].initial_value, note);
0a1c58a2 3105 note = gen_rtx_EXPR_LIST (VOIDmode, funexp, note);
9ae8ffe7 3106
0a1c58a2
JL
3107 insns = get_insns ();
3108 end_sequence ();
9ae8ffe7 3109
2a8f6b90
JH
3110 if (flags & ECF_PURE)
3111 note = gen_rtx_EXPR_LIST (VOIDmode,
3112 gen_rtx_USE (VOIDmode,
3113 gen_rtx_MEM (BLKmode,
3114 gen_rtx_SCRATCH (VOIDmode))), note);
3115
0a1c58a2
JL
3116 emit_libcall_block (insns, temp, valreg, note);
3117
3118 valreg = temp;
3119 }
2a8f6b90 3120 else if (flags & (ECF_CONST | ECF_PURE))
0a1c58a2
JL
3121 {
3122 /* Otherwise, just write out the sequence without a note. */
3123 rtx insns = get_insns ();
9ae8ffe7 3124
0a1c58a2
JL
3125 end_sequence ();
3126 emit_insns (insns);
3127 }
f2d33f13 3128 else if (flags & ECF_MALLOC)
0a1c58a2
JL
3129 {
3130 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3131 rtx last, insns;
3132
3133 /* The return value from a malloc-like function is a pointer. */
3134 if (TREE_CODE (TREE_TYPE (exp)) == POINTER_TYPE)
bdb429a5 3135 mark_reg_pointer (temp, BIGGEST_ALIGNMENT);
0a1c58a2
JL
3136
3137 emit_move_insn (temp, valreg);
3138
3139 /* The return value from a malloc-like function can not alias
3140 anything else. */
3141 last = get_last_insn ();
3142 REG_NOTES (last) =
3143 gen_rtx_EXPR_LIST (REG_NOALIAS, temp, REG_NOTES (last));
3144
3145 /* Write out the sequence. */
3146 insns = get_insns ();
3147 end_sequence ();
3148 emit_insns (insns);
3149 valreg = temp;
3150 }
51bbfa0c 3151
0a1c58a2
JL
3152 /* For calls to `setjmp', etc., inform flow.c it should complain
3153 if nonvolatile values are live. For functions that cannot return,
3154 inform flow that control does not fall through. */
51bbfa0c 3155
f2d33f13 3156 if ((flags & (ECF_RETURNS_TWICE | ECF_NORETURN | ECF_LONGJMP)) || pass == 0)
c2939b57 3157 {
0a1c58a2
JL
3158 /* The barrier or NOTE_INSN_SETJMP note must be emitted
3159 immediately after the CALL_INSN. Some ports emit more
3160 than just a CALL_INSN above, so we must search for it here. */
51bbfa0c 3161
0a1c58a2
JL
3162 rtx last = get_last_insn ();
3163 while (GET_CODE (last) != CALL_INSN)
3164 {
3165 last = PREV_INSN (last);
3166 /* There was no CALL_INSN? */
3167 if (last == before_call)
3168 abort ();
3169 }
51bbfa0c 3170
f2d33f13 3171 if (flags & ECF_RETURNS_TWICE)
0a1c58a2
JL
3172 {
3173 emit_note_after (NOTE_INSN_SETJMP, last);
3174 current_function_calls_setjmp = 1;
0a1c58a2
JL
3175 }
3176 else
3177 emit_barrier_after (last);
3178 }
51bbfa0c 3179
f2d33f13 3180 if (flags & ECF_LONGJMP)
099e9712 3181 current_function_calls_longjmp = 1;
51bbfa0c 3182
25a1fcb4
RK
3183 /* If this function is returning into a memory location marked as
3184 readonly, it means it is initializing that location. But we normally
3185 treat functions as not clobbering such locations, so we need to
3186 specify that this one does. */
3187 if (target != 0 && GET_CODE (target) == MEM
3188 && structure_value_addr != 0 && RTX_UNCHANGING_P (target))
3189 emit_insn (gen_rtx_CLOBBER (VOIDmode, target));
3190
0a1c58a2 3191 /* If value type not void, return an rtx for the value. */
51bbfa0c 3192
0a1c58a2
JL
3193 /* If there are cleanups to be called, don't use a hard reg as target.
3194 We need to double check this and see if it matters anymore. */
194c7c45
RH
3195 if (any_pending_cleanups (1))
3196 {
3197 if (target && REG_P (target)
3198 && REGNO (target) < FIRST_PSEUDO_REGISTER)
3199 target = 0;
3200 sibcall_failure = 1;
3201 }
51bbfa0c 3202
0a1c58a2
JL
3203 if (TYPE_MODE (TREE_TYPE (exp)) == VOIDmode
3204 || ignore)
29008b51 3205 {
0a1c58a2 3206 target = const0_rtx;
29008b51 3207 }
0a1c58a2
JL
3208 else if (structure_value_addr)
3209 {
3210 if (target == 0 || GET_CODE (target) != MEM)
3211 {
3bdf5ad1
RK
3212 target
3213 = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)),
3214 memory_address (TYPE_MODE (TREE_TYPE (exp)),
3215 structure_value_addr));
3216 set_mem_attributes (target, exp, 1);
0a1c58a2
JL
3217 }
3218 }
3219 else if (pcc_struct_value)
cacbd532 3220 {
0a1c58a2
JL
3221 /* This is the special C++ case where we need to
3222 know what the true target was. We take care to
3223 never use this value more than once in one expression. */
3224 target = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)),
3225 copy_to_reg (valreg));
3bdf5ad1 3226 set_mem_attributes (target, exp, 1);
cacbd532 3227 }
0a1c58a2
JL
3228 /* Handle calls that return values in multiple non-contiguous locations.
3229 The Irix 6 ABI has examples of this. */
3230 else if (GET_CODE (valreg) == PARALLEL)
3231 {
3232 int bytes = int_size_in_bytes (TREE_TYPE (exp));
cacbd532 3233
0a1c58a2
JL
3234 if (target == 0)
3235 {
3236 target = assign_stack_temp (TYPE_MODE (TREE_TYPE (exp)),
3237 bytes, 0);
3238 MEM_SET_IN_STRUCT_P (target, AGGREGATE_TYPE_P (TREE_TYPE (exp)));
3239 preserve_temp_slots (target);
3240 }
3241
3242 if (! rtx_equal_p (target, valreg))
3243 emit_group_store (target, valreg, bytes,
19caa751
RK
3244 TYPE_ALIGN (TREE_TYPE (exp)));
3245
0a1c58a2
JL
3246 /* We can not support sibling calls for this case. */
3247 sibcall_failure = 1;
3248 }
3249 else if (target
3250 && GET_MODE (target) == TYPE_MODE (TREE_TYPE (exp))
3251 && GET_MODE (target) == GET_MODE (valreg))
3252 {
3253 /* TARGET and VALREG cannot be equal at this point because the
3254 latter would not have REG_FUNCTION_VALUE_P true, while the
3255 former would if it were referring to the same register.
3256
3257 If they refer to the same register, this move will be a no-op,
3258 except when function inlining is being done. */
3259 emit_move_insn (target, valreg);
3260 }
3261 else if (TYPE_MODE (TREE_TYPE (exp)) == BLKmode)
3262 target = copy_blkmode_from_reg (target, valreg, TREE_TYPE (exp));
3263 else
3264 target = copy_to_reg (valreg);
51bbfa0c 3265
84b55618 3266#ifdef PROMOTE_FUNCTION_RETURN
0a1c58a2
JL
3267 /* If we promoted this return value, make the proper SUBREG. TARGET
3268 might be const0_rtx here, so be careful. */
3269 if (GET_CODE (target) == REG
3270 && TYPE_MODE (TREE_TYPE (exp)) != BLKmode
3271 && GET_MODE (target) != TYPE_MODE (TREE_TYPE (exp)))
3272 {
3273 tree type = TREE_TYPE (exp);
3274 int unsignedp = TREE_UNSIGNED (type);
84b55618 3275
0a1c58a2
JL
3276 /* If we don't promote as expected, something is wrong. */
3277 if (GET_MODE (target)
3278 != promote_mode (type, TYPE_MODE (type), &unsignedp, 1))
3279 abort ();
5d2ac65e 3280
0a1c58a2
JL
3281 target = gen_rtx_SUBREG (TYPE_MODE (type), target, 0);
3282 SUBREG_PROMOTED_VAR_P (target) = 1;
3283 SUBREG_PROMOTED_UNSIGNED_P (target) = unsignedp;
3284 }
84b55618
RK
3285#endif
3286
0a1c58a2
JL
3287 /* If size of args is variable or this was a constructor call for a stack
3288 argument, restore saved stack-pointer value. */
51bbfa0c 3289
7393c642 3290 if (old_stack_level && ! (flags & ECF_SP_DEPRESSED))
0a1c58a2
JL
3291 {
3292 emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX);
3293 pending_stack_adjust = old_pending_adj;
0a1c58a2
JL
3294 stack_arg_under_construction = old_stack_arg_under_construction;
3295 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3296 stack_usage_map = initial_stack_usage_map;
0a1c58a2
JL
3297 sibcall_failure = 1;
3298 }
f8a097cd 3299 else if (ACCUMULATE_OUTGOING_ARGS && pass)
0a1c58a2 3300 {
51bbfa0c 3301#ifdef REG_PARM_STACK_SPACE
0a1c58a2
JL
3302 if (save_area)
3303 {
3304 restore_fixed_argument_area (save_area, argblock,
3305 high_to_save, low_to_save);
0a1c58a2 3306 }
b94301c2 3307#endif
51bbfa0c 3308
0a1c58a2
JL
3309 /* If we saved any argument areas, restore them. */
3310 for (i = 0; i < num_actuals; i++)
3311 if (args[i].save_area)
3312 {
3313 enum machine_mode save_mode = GET_MODE (args[i].save_area);
3314 rtx stack_area
3315 = gen_rtx_MEM (save_mode,
3316 memory_address (save_mode,
3317 XEXP (args[i].stack_slot, 0)));
3318
3319 if (save_mode != BLKmode)
3320 emit_move_insn (stack_area, args[i].save_area);
3321 else
3322 emit_block_move (stack_area,
3323 validize_mem (args[i].save_area),
3324 GEN_INT (args[i].size.constant),
19caa751 3325 PARM_BOUNDARY);
0a1c58a2 3326 }
51bbfa0c 3327
0a1c58a2
JL
3328 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3329 stack_usage_map = initial_stack_usage_map;
3330 }
51bbfa0c 3331
0a1c58a2
JL
3332 /* If this was alloca, record the new stack level for nonlocal gotos.
3333 Check for the handler slots since we might not have a save area
3334 for non-local gotos. */
59257ff7 3335
f2d33f13 3336 if ((flags & ECF_MAY_BE_ALLOCA) && nonlocal_goto_handler_slots != 0)
0a1c58a2 3337 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level, NULL_RTX);
51bbfa0c 3338
0a1c58a2
JL
3339 pop_temp_slots ();
3340
3341 /* Free up storage we no longer need. */
3342 for (i = 0; i < num_actuals; ++i)
3343 if (args[i].aligned_regs)
3344 free (args[i].aligned_regs);
3345
e245d3af
RH
3346 if (pass == 0)
3347 {
3348 /* Undo the fake expand_start_target_temps we did earlier. If
3349 there had been any cleanups created, we've already set
3350 sibcall_failure. */
3351 expand_end_target_temps ();
3352 }
3353
0a1c58a2
JL
3354 insns = get_insns ();
3355 end_sequence ();
3356
3357 if (pass == 0)
3358 {
3359 tail_call_insns = insns;
3360
7d167afd
JJ
3361 /* If something prevents making this a sibling call,
3362 zero out the sequence. */
3363 if (sibcall_failure)
0a1c58a2 3364 tail_call_insns = NULL_RTX;
0a1c58a2
JL
3365 /* Restore the pending stack adjustment now that we have
3366 finished generating the sibling call sequence. */
1503a7ec 3367
0a1c58a2 3368 pending_stack_adjust = save_pending_stack_adjust;
1503a7ec 3369 stack_pointer_delta = save_stack_pointer_delta;
099e9712
JH
3370
3371 /* Prepare arg structure for next iteration. */
3372 for (i = 0 ; i < num_actuals ; i++)
3373 {
3374 args[i].value = 0;
3375 args[i].aligned_regs = 0;
3376 args[i].stack = 0;
3377 }
c67846f2
JJ
3378
3379 sbitmap_free (stored_args_map);
0a1c58a2
JL
3380 }
3381 else
3382 normal_call_insns = insns;
3383 }
3384
3385 /* The function optimize_sibling_and_tail_recursive_calls doesn't
3386 handle CALL_PLACEHOLDERs inside other CALL_PLACEHOLDERs. This
3387 can happen if the arguments to this function call an inline
3388 function who's expansion contains another CALL_PLACEHOLDER.
3389
3390 If there are any C_Ps in any of these sequences, replace them
3391 with their normal call. */
3392
3393 for (insn = normal_call_insns; insn; insn = NEXT_INSN (insn))
3394 if (GET_CODE (insn) == CALL_INSN
3395 && GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
3396 replace_call_placeholder (insn, sibcall_use_normal);
3397
3398 for (insn = tail_call_insns; insn; insn = NEXT_INSN (insn))
3399 if (GET_CODE (insn) == CALL_INSN
3400 && GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
3401 replace_call_placeholder (insn, sibcall_use_normal);
3402
3403 for (insn = tail_recursion_insns; insn; insn = NEXT_INSN (insn))
3404 if (GET_CODE (insn) == CALL_INSN
3405 && GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
3406 replace_call_placeholder (insn, sibcall_use_normal);
3407
3408 /* If this was a potential tail recursion site, then emit a
3409 CALL_PLACEHOLDER with the normal and the tail recursion streams.
3410 One of them will be selected later. */
3411 if (tail_recursion_insns || tail_call_insns)
3412 {
3413 /* The tail recursion label must be kept around. We could expose
3414 its use in the CALL_PLACEHOLDER, but that creates unwanted edges
3415 and makes determining true tail recursion sites difficult.
3416
3417 So we set LABEL_PRESERVE_P here, then clear it when we select
3418 one of the call sequences after rtl generation is complete. */
3419 if (tail_recursion_insns)
3420 LABEL_PRESERVE_P (tail_recursion_label) = 1;
3421 emit_call_insn (gen_rtx_CALL_PLACEHOLDER (VOIDmode, normal_call_insns,
3422 tail_call_insns,
3423 tail_recursion_insns,
3424 tail_recursion_label));
3425 }
3426 else
3427 emit_insns (normal_call_insns);
51bbfa0c 3428
0a1c58a2 3429 currently_expanding_call--;
8e6a59fe 3430
7393c642
RK
3431 /* If this function returns with the stack pointer depressed, ensure
3432 this block saves and restores the stack pointer, show it was
3433 changed, and adjust for any outgoing arg space. */
3434 if (flags & ECF_SP_DEPRESSED)
3435 {
3436 clear_pending_stack_adjust ();
3437 emit_insn (gen_rtx (CLOBBER, VOIDmode, stack_pointer_rtx));
3438 emit_move_insn (virtual_stack_dynamic_rtx, stack_pointer_rtx);
3439 save_stack_pointer ();
3440 }
3441
51bbfa0c
RS
3442 return target;
3443}
3444\f
12a22e76
JM
3445/* Returns nonzero if FUN is the symbol for a library function which can
3446 not throw. */
3447
3448static int
3449libfunc_nothrow (fun)
3450 rtx fun;
3451{
3452 if (fun == throw_libfunc
3453 || fun == rethrow_libfunc
3454 || fun == sjthrow_libfunc
3455 || fun == sjpopnthrow_libfunc)
3456 return 0;
3457
3458 return 1;
3459}
43bc5f13 3460\f
de76b467
JH
3461/* Output a library call to function FUN (a SYMBOL_REF rtx).
3462 The RETVAL parameter specifies whether return value needs to be saved, other
3463 parameters are documented in the emit_library_call function bellow. */
3464static rtx
2a8f6b90 3465emit_library_call_value_1 (retval, orgfun, value, fn_type, outmode, nargs, p)
de76b467
JH
3466 int retval;
3467 rtx orgfun;
3468 rtx value;
2a8f6b90 3469 int fn_type;
de76b467
JH
3470 enum machine_mode outmode;
3471 int nargs;
3472 va_list p;
43bc5f13 3473{
3c0fca12
RH
3474 /* Total size in bytes of all the stack-parms scanned so far. */
3475 struct args_size args_size;
3476 /* Size of arguments before any adjustments (such as rounding). */
3477 struct args_size original_args_size;
3478 register int argnum;
3479 rtx fun;
3480 int inc;
3481 int count;
3482 struct args_size alignment_pad;
3483 rtx argblock = 0;
3484 CUMULATIVE_ARGS args_so_far;
3485 struct arg { rtx value; enum machine_mode mode; rtx reg; int partial;
3486 struct args_size offset; struct args_size size; rtx save_area; };
3487 struct arg *argvec;
3488 int old_inhibit_defer_pop = inhibit_defer_pop;
3489 rtx call_fusage = 0;
3490 rtx mem_value = 0;
5591ee6f 3491 rtx valreg;
3c0fca12
RH
3492 int pcc_struct_value = 0;
3493 int struct_value_size = 0;
f2d33f13 3494 int flags = 0;
3c0fca12 3495 int reg_parm_stack_space = 0;
3c0fca12 3496 int needed;
3c0fca12 3497
f73ad30e 3498#ifdef REG_PARM_STACK_SPACE
3c0fca12
RH
3499 /* Define the boundary of the register parm stack space that needs to be
3500 save, if any. */
3501 int low_to_save = -1, high_to_save = 0;
3502 rtx save_area = 0; /* Place that it is saved */
3503#endif
3504
3c0fca12
RH
3505 /* Size of the stack reserved for parameter registers. */
3506 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3507 char *initial_stack_usage_map = stack_usage_map;
3c0fca12
RH
3508
3509#ifdef REG_PARM_STACK_SPACE
3510#ifdef MAYBE_REG_PARM_STACK_SPACE
3511 reg_parm_stack_space = MAYBE_REG_PARM_STACK_SPACE;
3512#else
3513 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3514#endif
3515#endif
3516
2a8f6b90 3517 if (fn_type == 1)
f2d33f13 3518 flags |= ECF_CONST;
2a8f6b90
JH
3519 else if (fn_type == 2)
3520 flags |= ECF_PURE;
3c0fca12
RH
3521 fun = orgfun;
3522
f2d33f13
JH
3523 if (libfunc_nothrow (fun))
3524 flags |= ECF_NOTHROW;
3c0fca12
RH
3525
3526#ifdef PREFERRED_STACK_BOUNDARY
3527 /* Ensure current function's preferred stack boundary is at least
3528 what we need. */
3529 if (cfun->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
3530 cfun->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3531#endif
3532
3533 /* If this kind of value comes back in memory,
3534 decide where in memory it should come back. */
de76b467 3535 if (outmode != VOIDmode && aggregate_value_p (type_for_mode (outmode, 0)))
3c0fca12
RH
3536 {
3537#ifdef PCC_STATIC_STRUCT_RETURN
3538 rtx pointer_reg
3539 = hard_function_value (build_pointer_type (type_for_mode (outmode, 0)),
3540 0, 0);
3541 mem_value = gen_rtx_MEM (outmode, pointer_reg);
3542 pcc_struct_value = 1;
3543 if (value == 0)
3544 value = gen_reg_rtx (outmode);
3545#else /* not PCC_STATIC_STRUCT_RETURN */
3546 struct_value_size = GET_MODE_SIZE (outmode);
3547 if (value != 0 && GET_CODE (value) == MEM)
3548 mem_value = value;
3549 else
3550 mem_value = assign_stack_temp (outmode, GET_MODE_SIZE (outmode), 0);
3551#endif
3552
3553 /* This call returns a big structure. */
2a8f6b90 3554 flags &= ~(ECF_CONST | ECF_PURE);
3c0fca12
RH
3555 }
3556
3557 /* ??? Unfinished: must pass the memory address as an argument. */
3558
3559 /* Copy all the libcall-arguments out of the varargs data
3560 and into a vector ARGVEC.
3561
3562 Compute how to pass each argument. We only support a very small subset
3563 of the full argument passing conventions to limit complexity here since
3564 library functions shouldn't have many args. */
3565
3566 argvec = (struct arg *) alloca ((nargs + 1) * sizeof (struct arg));
3567 bzero ((char *) argvec, (nargs + 1) * sizeof (struct arg));
3568
3569 INIT_CUMULATIVE_ARGS (args_so_far, NULL_TREE, fun, 0);
3570
3571 args_size.constant = 0;
3572 args_size.var = 0;
3573
3574 count = 0;
3575
5591ee6f
JH
3576 /* Now we are about to start emitting insns that can be deleted
3577 if a libcall is deleted. */
2a8f6b90 3578 if (flags & (ECF_CONST | ECF_PURE))
5591ee6f
JH
3579 start_sequence ();
3580
3c0fca12
RH
3581 push_temp_slots ();
3582
3583 /* If there's a structure value address to be passed,
3584 either pass it in the special place, or pass it as an extra argument. */
3585 if (mem_value && struct_value_rtx == 0 && ! pcc_struct_value)
3586 {
3587 rtx addr = XEXP (mem_value, 0);
3588 nargs++;
3589
3590 /* Make sure it is a reasonable operand for a move or push insn. */
3591 if (GET_CODE (addr) != REG && GET_CODE (addr) != MEM
3592 && ! (CONSTANT_P (addr) && LEGITIMATE_CONSTANT_P (addr)))
3593 addr = force_operand (addr, NULL_RTX);
3594
3595 argvec[count].value = addr;
3596 argvec[count].mode = Pmode;
3597 argvec[count].partial = 0;
3598
3599 argvec[count].reg = FUNCTION_ARG (args_so_far, Pmode, NULL_TREE, 1);
3600#ifdef FUNCTION_ARG_PARTIAL_NREGS
3601 if (FUNCTION_ARG_PARTIAL_NREGS (args_so_far, Pmode, NULL_TREE, 1))
3602 abort ();
3603#endif
3604
3605 locate_and_pad_parm (Pmode, NULL_TREE,
a4d5044f
CM
3606#ifdef STACK_PARMS_IN_REG_PARM_AREA
3607 1,
3608#else
3609 argvec[count].reg != 0,
3610#endif
3c0fca12
RH
3611 NULL_TREE, &args_size, &argvec[count].offset,
3612 &argvec[count].size, &alignment_pad);
3613
3614
3615 if (argvec[count].reg == 0 || argvec[count].partial != 0
3616 || reg_parm_stack_space > 0)
3617 args_size.constant += argvec[count].size.constant;
3618
3619 FUNCTION_ARG_ADVANCE (args_so_far, Pmode, (tree) 0, 1);
3620
3621 count++;
3622 }
3623
3624 for (; count < nargs; count++)
3625 {
3626 rtx val = va_arg (p, rtx);
3627 enum machine_mode mode = va_arg (p, enum machine_mode);
3628
3629 /* We cannot convert the arg value to the mode the library wants here;
3630 must do it earlier where we know the signedness of the arg. */
3631 if (mode == BLKmode
3632 || (GET_MODE (val) != mode && GET_MODE (val) != VOIDmode))
3633 abort ();
3634
3635 /* On some machines, there's no way to pass a float to a library fcn.
3636 Pass it as a double instead. */
3637#ifdef LIBGCC_NEEDS_DOUBLE
3638 if (LIBGCC_NEEDS_DOUBLE && mode == SFmode)
3639 val = convert_modes (DFmode, SFmode, val, 0), mode = DFmode;
3640#endif
3641
3642 /* There's no need to call protect_from_queue, because
3643 either emit_move_insn or emit_push_insn will do that. */
3644
3645 /* Make sure it is a reasonable operand for a move or push insn. */
3646 if (GET_CODE (val) != REG && GET_CODE (val) != MEM
3647 && ! (CONSTANT_P (val) && LEGITIMATE_CONSTANT_P (val)))
3648 val = force_operand (val, NULL_RTX);
3649
3650#ifdef FUNCTION_ARG_PASS_BY_REFERENCE
3651 if (FUNCTION_ARG_PASS_BY_REFERENCE (args_so_far, mode, NULL_TREE, 1))
3652 {
3653 /* We do not support FUNCTION_ARG_CALLEE_COPIES here since it can
3654 be viewed as just an efficiency improvement. */
3655 rtx slot = assign_stack_temp (mode, GET_MODE_SIZE (mode), 0);
3656 emit_move_insn (slot, val);
de76b467 3657 val = force_operand (XEXP (slot, 0), NULL_RTX);
3c0fca12
RH
3658 mode = Pmode;
3659 }
3660#endif
3661
3662 argvec[count].value = val;
3663 argvec[count].mode = mode;
3664
3665 argvec[count].reg = FUNCTION_ARG (args_so_far, mode, NULL_TREE, 1);
3666
3667#ifdef FUNCTION_ARG_PARTIAL_NREGS
3668 argvec[count].partial
3669 = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, mode, NULL_TREE, 1);
3670#else
3671 argvec[count].partial = 0;
3672#endif
3673
3674 locate_and_pad_parm (mode, NULL_TREE,
a4d5044f
CM
3675#ifdef STACK_PARMS_IN_REG_PARM_AREA
3676 1,
3677#else
3678 argvec[count].reg != 0,
3679#endif
3c0fca12
RH
3680 NULL_TREE, &args_size, &argvec[count].offset,
3681 &argvec[count].size, &alignment_pad);
3682
3683 if (argvec[count].size.var)
3684 abort ();
3685
3686 if (reg_parm_stack_space == 0 && argvec[count].partial)
3687 argvec[count].size.constant -= argvec[count].partial * UNITS_PER_WORD;
3688
3689 if (argvec[count].reg == 0 || argvec[count].partial != 0
3690 || reg_parm_stack_space > 0)
3691 args_size.constant += argvec[count].size.constant;
3692
3693 FUNCTION_ARG_ADVANCE (args_so_far, mode, (tree) 0, 1);
3694 }
3c0fca12
RH
3695
3696#ifdef FINAL_REG_PARM_STACK_SPACE
3697 reg_parm_stack_space = FINAL_REG_PARM_STACK_SPACE (args_size.constant,
3698 args_size.var);
3699#endif
3700 /* If this machine requires an external definition for library
3701 functions, write one out. */
3702 assemble_external_libcall (fun);
3703
3704 original_args_size = args_size;
3705#ifdef PREFERRED_STACK_BOUNDARY
1503a7ec
JH
3706 args_size.constant = (((args_size.constant
3707 + stack_pointer_delta
3708 + STACK_BYTES - 1)
3709 / STACK_BYTES
3710 * STACK_BYTES)
3711 - stack_pointer_delta);
3c0fca12
RH
3712#endif
3713
3714 args_size.constant = MAX (args_size.constant,
3715 reg_parm_stack_space);
3716
3717#ifndef OUTGOING_REG_PARM_STACK_SPACE
3718 args_size.constant -= reg_parm_stack_space;
3719#endif
3720
3721 if (args_size.constant > current_function_outgoing_args_size)
3722 current_function_outgoing_args_size = args_size.constant;
3723
f73ad30e
JH
3724 if (ACCUMULATE_OUTGOING_ARGS)
3725 {
3726 /* Since the stack pointer will never be pushed, it is possible for
3727 the evaluation of a parm to clobber something we have already
3728 written to the stack. Since most function calls on RISC machines
3729 do not use the stack, this is uncommon, but must work correctly.
3c0fca12 3730
f73ad30e
JH
3731 Therefore, we save any area of the stack that was already written
3732 and that we are using. Here we set up to do this by making a new
3733 stack usage map from the old one.
3c0fca12 3734
f73ad30e
JH
3735 Another approach might be to try to reorder the argument
3736 evaluations to avoid this conflicting stack usage. */
3c0fca12 3737
f73ad30e 3738 needed = args_size.constant;
3c0fca12
RH
3739
3740#ifndef OUTGOING_REG_PARM_STACK_SPACE
f73ad30e
JH
3741 /* Since we will be writing into the entire argument area, the
3742 map must be allocated for its entire size, not just the part that
3743 is the responsibility of the caller. */
3744 needed += reg_parm_stack_space;
3c0fca12
RH
3745#endif
3746
3747#ifdef ARGS_GROW_DOWNWARD
f73ad30e
JH
3748 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3749 needed + 1);
3c0fca12 3750#else
f73ad30e
JH
3751 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3752 needed);
3c0fca12 3753#endif
f73ad30e 3754 stack_usage_map = (char *) alloca (highest_outgoing_arg_in_use);
3c0fca12 3755
f73ad30e
JH
3756 if (initial_highest_arg_in_use)
3757 bcopy (initial_stack_usage_map, stack_usage_map,
3758 initial_highest_arg_in_use);
3c0fca12 3759
f73ad30e
JH
3760 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3761 bzero (&stack_usage_map[initial_highest_arg_in_use],
3762 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
3763 needed = 0;
3c0fca12 3764
f73ad30e
JH
3765 /* The address of the outgoing argument list must not be copied to a
3766 register here, because argblock would be left pointing to the
3767 wrong place after the call to allocate_dynamic_stack_space below.
3768 */
3c0fca12 3769
f73ad30e
JH
3770 argblock = virtual_outgoing_args_rtx;
3771 }
3772 else
3773 {
3774 if (!PUSH_ARGS)
3775 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
3776 }
3c0fca12 3777
3c0fca12
RH
3778#ifdef PREFERRED_STACK_BOUNDARY
3779 /* If we push args individually in reverse order, perform stack alignment
3780 before the first push (the last arg). */
f73ad30e 3781 if (argblock == 0 && PUSH_ARGS_REVERSED)
3c0fca12
RH
3782 anti_adjust_stack (GEN_INT (args_size.constant
3783 - original_args_size.constant));
3784#endif
3c0fca12 3785
f73ad30e
JH
3786 if (PUSH_ARGS_REVERSED)
3787 {
3788 inc = -1;
3789 argnum = nargs - 1;
3790 }
3791 else
3792 {
3793 inc = 1;
3794 argnum = 0;
3795 }
3c0fca12 3796
f73ad30e
JH
3797#ifdef REG_PARM_STACK_SPACE
3798 if (ACCUMULATE_OUTGOING_ARGS)
3799 {
3800 /* The argument list is the property of the called routine and it
3801 may clobber it. If the fixed area has been used for previous
3802 parameters, we must save and restore it.
3c0fca12 3803
f73ad30e 3804 Here we compute the boundary of the that needs to be saved, if any. */
3c0fca12
RH
3805
3806#ifdef ARGS_GROW_DOWNWARD
f73ad30e 3807 for (count = 0; count < reg_parm_stack_space + 1; count++)
3c0fca12 3808#else
f73ad30e 3809 for (count = 0; count < reg_parm_stack_space; count++)
3c0fca12 3810#endif
f73ad30e
JH
3811 {
3812 if (count >= highest_outgoing_arg_in_use
3813 || stack_usage_map[count] == 0)
3814 continue;
3c0fca12 3815
f73ad30e
JH
3816 if (low_to_save == -1)
3817 low_to_save = count;
3c0fca12 3818
f73ad30e
JH
3819 high_to_save = count;
3820 }
3c0fca12 3821
f73ad30e
JH
3822 if (low_to_save >= 0)
3823 {
3824 int num_to_save = high_to_save - low_to_save + 1;
3825 enum machine_mode save_mode
3826 = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
3827 rtx stack_area;
3c0fca12 3828
f73ad30e
JH
3829 /* If we don't have the required alignment, must do this in BLKmode. */
3830 if ((low_to_save & (MIN (GET_MODE_SIZE (save_mode),
3831 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
3832 save_mode = BLKmode;
3c0fca12
RH
3833
3834#ifdef ARGS_GROW_DOWNWARD
f73ad30e
JH
3835 stack_area = gen_rtx_MEM (save_mode,
3836 memory_address (save_mode,
3837 plus_constant (argblock,
3838 - high_to_save)));
3c0fca12 3839#else
f73ad30e
JH
3840 stack_area = gen_rtx_MEM (save_mode,
3841 memory_address (save_mode,
3842 plus_constant (argblock,
3843 low_to_save)));
3c0fca12 3844#endif
f73ad30e
JH
3845 if (save_mode == BLKmode)
3846 {
3847 save_area = assign_stack_temp (BLKmode, num_to_save, 0);
3848 emit_block_move (validize_mem (save_area), stack_area,
19caa751 3849 GEN_INT (num_to_save), PARM_BOUNDARY);
f73ad30e
JH
3850 }
3851 else
3852 {
3853 save_area = gen_reg_rtx (save_mode);
3854 emit_move_insn (save_area, stack_area);
3855 }
3c0fca12
RH
3856 }
3857 }
3858#endif
3859
3860 /* Push the args that need to be pushed. */
3861
3862 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
3863 are to be pushed. */
3864 for (count = 0; count < nargs; count++, argnum += inc)
3865 {
3866 register enum machine_mode mode = argvec[argnum].mode;
3867 register rtx val = argvec[argnum].value;
3868 rtx reg = argvec[argnum].reg;
3869 int partial = argvec[argnum].partial;
f73ad30e 3870 int lower_bound = 0, upper_bound = 0, i;
3c0fca12
RH
3871
3872 if (! (reg != 0 && partial == 0))
3873 {
f73ad30e
JH
3874 if (ACCUMULATE_OUTGOING_ARGS)
3875 {
f8a097cd
JH
3876 /* If this is being stored into a pre-allocated, fixed-size,
3877 stack area, save any previous data at that location. */
3c0fca12
RH
3878
3879#ifdef ARGS_GROW_DOWNWARD
f73ad30e
JH
3880 /* stack_slot is negative, but we want to index stack_usage_map
3881 with positive values. */
3882 upper_bound = -argvec[argnum].offset.constant + 1;
3883 lower_bound = upper_bound - argvec[argnum].size.constant;
3c0fca12 3884#else
f73ad30e
JH
3885 lower_bound = argvec[argnum].offset.constant;
3886 upper_bound = lower_bound + argvec[argnum].size.constant;
3c0fca12
RH
3887#endif
3888
f73ad30e
JH
3889 for (i = lower_bound; i < upper_bound; i++)
3890 if (stack_usage_map[i]
f8a097cd
JH
3891 /* Don't store things in the fixed argument area at this
3892 point; it has already been saved. */
f73ad30e
JH
3893 && i > reg_parm_stack_space)
3894 break;
3c0fca12 3895
f73ad30e
JH
3896 if (i != upper_bound)
3897 {
f8a097cd
JH
3898 /* We need to make a save area. See what mode we can make
3899 it. */
f73ad30e 3900 enum machine_mode save_mode
f8a097cd
JH
3901 = mode_for_size (argvec[argnum].size.constant
3902 * BITS_PER_UNIT,
f73ad30e
JH
3903 MODE_INT, 1);
3904 rtx stack_area
3905 = gen_rtx_MEM
3906 (save_mode,
3907 memory_address
3908 (save_mode,
3909 plus_constant (argblock,
3910 argvec[argnum].offset.constant)));
3911 argvec[argnum].save_area = gen_reg_rtx (save_mode);
3912
3913 emit_move_insn (argvec[argnum].save_area, stack_area);
3914 }
3c0fca12 3915 }
19caa751 3916
3c0fca12
RH
3917 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, 0, partial, reg, 0,
3918 argblock, GEN_INT (argvec[argnum].offset.constant),
3919 reg_parm_stack_space, ARGS_SIZE_RTX (alignment_pad));
3920
3c0fca12 3921 /* Now mark the segment we just used. */
f73ad30e
JH
3922 if (ACCUMULATE_OUTGOING_ARGS)
3923 for (i = lower_bound; i < upper_bound; i++)
3924 stack_usage_map[i] = 1;
3c0fca12
RH
3925
3926 NO_DEFER_POP;
3927 }
3928 }
3929
3c0fca12
RH
3930#ifdef PREFERRED_STACK_BOUNDARY
3931 /* If we pushed args in forward order, perform stack alignment
3932 after pushing 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));
3936#endif
3c0fca12 3937
f73ad30e
JH
3938 if (PUSH_ARGS_REVERSED)
3939 argnum = nargs - 1;
3940 else
3941 argnum = 0;
3c0fca12
RH
3942
3943 fun = prepare_call_address (fun, NULL_TREE, &call_fusage, 0);
3944
3945 /* Now load any reg parms into their regs. */
3946
3947 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
3948 are to be pushed. */
3949 for (count = 0; count < nargs; count++, argnum += inc)
3950 {
3951 register rtx val = argvec[argnum].value;
3952 rtx reg = argvec[argnum].reg;
3953 int partial = argvec[argnum].partial;
3954
3955 /* Handle calls that pass values in multiple non-contiguous
3956 locations. The PA64 has examples of this for library calls. */
3957 if (reg != 0 && GET_CODE (reg) == PARALLEL)
3958 emit_group_load (reg, val,
3959 GET_MODE_SIZE (GET_MODE (val)),
3960 GET_MODE_ALIGNMENT (GET_MODE (val)));
3961 else if (reg != 0 && partial == 0)
3962 emit_move_insn (reg, val);
3963
3964 NO_DEFER_POP;
3965 }
3966
3c0fca12
RH
3967 /* Any regs containing parms remain in use through the call. */
3968 for (count = 0; count < nargs; count++)
3969 {
3970 rtx reg = argvec[count].reg;
3971 if (reg != 0 && GET_CODE (reg) == PARALLEL)
3972 use_group_regs (&call_fusage, reg);
3973 else if (reg != 0)
3974 use_reg (&call_fusage, reg);
3975 }
3976
3977 /* Pass the function the address in which to return a structure value. */
3978 if (mem_value != 0 && struct_value_rtx != 0 && ! pcc_struct_value)
3979 {
3980 emit_move_insn (struct_value_rtx,
3981 force_reg (Pmode,
3982 force_operand (XEXP (mem_value, 0),
3983 NULL_RTX)));
3984 if (GET_CODE (struct_value_rtx) == REG)
3985 use_reg (&call_fusage, struct_value_rtx);
3986 }
3987
3988 /* Don't allow popping to be deferred, since then
3989 cse'ing of library calls could delete a call and leave the pop. */
3990 NO_DEFER_POP;
5591ee6f
JH
3991 valreg = (mem_value == 0 && outmode != VOIDmode
3992 ? hard_libcall_value (outmode) : NULL_RTX);
3c0fca12 3993
ebcd0b57 3994#ifdef PREFERRED_STACK_BOUNDARY
ce48579b 3995 /* Stack must be properly aligned now. */
ebcd0b57
JH
3996 if (stack_pointer_delta & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1))
3997 abort();
3998#endif
3999
3c0fca12
RH
4000 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4001 will set inhibit_defer_pop to that value. */
de76b467
JH
4002 /* The return type is needed to decide how many bytes the function pops.
4003 Signedness plays no role in that, so for simplicity, we pretend it's
4004 always signed. We also assume that the list of arguments passed has
4005 no impact, so we pretend it is unknown. */
3c0fca12
RH
4006
4007 emit_call_1 (fun,
4008 get_identifier (XSTR (orgfun, 0)),
de76b467
JH
4009 build_function_type (outmode == VOIDmode ? void_type_node
4010 : type_for_mode (outmode, 0), NULL_TREE),
3c0fca12
RH
4011 original_args_size.constant, args_size.constant,
4012 struct_value_size,
4013 FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1),
5591ee6f 4014 valreg,
f2d33f13 4015 old_inhibit_defer_pop + 1, call_fusage, flags);
3c0fca12
RH
4016
4017 /* Now restore inhibit_defer_pop to its actual original value. */
4018 OK_DEFER_POP;
4019
5591ee6f
JH
4020 /* If call is cse'able, make appropriate pair of reg-notes around it.
4021 Test valreg so we don't crash; may safely ignore `const'
4022 if return type is void. Disable for PARALLEL return values, because
4023 we have no way to move such values into a pseudo register. */
2a8f6b90 4024 if ((flags & (ECF_CONST | ECF_PURE))
5591ee6f
JH
4025 && valreg != 0 && GET_CODE (valreg) != PARALLEL)
4026 {
4027 rtx note = 0;
4028 rtx temp = gen_reg_rtx (GET_MODE (valreg));
4029 rtx insns;
4030 int i;
4031
4032 /* Construct an "equal form" for the value which mentions all the
4033 arguments in order as well as the function name. */
4034 for (i = 0; i < nargs; i++)
4035 note = gen_rtx_EXPR_LIST (VOIDmode, argvec[i].value, note);
4036 note = gen_rtx_EXPR_LIST (VOIDmode, fun, note);
4037
4038 insns = get_insns ();
4039 end_sequence ();
4040
2a8f6b90
JH
4041 if (flags & ECF_PURE)
4042 note = gen_rtx_EXPR_LIST (VOIDmode,
4043 gen_rtx_USE (VOIDmode,
4044 gen_rtx_MEM (BLKmode,
4045 gen_rtx_SCRATCH (VOIDmode))), note);
4046
5591ee6f
JH
4047 emit_libcall_block (insns, temp, valreg, note);
4048
4049 valreg = temp;
4050 }
2a8f6b90 4051 else if (flags & (ECF_CONST | ECF_PURE))
5591ee6f
JH
4052 {
4053 /* Otherwise, just write out the sequence without a note. */
4054 rtx insns = get_insns ();
4055
4056 end_sequence ();
4057 emit_insns (insns);
4058 }
3c0fca12
RH
4059 pop_temp_slots ();
4060
4061 /* Copy the value to the right place. */
de76b467 4062 if (outmode != VOIDmode && retval)
3c0fca12
RH
4063 {
4064 if (mem_value)
4065 {
4066 if (value == 0)
4067 value = mem_value;
4068 if (value != mem_value)
4069 emit_move_insn (value, mem_value);
4070 }
4071 else if (value != 0)
d4c68376 4072 emit_move_insn (value, hard_libcall_value (outmode));
3c0fca12 4073 else
d4c68376 4074 value = hard_libcall_value (outmode);
3c0fca12
RH
4075 }
4076
f73ad30e 4077 if (ACCUMULATE_OUTGOING_ARGS)
3c0fca12 4078 {
f73ad30e
JH
4079#ifdef REG_PARM_STACK_SPACE
4080 if (save_area)
4081 {
4082 enum machine_mode save_mode = GET_MODE (save_area);
3c0fca12 4083#ifdef ARGS_GROW_DOWNWARD
f73ad30e
JH
4084 rtx stack_area
4085 = gen_rtx_MEM (save_mode,
4086 memory_address (save_mode,
4087 plus_constant (argblock,
4088 - high_to_save)));
3c0fca12 4089#else
f73ad30e
JH
4090 rtx stack_area
4091 = gen_rtx_MEM (save_mode,
4092 memory_address (save_mode,
4093 plus_constant (argblock, low_to_save)));
3c0fca12 4094#endif
f73ad30e
JH
4095 if (save_mode != BLKmode)
4096 emit_move_insn (stack_area, save_area);
4097 else
4098 emit_block_move (stack_area, validize_mem (save_area),
4099 GEN_INT (high_to_save - low_to_save + 1),
19caa751 4100 PARM_BOUNDARY);
f73ad30e 4101 }
3c0fca12 4102#endif
f73ad30e
JH
4103
4104 /* If we saved any argument areas, restore them. */
4105 for (count = 0; count < nargs; count++)
4106 if (argvec[count].save_area)
4107 {
4108 enum machine_mode save_mode = GET_MODE (argvec[count].save_area);
4109 rtx stack_area
4110 = gen_rtx_MEM (save_mode,
4111 memory_address
4112 (save_mode,
4113 plus_constant (argblock,
4114 argvec[count].offset.constant)));
4115
4116 emit_move_insn (stack_area, argvec[count].save_area);
4117 }
3c0fca12 4118
f73ad30e
JH
4119 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4120 stack_usage_map = initial_stack_usage_map;
4121 }
43bc5f13 4122
de76b467
JH
4123 return value;
4124
4125}
4126\f
4127/* Output a library call to function FUN (a SYMBOL_REF rtx)
4128 (emitting the queue unless NO_QUEUE is nonzero),
4129 for a value of mode OUTMODE,
4130 with NARGS different arguments, passed as alternating rtx values
4131 and machine_modes to convert them to.
4132 The rtx values should have been passed through protect_from_queue already.
4133
2a8f6b90
JH
4134 FN_TYPE will is zero for `normal' calls, one for `const' calls, wich
4135 which will be enclosed in REG_LIBCALL/REG_RETVAL notes and two for `pure'
4136 calls, that are handled like `const' calls with extra
4137 (use (memory (scratch)). */
de76b467
JH
4138
4139void
2a8f6b90 4140emit_library_call VPARAMS((rtx orgfun, int fn_type, enum machine_mode outmode,
de76b467
JH
4141 int nargs, ...))
4142{
4143#ifndef ANSI_PROTOTYPES
4144 rtx orgfun;
2a8f6b90 4145 int fn_type;
de76b467
JH
4146 enum machine_mode outmode;
4147 int nargs;
4148#endif
4149 va_list p;
4150
4151 VA_START (p, nargs);
4152
4153#ifndef ANSI_PROTOTYPES
4154 orgfun = va_arg (p, rtx);
2a8f6b90 4155 fn_type = va_arg (p, int);
de76b467
JH
4156 outmode = va_arg (p, enum machine_mode);
4157 nargs = va_arg (p, int);
4158#endif
4159
2a8f6b90 4160 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
de76b467
JH
4161
4162 va_end (p);
4163}
4164\f
4165/* Like emit_library_call except that an extra argument, VALUE,
4166 comes second and says where to store the result.
4167 (If VALUE is zero, this function chooses a convenient way
4168 to return the value.
4169
4170 This function returns an rtx for where the value is to be found.
4171 If VALUE is nonzero, VALUE is returned. */
4172
4173rtx
2a8f6b90 4174emit_library_call_value VPARAMS((rtx orgfun, rtx value, int fn_type,
de76b467
JH
4175 enum machine_mode outmode, int nargs, ...))
4176{
4177#ifndef ANSI_PROTOTYPES
4178 rtx orgfun;
4179 rtx value;
2a8f6b90 4180 int fn_type;
de76b467
JH
4181 enum machine_mode outmode;
4182 int nargs;
4183#endif
4184 va_list p;
4185
4186 VA_START (p, nargs);
4187
4188#ifndef ANSI_PROTOTYPES
4189 orgfun = va_arg (p, rtx);
4190 value = va_arg (p, rtx);
2a8f6b90 4191 fn_type = va_arg (p, int);
de76b467
JH
4192 outmode = va_arg (p, enum machine_mode);
4193 nargs = va_arg (p, int);
4194#endif
4195
2a8f6b90 4196 value = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode, nargs, p);
de76b467
JH
4197
4198 va_end (p);
4199
fac0ad80 4200 return value;
322e3e34
RK
4201}
4202\f
51bbfa0c
RS
4203#if 0
4204/* Return an rtx which represents a suitable home on the stack
4205 given TYPE, the type of the argument looking for a home.
4206 This is called only for BLKmode arguments.
4207
4208 SIZE is the size needed for this target.
4209 ARGS_ADDR is the address of the bottom of the argument block for this call.
4210 OFFSET describes this parameter's offset into ARGS_ADDR. It is meaningless
4211 if this machine uses push insns. */
4212
4213static rtx
4214target_for_arg (type, size, args_addr, offset)
4215 tree type;
4216 rtx size;
4217 rtx args_addr;
4218 struct args_size offset;
4219{
4220 rtx target;
4221 rtx offset_rtx = ARGS_SIZE_RTX (offset);
4222
4223 /* We do not call memory_address if possible,
4224 because we want to address as close to the stack
4225 as possible. For non-variable sized arguments,
4226 this will be stack-pointer relative addressing. */
4227 if (GET_CODE (offset_rtx) == CONST_INT)
4228 target = plus_constant (args_addr, INTVAL (offset_rtx));
4229 else
4230 {
4231 /* I have no idea how to guarantee that this
4232 will work in the presence of register parameters. */
38a448ca 4233 target = gen_rtx_PLUS (Pmode, args_addr, offset_rtx);
51bbfa0c
RS
4234 target = memory_address (QImode, target);
4235 }
4236
38a448ca 4237 return gen_rtx_MEM (BLKmode, target);
51bbfa0c
RS
4238}
4239#endif
4240\f
4241/* Store a single argument for a function call
4242 into the register or memory area where it must be passed.
4243 *ARG describes the argument value and where to pass it.
4244
4245 ARGBLOCK is the address of the stack-block for all the arguments,
d45cf215 4246 or 0 on a machine where arguments are pushed individually.
51bbfa0c
RS
4247
4248 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
4249 so must be careful about how the stack is used.
4250
4251 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4252 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4253 that we need not worry about saving and restoring the stack.
4254
4c6b3b2a
JJ
4255 FNDECL is the declaration of the function we are calling.
4256
4257 Return non-zero if this arg should cause sibcall failure,
4258 zero otherwise. */
51bbfa0c 4259
4c6b3b2a 4260static int
f8a097cd 4261store_one_arg (arg, argblock, flags, variable_size,
6f90e075 4262 reg_parm_stack_space)
51bbfa0c
RS
4263 struct arg_data *arg;
4264 rtx argblock;
f8a097cd 4265 int flags;
0f9b3ea6 4266 int variable_size ATTRIBUTE_UNUSED;
6f90e075 4267 int reg_parm_stack_space;
51bbfa0c
RS
4268{
4269 register tree pval = arg->tree_value;
4270 rtx reg = 0;
4271 int partial = 0;
4272 int used = 0;
6a651371 4273 int i, lower_bound = 0, upper_bound = 0;
4c6b3b2a 4274 int sibcall_failure = 0;
51bbfa0c
RS
4275
4276 if (TREE_CODE (pval) == ERROR_MARK)
4c6b3b2a 4277 return 1;
51bbfa0c 4278
cc79451b
RK
4279 /* Push a new temporary level for any temporaries we make for
4280 this argument. */
4281 push_temp_slots ();
4282
f8a097cd 4283 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
51bbfa0c 4284 {
f73ad30e
JH
4285 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4286 save any previous data at that location. */
4287 if (argblock && ! variable_size && arg->stack)
4288 {
51bbfa0c 4289#ifdef ARGS_GROW_DOWNWARD
f73ad30e
JH
4290 /* stack_slot is negative, but we want to index stack_usage_map
4291 with positive values. */
4292 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4293 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4294 else
4295 upper_bound = 0;
51bbfa0c 4296
f73ad30e 4297 lower_bound = upper_bound - arg->size.constant;
51bbfa0c 4298#else
f73ad30e
JH
4299 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4300 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4301 else
4302 lower_bound = 0;
51bbfa0c 4303
f73ad30e 4304 upper_bound = lower_bound + arg->size.constant;
51bbfa0c
RS
4305#endif
4306
f73ad30e
JH
4307 for (i = lower_bound; i < upper_bound; i++)
4308 if (stack_usage_map[i]
4309 /* Don't store things in the fixed argument area at this point;
4310 it has already been saved. */
4311 && i > reg_parm_stack_space)
4312 break;
51bbfa0c 4313
f73ad30e 4314 if (i != upper_bound)
51bbfa0c 4315 {
f73ad30e
JH
4316 /* We need to make a save area. See what mode we can make it. */
4317 enum machine_mode save_mode
4318 = mode_for_size (arg->size.constant * BITS_PER_UNIT, MODE_INT, 1);
4319 rtx stack_area
4320 = gen_rtx_MEM (save_mode,
4321 memory_address (save_mode,
4322 XEXP (arg->stack_slot, 0)));
4323
4324 if (save_mode == BLKmode)
4325 {
4326 arg->save_area = assign_stack_temp (BLKmode,
4327 arg->size.constant, 0);
4328 MEM_SET_IN_STRUCT_P (arg->save_area,
4329 AGGREGATE_TYPE_P (TREE_TYPE
4330 (arg->tree_value)));
4331 preserve_temp_slots (arg->save_area);
4332 emit_block_move (validize_mem (arg->save_area), stack_area,
4333 GEN_INT (arg->size.constant),
19caa751 4334 PARM_BOUNDARY);
f73ad30e
JH
4335 }
4336 else
4337 {
4338 arg->save_area = gen_reg_rtx (save_mode);
4339 emit_move_insn (arg->save_area, stack_area);
4340 }
51bbfa0c
RS
4341 }
4342 }
f73ad30e
JH
4343 /* Now that we have saved any slots that will be overwritten by this
4344 store, mark all slots this store will use. We must do this before
4345 we actually expand the argument since the expansion itself may
4346 trigger library calls which might need to use the same stack slot. */
4347 if (argblock && ! variable_size && arg->stack)
4348 for (i = lower_bound; i < upper_bound; i++)
4349 stack_usage_map[i] = 1;
51bbfa0c 4350 }
b564df06 4351
51bbfa0c
RS
4352 /* If this isn't going to be placed on both the stack and in registers,
4353 set up the register and number of words. */
4354 if (! arg->pass_on_stack)
4355 reg = arg->reg, partial = arg->partial;
4356
4357 if (reg != 0 && partial == 0)
4358 /* Being passed entirely in a register. We shouldn't be called in
4359 this case. */
4360 abort ();
4361
4ab56118
RK
4362 /* If this arg needs special alignment, don't load the registers
4363 here. */
4364 if (arg->n_aligned_regs != 0)
4365 reg = 0;
4ab56118 4366
4ab56118 4367 /* If this is being passed partially in a register, we can't evaluate
51bbfa0c
RS
4368 it directly into its stack slot. Otherwise, we can. */
4369 if (arg->value == 0)
d64f5a78 4370 {
d64f5a78
RS
4371 /* stack_arg_under_construction is nonzero if a function argument is
4372 being evaluated directly into the outgoing argument list and
4373 expand_call must take special action to preserve the argument list
4374 if it is called recursively.
4375
4376 For scalar function arguments stack_usage_map is sufficient to
4377 determine which stack slots must be saved and restored. Scalar
4378 arguments in general have pass_on_stack == 0.
4379
4380 If this argument is initialized by a function which takes the
4381 address of the argument (a C++ constructor or a C function
4382 returning a BLKmode structure), then stack_usage_map is
4383 insufficient and expand_call must push the stack around the
4384 function call. Such arguments have pass_on_stack == 1.
4385
4386 Note that it is always safe to set stack_arg_under_construction,
4387 but this generates suboptimal code if set when not needed. */
4388
4389 if (arg->pass_on_stack)
4390 stack_arg_under_construction++;
f73ad30e 4391
3a08477a
RK
4392 arg->value = expand_expr (pval,
4393 (partial
4394 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4395 ? NULL_RTX : arg->stack,
e5d70561 4396 VOIDmode, 0);
1efe6448
RK
4397
4398 /* If we are promoting object (or for any other reason) the mode
4399 doesn't agree, convert the mode. */
4400
7373d92d
RK
4401 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4402 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4403 arg->value, arg->unsignedp);
1efe6448 4404
d64f5a78
RS
4405 if (arg->pass_on_stack)
4406 stack_arg_under_construction--;
d64f5a78 4407 }
51bbfa0c
RS
4408
4409 /* Don't allow anything left on stack from computation
4410 of argument to alloca. */
f8a097cd 4411 if (flags & ECF_MAY_BE_ALLOCA)
51bbfa0c
RS
4412 do_pending_stack_adjust ();
4413
4414 if (arg->value == arg->stack)
7815214e 4415 {
c5c76735 4416 /* If the value is already in the stack slot, we are done. */
7d384cc0 4417 if (current_function_check_memory_usage && GET_CODE (arg->stack) == MEM)
7815214e 4418 {
7815214e 4419 emit_library_call (chkr_set_right_libfunc, 1, VOIDmode, 3,
6a9c4aed 4420 XEXP (arg->stack, 0), Pmode,
7d384cc0 4421 ARGS_SIZE_RTX (arg->size),
7815214e 4422 TYPE_MODE (sizetype),
956d6950
JL
4423 GEN_INT (MEMORY_USE_RW),
4424 TYPE_MODE (integer_type_node));
7815214e
RK
4425 }
4426 }
1efe6448 4427 else if (arg->mode != BLKmode)
51bbfa0c
RS
4428 {
4429 register int size;
4430
4431 /* Argument is a scalar, not entirely passed in registers.
4432 (If part is passed in registers, arg->partial says how much
4433 and emit_push_insn will take care of putting it there.)
4434
4435 Push it, and if its size is less than the
4436 amount of space allocated to it,
4437 also bump stack pointer by the additional space.
4438 Note that in C the default argument promotions
4439 will prevent such mismatches. */
4440
1efe6448 4441 size = GET_MODE_SIZE (arg->mode);
51bbfa0c
RS
4442 /* Compute how much space the push instruction will push.
4443 On many machines, pushing a byte will advance the stack
4444 pointer by a halfword. */
4445#ifdef PUSH_ROUNDING
4446 size = PUSH_ROUNDING (size);
4447#endif
4448 used = size;
4449
4450 /* Compute how much space the argument should get:
4451 round up to a multiple of the alignment for arguments. */
1efe6448 4452 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
51bbfa0c
RS
4453 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
4454 / (PARM_BOUNDARY / BITS_PER_UNIT))
4455 * (PARM_BOUNDARY / BITS_PER_UNIT));
4456
4457 /* This isn't already where we want it on the stack, so put it there.
4458 This can either be done with push or copy insns. */
e5e809f4
JL
4459 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX, 0,
4460 partial, reg, used - size, argblock,
4fc026cd
CM
4461 ARGS_SIZE_RTX (arg->offset), reg_parm_stack_space,
4462 ARGS_SIZE_RTX (arg->alignment_pad));
51bbfa0c
RS
4463 }
4464 else
4465 {
4466 /* BLKmode, at least partly to be pushed. */
4467
4468 register int excess;
4469 rtx size_rtx;
4470
4471 /* Pushing a nonscalar.
4472 If part is passed in registers, PARTIAL says how much
4473 and emit_push_insn will take care of putting it there. */
4474
4475 /* Round its size up to a multiple
4476 of the allocation unit for arguments. */
4477
4478 if (arg->size.var != 0)
4479 {
4480 excess = 0;
4481 size_rtx = ARGS_SIZE_RTX (arg->size);
4482 }
4483 else
4484 {
51bbfa0c
RS
4485 /* PUSH_ROUNDING has no effect on us, because
4486 emit_push_insn for BLKmode is careful to avoid it. */
0cf91217 4487 excess = (arg->size.constant - int_size_in_bytes (TREE_TYPE (pval))
51bbfa0c 4488 + partial * UNITS_PER_WORD);
e4f93898 4489 size_rtx = expr_size (pval);
51bbfa0c
RS
4490 }
4491
4c6b3b2a
JJ
4492 if ((flags & ECF_SIBCALL) && GET_CODE (arg->value) == MEM)
4493 {
4494 /* emit_push_insn might not work properly if arg->value and
4495 argblock + arg->offset areas overlap. */
4496 rtx x = arg->value;
4497 int i = 0;
4498
4499 if (XEXP (x, 0) == current_function_internal_arg_pointer
4500 || (GET_CODE (XEXP (x, 0)) == PLUS
4501 && XEXP (XEXP (x, 0), 0) ==
4502 current_function_internal_arg_pointer
4503 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT))
4504 {
4505 if (XEXP (x, 0) != current_function_internal_arg_pointer)
4506 i = INTVAL (XEXP (XEXP (x, 0), 1));
4507
4508 /* expand_call should ensure this */
4509 if (arg->offset.var || GET_CODE (size_rtx) != CONST_INT)
4510 abort ();
4511
4512 if (arg->offset.constant > i)
4513 {
4514 if (arg->offset.constant < i + INTVAL (size_rtx))
4515 sibcall_failure = 1;
4516 }
4517 else if (arg->offset.constant < i)
4518 {
4519 if (i < arg->offset.constant + INTVAL (size_rtx))
4520 sibcall_failure = 1;
4521 }
4522 }
4523 }
4524
1efe6448 4525 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
19caa751
RK
4526 TYPE_ALIGN (TREE_TYPE (pval)), partial, reg, excess,
4527 argblock, ARGS_SIZE_RTX (arg->offset),
4fc026cd
CM
4528 reg_parm_stack_space,
4529 ARGS_SIZE_RTX (arg->alignment_pad));
51bbfa0c
RS
4530 }
4531
4532
4533 /* Unless this is a partially-in-register argument, the argument is now
4534 in the stack.
4535
4536 ??? Note that this can change arg->value from arg->stack to
4537 arg->stack_slot and it matters when they are not the same.
4538 It isn't totally clear that this is correct in all cases. */
4539 if (partial == 0)
3b917a55 4540 arg->value = arg->stack_slot;
51bbfa0c
RS
4541
4542 /* Once we have pushed something, pops can't safely
4543 be deferred during the rest of the arguments. */
4544 NO_DEFER_POP;
4545
4546 /* ANSI doesn't require a sequence point here,
4547 but PCC has one, so this will avoid some problems. */
4548 emit_queue ();
4549
db907e7b
RK
4550 /* Free any temporary slots made in processing this argument. Show
4551 that we might have taken the address of something and pushed that
4552 as an operand. */
4553 preserve_temp_slots (NULL_RTX);
51bbfa0c 4554 free_temp_slots ();
cc79451b 4555 pop_temp_slots ();
4c6b3b2a
JJ
4556
4557 return sibcall_failure;
51bbfa0c 4558}
This page took 1.503045 seconds and 5 git commands to generate.