* config/i386/uwin.h: Remove SUBTARGET_PROLOGUE.
[official-gcc.git] / gcc / calls.c
blob4e95735376c671b8e1b341ce7b33aa9213542170
1 /* Convert function calls to rtl insns, for GNU C compiler.
2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998
3 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "rtl.h"
27 #include "tree.h"
28 #include "flags.h"
29 #include "expr.h"
30 #include "libfuncs.h"
31 #include "function.h"
32 #include "regs.h"
33 #include "toplev.h"
34 #include "output.h"
35 #include "tm_p.h"
36 #include "timevar.h"
37 #include "sbitmap.h"
38 #include "langhooks.h"
39 #include "target.h"
40 #include "cgraph.h"
41 #include "except.h"
43 /* Decide whether a function's arguments should be processed
44 from first to last or from last to first.
46 They should if the stack and args grow in opposite directions, but
47 only if we have push insns. */
49 #ifdef PUSH_ROUNDING
51 #ifndef PUSH_ARGS_REVERSED
52 #if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
53 #define PUSH_ARGS_REVERSED PUSH_ARGS
54 #endif
55 #endif
57 #endif
59 #ifndef PUSH_ARGS_REVERSED
60 #define PUSH_ARGS_REVERSED 0
61 #endif
63 #ifndef STACK_POINTER_OFFSET
64 #define STACK_POINTER_OFFSET 0
65 #endif
67 /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
68 #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
70 /* Data structure and subroutines used within expand_call. */
72 struct arg_data
74 /* Tree node for this argument. */
75 tree tree_value;
76 /* Mode for value; TYPE_MODE unless promoted. */
77 enum machine_mode mode;
78 /* Current RTL value for argument, or 0 if it isn't precomputed. */
79 rtx value;
80 /* Initially-compute RTL value for argument; only for const functions. */
81 rtx initial_value;
82 /* Register to pass this argument in, 0 if passed on stack, or an
83 PARALLEL if the arg is to be copied into multiple non-contiguous
84 registers. */
85 rtx reg;
86 /* Register to pass this argument in when generating tail call sequence.
87 This is not the same register as for normal calls on machines with
88 register windows. */
89 rtx tail_call_reg;
90 /* If REG was promoted from the actual mode of the argument expression,
91 indicates whether the promotion is sign- or zero-extended. */
92 int unsignedp;
93 /* Number of registers to use. 0 means put the whole arg in registers.
94 Also 0 if not passed in registers. */
95 int partial;
96 /* Nonzero if argument must be passed on stack.
97 Note that some arguments may be passed on the stack
98 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
99 pass_on_stack identifies arguments that *cannot* go in registers. */
100 int pass_on_stack;
101 /* Some fields packaged up for locate_and_pad_parm. */
102 struct locate_and_pad_arg_data locate;
103 /* Location on the stack at which parameter should be stored. The store
104 has already been done if STACK == VALUE. */
105 rtx stack;
106 /* Location on the stack of the start of this argument slot. This can
107 differ from STACK if this arg pads downward. This location is known
108 to be aligned to FUNCTION_ARG_BOUNDARY. */
109 rtx stack_slot;
110 /* Place that this stack area has been saved, if needed. */
111 rtx save_area;
112 /* If an argument's alignment does not permit direct copying into registers,
113 copy in smaller-sized pieces into pseudos. These are stored in a
114 block pointed to by this field. The next field says how many
115 word-sized pseudos we made. */
116 rtx *aligned_regs;
117 int n_aligned_regs;
120 /* A vector of one char per byte of stack space. A byte if nonzero if
121 the corresponding stack location has been used.
122 This vector is used to prevent a function call within an argument from
123 clobbering any stack already set up. */
124 static char *stack_usage_map;
126 /* Size of STACK_USAGE_MAP. */
127 static int highest_outgoing_arg_in_use;
129 /* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
130 stack location's tail call argument has been already stored into the stack.
131 This bitmap is used to prevent sibling call optimization if function tries
132 to use parent's incoming argument slots when they have been already
133 overwritten with tail call arguments. */
134 static sbitmap stored_args_map;
136 /* stack_arg_under_construction is nonzero when an argument may be
137 initialized with a constructor call (including a C function that
138 returns a BLKmode struct) and expand_call must take special action
139 to make sure the object being constructed does not overlap the
140 argument list for the constructor call. */
141 int stack_arg_under_construction;
143 static int calls_function PARAMS ((tree, int));
144 static int calls_function_1 PARAMS ((tree, int));
146 static void emit_call_1 PARAMS ((rtx, tree, tree, HOST_WIDE_INT,
147 HOST_WIDE_INT, HOST_WIDE_INT, rtx,
148 rtx, int, rtx, int,
149 CUMULATIVE_ARGS *));
150 static void precompute_register_parameters PARAMS ((int,
151 struct arg_data *,
152 int *));
153 static int store_one_arg PARAMS ((struct arg_data *, rtx, int, int,
154 int));
155 static void store_unaligned_arguments_into_pseudos PARAMS ((struct arg_data *,
156 int));
157 static int finalize_must_preallocate PARAMS ((int, int,
158 struct arg_data *,
159 struct args_size *));
160 static void precompute_arguments PARAMS ((int, int,
161 struct arg_data *));
162 static int compute_argument_block_size PARAMS ((int,
163 struct args_size *,
164 int));
165 static void initialize_argument_information PARAMS ((int,
166 struct arg_data *,
167 struct args_size *,
168 int, tree, tree,
169 CUMULATIVE_ARGS *,
170 int, rtx *, int *,
171 int *, int *));
172 static void compute_argument_addresses PARAMS ((struct arg_data *,
173 rtx, int));
174 static rtx rtx_for_function_call PARAMS ((tree, tree));
175 static void load_register_parameters PARAMS ((struct arg_data *,
176 int, rtx *, int,
177 int, int *));
178 static rtx emit_library_call_value_1 PARAMS ((int, rtx, rtx,
179 enum libcall_type,
180 enum machine_mode,
181 int, va_list));
182 static int special_function_p PARAMS ((tree, int));
183 static rtx try_to_integrate PARAMS ((tree, tree, rtx,
184 int, tree, rtx));
185 static int check_sibcall_argument_overlap_1 PARAMS ((rtx));
186 static int check_sibcall_argument_overlap PARAMS ((rtx, struct arg_data *,
187 int));
189 static int combine_pending_stack_adjustment_and_call
190 PARAMS ((int, struct args_size *, int));
191 static tree fix_unsafe_tree PARAMS ((tree));
193 #ifdef REG_PARM_STACK_SPACE
194 static rtx save_fixed_argument_area PARAMS ((int, rtx, int *, int *));
195 static void restore_fixed_argument_area PARAMS ((rtx, rtx, int, int));
196 #endif
198 /* If WHICH is 1, return 1 if EXP contains a call to the built-in function
199 `alloca'.
201 If WHICH is 0, return 1 if EXP contains a call to any function.
202 Actually, we only need return 1 if evaluating EXP would require pushing
203 arguments on the stack, but that is too difficult to compute, so we just
204 assume any function call might require the stack. */
206 static tree calls_function_save_exprs;
208 static int
209 calls_function (exp, which)
210 tree exp;
211 int which;
213 int val;
215 calls_function_save_exprs = 0;
216 val = calls_function_1 (exp, which);
217 calls_function_save_exprs = 0;
218 return val;
221 /* Recursive function to do the work of above function. */
223 static int
224 calls_function_1 (exp, which)
225 tree exp;
226 int which;
228 int i;
229 enum tree_code code = TREE_CODE (exp);
230 int class = TREE_CODE_CLASS (code);
231 int length = first_rtl_op (code);
233 /* If this code is language-specific, we don't know what it will do. */
234 if ((int) code >= NUM_TREE_CODES)
235 return 1;
237 switch (code)
239 case CALL_EXPR:
240 if (which == 0)
241 return 1;
242 else if ((TREE_CODE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))))
243 == FUNCTION_TYPE)
244 && (TYPE_RETURNS_STACK_DEPRESSED
245 (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))))))
246 return 1;
247 else if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
248 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
249 == FUNCTION_DECL)
250 && (special_function_p (TREE_OPERAND (TREE_OPERAND (exp, 0), 0),
252 & ECF_MAY_BE_ALLOCA))
253 return 1;
255 break;
257 case CONSTRUCTOR:
259 tree tem;
261 for (tem = CONSTRUCTOR_ELTS (exp); tem != 0; tem = TREE_CHAIN (tem))
262 if (calls_function_1 (TREE_VALUE (tem), which))
263 return 1;
266 return 0;
268 case SAVE_EXPR:
269 if (SAVE_EXPR_RTL (exp) != 0)
270 return 0;
271 if (value_member (exp, calls_function_save_exprs))
272 return 0;
273 calls_function_save_exprs = tree_cons (NULL_TREE, exp,
274 calls_function_save_exprs);
275 return (TREE_OPERAND (exp, 0) != 0
276 && calls_function_1 (TREE_OPERAND (exp, 0), which));
278 case BLOCK:
280 tree local;
281 tree subblock;
283 for (local = BLOCK_VARS (exp); local; local = TREE_CHAIN (local))
284 if (DECL_INITIAL (local) != 0
285 && calls_function_1 (DECL_INITIAL (local), which))
286 return 1;
288 for (subblock = BLOCK_SUBBLOCKS (exp);
289 subblock;
290 subblock = TREE_CHAIN (subblock))
291 if (calls_function_1 (subblock, which))
292 return 1;
294 return 0;
296 case TREE_LIST:
297 for (; exp != 0; exp = TREE_CHAIN (exp))
298 if (calls_function_1 (TREE_VALUE (exp), which))
299 return 1;
300 return 0;
302 default:
303 break;
306 /* Only expressions, references, and blocks can contain calls. */
307 if (! IS_EXPR_CODE_CLASS (class) && class != 'r' && class != 'b')
308 return 0;
310 for (i = 0; i < length; i++)
311 if (TREE_OPERAND (exp, i) != 0
312 && calls_function_1 (TREE_OPERAND (exp, i), which))
313 return 1;
315 return 0;
318 /* Force FUNEXP into a form suitable for the address of a CALL,
319 and return that as an rtx. Also load the static chain register
320 if FNDECL is a nested function.
322 CALL_FUSAGE points to a variable holding the prospective
323 CALL_INSN_FUNCTION_USAGE information. */
326 prepare_call_address (funexp, fndecl, call_fusage, reg_parm_seen, sibcallp)
327 rtx funexp;
328 tree fndecl;
329 rtx *call_fusage;
330 int reg_parm_seen;
331 int sibcallp;
333 rtx static_chain_value = 0;
335 funexp = protect_from_queue (funexp, 0);
337 if (fndecl != 0)
338 /* Get possible static chain value for nested function in C. */
339 static_chain_value = lookup_static_chain (fndecl);
341 /* Make a valid memory address and copy constants thru pseudo-regs,
342 but not for a constant address if -fno-function-cse. */
343 if (GET_CODE (funexp) != SYMBOL_REF)
344 /* If we are using registers for parameters, force the
345 function address into a register now. */
346 funexp = ((SMALL_REGISTER_CLASSES && reg_parm_seen)
347 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
348 : memory_address (FUNCTION_MODE, funexp));
349 else if (! sibcallp)
351 #ifndef NO_FUNCTION_CSE
352 if (optimize && ! flag_no_function_cse)
353 #ifdef NO_RECURSIVE_FUNCTION_CSE
354 if (fndecl != current_function_decl)
355 #endif
356 funexp = force_reg (Pmode, funexp);
357 #endif
360 if (static_chain_value != 0)
362 emit_move_insn (static_chain_rtx, static_chain_value);
364 if (GET_CODE (static_chain_rtx) == REG)
365 use_reg (call_fusage, static_chain_rtx);
368 return funexp;
371 /* Generate instructions to call function FUNEXP,
372 and optionally pop the results.
373 The CALL_INSN is the first insn generated.
375 FNDECL is the declaration node of the function. This is given to the
376 macro RETURN_POPS_ARGS to determine whether this function pops its own args.
378 FUNTYPE is the data type of the function. This is given to the macro
379 RETURN_POPS_ARGS to determine whether this function pops its own args.
380 We used to allow an identifier for library functions, but that doesn't
381 work when the return type is an aggregate type and the calling convention
382 says that the pointer to this aggregate is to be popped by the callee.
384 STACK_SIZE is the number of bytes of arguments on the stack,
385 ROUNDED_STACK_SIZE is that number rounded up to
386 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
387 both to put into the call insn and to generate explicit popping
388 code if necessary.
390 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
391 It is zero if this call doesn't want a structure value.
393 NEXT_ARG_REG is the rtx that results from executing
394 FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1)
395 just after all the args have had their registers assigned.
396 This could be whatever you like, but normally it is the first
397 arg-register beyond those used for args in this call,
398 or 0 if all the arg-registers are used in this call.
399 It is passed on to `gen_call' so you can put this info in the call insn.
401 VALREG is a hard register in which a value is returned,
402 or 0 if the call does not return a value.
404 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
405 the args to this call were processed.
406 We restore `inhibit_defer_pop' to that value.
408 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
409 denote registers used by the called function. */
411 static void
412 emit_call_1 (funexp, fndecl, funtype, stack_size, rounded_stack_size,
413 struct_value_size, next_arg_reg, valreg, old_inhibit_defer_pop,
414 call_fusage, ecf_flags, args_so_far)
415 rtx funexp;
416 tree fndecl ATTRIBUTE_UNUSED;
417 tree funtype ATTRIBUTE_UNUSED;
418 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED;
419 HOST_WIDE_INT rounded_stack_size;
420 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED;
421 rtx next_arg_reg ATTRIBUTE_UNUSED;
422 rtx valreg;
423 int old_inhibit_defer_pop;
424 rtx call_fusage;
425 int ecf_flags;
426 CUMULATIVE_ARGS *args_so_far ATTRIBUTE_UNUSED;
428 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
429 rtx call_insn;
430 int already_popped = 0;
431 HOST_WIDE_INT n_popped = RETURN_POPS_ARGS (fndecl, funtype, stack_size);
432 #if defined (HAVE_call) && defined (HAVE_call_value)
433 rtx struct_value_size_rtx;
434 struct_value_size_rtx = GEN_INT (struct_value_size);
435 #endif
437 #ifdef CALL_POPS_ARGS
438 n_popped += CALL_POPS_ARGS (* args_so_far);
439 #endif
441 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
442 and we don't want to load it into a register as an optimization,
443 because prepare_call_address already did it if it should be done. */
444 if (GET_CODE (funexp) != SYMBOL_REF)
445 funexp = memory_address (FUNCTION_MODE, funexp);
447 #if defined (HAVE_sibcall_pop) && defined (HAVE_sibcall_value_pop)
448 if ((ecf_flags & ECF_SIBCALL)
449 && HAVE_sibcall_pop && HAVE_sibcall_value_pop
450 && (n_popped > 0 || stack_size == 0))
452 rtx n_pop = GEN_INT (n_popped);
453 rtx pat;
455 /* If this subroutine pops its own args, record that in the call insn
456 if possible, for the sake of frame pointer elimination. */
458 if (valreg)
459 pat = GEN_SIBCALL_VALUE_POP (valreg,
460 gen_rtx_MEM (FUNCTION_MODE, funexp),
461 rounded_stack_size_rtx, next_arg_reg,
462 n_pop);
463 else
464 pat = GEN_SIBCALL_POP (gen_rtx_MEM (FUNCTION_MODE, funexp),
465 rounded_stack_size_rtx, next_arg_reg, n_pop);
467 emit_call_insn (pat);
468 already_popped = 1;
470 else
471 #endif
473 #if defined (HAVE_call_pop) && defined (HAVE_call_value_pop)
474 /* If the target has "call" or "call_value" insns, then prefer them
475 if no arguments are actually popped. If the target does not have
476 "call" or "call_value" insns, then we must use the popping versions
477 even if the call has no arguments to pop. */
478 #if defined (HAVE_call) && defined (HAVE_call_value)
479 if (HAVE_call && HAVE_call_value && HAVE_call_pop && HAVE_call_value_pop
480 && n_popped > 0 && ! (ecf_flags & ECF_SP_DEPRESSED))
481 #else
482 if (HAVE_call_pop && HAVE_call_value_pop)
483 #endif
485 rtx n_pop = GEN_INT (n_popped);
486 rtx pat;
488 /* If this subroutine pops its own args, record that in the call insn
489 if possible, for the sake of frame pointer elimination. */
491 if (valreg)
492 pat = GEN_CALL_VALUE_POP (valreg,
493 gen_rtx_MEM (FUNCTION_MODE, funexp),
494 rounded_stack_size_rtx, next_arg_reg, n_pop);
495 else
496 pat = GEN_CALL_POP (gen_rtx_MEM (FUNCTION_MODE, funexp),
497 rounded_stack_size_rtx, next_arg_reg, n_pop);
499 emit_call_insn (pat);
500 already_popped = 1;
502 else
503 #endif
505 #if defined (HAVE_sibcall) && defined (HAVE_sibcall_value)
506 if ((ecf_flags & ECF_SIBCALL)
507 && HAVE_sibcall && HAVE_sibcall_value)
509 if (valreg)
510 emit_call_insn (GEN_SIBCALL_VALUE (valreg,
511 gen_rtx_MEM (FUNCTION_MODE, funexp),
512 rounded_stack_size_rtx,
513 next_arg_reg, NULL_RTX));
514 else
515 emit_call_insn (GEN_SIBCALL (gen_rtx_MEM (FUNCTION_MODE, funexp),
516 rounded_stack_size_rtx, next_arg_reg,
517 struct_value_size_rtx));
519 else
520 #endif
522 #if defined (HAVE_call) && defined (HAVE_call_value)
523 if (HAVE_call && HAVE_call_value)
525 if (valreg)
526 emit_call_insn (GEN_CALL_VALUE (valreg,
527 gen_rtx_MEM (FUNCTION_MODE, funexp),
528 rounded_stack_size_rtx, next_arg_reg,
529 NULL_RTX));
530 else
531 emit_call_insn (GEN_CALL (gen_rtx_MEM (FUNCTION_MODE, funexp),
532 rounded_stack_size_rtx, next_arg_reg,
533 struct_value_size_rtx));
535 else
536 #endif
537 abort ();
539 /* Find the call we just emitted. */
540 call_insn = last_call_insn ();
542 /* Mark memory as used for "pure" function call. */
543 if (ecf_flags & ECF_PURE)
544 call_fusage
545 = gen_rtx_EXPR_LIST
546 (VOIDmode,
547 gen_rtx_USE (VOIDmode,
548 gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (VOIDmode))),
549 call_fusage);
551 /* Put the register usage information there. */
552 add_function_usage_to (call_insn, call_fusage);
554 /* If this is a const call, then set the insn's unchanging bit. */
555 if (ecf_flags & (ECF_CONST | ECF_PURE))
556 CONST_OR_PURE_CALL_P (call_insn) = 1;
558 /* If this call can't throw, attach a REG_EH_REGION reg note to that
559 effect. */
560 if (ecf_flags & ECF_NOTHROW)
561 REG_NOTES (call_insn) = gen_rtx_EXPR_LIST (REG_EH_REGION, const0_rtx,
562 REG_NOTES (call_insn));
563 else
564 note_eh_region_may_contain_throw ();
566 if (ecf_flags & ECF_NORETURN)
567 REG_NOTES (call_insn) = gen_rtx_EXPR_LIST (REG_NORETURN, const0_rtx,
568 REG_NOTES (call_insn));
569 if (ecf_flags & ECF_ALWAYS_RETURN)
570 REG_NOTES (call_insn) = gen_rtx_EXPR_LIST (REG_ALWAYS_RETURN, const0_rtx,
571 REG_NOTES (call_insn));
573 if (ecf_flags & ECF_RETURNS_TWICE)
575 REG_NOTES (call_insn) = gen_rtx_EXPR_LIST (REG_SETJMP, const0_rtx,
576 REG_NOTES (call_insn));
577 current_function_calls_setjmp = 1;
580 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
582 /* Restore this now, so that we do defer pops for this call's args
583 if the context of the call as a whole permits. */
584 inhibit_defer_pop = old_inhibit_defer_pop;
586 if (n_popped > 0)
588 if (!already_popped)
589 CALL_INSN_FUNCTION_USAGE (call_insn)
590 = gen_rtx_EXPR_LIST (VOIDmode,
591 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
592 CALL_INSN_FUNCTION_USAGE (call_insn));
593 rounded_stack_size -= n_popped;
594 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
595 stack_pointer_delta -= n_popped;
598 if (!ACCUMULATE_OUTGOING_ARGS)
600 /* If returning from the subroutine does not automatically pop the args,
601 we need an instruction to pop them sooner or later.
602 Perhaps do it now; perhaps just record how much space to pop later.
604 If returning from the subroutine does pop the args, indicate that the
605 stack pointer will be changed. */
607 if (rounded_stack_size != 0)
609 if (ecf_flags & ECF_SP_DEPRESSED)
610 /* Just pretend we did the pop. */
611 stack_pointer_delta -= rounded_stack_size;
612 else if (flag_defer_pop && inhibit_defer_pop == 0
613 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
614 pending_stack_adjust += rounded_stack_size;
615 else
616 adjust_stack (rounded_stack_size_rtx);
619 /* When we accumulate outgoing args, we must avoid any stack manipulations.
620 Restore the stack pointer to its original value now. Usually
621 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
622 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
623 popping variants of functions exist as well.
625 ??? We may optimize similar to defer_pop above, but it is
626 probably not worthwhile.
628 ??? It will be worthwhile to enable combine_stack_adjustments even for
629 such machines. */
630 else if (n_popped)
631 anti_adjust_stack (GEN_INT (n_popped));
634 /* Determine if the function identified by NAME and FNDECL is one with
635 special properties we wish to know about.
637 For example, if the function might return more than one time (setjmp), then
638 set RETURNS_TWICE to a nonzero value.
640 Similarly set LONGJMP for if the function is in the longjmp family.
642 Set MAY_BE_ALLOCA for any memory allocation function that might allocate
643 space from the stack such as alloca. */
645 static int
646 special_function_p (fndecl, flags)
647 tree fndecl;
648 int flags;
650 if (! (flags & ECF_MALLOC)
651 && fndecl && DECL_NAME (fndecl)
652 && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) <= 17
653 /* Exclude functions not at the file scope, or not `extern',
654 since they are not the magic functions we would otherwise
655 think they are. */
656 && DECL_CONTEXT (fndecl) == NULL_TREE && TREE_PUBLIC (fndecl))
658 const char *name = IDENTIFIER_POINTER (DECL_NAME (fndecl));
659 const char *tname = name;
661 /* We assume that alloca will always be called by name. It
662 makes no sense to pass it as a pointer-to-function to
663 anything that does not understand its behavior. */
664 if (((IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 6
665 && name[0] == 'a'
666 && ! strcmp (name, "alloca"))
667 || (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 16
668 && name[0] == '_'
669 && ! strcmp (name, "__builtin_alloca"))))
670 flags |= ECF_MAY_BE_ALLOCA;
672 /* Disregard prefix _, __ or __x. */
673 if (name[0] == '_')
675 if (name[1] == '_' && name[2] == 'x')
676 tname += 3;
677 else if (name[1] == '_')
678 tname += 2;
679 else
680 tname += 1;
683 if (tname[0] == 's')
685 if ((tname[1] == 'e'
686 && (! strcmp (tname, "setjmp")
687 || ! strcmp (tname, "setjmp_syscall")))
688 || (tname[1] == 'i'
689 && ! strcmp (tname, "sigsetjmp"))
690 || (tname[1] == 'a'
691 && ! strcmp (tname, "savectx")))
692 flags |= ECF_RETURNS_TWICE;
694 if (tname[1] == 'i'
695 && ! strcmp (tname, "siglongjmp"))
696 flags |= ECF_LONGJMP;
698 else if ((tname[0] == 'q' && tname[1] == 's'
699 && ! strcmp (tname, "qsetjmp"))
700 || (tname[0] == 'v' && tname[1] == 'f'
701 && ! strcmp (tname, "vfork")))
702 flags |= ECF_RETURNS_TWICE;
704 else if (tname[0] == 'l' && tname[1] == 'o'
705 && ! strcmp (tname, "longjmp"))
706 flags |= ECF_LONGJMP;
708 else if ((tname[0] == 'f' && tname[1] == 'o'
709 && ! strcmp (tname, "fork"))
710 /* Linux specific: __clone. check NAME to insist on the
711 leading underscores, to avoid polluting the ISO / POSIX
712 namespace. */
713 || (name[0] == '_' && name[1] == '_'
714 && ! strcmp (tname, "clone"))
715 || (tname[0] == 'e' && tname[1] == 'x' && tname[2] == 'e'
716 && tname[3] == 'c' && (tname[4] == 'l' || tname[4] == 'v')
717 && (tname[5] == '\0'
718 || ((tname[5] == 'p' || tname[5] == 'e')
719 && tname[6] == '\0'))))
720 flags |= ECF_FORK_OR_EXEC;
722 return flags;
725 /* Return nonzero when tree represent call to longjmp. */
728 setjmp_call_p (fndecl)
729 tree fndecl;
731 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
734 /* Return true when exp contains alloca call. */
735 bool
736 alloca_call_p (exp)
737 tree exp;
739 if (TREE_CODE (exp) == CALL_EXPR
740 && TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
741 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
742 == FUNCTION_DECL)
743 && (special_function_p (TREE_OPERAND (TREE_OPERAND (exp, 0), 0),
744 0) & ECF_MAY_BE_ALLOCA))
745 return true;
746 return false;
749 /* Detect flags (function attributes) from the function decl or type node. */
752 flags_from_decl_or_type (exp)
753 tree exp;
755 int flags = 0;
756 tree type = exp;
758 if (DECL_P (exp))
760 struct cgraph_rtl_info *i = cgraph_rtl_info (exp);
761 type = TREE_TYPE (exp);
763 if (i)
765 if (i->pure_function)
766 flags |= ECF_PURE | ECF_LIBCALL_BLOCK;
767 if (i->const_function)
768 flags |= ECF_CONST | ECF_LIBCALL_BLOCK;
771 /* The function exp may have the `malloc' attribute. */
772 if (DECL_IS_MALLOC (exp))
773 flags |= ECF_MALLOC;
775 /* The function exp may have the `pure' attribute. */
776 if (DECL_IS_PURE (exp))
777 flags |= ECF_PURE | ECF_LIBCALL_BLOCK;
779 if (TREE_NOTHROW (exp))
780 flags |= ECF_NOTHROW;
783 if (TREE_READONLY (exp) && ! TREE_THIS_VOLATILE (exp))
784 flags |= ECF_CONST | ECF_LIBCALL_BLOCK;
786 if (TREE_THIS_VOLATILE (exp))
787 flags |= ECF_NORETURN;
789 /* Mark if the function returns with the stack pointer depressed. We
790 cannot consider it pure or constant in that case. */
791 if (TREE_CODE (type) == FUNCTION_TYPE && TYPE_RETURNS_STACK_DEPRESSED (type))
793 flags |= ECF_SP_DEPRESSED;
794 flags &= ~(ECF_PURE | ECF_CONST | ECF_LIBCALL_BLOCK);
797 return flags;
800 /* Precompute all register parameters as described by ARGS, storing values
801 into fields within the ARGS array.
803 NUM_ACTUALS indicates the total number elements in the ARGS array.
805 Set REG_PARM_SEEN if we encounter a register parameter. */
807 static void
808 precompute_register_parameters (num_actuals, args, reg_parm_seen)
809 int num_actuals;
810 struct arg_data *args;
811 int *reg_parm_seen;
813 int i;
815 *reg_parm_seen = 0;
817 for (i = 0; i < num_actuals; i++)
818 if (args[i].reg != 0 && ! args[i].pass_on_stack)
820 *reg_parm_seen = 1;
822 if (args[i].value == 0)
824 push_temp_slots ();
825 args[i].value = expand_expr (args[i].tree_value, NULL_RTX,
826 VOIDmode, 0);
827 preserve_temp_slots (args[i].value);
828 pop_temp_slots ();
830 /* ANSI doesn't require a sequence point here,
831 but PCC has one, so this will avoid some problems. */
832 emit_queue ();
835 /* If the value is a non-legitimate constant, force it into a
836 pseudo now. TLS symbols sometimes need a call to resolve. */
837 if (CONSTANT_P (args[i].value)
838 && !LEGITIMATE_CONSTANT_P (args[i].value))
839 args[i].value = force_reg (args[i].mode, args[i].value);
841 /* If we are to promote the function arg to a wider mode,
842 do it now. */
844 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
845 args[i].value
846 = convert_modes (args[i].mode,
847 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
848 args[i].value, args[i].unsignedp);
850 /* If the value is expensive, and we are inside an appropriately
851 short loop, put the value into a pseudo and then put the pseudo
852 into the hard reg.
854 For small register classes, also do this if this call uses
855 register parameters. This is to avoid reload conflicts while
856 loading the parameters registers. */
858 if ((! (GET_CODE (args[i].value) == REG
859 || (GET_CODE (args[i].value) == SUBREG
860 && GET_CODE (SUBREG_REG (args[i].value)) == REG)))
861 && args[i].mode != BLKmode
862 && rtx_cost (args[i].value, SET) > COSTS_N_INSNS (1)
863 && ((SMALL_REGISTER_CLASSES && *reg_parm_seen)
864 || preserve_subexpressions_p ()))
865 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
869 #ifdef REG_PARM_STACK_SPACE
871 /* The argument list is the property of the called routine and it
872 may clobber it. If the fixed area has been used for previous
873 parameters, we must save and restore it. */
875 static rtx
876 save_fixed_argument_area (reg_parm_stack_space, argblock,
877 low_to_save, high_to_save)
878 int reg_parm_stack_space;
879 rtx argblock;
880 int *low_to_save;
881 int *high_to_save;
883 int low;
884 int high;
886 /* Compute the boundary of the area that needs to be saved, if any. */
887 high = reg_parm_stack_space;
888 #ifdef ARGS_GROW_DOWNWARD
889 high += 1;
890 #endif
891 if (high > highest_outgoing_arg_in_use)
892 high = highest_outgoing_arg_in_use;
894 for (low = 0; low < high; low++)
895 if (stack_usage_map[low] != 0)
897 int num_to_save;
898 enum machine_mode save_mode;
899 int delta;
900 rtx stack_area;
901 rtx save_area;
903 while (stack_usage_map[--high] == 0)
906 *low_to_save = low;
907 *high_to_save = high;
909 num_to_save = high - low + 1;
910 save_mode = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
912 /* If we don't have the required alignment, must do this
913 in BLKmode. */
914 if ((low & (MIN (GET_MODE_SIZE (save_mode),
915 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
916 save_mode = BLKmode;
918 #ifdef ARGS_GROW_DOWNWARD
919 delta = -high;
920 #else
921 delta = low;
922 #endif
923 stack_area = gen_rtx_MEM (save_mode,
924 memory_address (save_mode,
925 plus_constant (argblock,
926 delta)));
928 set_mem_align (stack_area, PARM_BOUNDARY);
929 if (save_mode == BLKmode)
931 save_area = assign_stack_temp (BLKmode, num_to_save, 0);
932 emit_block_move (validize_mem (save_area), stack_area,
933 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
935 else
937 save_area = gen_reg_rtx (save_mode);
938 emit_move_insn (save_area, stack_area);
941 return save_area;
944 return NULL_RTX;
947 static void
948 restore_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;
954 enum machine_mode save_mode = GET_MODE (save_area);
955 int delta;
956 rtx stack_area;
958 #ifdef ARGS_GROW_DOWNWARD
959 delta = -high_to_save;
960 #else
961 delta = low_to_save;
962 #endif
963 stack_area = gen_rtx_MEM (save_mode,
964 memory_address (save_mode,
965 plus_constant (argblock, delta)));
966 set_mem_align (stack_area, PARM_BOUNDARY);
968 if (save_mode != BLKmode)
969 emit_move_insn (stack_area, save_area);
970 else
971 emit_block_move (stack_area, validize_mem (save_area),
972 GEN_INT (high_to_save - low_to_save + 1),
973 BLOCK_OP_CALL_PARM);
975 #endif /* REG_PARM_STACK_SPACE */
977 /* If any elements in ARGS refer to parameters that are to be passed in
978 registers, but not in memory, and whose alignment does not permit a
979 direct copy into registers. Copy the values into a group of pseudos
980 which we will later copy into the appropriate hard registers.
982 Pseudos for each unaligned argument will be stored into the array
983 args[argnum].aligned_regs. The caller is responsible for deallocating
984 the aligned_regs array if it is nonzero. */
986 static void
987 store_unaligned_arguments_into_pseudos (args, num_actuals)
988 struct arg_data *args;
989 int num_actuals;
991 int i, j;
993 for (i = 0; i < num_actuals; i++)
994 if (args[i].reg != 0 && ! args[i].pass_on_stack
995 && args[i].mode == BLKmode
996 && (TYPE_ALIGN (TREE_TYPE (args[i].tree_value))
997 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
999 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1000 int big_endian_correction = 0;
1002 args[i].n_aligned_regs
1003 = args[i].partial ? args[i].partial
1004 : (bytes + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
1006 args[i].aligned_regs = (rtx *) xmalloc (sizeof (rtx)
1007 * args[i].n_aligned_regs);
1009 /* Structures smaller than a word are aligned to the least
1010 significant byte (to the right). On a BYTES_BIG_ENDIAN machine,
1011 this means we must skip the empty high order bytes when
1012 calculating the bit offset. */
1013 if (BYTES_BIG_ENDIAN
1014 && bytes < UNITS_PER_WORD)
1015 big_endian_correction = (BITS_PER_WORD - (bytes * BITS_PER_UNIT));
1017 for (j = 0; j < args[i].n_aligned_regs; j++)
1019 rtx reg = gen_reg_rtx (word_mode);
1020 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1021 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
1023 args[i].aligned_regs[j] = reg;
1025 /* There is no need to restrict this code to loading items
1026 in TYPE_ALIGN sized hunks. The bitfield instructions can
1027 load up entire word sized registers efficiently.
1029 ??? This may not be needed anymore.
1030 We use to emit a clobber here but that doesn't let later
1031 passes optimize the instructions we emit. By storing 0 into
1032 the register later passes know the first AND to zero out the
1033 bitfield being set in the register is unnecessary. The store
1034 of 0 will be deleted as will at least the first AND. */
1036 emit_move_insn (reg, const0_rtx);
1038 bytes -= bitsize / BITS_PER_UNIT;
1039 store_bit_field (reg, bitsize, big_endian_correction, word_mode,
1040 extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
1041 word_mode, word_mode,
1042 BITS_PER_WORD),
1043 BITS_PER_WORD);
1048 /* Fill in ARGS_SIZE and ARGS array based on the parameters found in
1049 ACTPARMS.
1051 NUM_ACTUALS is the total number of parameters.
1053 N_NAMED_ARGS is the total number of named arguments.
1055 FNDECL is the tree code for the target of this call (if known)
1057 ARGS_SO_FAR holds state needed by the target to know where to place
1058 the next argument.
1060 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1061 for arguments which are passed in registers.
1063 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1064 and may be modified by this routine.
1066 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
1067 flags which may may be modified by this routine. */
1069 static void
1070 initialize_argument_information (num_actuals, args, args_size, n_named_args,
1071 actparms, fndecl, args_so_far,
1072 reg_parm_stack_space, old_stack_level,
1073 old_pending_adj, must_preallocate,
1074 ecf_flags)
1075 int num_actuals ATTRIBUTE_UNUSED;
1076 struct arg_data *args;
1077 struct args_size *args_size;
1078 int n_named_args ATTRIBUTE_UNUSED;
1079 tree actparms;
1080 tree fndecl;
1081 CUMULATIVE_ARGS *args_so_far;
1082 int reg_parm_stack_space;
1083 rtx *old_stack_level;
1084 int *old_pending_adj;
1085 int *must_preallocate;
1086 int *ecf_flags;
1088 /* 1 if scanning parms front to back, -1 if scanning back to front. */
1089 int inc;
1091 /* Count arg position in order args appear. */
1092 int argpos;
1094 int i;
1095 tree p;
1097 args_size->constant = 0;
1098 args_size->var = 0;
1100 /* In this loop, we consider args in the order they are written.
1101 We fill up ARGS from the front or from the back if necessary
1102 so that in any case the first arg to be pushed ends up at the front. */
1104 if (PUSH_ARGS_REVERSED)
1106 i = num_actuals - 1, inc = -1;
1107 /* In this case, must reverse order of args
1108 so that we compute and push the last arg first. */
1110 else
1112 i = 0, inc = 1;
1115 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1116 for (p = actparms, argpos = 0; p; p = TREE_CHAIN (p), i += inc, argpos++)
1118 tree type = TREE_TYPE (TREE_VALUE (p));
1119 int unsignedp;
1120 enum machine_mode mode;
1122 args[i].tree_value = TREE_VALUE (p);
1124 /* Replace erroneous argument with constant zero. */
1125 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
1126 args[i].tree_value = integer_zero_node, type = integer_type_node;
1128 /* If TYPE is a transparent union, pass things the way we would
1129 pass the first field of the union. We have already verified that
1130 the modes are the same. */
1131 if (TREE_CODE (type) == UNION_TYPE && TYPE_TRANSPARENT_UNION (type))
1132 type = TREE_TYPE (TYPE_FIELDS (type));
1134 /* Decide where to pass this arg.
1136 args[i].reg is nonzero if all or part is passed in registers.
1138 args[i].partial is nonzero if part but not all is passed in registers,
1139 and the exact value says how many words are passed in registers.
1141 args[i].pass_on_stack is nonzero if the argument must at least be
1142 computed on the stack. It may then be loaded back into registers
1143 if args[i].reg is nonzero.
1145 These decisions are driven by the FUNCTION_... macros and must agree
1146 with those made by function.c. */
1148 /* See if this argument should be passed by invisible reference. */
1149 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
1150 || TREE_ADDRESSABLE (type)
1151 #ifdef FUNCTION_ARG_PASS_BY_REFERENCE
1152 || FUNCTION_ARG_PASS_BY_REFERENCE (*args_so_far, TYPE_MODE (type),
1153 type, argpos < n_named_args)
1154 #endif
1157 /* If we're compiling a thunk, pass through invisible
1158 references instead of making a copy. */
1159 if (current_function_is_thunk
1160 #ifdef FUNCTION_ARG_CALLEE_COPIES
1161 || (FUNCTION_ARG_CALLEE_COPIES (*args_so_far, TYPE_MODE (type),
1162 type, argpos < n_named_args)
1163 /* If it's in a register, we must make a copy of it too. */
1164 /* ??? Is this a sufficient test? Is there a better one? */
1165 && !(TREE_CODE (args[i].tree_value) == VAR_DECL
1166 && REG_P (DECL_RTL (args[i].tree_value)))
1167 && ! TREE_ADDRESSABLE (type))
1168 #endif
1171 /* C++ uses a TARGET_EXPR to indicate that we want to make a
1172 new object from the argument. If we are passing by
1173 invisible reference, the callee will do that for us, so we
1174 can strip off the TARGET_EXPR. This is not always safe,
1175 but it is safe in the only case where this is a useful
1176 optimization; namely, when the argument is a plain object.
1177 In that case, the frontend is just asking the backend to
1178 make a bitwise copy of the argument. */
1180 if (TREE_CODE (args[i].tree_value) == TARGET_EXPR
1181 && (DECL_P (TREE_OPERAND (args[i].tree_value, 1)))
1182 && ! REG_P (DECL_RTL (TREE_OPERAND (args[i].tree_value, 1))))
1183 args[i].tree_value = TREE_OPERAND (args[i].tree_value, 1);
1185 args[i].tree_value = build1 (ADDR_EXPR,
1186 build_pointer_type (type),
1187 args[i].tree_value);
1188 type = build_pointer_type (type);
1190 else if (TREE_CODE (args[i].tree_value) == TARGET_EXPR)
1192 /* In the V3 C++ ABI, parameters are destroyed in the caller.
1193 We implement this by passing the address of the temporary
1194 rather than expanding it into another allocated slot. */
1195 args[i].tree_value = build1 (ADDR_EXPR,
1196 build_pointer_type (type),
1197 args[i].tree_value);
1198 type = build_pointer_type (type);
1200 else
1202 /* We make a copy of the object and pass the address to the
1203 function being called. */
1204 rtx copy;
1206 if (!COMPLETE_TYPE_P (type)
1207 || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST
1208 || (flag_stack_check && ! STACK_CHECK_BUILTIN
1209 && (0 < compare_tree_int (TYPE_SIZE_UNIT (type),
1210 STACK_CHECK_MAX_VAR_SIZE))))
1212 /* This is a variable-sized object. Make space on the stack
1213 for it. */
1214 rtx size_rtx = expr_size (TREE_VALUE (p));
1216 if (*old_stack_level == 0)
1218 emit_stack_save (SAVE_BLOCK, old_stack_level, NULL_RTX);
1219 *old_pending_adj = pending_stack_adjust;
1220 pending_stack_adjust = 0;
1223 copy = gen_rtx_MEM (BLKmode,
1224 allocate_dynamic_stack_space
1225 (size_rtx, NULL_RTX, TYPE_ALIGN (type)));
1226 set_mem_attributes (copy, type, 1);
1228 else
1229 copy = assign_temp (type, 0, 1, 0);
1231 store_expr (args[i].tree_value, copy, 0);
1232 *ecf_flags &= ~(ECF_CONST | ECF_PURE | ECF_LIBCALL_BLOCK);
1234 args[i].tree_value = build1 (ADDR_EXPR,
1235 build_pointer_type (type),
1236 make_tree (type, copy));
1237 type = build_pointer_type (type);
1241 mode = TYPE_MODE (type);
1242 unsignedp = TREE_UNSIGNED (type);
1244 #ifdef PROMOTE_FUNCTION_ARGS
1245 mode = promote_mode (type, mode, &unsignedp, 1);
1246 #endif
1248 args[i].unsignedp = unsignedp;
1249 args[i].mode = mode;
1251 args[i].reg = FUNCTION_ARG (*args_so_far, mode, type,
1252 argpos < n_named_args);
1253 #ifdef FUNCTION_INCOMING_ARG
1254 /* If this is a sibling call and the machine has register windows, the
1255 register window has to be unwinded before calling the routine, so
1256 arguments have to go into the incoming registers. */
1257 args[i].tail_call_reg = FUNCTION_INCOMING_ARG (*args_so_far, mode, type,
1258 argpos < n_named_args);
1259 #else
1260 args[i].tail_call_reg = args[i].reg;
1261 #endif
1263 #ifdef FUNCTION_ARG_PARTIAL_NREGS
1264 if (args[i].reg)
1265 args[i].partial
1266 = FUNCTION_ARG_PARTIAL_NREGS (*args_so_far, mode, type,
1267 argpos < n_named_args);
1268 #endif
1270 args[i].pass_on_stack = MUST_PASS_IN_STACK (mode, type);
1272 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1273 it means that we are to pass this arg in the register(s) designated
1274 by the PARALLEL, but also to pass it in the stack. */
1275 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1276 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1277 args[i].pass_on_stack = 1;
1279 /* If this is an addressable type, we must preallocate the stack
1280 since we must evaluate the object into its final location.
1282 If this is to be passed in both registers and the stack, it is simpler
1283 to preallocate. */
1284 if (TREE_ADDRESSABLE (type)
1285 || (args[i].pass_on_stack && args[i].reg != 0))
1286 *must_preallocate = 1;
1288 /* If this is an addressable type, we cannot pre-evaluate it. Thus,
1289 we cannot consider this function call constant. */
1290 if (TREE_ADDRESSABLE (type))
1291 *ecf_flags &= ~ECF_LIBCALL_BLOCK;
1293 /* Compute the stack-size of this argument. */
1294 if (args[i].reg == 0 || args[i].partial != 0
1295 || reg_parm_stack_space > 0
1296 || args[i].pass_on_stack)
1297 locate_and_pad_parm (mode, type,
1298 #ifdef STACK_PARMS_IN_REG_PARM_AREA
1300 #else
1301 args[i].reg != 0,
1302 #endif
1303 args[i].pass_on_stack ? 0 : args[i].partial,
1304 fndecl, args_size, &args[i].locate);
1306 /* Update ARGS_SIZE, the total stack space for args so far. */
1308 args_size->constant += args[i].locate.size.constant;
1309 if (args[i].locate.size.var)
1310 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
1312 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1313 have been used, etc. */
1315 FUNCTION_ARG_ADVANCE (*args_so_far, TYPE_MODE (type), type,
1316 argpos < n_named_args);
1320 /* Update ARGS_SIZE to contain the total size for the argument block.
1321 Return the original constant component of the argument block's size.
1323 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1324 for arguments passed in registers. */
1326 static int
1327 compute_argument_block_size (reg_parm_stack_space, args_size,
1328 preferred_stack_boundary)
1329 int reg_parm_stack_space;
1330 struct args_size *args_size;
1331 int preferred_stack_boundary ATTRIBUTE_UNUSED;
1333 int unadjusted_args_size = args_size->constant;
1335 /* For accumulate outgoing args mode we don't need to align, since the frame
1336 will be already aligned. Align to STACK_BOUNDARY in order to prevent
1337 backends from generating misaligned frame sizes. */
1338 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
1339 preferred_stack_boundary = STACK_BOUNDARY;
1341 /* Compute the actual size of the argument block required. The variable
1342 and constant sizes must be combined, the size may have to be rounded,
1343 and there may be a minimum required size. */
1345 if (args_size->var)
1347 args_size->var = ARGS_SIZE_TREE (*args_size);
1348 args_size->constant = 0;
1350 preferred_stack_boundary /= BITS_PER_UNIT;
1351 if (preferred_stack_boundary > 1)
1353 /* We don't handle this case yet. To handle it correctly we have
1354 to add the delta, round and subtract the delta.
1355 Currently no machine description requires this support. */
1356 if (stack_pointer_delta & (preferred_stack_boundary - 1))
1357 abort ();
1358 args_size->var = round_up (args_size->var, preferred_stack_boundary);
1361 if (reg_parm_stack_space > 0)
1363 args_size->var
1364 = size_binop (MAX_EXPR, args_size->var,
1365 ssize_int (reg_parm_stack_space));
1367 #ifndef OUTGOING_REG_PARM_STACK_SPACE
1368 /* The area corresponding to register parameters is not to count in
1369 the size of the block we need. So make the adjustment. */
1370 args_size->var
1371 = size_binop (MINUS_EXPR, args_size->var,
1372 ssize_int (reg_parm_stack_space));
1373 #endif
1376 else
1378 preferred_stack_boundary /= BITS_PER_UNIT;
1379 if (preferred_stack_boundary < 1)
1380 preferred_stack_boundary = 1;
1381 args_size->constant = (((args_size->constant
1382 + stack_pointer_delta
1383 + preferred_stack_boundary - 1)
1384 / preferred_stack_boundary
1385 * preferred_stack_boundary)
1386 - stack_pointer_delta);
1388 args_size->constant = MAX (args_size->constant,
1389 reg_parm_stack_space);
1391 #ifdef MAYBE_REG_PARM_STACK_SPACE
1392 if (reg_parm_stack_space == 0)
1393 args_size->constant = 0;
1394 #endif
1396 #ifndef OUTGOING_REG_PARM_STACK_SPACE
1397 args_size->constant -= reg_parm_stack_space;
1398 #endif
1400 return unadjusted_args_size;
1403 /* Precompute parameters as needed for a function call.
1405 FLAGS is mask of ECF_* constants.
1407 NUM_ACTUALS is the number of arguments.
1409 ARGS is an array containing information for each argument; this
1410 routine fills in the INITIAL_VALUE and VALUE fields for each
1411 precomputed argument. */
1413 static void
1414 precompute_arguments (flags, num_actuals, args)
1415 int flags;
1416 int num_actuals;
1417 struct arg_data *args;
1419 int i;
1421 /* If this function call is cse'able, precompute all the parameters.
1422 Note that if the parameter is constructed into a temporary, this will
1423 cause an additional copy because the parameter will be constructed
1424 into a temporary location and then copied into the outgoing arguments.
1425 If a parameter contains a call to alloca and this function uses the
1426 stack, precompute the parameter. */
1428 /* If we preallocated the stack space, and some arguments must be passed
1429 on the stack, then we must precompute any parameter which contains a
1430 function call which will store arguments on the stack.
1431 Otherwise, evaluating the parameter may clobber previous parameters
1432 which have already been stored into the stack. (we have code to avoid
1433 such case by saving the outgoing stack arguments, but it results in
1434 worse code) */
1436 for (i = 0; i < num_actuals; i++)
1437 if ((flags & ECF_LIBCALL_BLOCK)
1438 || calls_function (args[i].tree_value, !ACCUMULATE_OUTGOING_ARGS))
1440 enum machine_mode mode;
1442 /* If this is an addressable type, we cannot pre-evaluate it. */
1443 if (TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value)))
1444 abort ();
1446 args[i].value
1447 = expand_expr (args[i].tree_value, NULL_RTX, VOIDmode, 0);
1449 /* ANSI doesn't require a sequence point here,
1450 but PCC has one, so this will avoid some problems. */
1451 emit_queue ();
1453 args[i].initial_value = args[i].value
1454 = protect_from_queue (args[i].value, 0);
1456 mode = TYPE_MODE (TREE_TYPE (args[i].tree_value));
1457 if (mode != args[i].mode)
1459 args[i].value
1460 = convert_modes (args[i].mode, mode,
1461 args[i].value, args[i].unsignedp);
1462 #ifdef PROMOTE_FOR_CALL_ONLY
1463 /* CSE will replace this only if it contains args[i].value
1464 pseudo, so convert it down to the declared mode using
1465 a SUBREG. */
1466 if (GET_CODE (args[i].value) == REG
1467 && GET_MODE_CLASS (args[i].mode) == MODE_INT)
1469 args[i].initial_value
1470 = gen_lowpart_SUBREG (mode, args[i].value);
1471 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
1472 SUBREG_PROMOTED_UNSIGNED_SET (args[i].initial_value,
1473 args[i].unsignedp);
1475 #endif
1480 /* Given the current state of MUST_PREALLOCATE and information about
1481 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1482 compute and return the final value for MUST_PREALLOCATE. */
1484 static int
1485 finalize_must_preallocate (must_preallocate, num_actuals, args, args_size)
1486 int must_preallocate;
1487 int num_actuals;
1488 struct arg_data *args;
1489 struct args_size *args_size;
1491 /* See if we have or want to preallocate stack space.
1493 If we would have to push a partially-in-regs parm
1494 before other stack parms, preallocate stack space instead.
1496 If the size of some parm is not a multiple of the required stack
1497 alignment, we must preallocate.
1499 If the total size of arguments that would otherwise create a copy in
1500 a temporary (such as a CALL) is more than half the total argument list
1501 size, preallocation is faster.
1503 Another reason to preallocate is if we have a machine (like the m88k)
1504 where stack alignment is required to be maintained between every
1505 pair of insns, not just when the call is made. However, we assume here
1506 that such machines either do not have push insns (and hence preallocation
1507 would occur anyway) or the problem is taken care of with
1508 PUSH_ROUNDING. */
1510 if (! must_preallocate)
1512 int partial_seen = 0;
1513 int copy_to_evaluate_size = 0;
1514 int i;
1516 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1518 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1519 partial_seen = 1;
1520 else if (partial_seen && args[i].reg == 0)
1521 must_preallocate = 1;
1523 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1524 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1525 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1526 || TREE_CODE (args[i].tree_value) == COND_EXPR
1527 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1528 copy_to_evaluate_size
1529 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1532 if (copy_to_evaluate_size * 2 >= args_size->constant
1533 && args_size->constant > 0)
1534 must_preallocate = 1;
1536 return must_preallocate;
1539 /* If we preallocated stack space, compute the address of each argument
1540 and store it into the ARGS array.
1542 We need not ensure it is a valid memory address here; it will be
1543 validized when it is used.
1545 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1547 static void
1548 compute_argument_addresses (args, argblock, num_actuals)
1549 struct arg_data *args;
1550 rtx argblock;
1551 int num_actuals;
1553 if (argblock)
1555 rtx arg_reg = argblock;
1556 int i, arg_offset = 0;
1558 if (GET_CODE (argblock) == PLUS)
1559 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1561 for (i = 0; i < num_actuals; i++)
1563 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
1564 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
1565 rtx addr;
1567 /* Skip this parm if it will not be passed on the stack. */
1568 if (! args[i].pass_on_stack && args[i].reg != 0)
1569 continue;
1571 if (GET_CODE (offset) == CONST_INT)
1572 addr = plus_constant (arg_reg, INTVAL (offset));
1573 else
1574 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1576 addr = plus_constant (addr, arg_offset);
1577 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1578 set_mem_align (args[i].stack, PARM_BOUNDARY);
1579 set_mem_attributes (args[i].stack,
1580 TREE_TYPE (args[i].tree_value), 1);
1582 if (GET_CODE (slot_offset) == CONST_INT)
1583 addr = plus_constant (arg_reg, INTVAL (slot_offset));
1584 else
1585 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1587 addr = plus_constant (addr, arg_offset);
1588 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1589 set_mem_align (args[i].stack_slot, PARM_BOUNDARY);
1590 set_mem_attributes (args[i].stack_slot,
1591 TREE_TYPE (args[i].tree_value), 1);
1593 /* Function incoming arguments may overlap with sibling call
1594 outgoing arguments and we cannot allow reordering of reads
1595 from function arguments with stores to outgoing arguments
1596 of sibling calls. */
1597 set_mem_alias_set (args[i].stack, 0);
1598 set_mem_alias_set (args[i].stack_slot, 0);
1603 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1604 in a call instruction.
1606 FNDECL is the tree node for the target function. For an indirect call
1607 FNDECL will be NULL_TREE.
1609 ADDR is the operand 0 of CALL_EXPR for this call. */
1611 static rtx
1612 rtx_for_function_call (fndecl, addr)
1613 tree fndecl;
1614 tree addr;
1616 rtx funexp;
1618 /* Get the function to call, in the form of RTL. */
1619 if (fndecl)
1621 /* If this is the first use of the function, see if we need to
1622 make an external definition for it. */
1623 if (! TREE_USED (fndecl))
1625 assemble_external (fndecl);
1626 TREE_USED (fndecl) = 1;
1629 /* Get a SYMBOL_REF rtx for the function address. */
1630 funexp = XEXP (DECL_RTL (fndecl), 0);
1632 else
1633 /* Generate an rtx (probably a pseudo-register) for the address. */
1635 push_temp_slots ();
1636 funexp = expand_expr (addr, NULL_RTX, VOIDmode, 0);
1637 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
1638 emit_queue ();
1640 return funexp;
1643 /* Do the register loads required for any wholly-register parms or any
1644 parms which are passed both on the stack and in a register. Their
1645 expressions were already evaluated.
1647 Mark all register-parms as living through the call, putting these USE
1648 insns in the CALL_INSN_FUNCTION_USAGE field.
1650 When IS_SIBCALL, perform the check_sibcall_overlap_argument_overlap
1651 checking, setting *SIBCALL_FAILURE if appropriate. */
1653 static void
1654 load_register_parameters (args, num_actuals, call_fusage, flags,
1655 is_sibcall, sibcall_failure)
1656 struct arg_data *args;
1657 int num_actuals;
1658 rtx *call_fusage;
1659 int flags;
1660 int is_sibcall;
1661 int *sibcall_failure;
1663 int i, j;
1665 #ifdef LOAD_ARGS_REVERSED
1666 for (i = num_actuals - 1; i >= 0; i--)
1667 #else
1668 for (i = 0; i < num_actuals; i++)
1669 #endif
1671 rtx reg = ((flags & ECF_SIBCALL)
1672 ? args[i].tail_call_reg : args[i].reg);
1673 int partial = args[i].partial;
1674 int nregs;
1676 if (reg)
1678 rtx before_arg = get_last_insn ();
1679 /* Set to non-negative if must move a word at a time, even if just
1680 one word (e.g, partial == 1 && mode == DFmode). Set to -1 if
1681 we just use a normal move insn. This value can be zero if the
1682 argument is a zero size structure with no fields. */
1683 nregs = (partial ? partial
1684 : (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1685 ? ((int_size_in_bytes (TREE_TYPE (args[i].tree_value))
1686 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
1687 : -1));
1689 /* Handle calls that pass values in multiple non-contiguous
1690 locations. The Irix 6 ABI has examples of this. */
1692 if (GET_CODE (reg) == PARALLEL)
1693 emit_group_load (reg, args[i].value,
1694 int_size_in_bytes (TREE_TYPE (args[i].tree_value)));
1696 /* If simple case, just do move. If normal partial, store_one_arg
1697 has already loaded the register for us. In all other cases,
1698 load the register(s) from memory. */
1700 else if (nregs == -1)
1701 emit_move_insn (reg, args[i].value);
1703 /* If we have pre-computed the values to put in the registers in
1704 the case of non-aligned structures, copy them in now. */
1706 else if (args[i].n_aligned_regs != 0)
1707 for (j = 0; j < args[i].n_aligned_regs; j++)
1708 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
1709 args[i].aligned_regs[j]);
1711 else if (partial == 0 || args[i].pass_on_stack)
1712 move_block_to_reg (REGNO (reg),
1713 validize_mem (args[i].value), nregs,
1714 args[i].mode);
1716 /* When a parameter is a block, and perhaps in other cases, it is
1717 possible that it did a load from an argument slot that was
1718 already clobbered. */
1719 if (is_sibcall
1720 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
1721 *sibcall_failure = 1;
1723 /* Handle calls that pass values in multiple non-contiguous
1724 locations. The Irix 6 ABI has examples of this. */
1725 if (GET_CODE (reg) == PARALLEL)
1726 use_group_regs (call_fusage, reg);
1727 else if (nregs == -1)
1728 use_reg (call_fusage, reg);
1729 else
1730 use_regs (call_fusage, REGNO (reg), nregs == 0 ? 1 : nregs);
1735 /* Try to integrate function. See expand_inline_function for documentation
1736 about the parameters. */
1738 static rtx
1739 try_to_integrate (fndecl, actparms, target, ignore, type, structure_value_addr)
1740 tree fndecl;
1741 tree actparms;
1742 rtx target;
1743 int ignore;
1744 tree type;
1745 rtx structure_value_addr;
1747 rtx temp;
1748 rtx before_call;
1749 int i;
1750 rtx old_stack_level = 0;
1751 int reg_parm_stack_space = 0;
1753 #ifdef REG_PARM_STACK_SPACE
1754 #ifdef MAYBE_REG_PARM_STACK_SPACE
1755 reg_parm_stack_space = MAYBE_REG_PARM_STACK_SPACE;
1756 #else
1757 reg_parm_stack_space = REG_PARM_STACK_SPACE (fndecl);
1758 #endif
1759 #endif
1761 before_call = get_last_insn ();
1763 timevar_push (TV_INTEGRATION);
1765 temp = expand_inline_function (fndecl, actparms, target,
1766 ignore, type,
1767 structure_value_addr);
1769 timevar_pop (TV_INTEGRATION);
1771 /* If inlining succeeded, return. */
1772 if (temp != (rtx) (size_t) - 1)
1774 if (ACCUMULATE_OUTGOING_ARGS)
1776 /* If the outgoing argument list must be preserved, push
1777 the stack before executing the inlined function if it
1778 makes any calls. */
1780 i = reg_parm_stack_space;
1781 if (i > highest_outgoing_arg_in_use)
1782 i = highest_outgoing_arg_in_use;
1783 while (--i >= 0 && stack_usage_map[i] == 0)
1786 if (stack_arg_under_construction || i >= 0)
1788 rtx first_insn
1789 = before_call ? NEXT_INSN (before_call) : get_insns ();
1790 rtx insn = NULL_RTX, seq;
1792 /* Look for a call in the inline function code.
1793 If DECL_SAVED_INSNS (fndecl)->outgoing_args_size is
1794 nonzero then there is a call and it is not necessary
1795 to scan the insns. */
1797 if (DECL_SAVED_INSNS (fndecl)->outgoing_args_size == 0)
1798 for (insn = first_insn; insn; insn = NEXT_INSN (insn))
1799 if (GET_CODE (insn) == CALL_INSN)
1800 break;
1802 if (insn)
1804 /* Reserve enough stack space so that the largest
1805 argument list of any function call in the inline
1806 function does not overlap the argument list being
1807 evaluated. This is usually an overestimate because
1808 allocate_dynamic_stack_space reserves space for an
1809 outgoing argument list in addition to the requested
1810 space, but there is no way to ask for stack space such
1811 that an argument list of a certain length can be
1812 safely constructed.
1814 Add the stack space reserved for register arguments, if
1815 any, in the inline function. What is really needed is the
1816 largest value of reg_parm_stack_space in the inline
1817 function, but that is not available. Using the current
1818 value of reg_parm_stack_space is wrong, but gives
1819 correct results on all supported machines. */
1821 int adjust = (DECL_SAVED_INSNS (fndecl)->outgoing_args_size
1822 + reg_parm_stack_space);
1824 start_sequence ();
1825 emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
1826 allocate_dynamic_stack_space (GEN_INT (adjust),
1827 NULL_RTX, BITS_PER_UNIT);
1828 seq = get_insns ();
1829 end_sequence ();
1830 emit_insn_before (seq, first_insn);
1831 emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX);
1836 /* If the result is equivalent to TARGET, return TARGET to simplify
1837 checks in store_expr. They can be equivalent but not equal in the
1838 case of a function that returns BLKmode. */
1839 if (temp != target && rtx_equal_p (temp, target))
1840 return target;
1841 return temp;
1844 /* If inlining failed, mark FNDECL as needing to be compiled
1845 separately after all. If function was declared inline,
1846 give a warning. */
1847 if (DECL_INLINE (fndecl) && warn_inline && !flag_no_inline
1848 && optimize > 0 && !TREE_ADDRESSABLE (fndecl))
1850 warning_with_decl (fndecl, "inlining failed in call to `%s'");
1851 warning ("called from here");
1853 (*lang_hooks.mark_addressable) (fndecl);
1854 return (rtx) (size_t) - 1;
1857 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
1858 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
1859 bytes, then we would need to push some additional bytes to pad the
1860 arguments. So, we compute an adjust to the stack pointer for an
1861 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
1862 bytes. Then, when the arguments are pushed the stack will be perfectly
1863 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
1864 be popped after the call. Returns the adjustment. */
1866 static int
1867 combine_pending_stack_adjustment_and_call (unadjusted_args_size,
1868 args_size,
1869 preferred_unit_stack_boundary)
1870 int unadjusted_args_size;
1871 struct args_size *args_size;
1872 int preferred_unit_stack_boundary;
1874 /* The number of bytes to pop so that the stack will be
1875 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
1876 HOST_WIDE_INT adjustment;
1877 /* The alignment of the stack after the arguments are pushed, if we
1878 just pushed the arguments without adjust the stack here. */
1879 HOST_WIDE_INT unadjusted_alignment;
1881 unadjusted_alignment
1882 = ((stack_pointer_delta + unadjusted_args_size)
1883 % preferred_unit_stack_boundary);
1885 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
1886 as possible -- leaving just enough left to cancel out the
1887 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
1888 PENDING_STACK_ADJUST is non-negative, and congruent to
1889 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
1891 /* Begin by trying to pop all the bytes. */
1892 unadjusted_alignment
1893 = (unadjusted_alignment
1894 - (pending_stack_adjust % preferred_unit_stack_boundary));
1895 adjustment = pending_stack_adjust;
1896 /* Push enough additional bytes that the stack will be aligned
1897 after the arguments are pushed. */
1898 if (preferred_unit_stack_boundary > 1)
1900 if (unadjusted_alignment > 0)
1901 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
1902 else
1903 adjustment += unadjusted_alignment;
1906 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
1907 bytes after the call. The right number is the entire
1908 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
1909 by the arguments in the first place. */
1910 args_size->constant
1911 = pending_stack_adjust - adjustment + unadjusted_args_size;
1913 return adjustment;
1916 /* Scan X expression if it does not dereference any argument slots
1917 we already clobbered by tail call arguments (as noted in stored_args_map
1918 bitmap).
1919 Return nonzero if X expression dereferences such argument slots,
1920 zero otherwise. */
1922 static int
1923 check_sibcall_argument_overlap_1 (x)
1924 rtx x;
1926 RTX_CODE code;
1927 int i, j;
1928 unsigned int k;
1929 const char *fmt;
1931 if (x == NULL_RTX)
1932 return 0;
1934 code = GET_CODE (x);
1936 if (code == MEM)
1938 if (XEXP (x, 0) == current_function_internal_arg_pointer)
1939 i = 0;
1940 else if (GET_CODE (XEXP (x, 0)) == PLUS
1941 && XEXP (XEXP (x, 0), 0) ==
1942 current_function_internal_arg_pointer
1943 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT)
1944 i = INTVAL (XEXP (XEXP (x, 0), 1));
1945 else
1946 return 0;
1948 #ifdef ARGS_GROW_DOWNWARD
1949 i = -i - GET_MODE_SIZE (GET_MODE (x));
1950 #endif
1952 for (k = 0; k < GET_MODE_SIZE (GET_MODE (x)); k++)
1953 if (i + k < stored_args_map->n_bits
1954 && TEST_BIT (stored_args_map, i + k))
1955 return 1;
1957 return 0;
1960 /* Scan all subexpressions. */
1961 fmt = GET_RTX_FORMAT (code);
1962 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
1964 if (*fmt == 'e')
1966 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
1967 return 1;
1969 else if (*fmt == 'E')
1971 for (j = 0; j < XVECLEN (x, i); j++)
1972 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
1973 return 1;
1976 return 0;
1979 /* Scan sequence after INSN if it does not dereference any argument slots
1980 we already clobbered by tail call arguments (as noted in stored_args_map
1981 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
1982 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
1983 should be 0). Return nonzero if sequence after INSN dereferences such argument
1984 slots, zero otherwise. */
1986 static int
1987 check_sibcall_argument_overlap (insn, arg, mark_stored_args_map)
1988 rtx insn;
1989 struct arg_data *arg;
1990 int mark_stored_args_map;
1992 int low, high;
1994 if (insn == NULL_RTX)
1995 insn = get_insns ();
1996 else
1997 insn = NEXT_INSN (insn);
1999 for (; insn; insn = NEXT_INSN (insn))
2000 if (INSN_P (insn)
2001 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
2002 break;
2004 if (mark_stored_args_map)
2006 #ifdef ARGS_GROW_DOWNWARD
2007 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
2008 #else
2009 low = arg->locate.slot_offset.constant;
2010 #endif
2012 for (high = low + arg->locate.size.constant; low < high; low++)
2013 SET_BIT (stored_args_map, low);
2015 return insn != NULL_RTX;
2018 static tree
2019 fix_unsafe_tree (t)
2020 tree t;
2022 switch (unsafe_for_reeval (t))
2024 case 0: /* Safe. */
2025 break;
2027 case 1: /* Mildly unsafe. */
2028 t = unsave_expr (t);
2029 break;
2031 case 2: /* Wildly unsafe. */
2033 tree var = build_decl (VAR_DECL, NULL_TREE,
2034 TREE_TYPE (t));
2035 SET_DECL_RTL (var,
2036 expand_expr (t, NULL_RTX, VOIDmode, EXPAND_NORMAL));
2037 t = var;
2039 break;
2041 default:
2042 abort ();
2044 return t;
2047 /* Generate all the code for a function call
2048 and return an rtx for its value.
2049 Store the value in TARGET (specified as an rtx) if convenient.
2050 If the value is stored in TARGET then TARGET is returned.
2051 If IGNORE is nonzero, then we ignore the value of the function call. */
2054 expand_call (exp, target, ignore)
2055 tree exp;
2056 rtx target;
2057 int ignore;
2059 /* Nonzero if we are currently expanding a call. */
2060 static int currently_expanding_call = 0;
2062 /* List of actual parameters. */
2063 tree actparms = TREE_OPERAND (exp, 1);
2064 /* RTX for the function to be called. */
2065 rtx funexp;
2066 /* Sequence of insns to perform a tail recursive "call". */
2067 rtx tail_recursion_insns = NULL_RTX;
2068 /* Sequence of insns to perform a normal "call". */
2069 rtx normal_call_insns = NULL_RTX;
2070 /* Sequence of insns to perform a tail recursive "call". */
2071 rtx tail_call_insns = NULL_RTX;
2072 /* Data type of the function. */
2073 tree funtype;
2074 tree type_arg_types;
2075 /* Declaration of the function being called,
2076 or 0 if the function is computed (not known by name). */
2077 tree fndecl = 0;
2078 rtx insn;
2079 int try_tail_call = 1;
2080 int try_tail_recursion = 1;
2081 int pass;
2083 /* Register in which non-BLKmode value will be returned,
2084 or 0 if no value or if value is BLKmode. */
2085 rtx valreg;
2086 /* Address where we should return a BLKmode value;
2087 0 if value not BLKmode. */
2088 rtx structure_value_addr = 0;
2089 /* Nonzero if that address is being passed by treating it as
2090 an extra, implicit first parameter. Otherwise,
2091 it is passed by being copied directly into struct_value_rtx. */
2092 int structure_value_addr_parm = 0;
2093 /* Size of aggregate value wanted, or zero if none wanted
2094 or if we are using the non-reentrant PCC calling convention
2095 or expecting the value in registers. */
2096 HOST_WIDE_INT struct_value_size = 0;
2097 /* Nonzero if called function returns an aggregate in memory PCC style,
2098 by returning the address of where to find it. */
2099 int pcc_struct_value = 0;
2101 /* Number of actual parameters in this call, including struct value addr. */
2102 int num_actuals;
2103 /* Number of named args. Args after this are anonymous ones
2104 and they must all go on the stack. */
2105 int n_named_args;
2107 /* Vector of information about each argument.
2108 Arguments are numbered in the order they will be pushed,
2109 not the order they are written. */
2110 struct arg_data *args;
2112 /* Total size in bytes of all the stack-parms scanned so far. */
2113 struct args_size args_size;
2114 struct args_size adjusted_args_size;
2115 /* Size of arguments before any adjustments (such as rounding). */
2116 int unadjusted_args_size;
2117 /* Data on reg parms scanned so far. */
2118 CUMULATIVE_ARGS args_so_far;
2119 /* Nonzero if a reg parm has been scanned. */
2120 int reg_parm_seen;
2121 /* Nonzero if this is an indirect function call. */
2123 /* Nonzero if we must avoid push-insns in the args for this call.
2124 If stack space is allocated for register parameters, but not by the
2125 caller, then it is preallocated in the fixed part of the stack frame.
2126 So the entire argument block must then be preallocated (i.e., we
2127 ignore PUSH_ROUNDING in that case). */
2129 int must_preallocate = !PUSH_ARGS;
2131 /* Size of the stack reserved for parameter registers. */
2132 int reg_parm_stack_space = 0;
2134 /* Address of space preallocated for stack parms
2135 (on machines that lack push insns), or 0 if space not preallocated. */
2136 rtx argblock = 0;
2138 /* Mask of ECF_ flags. */
2139 int flags = 0;
2140 /* Nonzero if this is a call to an inline function. */
2141 int is_integrable = 0;
2142 #ifdef REG_PARM_STACK_SPACE
2143 /* Define the boundary of the register parm stack space that needs to be
2144 saved, if any. */
2145 int low_to_save, high_to_save;
2146 rtx save_area = 0; /* Place that it is saved */
2147 #endif
2149 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2150 char *initial_stack_usage_map = stack_usage_map;
2152 int old_stack_allocated;
2154 /* State variables to track stack modifications. */
2155 rtx old_stack_level = 0;
2156 int old_stack_arg_under_construction = 0;
2157 int old_pending_adj = 0;
2158 int old_inhibit_defer_pop = inhibit_defer_pop;
2160 /* Some stack pointer alterations we make are performed via
2161 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
2162 which we then also need to save/restore along the way. */
2163 int old_stack_pointer_delta = 0;
2165 rtx call_fusage;
2166 tree p = TREE_OPERAND (exp, 0);
2167 tree addr = TREE_OPERAND (exp, 0);
2168 int i;
2169 /* The alignment of the stack, in bits. */
2170 HOST_WIDE_INT preferred_stack_boundary;
2171 /* The alignment of the stack, in bytes. */
2172 HOST_WIDE_INT preferred_unit_stack_boundary;
2174 /* See if this is "nothrow" function call. */
2175 if (TREE_NOTHROW (exp))
2176 flags |= ECF_NOTHROW;
2178 /* See if we can find a DECL-node for the actual function.
2179 As a result, decide whether this is a call to an integrable function. */
2181 fndecl = get_callee_fndecl (exp);
2182 if (fndecl)
2184 if (!flag_no_inline
2185 && fndecl != current_function_decl
2186 && DECL_INLINE (fndecl)
2187 && DECL_SAVED_INSNS (fndecl)
2188 && DECL_SAVED_INSNS (fndecl)->inlinable)
2189 is_integrable = 1;
2190 else if (! TREE_ADDRESSABLE (fndecl))
2192 /* In case this function later becomes inlinable,
2193 record that there was already a non-inline call to it.
2195 Use abstraction instead of setting TREE_ADDRESSABLE
2196 directly. */
2197 if (DECL_INLINE (fndecl) && warn_inline && !flag_no_inline
2198 && optimize > 0)
2200 warning_with_decl (fndecl, "can't inline call to `%s'");
2201 warning ("called from here");
2203 (*lang_hooks.mark_addressable) (fndecl);
2206 flags |= flags_from_decl_or_type (fndecl);
2209 /* If we don't have specific function to call, see if we have a
2210 attributes set in the type. */
2211 else
2212 flags |= flags_from_decl_or_type (TREE_TYPE (TREE_TYPE (p)));
2214 #ifdef REG_PARM_STACK_SPACE
2215 #ifdef MAYBE_REG_PARM_STACK_SPACE
2216 reg_parm_stack_space = MAYBE_REG_PARM_STACK_SPACE;
2217 #else
2218 reg_parm_stack_space = REG_PARM_STACK_SPACE (fndecl);
2219 #endif
2220 #endif
2222 #ifndef OUTGOING_REG_PARM_STACK_SPACE
2223 if (reg_parm_stack_space > 0 && PUSH_ARGS)
2224 must_preallocate = 1;
2225 #endif
2227 /* Warn if this value is an aggregate type,
2228 regardless of which calling convention we are using for it. */
2229 if (warn_aggregate_return && AGGREGATE_TYPE_P (TREE_TYPE (exp)))
2230 warning ("function call has aggregate value");
2232 /* Set up a place to return a structure. */
2234 /* Cater to broken compilers. */
2235 if (aggregate_value_p (exp))
2237 /* This call returns a big structure. */
2238 flags &= ~(ECF_CONST | ECF_PURE | ECF_LIBCALL_BLOCK);
2240 #ifdef PCC_STATIC_STRUCT_RETURN
2242 pcc_struct_value = 1;
2243 /* Easier than making that case work right. */
2244 if (is_integrable)
2246 /* In case this is a static function, note that it has been
2247 used. */
2248 if (! TREE_ADDRESSABLE (fndecl))
2249 (*lang_hooks.mark_addressable) (fndecl);
2250 is_integrable = 0;
2253 #else /* not PCC_STATIC_STRUCT_RETURN */
2255 struct_value_size = int_size_in_bytes (TREE_TYPE (exp));
2257 if (CALL_EXPR_HAS_RETURN_SLOT_ADDR (exp))
2259 /* The structure value address arg is already in actparms.
2260 Pull it out. It might be nice to just leave it there, but
2261 we need to set structure_value_addr. */
2262 tree return_arg = TREE_VALUE (actparms);
2263 actparms = TREE_CHAIN (actparms);
2264 structure_value_addr = expand_expr (return_arg, NULL_RTX,
2265 VOIDmode, EXPAND_NORMAL);
2267 else if (target && GET_CODE (target) == MEM)
2268 structure_value_addr = XEXP (target, 0);
2269 else
2271 /* For variable-sized objects, we must be called with a target
2272 specified. If we were to allocate space on the stack here,
2273 we would have no way of knowing when to free it. */
2274 rtx d = assign_temp (TREE_TYPE (exp), 1, 1, 1);
2276 mark_temp_addr_taken (d);
2277 structure_value_addr = XEXP (d, 0);
2278 target = 0;
2281 #endif /* not PCC_STATIC_STRUCT_RETURN */
2284 /* If called function is inline, try to integrate it. */
2286 if (is_integrable)
2288 rtx temp = try_to_integrate (fndecl, actparms, target,
2289 ignore, TREE_TYPE (exp),
2290 structure_value_addr);
2291 if (temp != (rtx) (size_t) - 1)
2292 return temp;
2295 /* Figure out the amount to which the stack should be aligned. */
2296 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
2297 if (fndecl)
2299 struct cgraph_rtl_info *i = cgraph_rtl_info (fndecl);
2300 if (i && i->preferred_incoming_stack_boundary)
2301 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
2304 /* Operand 0 is a pointer-to-function; get the type of the function. */
2305 funtype = TREE_TYPE (addr);
2306 if (! POINTER_TYPE_P (funtype))
2307 abort ();
2308 funtype = TREE_TYPE (funtype);
2310 /* Munge the tree to split complex arguments into their imaginary
2311 and real parts. */
2312 if (SPLIT_COMPLEX_ARGS)
2314 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
2315 actparms = split_complex_values (actparms);
2317 else
2318 type_arg_types = TYPE_ARG_TYPES (funtype);
2320 /* See if this is a call to a function that can return more than once
2321 or a call to longjmp or malloc. */
2322 flags |= special_function_p (fndecl, flags);
2324 if (flags & ECF_MAY_BE_ALLOCA)
2325 current_function_calls_alloca = 1;
2327 /* If struct_value_rtx is 0, it means pass the address
2328 as if it were an extra parameter. */
2329 if (structure_value_addr && struct_value_rtx == 0)
2331 /* If structure_value_addr is a REG other than
2332 virtual_outgoing_args_rtx, we can use always use it. If it
2333 is not a REG, we must always copy it into a register.
2334 If it is virtual_outgoing_args_rtx, we must copy it to another
2335 register in some cases. */
2336 rtx temp = (GET_CODE (structure_value_addr) != REG
2337 || (ACCUMULATE_OUTGOING_ARGS
2338 && stack_arg_under_construction
2339 && structure_value_addr == virtual_outgoing_args_rtx)
2340 ? copy_addr_to_reg (structure_value_addr)
2341 : structure_value_addr);
2343 actparms
2344 = tree_cons (error_mark_node,
2345 make_tree (build_pointer_type (TREE_TYPE (funtype)),
2346 temp),
2347 actparms);
2348 structure_value_addr_parm = 1;
2351 /* Count the arguments and set NUM_ACTUALS. */
2352 for (p = actparms, num_actuals = 0; p; p = TREE_CHAIN (p))
2353 num_actuals++;
2355 /* Compute number of named args.
2356 Normally, don't include the last named arg if anonymous args follow.
2357 We do include the last named arg if STRICT_ARGUMENT_NAMING is nonzero.
2358 (If no anonymous args follow, the result of list_length is actually
2359 one too large. This is harmless.)
2361 If PRETEND_OUTGOING_VARARGS_NAMED is set and STRICT_ARGUMENT_NAMING is
2362 zero, this machine will be able to place unnamed args that were
2363 passed in registers into the stack. So treat all args as named.
2364 This allows the insns emitting for a specific argument list to be
2365 independent of the function declaration.
2367 If PRETEND_OUTGOING_VARARGS_NAMED is not set, we do not have any
2368 reliable way to pass unnamed args in registers, so we must force
2369 them into memory. */
2371 if ((STRICT_ARGUMENT_NAMING
2372 || ! PRETEND_OUTGOING_VARARGS_NAMED)
2373 && type_arg_types != 0)
2374 n_named_args
2375 = (list_length (type_arg_types)
2376 /* Don't include the last named arg. */
2377 - (STRICT_ARGUMENT_NAMING ? 0 : 1)
2378 /* Count the struct value address, if it is passed as a parm. */
2379 + structure_value_addr_parm);
2380 else
2381 /* If we know nothing, treat all args as named. */
2382 n_named_args = num_actuals;
2384 /* Start updating where the next arg would go.
2386 On some machines (such as the PA) indirect calls have a different
2387 calling convention than normal calls. The last argument in
2388 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2389 or not. */
2390 INIT_CUMULATIVE_ARGS (args_so_far, funtype, NULL_RTX, fndecl);
2392 /* Make a vector to hold all the information about each arg. */
2393 args = (struct arg_data *) alloca (num_actuals * sizeof (struct arg_data));
2394 memset ((char *) args, 0, num_actuals * sizeof (struct arg_data));
2396 /* Build up entries in the ARGS array, compute the size of the
2397 arguments into ARGS_SIZE, etc. */
2398 initialize_argument_information (num_actuals, args, &args_size,
2399 n_named_args, actparms, fndecl,
2400 &args_so_far, reg_parm_stack_space,
2401 &old_stack_level, &old_pending_adj,
2402 &must_preallocate, &flags);
2404 if (args_size.var)
2406 /* If this function requires a variable-sized argument list, don't
2407 try to make a cse'able block for this call. We may be able to
2408 do this eventually, but it is too complicated to keep track of
2409 what insns go in the cse'able block and which don't. */
2411 flags &= ~ECF_LIBCALL_BLOCK;
2412 must_preallocate = 1;
2415 /* Now make final decision about preallocating stack space. */
2416 must_preallocate = finalize_must_preallocate (must_preallocate,
2417 num_actuals, args,
2418 &args_size);
2420 /* If the structure value address will reference the stack pointer, we
2421 must stabilize it. We don't need to do this if we know that we are
2422 not going to adjust the stack pointer in processing this call. */
2424 if (structure_value_addr
2425 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2426 || reg_mentioned_p (virtual_outgoing_args_rtx,
2427 structure_value_addr))
2428 && (args_size.var
2429 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2430 structure_value_addr = copy_to_reg (structure_value_addr);
2432 /* Tail calls can make things harder to debug, and we're traditionally
2433 pushed these optimizations into -O2. Don't try if we're already
2434 expanding a call, as that means we're an argument. Don't try if
2435 there's cleanups, as we know there's code to follow the call.
2437 If rtx_equal_function_value_matters is false, that means we've
2438 finished with regular parsing. Which means that some of the
2439 machinery we use to generate tail-calls is no longer in place.
2440 This is most often true of sjlj-exceptions, which we couldn't
2441 tail-call to anyway. */
2443 if (currently_expanding_call++ != 0
2444 || !flag_optimize_sibling_calls
2445 || !rtx_equal_function_value_matters
2446 || any_pending_cleanups (1)
2447 || args_size.var)
2448 try_tail_call = try_tail_recursion = 0;
2450 /* Tail recursion fails, when we are not dealing with recursive calls. */
2451 if (!try_tail_recursion
2452 || TREE_CODE (addr) != ADDR_EXPR
2453 || TREE_OPERAND (addr, 0) != current_function_decl)
2454 try_tail_recursion = 0;
2456 /* Rest of purposes for tail call optimizations to fail. */
2457 if (
2458 #ifdef HAVE_sibcall_epilogue
2459 !HAVE_sibcall_epilogue
2460 #else
2462 #endif
2463 || !try_tail_call
2464 /* Doing sibling call optimization needs some work, since
2465 structure_value_addr can be allocated on the stack.
2466 It does not seem worth the effort since few optimizable
2467 sibling calls will return a structure. */
2468 || structure_value_addr != NULL_RTX
2469 /* Check whether the target is able to optimize the call
2470 into a sibcall. */
2471 || !(*targetm.function_ok_for_sibcall) (fndecl, exp)
2472 /* Functions that do not return exactly once may not be sibcall
2473 optimized. */
2474 || (flags & (ECF_RETURNS_TWICE | ECF_LONGJMP | ECF_NORETURN))
2475 || TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr)))
2476 /* If the called function is nested in the current one, it might access
2477 some of the caller's arguments, but could clobber them beforehand if
2478 the argument areas are shared. */
2479 || (fndecl && decl_function_context (fndecl) == current_function_decl)
2480 /* If this function requires more stack slots than the current
2481 function, we cannot change it into a sibling call. */
2482 || args_size.constant > current_function_args_size
2483 /* If the callee pops its own arguments, then it must pop exactly
2484 the same number of arguments as the current function. */
2485 || RETURN_POPS_ARGS (fndecl, funtype, args_size.constant)
2486 != RETURN_POPS_ARGS (current_function_decl,
2487 TREE_TYPE (current_function_decl),
2488 current_function_args_size))
2489 try_tail_call = 0;
2491 if (try_tail_call || try_tail_recursion)
2493 int end, inc;
2494 actparms = NULL_TREE;
2495 /* Ok, we're going to give the tail call the old college try.
2496 This means we're going to evaluate the function arguments
2497 up to three times. There are two degrees of badness we can
2498 encounter, those that can be unsaved and those that can't.
2499 (See unsafe_for_reeval commentary for details.)
2501 Generate a new argument list. Pass safe arguments through
2502 unchanged. For the easy badness wrap them in UNSAVE_EXPRs.
2503 For hard badness, evaluate them now and put their resulting
2504 rtx in a temporary VAR_DECL.
2506 initialize_argument_information has ordered the array for the
2507 order to be pushed, and we must remember this when reconstructing
2508 the original argument order. */
2510 if (PUSH_ARGS_REVERSED)
2512 inc = 1;
2513 i = 0;
2514 end = num_actuals;
2516 else
2518 inc = -1;
2519 i = num_actuals - 1;
2520 end = -1;
2523 for (; i != end; i += inc)
2525 args[i].tree_value = fix_unsafe_tree (args[i].tree_value);
2526 /* We need to build actparms for optimize_tail_recursion. We can
2527 safely trash away TREE_PURPOSE, since it is unused by this
2528 function. */
2529 if (try_tail_recursion)
2530 actparms = tree_cons (NULL_TREE, args[i].tree_value, actparms);
2532 /* Do the same for the function address if it is an expression. */
2533 if (!fndecl)
2534 addr = fix_unsafe_tree (addr);
2535 /* Expanding one of those dangerous arguments could have added
2536 cleanups, but otherwise give it a whirl. */
2537 if (any_pending_cleanups (1))
2538 try_tail_call = try_tail_recursion = 0;
2541 /* Generate a tail recursion sequence when calling ourselves. */
2543 if (try_tail_recursion)
2545 /* We want to emit any pending stack adjustments before the tail
2546 recursion "call". That way we know any adjustment after the tail
2547 recursion call can be ignored if we indeed use the tail recursion
2548 call expansion. */
2549 int save_pending_stack_adjust = pending_stack_adjust;
2550 int save_stack_pointer_delta = stack_pointer_delta;
2552 /* Emit any queued insns now; otherwise they would end up in
2553 only one of the alternates. */
2554 emit_queue ();
2556 /* Use a new sequence to hold any RTL we generate. We do not even
2557 know if we will use this RTL yet. The final decision can not be
2558 made until after RTL generation for the entire function is
2559 complete. */
2560 start_sequence ();
2561 /* If expanding any of the arguments creates cleanups, we can't
2562 do a tailcall. So, we'll need to pop the pending cleanups
2563 list. If, however, all goes well, and there are no cleanups
2564 then the call to expand_start_target_temps will have no
2565 effect. */
2566 expand_start_target_temps ();
2567 if (optimize_tail_recursion (actparms, get_last_insn ()))
2569 if (any_pending_cleanups (1))
2570 try_tail_call = try_tail_recursion = 0;
2571 else
2572 tail_recursion_insns = get_insns ();
2574 expand_end_target_temps ();
2575 end_sequence ();
2577 /* Restore the original pending stack adjustment for the sibling and
2578 normal call cases below. */
2579 pending_stack_adjust = save_pending_stack_adjust;
2580 stack_pointer_delta = save_stack_pointer_delta;
2583 if (profile_arc_flag && (flags & ECF_FORK_OR_EXEC))
2585 /* A fork duplicates the profile information, and an exec discards
2586 it. We can't rely on fork/exec to be paired. So write out the
2587 profile information we have gathered so far, and clear it. */
2588 /* ??? When Linux's __clone is called with CLONE_VM set, profiling
2589 is subject to race conditions, just as with multithreaded
2590 programs. */
2592 emit_library_call (gcov_flush_libfunc, LCT_ALWAYS_RETURN, VOIDmode, 0);
2595 /* Ensure current function's preferred stack boundary is at least
2596 what we need. We don't have to increase alignment for recursive
2597 functions. */
2598 if (cfun->preferred_stack_boundary < preferred_stack_boundary
2599 && fndecl != current_function_decl)
2600 cfun->preferred_stack_boundary = preferred_stack_boundary;
2601 if (fndecl == current_function_decl)
2602 cfun->recursive_call_emit = true;
2604 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
2606 function_call_count++;
2608 /* We want to make two insn chains; one for a sibling call, the other
2609 for a normal call. We will select one of the two chains after
2610 initial RTL generation is complete. */
2611 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
2613 int sibcall_failure = 0;
2614 /* We want to emit any pending stack adjustments before the tail
2615 recursion "call". That way we know any adjustment after the tail
2616 recursion call can be ignored if we indeed use the tail recursion
2617 call expansion. */
2618 int save_pending_stack_adjust = 0;
2619 int save_stack_pointer_delta = 0;
2620 rtx insns;
2621 rtx before_call, next_arg_reg;
2623 if (pass == 0)
2625 /* Emit any queued insns now; otherwise they would end up in
2626 only one of the alternates. */
2627 emit_queue ();
2629 /* State variables we need to save and restore between
2630 iterations. */
2631 save_pending_stack_adjust = pending_stack_adjust;
2632 save_stack_pointer_delta = stack_pointer_delta;
2634 if (pass)
2635 flags &= ~ECF_SIBCALL;
2636 else
2637 flags |= ECF_SIBCALL;
2639 /* Other state variables that we must reinitialize each time
2640 through the loop (that are not initialized by the loop itself). */
2641 argblock = 0;
2642 call_fusage = 0;
2644 /* Start a new sequence for the normal call case.
2646 From this point on, if the sibling call fails, we want to set
2647 sibcall_failure instead of continuing the loop. */
2648 start_sequence ();
2650 if (pass == 0)
2652 /* We know at this point that there are not currently any
2653 pending cleanups. If, however, in the process of evaluating
2654 the arguments we were to create some, we'll need to be
2655 able to get rid of them. */
2656 expand_start_target_temps ();
2659 /* Don't let pending stack adjusts add up to too much.
2660 Also, do all pending adjustments now if there is any chance
2661 this might be a call to alloca or if we are expanding a sibling
2662 call sequence or if we are calling a function that is to return
2663 with stack pointer depressed. */
2664 if (pending_stack_adjust >= 32
2665 || (pending_stack_adjust > 0
2666 && (flags & (ECF_MAY_BE_ALLOCA | ECF_SP_DEPRESSED)))
2667 || pass == 0)
2668 do_pending_stack_adjust ();
2670 /* When calling a const function, we must pop the stack args right away,
2671 so that the pop is deleted or moved with the call. */
2672 if (pass && (flags & ECF_LIBCALL_BLOCK))
2673 NO_DEFER_POP;
2675 #ifdef FINAL_REG_PARM_STACK_SPACE
2676 reg_parm_stack_space = FINAL_REG_PARM_STACK_SPACE (args_size.constant,
2677 args_size.var);
2678 #endif
2679 /* Precompute any arguments as needed. */
2680 if (pass)
2681 precompute_arguments (flags, num_actuals, args);
2683 /* Now we are about to start emitting insns that can be deleted
2684 if a libcall is deleted. */
2685 if (pass && (flags & (ECF_LIBCALL_BLOCK | ECF_MALLOC)))
2686 start_sequence ();
2688 adjusted_args_size = args_size;
2689 /* Compute the actual size of the argument block required. The variable
2690 and constant sizes must be combined, the size may have to be rounded,
2691 and there may be a minimum required size. When generating a sibcall
2692 pattern, do not round up, since we'll be re-using whatever space our
2693 caller provided. */
2694 unadjusted_args_size
2695 = compute_argument_block_size (reg_parm_stack_space,
2696 &adjusted_args_size,
2697 (pass == 0 ? 0
2698 : preferred_stack_boundary));
2700 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
2702 /* The argument block when performing a sibling call is the
2703 incoming argument block. */
2704 if (pass == 0)
2706 argblock = virtual_incoming_args_rtx;
2707 argblock
2708 #ifdef STACK_GROWS_DOWNWARD
2709 = plus_constant (argblock, current_function_pretend_args_size);
2710 #else
2711 = plus_constant (argblock, -current_function_pretend_args_size);
2712 #endif
2713 stored_args_map = sbitmap_alloc (args_size.constant);
2714 sbitmap_zero (stored_args_map);
2717 /* If we have no actual push instructions, or shouldn't use them,
2718 make space for all args right now. */
2719 else if (adjusted_args_size.var != 0)
2721 if (old_stack_level == 0)
2723 emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
2724 old_stack_pointer_delta = stack_pointer_delta;
2725 old_pending_adj = pending_stack_adjust;
2726 pending_stack_adjust = 0;
2727 /* stack_arg_under_construction says whether a stack arg is
2728 being constructed at the old stack level. Pushing the stack
2729 gets a clean outgoing argument block. */
2730 old_stack_arg_under_construction = stack_arg_under_construction;
2731 stack_arg_under_construction = 0;
2733 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
2735 else
2737 /* Note that we must go through the motions of allocating an argument
2738 block even if the size is zero because we may be storing args
2739 in the area reserved for register arguments, which may be part of
2740 the stack frame. */
2742 int needed = adjusted_args_size.constant;
2744 /* Store the maximum argument space used. It will be pushed by
2745 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
2746 checking). */
2748 if (needed > current_function_outgoing_args_size)
2749 current_function_outgoing_args_size = needed;
2751 if (must_preallocate)
2753 if (ACCUMULATE_OUTGOING_ARGS)
2755 /* Since the stack pointer will never be pushed, it is
2756 possible for the evaluation of a parm to clobber
2757 something we have already written to the stack.
2758 Since most function calls on RISC machines do not use
2759 the stack, this is uncommon, but must work correctly.
2761 Therefore, we save any area of the stack that was already
2762 written and that we are using. Here we set up to do this
2763 by making a new stack usage map from the old one. The
2764 actual save will be done by store_one_arg.
2766 Another approach might be to try to reorder the argument
2767 evaluations to avoid this conflicting stack usage. */
2769 #ifndef OUTGOING_REG_PARM_STACK_SPACE
2770 /* Since we will be writing into the entire argument area,
2771 the map must be allocated for its entire size, not just
2772 the part that is the responsibility of the caller. */
2773 needed += reg_parm_stack_space;
2774 #endif
2776 #ifdef ARGS_GROW_DOWNWARD
2777 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2778 needed + 1);
2779 #else
2780 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2781 needed);
2782 #endif
2783 stack_usage_map
2784 = (char *) alloca (highest_outgoing_arg_in_use);
2786 if (initial_highest_arg_in_use)
2787 memcpy (stack_usage_map, initial_stack_usage_map,
2788 initial_highest_arg_in_use);
2790 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
2791 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
2792 (highest_outgoing_arg_in_use
2793 - initial_highest_arg_in_use));
2794 needed = 0;
2796 /* The address of the outgoing argument list must not be
2797 copied to a register here, because argblock would be left
2798 pointing to the wrong place after the call to
2799 allocate_dynamic_stack_space below. */
2801 argblock = virtual_outgoing_args_rtx;
2803 else
2805 if (inhibit_defer_pop == 0)
2807 /* Try to reuse some or all of the pending_stack_adjust
2808 to get this space. */
2809 needed
2810 = (combine_pending_stack_adjustment_and_call
2811 (unadjusted_args_size,
2812 &adjusted_args_size,
2813 preferred_unit_stack_boundary));
2815 /* combine_pending_stack_adjustment_and_call computes
2816 an adjustment before the arguments are allocated.
2817 Account for them and see whether or not the stack
2818 needs to go up or down. */
2819 needed = unadjusted_args_size - needed;
2821 if (needed < 0)
2823 /* We're releasing stack space. */
2824 /* ??? We can avoid any adjustment at all if we're
2825 already aligned. FIXME. */
2826 pending_stack_adjust = -needed;
2827 do_pending_stack_adjust ();
2828 needed = 0;
2830 else
2831 /* We need to allocate space. We'll do that in
2832 push_block below. */
2833 pending_stack_adjust = 0;
2836 /* Special case this because overhead of `push_block' in
2837 this case is non-trivial. */
2838 if (needed == 0)
2839 argblock = virtual_outgoing_args_rtx;
2840 else
2842 argblock = push_block (GEN_INT (needed), 0, 0);
2843 #ifdef ARGS_GROW_DOWNWARD
2844 argblock = plus_constant (argblock, needed);
2845 #endif
2848 /* We only really need to call `copy_to_reg' in the case
2849 where push insns are going to be used to pass ARGBLOCK
2850 to a function call in ARGS. In that case, the stack
2851 pointer changes value from the allocation point to the
2852 call point, and hence the value of
2853 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
2854 as well always do it. */
2855 argblock = copy_to_reg (argblock);
2860 if (ACCUMULATE_OUTGOING_ARGS)
2862 /* The save/restore code in store_one_arg handles all
2863 cases except one: a constructor call (including a C
2864 function returning a BLKmode struct) to initialize
2865 an argument. */
2866 if (stack_arg_under_construction)
2868 #ifndef OUTGOING_REG_PARM_STACK_SPACE
2869 rtx push_size = GEN_INT (reg_parm_stack_space
2870 + adjusted_args_size.constant);
2871 #else
2872 rtx push_size = GEN_INT (adjusted_args_size.constant);
2873 #endif
2874 if (old_stack_level == 0)
2876 emit_stack_save (SAVE_BLOCK, &old_stack_level,
2877 NULL_RTX);
2878 old_stack_pointer_delta = stack_pointer_delta;
2879 old_pending_adj = pending_stack_adjust;
2880 pending_stack_adjust = 0;
2881 /* stack_arg_under_construction says whether a stack
2882 arg is being constructed at the old stack level.
2883 Pushing the stack gets a clean outgoing argument
2884 block. */
2885 old_stack_arg_under_construction
2886 = stack_arg_under_construction;
2887 stack_arg_under_construction = 0;
2888 /* Make a new map for the new argument list. */
2889 stack_usage_map = (char *)
2890 alloca (highest_outgoing_arg_in_use);
2891 memset (stack_usage_map, 0, highest_outgoing_arg_in_use);
2892 highest_outgoing_arg_in_use = 0;
2894 allocate_dynamic_stack_space (push_size, NULL_RTX,
2895 BITS_PER_UNIT);
2898 /* If argument evaluation might modify the stack pointer,
2899 copy the address of the argument list to a register. */
2900 for (i = 0; i < num_actuals; i++)
2901 if (args[i].pass_on_stack)
2903 argblock = copy_addr_to_reg (argblock);
2904 break;
2908 compute_argument_addresses (args, argblock, num_actuals);
2910 /* If we push args individually in reverse order, perform stack alignment
2911 before the first push (the last arg). */
2912 if (PUSH_ARGS_REVERSED && argblock == 0
2913 && adjusted_args_size.constant != unadjusted_args_size)
2915 /* When the stack adjustment is pending, we get better code
2916 by combining the adjustments. */
2917 if (pending_stack_adjust
2918 && ! (flags & ECF_LIBCALL_BLOCK)
2919 && ! inhibit_defer_pop)
2921 pending_stack_adjust
2922 = (combine_pending_stack_adjustment_and_call
2923 (unadjusted_args_size,
2924 &adjusted_args_size,
2925 preferred_unit_stack_boundary));
2926 do_pending_stack_adjust ();
2928 else if (argblock == 0)
2929 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
2930 - unadjusted_args_size));
2932 /* Now that the stack is properly aligned, pops can't safely
2933 be deferred during the evaluation of the arguments. */
2934 NO_DEFER_POP;
2936 funexp = rtx_for_function_call (fndecl, addr);
2938 /* Figure out the register where the value, if any, will come back. */
2939 valreg = 0;
2940 if (TYPE_MODE (TREE_TYPE (exp)) != VOIDmode
2941 && ! structure_value_addr)
2943 if (pcc_struct_value)
2944 valreg = hard_function_value (build_pointer_type (TREE_TYPE (exp)),
2945 fndecl, (pass == 0));
2946 else
2947 valreg = hard_function_value (TREE_TYPE (exp), fndecl, (pass == 0));
2950 /* Precompute all register parameters. It isn't safe to compute anything
2951 once we have started filling any specific hard regs. */
2952 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
2954 #ifdef REG_PARM_STACK_SPACE
2955 /* Save the fixed argument area if it's part of the caller's frame and
2956 is clobbered by argument setup for this call. */
2957 if (ACCUMULATE_OUTGOING_ARGS && pass)
2958 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
2959 &low_to_save, &high_to_save);
2960 #endif
2962 /* Now store (and compute if necessary) all non-register parms.
2963 These come before register parms, since they can require block-moves,
2964 which could clobber the registers used for register parms.
2965 Parms which have partial registers are not stored here,
2966 but we do preallocate space here if they want that. */
2968 for (i = 0; i < num_actuals; i++)
2969 if (args[i].reg == 0 || args[i].pass_on_stack)
2971 rtx before_arg = get_last_insn ();
2973 if (store_one_arg (&args[i], argblock, flags,
2974 adjusted_args_size.var != 0,
2975 reg_parm_stack_space)
2976 || (pass == 0
2977 && check_sibcall_argument_overlap (before_arg,
2978 &args[i], 1)))
2979 sibcall_failure = 1;
2982 /* If we have a parm that is passed in registers but not in memory
2983 and whose alignment does not permit a direct copy into registers,
2984 make a group of pseudos that correspond to each register that we
2985 will later fill. */
2986 if (STRICT_ALIGNMENT)
2987 store_unaligned_arguments_into_pseudos (args, num_actuals);
2989 /* Now store any partially-in-registers parm.
2990 This is the last place a block-move can happen. */
2991 if (reg_parm_seen)
2992 for (i = 0; i < num_actuals; i++)
2993 if (args[i].partial != 0 && ! args[i].pass_on_stack)
2995 rtx before_arg = get_last_insn ();
2997 if (store_one_arg (&args[i], argblock, flags,
2998 adjusted_args_size.var != 0,
2999 reg_parm_stack_space)
3000 || (pass == 0
3001 && check_sibcall_argument_overlap (before_arg,
3002 &args[i], 1)))
3003 sibcall_failure = 1;
3006 /* If we pushed args in forward order, perform stack alignment
3007 after pushing the last arg. */
3008 if (!PUSH_ARGS_REVERSED && argblock == 0)
3009 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
3010 - unadjusted_args_size));
3012 /* If register arguments require space on the stack and stack space
3013 was not preallocated, allocate stack space here for arguments
3014 passed in registers. */
3015 #ifdef OUTGOING_REG_PARM_STACK_SPACE
3016 if (!ACCUMULATE_OUTGOING_ARGS
3017 && must_preallocate == 0 && reg_parm_stack_space > 0)
3018 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
3019 #endif
3021 /* Pass the function the address in which to return a
3022 structure value. */
3023 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3025 emit_move_insn (struct_value_rtx,
3026 force_reg (Pmode,
3027 force_operand (structure_value_addr,
3028 NULL_RTX)));
3030 if (GET_CODE (struct_value_rtx) == REG)
3031 use_reg (&call_fusage, struct_value_rtx);
3034 funexp = prepare_call_address (funexp, fndecl, &call_fusage,
3035 reg_parm_seen, pass == 0);
3037 load_register_parameters (args, num_actuals, &call_fusage, flags,
3038 pass == 0, &sibcall_failure);
3040 /* Perform postincrements before actually calling the function. */
3041 emit_queue ();
3043 /* Save a pointer to the last insn before the call, so that we can
3044 later safely search backwards to find the CALL_INSN. */
3045 before_call = get_last_insn ();
3047 /* Set up next argument register. For sibling calls on machines
3048 with register windows this should be the incoming register. */
3049 #ifdef FUNCTION_INCOMING_ARG
3050 if (pass == 0)
3051 next_arg_reg = FUNCTION_INCOMING_ARG (args_so_far, VOIDmode,
3052 void_type_node, 1);
3053 else
3054 #endif
3055 next_arg_reg = FUNCTION_ARG (args_so_far, VOIDmode,
3056 void_type_node, 1);
3058 /* All arguments and registers used for the call must be set up by
3059 now! */
3061 /* Stack must be properly aligned now. */
3062 if (pass && stack_pointer_delta % preferred_unit_stack_boundary)
3063 abort ();
3065 /* Generate the actual call instruction. */
3066 emit_call_1 (funexp, fndecl, funtype, unadjusted_args_size,
3067 adjusted_args_size.constant, struct_value_size,
3068 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
3069 flags, & args_so_far);
3071 /* If call is cse'able, make appropriate pair of reg-notes around it.
3072 Test valreg so we don't crash; may safely ignore `const'
3073 if return type is void. Disable for PARALLEL return values, because
3074 we have no way to move such values into a pseudo register. */
3075 if (pass && (flags & ECF_LIBCALL_BLOCK))
3077 rtx insns;
3079 if (valreg == 0 || GET_CODE (valreg) == PARALLEL)
3081 insns = get_insns ();
3082 end_sequence ();
3083 emit_insn (insns);
3085 else
3087 rtx note = 0;
3088 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3090 /* Mark the return value as a pointer if needed. */
3091 if (TREE_CODE (TREE_TYPE (exp)) == POINTER_TYPE)
3092 mark_reg_pointer (temp,
3093 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp))));
3095 /* Construct an "equal form" for the value which mentions all the
3096 arguments in order as well as the function name. */
3097 for (i = 0; i < num_actuals; i++)
3098 note = gen_rtx_EXPR_LIST (VOIDmode,
3099 args[i].initial_value, note);
3100 note = gen_rtx_EXPR_LIST (VOIDmode, funexp, note);
3102 insns = get_insns ();
3103 end_sequence ();
3105 if (flags & ECF_PURE)
3106 note = gen_rtx_EXPR_LIST (VOIDmode,
3107 gen_rtx_USE (VOIDmode,
3108 gen_rtx_MEM (BLKmode,
3109 gen_rtx_SCRATCH (VOIDmode))),
3110 note);
3112 emit_libcall_block (insns, temp, valreg, note);
3114 valreg = temp;
3117 else if (pass && (flags & ECF_MALLOC))
3119 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3120 rtx last, insns;
3122 /* The return value from a malloc-like function is a pointer. */
3123 if (TREE_CODE (TREE_TYPE (exp)) == POINTER_TYPE)
3124 mark_reg_pointer (temp, BIGGEST_ALIGNMENT);
3126 emit_move_insn (temp, valreg);
3128 /* The return value from a malloc-like function can not alias
3129 anything else. */
3130 last = get_last_insn ();
3131 REG_NOTES (last) =
3132 gen_rtx_EXPR_LIST (REG_NOALIAS, temp, REG_NOTES (last));
3134 /* Write out the sequence. */
3135 insns = get_insns ();
3136 end_sequence ();
3137 emit_insn (insns);
3138 valreg = temp;
3141 /* For calls to `setjmp', etc., inform flow.c it should complain
3142 if nonvolatile values are live. For functions that cannot return,
3143 inform flow that control does not fall through. */
3145 if ((flags & (ECF_NORETURN | ECF_LONGJMP)) || pass == 0)
3147 /* The barrier must be emitted
3148 immediately after the CALL_INSN. Some ports emit more
3149 than just a CALL_INSN above, so we must search for it here. */
3151 rtx last = get_last_insn ();
3152 while (GET_CODE (last) != CALL_INSN)
3154 last = PREV_INSN (last);
3155 /* There was no CALL_INSN? */
3156 if (last == before_call)
3157 abort ();
3160 emit_barrier_after (last);
3163 if (flags & ECF_LONGJMP)
3164 current_function_calls_longjmp = 1;
3166 /* If value type not void, return an rtx for the value. */
3168 /* If there are cleanups to be called, don't use a hard reg as target.
3169 We need to double check this and see if it matters anymore. */
3170 if (any_pending_cleanups (1))
3172 if (target && REG_P (target)
3173 && REGNO (target) < FIRST_PSEUDO_REGISTER)
3174 target = 0;
3175 sibcall_failure = 1;
3178 if (TYPE_MODE (TREE_TYPE (exp)) == VOIDmode
3179 || ignore)
3180 target = const0_rtx;
3181 else if (structure_value_addr)
3183 if (target == 0 || GET_CODE (target) != MEM)
3185 target
3186 = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)),
3187 memory_address (TYPE_MODE (TREE_TYPE (exp)),
3188 structure_value_addr));
3189 set_mem_attributes (target, exp, 1);
3192 else if (pcc_struct_value)
3194 /* This is the special C++ case where we need to
3195 know what the true target was. We take care to
3196 never use this value more than once in one expression. */
3197 target = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)),
3198 copy_to_reg (valreg));
3199 set_mem_attributes (target, exp, 1);
3201 /* Handle calls that return values in multiple non-contiguous locations.
3202 The Irix 6 ABI has examples of this. */
3203 else if (GET_CODE (valreg) == PARALLEL)
3205 if (target == 0)
3207 /* This will only be assigned once, so it can be readonly. */
3208 tree nt = build_qualified_type (TREE_TYPE (exp),
3209 (TYPE_QUALS (TREE_TYPE (exp))
3210 | TYPE_QUAL_CONST));
3212 target = assign_temp (nt, 0, 1, 1);
3213 preserve_temp_slots (target);
3216 if (! rtx_equal_p (target, valreg))
3217 emit_group_store (target, valreg,
3218 int_size_in_bytes (TREE_TYPE (exp)));
3220 /* We can not support sibling calls for this case. */
3221 sibcall_failure = 1;
3223 else if (target
3224 && GET_MODE (target) == TYPE_MODE (TREE_TYPE (exp))
3225 && GET_MODE (target) == GET_MODE (valreg))
3227 /* TARGET and VALREG cannot be equal at this point because the
3228 latter would not have REG_FUNCTION_VALUE_P true, while the
3229 former would if it were referring to the same register.
3231 If they refer to the same register, this move will be a no-op,
3232 except when function inlining is being done. */
3233 emit_move_insn (target, valreg);
3235 /* If we are setting a MEM, this code must be executed. Since it is
3236 emitted after the call insn, sibcall optimization cannot be
3237 performed in that case. */
3238 if (GET_CODE (target) == MEM)
3239 sibcall_failure = 1;
3241 else if (TYPE_MODE (TREE_TYPE (exp)) == BLKmode)
3243 target = copy_blkmode_from_reg (target, valreg, TREE_TYPE (exp));
3245 /* We can not support sibling calls for this case. */
3246 sibcall_failure = 1;
3248 else
3249 target = copy_to_reg (valreg);
3251 #ifdef PROMOTE_FUNCTION_RETURN
3252 /* If we promoted this return value, make the proper SUBREG. TARGET
3253 might be const0_rtx here, so be careful. */
3254 if (GET_CODE (target) == REG
3255 && TYPE_MODE (TREE_TYPE (exp)) != BLKmode
3256 && GET_MODE (target) != TYPE_MODE (TREE_TYPE (exp)))
3258 tree type = TREE_TYPE (exp);
3259 int unsignedp = TREE_UNSIGNED (type);
3260 int offset = 0;
3262 /* If we don't promote as expected, something is wrong. */
3263 if (GET_MODE (target)
3264 != promote_mode (type, TYPE_MODE (type), &unsignedp, 1))
3265 abort ();
3267 if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
3268 && GET_MODE_SIZE (GET_MODE (target))
3269 > GET_MODE_SIZE (TYPE_MODE (type)))
3271 offset = GET_MODE_SIZE (GET_MODE (target))
3272 - GET_MODE_SIZE (TYPE_MODE (type));
3273 if (! BYTES_BIG_ENDIAN)
3274 offset = (offset / UNITS_PER_WORD) * UNITS_PER_WORD;
3275 else if (! WORDS_BIG_ENDIAN)
3276 offset %= UNITS_PER_WORD;
3278 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
3279 SUBREG_PROMOTED_VAR_P (target) = 1;
3280 SUBREG_PROMOTED_UNSIGNED_SET (target, unsignedp);
3282 #endif
3284 /* If size of args is variable or this was a constructor call for a stack
3285 argument, restore saved stack-pointer value. */
3287 if (old_stack_level && ! (flags & ECF_SP_DEPRESSED))
3289 emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX);
3290 stack_pointer_delta = old_stack_pointer_delta;
3291 pending_stack_adjust = old_pending_adj;
3292 stack_arg_under_construction = old_stack_arg_under_construction;
3293 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3294 stack_usage_map = initial_stack_usage_map;
3295 sibcall_failure = 1;
3297 else if (ACCUMULATE_OUTGOING_ARGS && pass)
3299 #ifdef REG_PARM_STACK_SPACE
3300 if (save_area)
3301 restore_fixed_argument_area (save_area, argblock,
3302 high_to_save, low_to_save);
3303 #endif
3305 /* If we saved any argument areas, restore them. */
3306 for (i = 0; i < num_actuals; i++)
3307 if (args[i].save_area)
3309 enum machine_mode save_mode = GET_MODE (args[i].save_area);
3310 rtx stack_area
3311 = gen_rtx_MEM (save_mode,
3312 memory_address (save_mode,
3313 XEXP (args[i].stack_slot, 0)));
3315 if (save_mode != BLKmode)
3316 emit_move_insn (stack_area, args[i].save_area);
3317 else
3318 emit_block_move (stack_area, args[i].save_area,
3319 GEN_INT (args[i].locate.size.constant),
3320 BLOCK_OP_CALL_PARM);
3323 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3324 stack_usage_map = initial_stack_usage_map;
3327 /* If this was alloca, record the new stack level for nonlocal gotos.
3328 Check for the handler slots since we might not have a save area
3329 for non-local gotos. */
3331 if ((flags & ECF_MAY_BE_ALLOCA) && nonlocal_goto_handler_slots != 0)
3332 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level, NULL_RTX);
3334 /* Free up storage we no longer need. */
3335 for (i = 0; i < num_actuals; ++i)
3336 if (args[i].aligned_regs)
3337 free (args[i].aligned_regs);
3339 if (pass == 0)
3341 /* Undo the fake expand_start_target_temps we did earlier. If
3342 there had been any cleanups created, we've already set
3343 sibcall_failure. */
3344 expand_end_target_temps ();
3347 /* If this function is returning into a memory location marked as
3348 readonly, it means it is initializing that location. We normally treat
3349 functions as not clobbering such locations, so we need to specify that
3350 this one does. We do this by adding the appropriate CLOBBER to the
3351 CALL_INSN function usage list. This cannot be done by emitting a
3352 standalone CLOBBER after the call because the latter would be ignored
3353 by at least the delay slot scheduling pass. We do this now instead of
3354 adding to call_fusage before the call to emit_call_1 because TARGET
3355 may be modified in the meantime. */
3356 if (structure_value_addr != 0 && target != 0
3357 && GET_CODE (target) == MEM && RTX_UNCHANGING_P (target))
3358 add_function_usage_to
3359 (last_call_insn (),
3360 gen_rtx_EXPR_LIST (VOIDmode, gen_rtx_CLOBBER (VOIDmode, target),
3361 NULL_RTX));
3363 insns = get_insns ();
3364 end_sequence ();
3366 if (pass == 0)
3368 tail_call_insns = insns;
3370 /* Restore the pending stack adjustment now that we have
3371 finished generating the sibling call sequence. */
3373 pending_stack_adjust = save_pending_stack_adjust;
3374 stack_pointer_delta = save_stack_pointer_delta;
3376 /* Prepare arg structure for next iteration. */
3377 for (i = 0; i < num_actuals; i++)
3379 args[i].value = 0;
3380 args[i].aligned_regs = 0;
3381 args[i].stack = 0;
3384 sbitmap_free (stored_args_map);
3386 else
3388 normal_call_insns = insns;
3390 /* Verify that we've deallocated all the stack we used. */
3391 if (old_stack_allocated !=
3392 stack_pointer_delta - pending_stack_adjust)
3393 abort ();
3396 /* If something prevents making this a sibling call,
3397 zero out the sequence. */
3398 if (sibcall_failure)
3399 tail_call_insns = NULL_RTX;
3402 /* The function optimize_sibling_and_tail_recursive_calls doesn't
3403 handle CALL_PLACEHOLDERs inside other CALL_PLACEHOLDERs. This
3404 can happen if the arguments to this function call an inline
3405 function who's expansion contains another CALL_PLACEHOLDER.
3407 If there are any C_Ps in any of these sequences, replace them
3408 with their normal call. */
3410 for (insn = normal_call_insns; insn; insn = NEXT_INSN (insn))
3411 if (GET_CODE (insn) == CALL_INSN
3412 && GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
3413 replace_call_placeholder (insn, sibcall_use_normal);
3415 for (insn = tail_call_insns; insn; insn = NEXT_INSN (insn))
3416 if (GET_CODE (insn) == CALL_INSN
3417 && GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
3418 replace_call_placeholder (insn, sibcall_use_normal);
3420 for (insn = tail_recursion_insns; insn; insn = NEXT_INSN (insn))
3421 if (GET_CODE (insn) == CALL_INSN
3422 && GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
3423 replace_call_placeholder (insn, sibcall_use_normal);
3425 /* If this was a potential tail recursion site, then emit a
3426 CALL_PLACEHOLDER with the normal and the tail recursion streams.
3427 One of them will be selected later. */
3428 if (tail_recursion_insns || tail_call_insns)
3430 /* The tail recursion label must be kept around. We could expose
3431 its use in the CALL_PLACEHOLDER, but that creates unwanted edges
3432 and makes determining true tail recursion sites difficult.
3434 So we set LABEL_PRESERVE_P here, then clear it when we select
3435 one of the call sequences after rtl generation is complete. */
3436 if (tail_recursion_insns)
3437 LABEL_PRESERVE_P (tail_recursion_label) = 1;
3438 emit_call_insn (gen_rtx_CALL_PLACEHOLDER (VOIDmode, normal_call_insns,
3439 tail_call_insns,
3440 tail_recursion_insns,
3441 tail_recursion_label));
3443 else
3444 emit_insn (normal_call_insns);
3446 currently_expanding_call--;
3448 /* If this function returns with the stack pointer depressed, ensure
3449 this block saves and restores the stack pointer, show it was
3450 changed, and adjust for any outgoing arg space. */
3451 if (flags & ECF_SP_DEPRESSED)
3453 clear_pending_stack_adjust ();
3454 emit_insn (gen_rtx (CLOBBER, VOIDmode, stack_pointer_rtx));
3455 emit_move_insn (virtual_stack_dynamic_rtx, stack_pointer_rtx);
3456 save_stack_pointer ();
3459 return target;
3462 /* Traverse an argument list in VALUES and expand all complex
3463 arguments into their components. */
3464 tree
3465 split_complex_values (tree values)
3467 tree p;
3469 values = copy_list (values);
3471 for (p = values; p; p = TREE_CHAIN (p))
3473 tree complex_value = TREE_VALUE (p);
3474 tree complex_type;
3476 complex_type = TREE_TYPE (complex_value);
3477 if (!complex_type)
3478 continue;
3480 if (TREE_CODE (complex_type) == COMPLEX_TYPE)
3482 tree subtype;
3483 tree real, imag, next;
3485 subtype = TREE_TYPE (complex_type);
3486 complex_value = save_expr (complex_value);
3487 real = build1 (REALPART_EXPR, subtype, complex_value);
3488 imag = build1 (IMAGPART_EXPR, subtype, complex_value);
3490 TREE_VALUE (p) = real;
3491 next = TREE_CHAIN (p);
3492 imag = build_tree_list (NULL_TREE, imag);
3493 TREE_CHAIN (p) = imag;
3494 TREE_CHAIN (imag) = next;
3496 /* Skip the newly created node. */
3497 p = TREE_CHAIN (p);
3501 return values;
3504 /* Traverse a list of TYPES and expand all complex types into their
3505 components. */
3506 tree
3507 split_complex_types (tree types)
3509 tree p;
3511 types = copy_list (types);
3513 for (p = types; p; p = TREE_CHAIN (p))
3515 tree complex_type = TREE_VALUE (p);
3517 if (TREE_CODE (complex_type) == COMPLEX_TYPE)
3519 tree next, imag;
3521 /* Rewrite complex type with component type. */
3522 TREE_VALUE (p) = TREE_TYPE (complex_type);
3523 next = TREE_CHAIN (p);
3525 /* Add another component type for the imaginary part. */
3526 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
3527 TREE_CHAIN (p) = imag;
3528 TREE_CHAIN (imag) = next;
3530 /* Skip the newly created node. */
3531 p = TREE_CHAIN (p);
3535 return types;
3538 /* Output a library call to function FUN (a SYMBOL_REF rtx).
3539 The RETVAL parameter specifies whether return value needs to be saved, other
3540 parameters are documented in the emit_library_call function below. */
3542 static rtx
3543 emit_library_call_value_1 (retval, orgfun, value, fn_type, outmode, nargs, p)
3544 int retval;
3545 rtx orgfun;
3546 rtx value;
3547 enum libcall_type fn_type;
3548 enum machine_mode outmode;
3549 int nargs;
3550 va_list p;
3552 /* Total size in bytes of all the stack-parms scanned so far. */
3553 struct args_size args_size;
3554 /* Size of arguments before any adjustments (such as rounding). */
3555 struct args_size original_args_size;
3556 int argnum;
3557 rtx fun;
3558 int inc;
3559 int count;
3560 rtx argblock = 0;
3561 CUMULATIVE_ARGS args_so_far;
3562 struct arg
3564 rtx value;
3565 enum machine_mode mode;
3566 rtx reg;
3567 int partial;
3568 struct locate_and_pad_arg_data locate;
3569 rtx save_area;
3571 struct arg *argvec;
3572 int old_inhibit_defer_pop = inhibit_defer_pop;
3573 rtx call_fusage = 0;
3574 rtx mem_value = 0;
3575 rtx valreg;
3576 int pcc_struct_value = 0;
3577 int struct_value_size = 0;
3578 int flags;
3579 int reg_parm_stack_space = 0;
3580 int needed;
3581 rtx before_call;
3582 tree tfom; /* type_for_mode (outmode, 0) */
3584 #ifdef REG_PARM_STACK_SPACE
3585 /* Define the boundary of the register parm stack space that needs to be
3586 save, if any. */
3587 int low_to_save, high_to_save;
3588 rtx save_area = 0; /* Place that it is saved. */
3589 #endif
3591 /* Size of the stack reserved for parameter registers. */
3592 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3593 char *initial_stack_usage_map = stack_usage_map;
3595 #ifdef REG_PARM_STACK_SPACE
3596 #ifdef MAYBE_REG_PARM_STACK_SPACE
3597 reg_parm_stack_space = MAYBE_REG_PARM_STACK_SPACE;
3598 #else
3599 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3600 #endif
3601 #endif
3603 /* By default, library functions can not throw. */
3604 flags = ECF_NOTHROW;
3606 switch (fn_type)
3608 case LCT_NORMAL:
3609 break;
3610 case LCT_CONST:
3611 flags |= ECF_CONST;
3612 break;
3613 case LCT_PURE:
3614 flags |= ECF_PURE;
3615 break;
3616 case LCT_CONST_MAKE_BLOCK:
3617 flags |= ECF_CONST | ECF_LIBCALL_BLOCK;
3618 break;
3619 case LCT_PURE_MAKE_BLOCK:
3620 flags |= ECF_PURE | ECF_LIBCALL_BLOCK;
3621 break;
3622 case LCT_NORETURN:
3623 flags |= ECF_NORETURN;
3624 break;
3625 case LCT_THROW:
3626 flags = ECF_NORETURN;
3627 break;
3628 case LCT_ALWAYS_RETURN:
3629 flags = ECF_ALWAYS_RETURN;
3630 break;
3631 case LCT_RETURNS_TWICE:
3632 flags = ECF_RETURNS_TWICE;
3633 break;
3635 fun = orgfun;
3637 /* Ensure current function's preferred stack boundary is at least
3638 what we need. */
3639 if (cfun->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
3640 cfun->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3642 /* If this kind of value comes back in memory,
3643 decide where in memory it should come back. */
3644 if (outmode != VOIDmode)
3646 tfom = (*lang_hooks.types.type_for_mode) (outmode, 0);
3647 if (aggregate_value_p (tfom))
3649 #ifdef PCC_STATIC_STRUCT_RETURN
3650 rtx pointer_reg
3651 = hard_function_value (build_pointer_type (tfom), 0, 0);
3652 mem_value = gen_rtx_MEM (outmode, pointer_reg);
3653 pcc_struct_value = 1;
3654 if (value == 0)
3655 value = gen_reg_rtx (outmode);
3656 #else /* not PCC_STATIC_STRUCT_RETURN */
3657 struct_value_size = GET_MODE_SIZE (outmode);
3658 if (value != 0 && GET_CODE (value) == MEM)
3659 mem_value = value;
3660 else
3661 mem_value = assign_temp (tfom, 0, 1, 1);
3662 #endif
3663 /* This call returns a big structure. */
3664 flags &= ~(ECF_CONST | ECF_PURE | ECF_LIBCALL_BLOCK);
3667 else
3668 tfom = void_type_node;
3670 /* ??? Unfinished: must pass the memory address as an argument. */
3672 /* Copy all the libcall-arguments out of the varargs data
3673 and into a vector ARGVEC.
3675 Compute how to pass each argument. We only support a very small subset
3676 of the full argument passing conventions to limit complexity here since
3677 library functions shouldn't have many args. */
3679 argvec = (struct arg *) alloca ((nargs + 1) * sizeof (struct arg));
3680 memset ((char *) argvec, 0, (nargs + 1) * sizeof (struct arg));
3682 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
3683 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far, outmode, fun);
3684 #else
3685 INIT_CUMULATIVE_ARGS (args_so_far, NULL_TREE, fun, 0);
3686 #endif
3688 args_size.constant = 0;
3689 args_size.var = 0;
3691 count = 0;
3693 /* Now we are about to start emitting insns that can be deleted
3694 if a libcall is deleted. */
3695 if (flags & ECF_LIBCALL_BLOCK)
3696 start_sequence ();
3698 push_temp_slots ();
3700 /* If there's a structure value address to be passed,
3701 either pass it in the special place, or pass it as an extra argument. */
3702 if (mem_value && struct_value_rtx == 0 && ! pcc_struct_value)
3704 rtx addr = XEXP (mem_value, 0);
3705 nargs++;
3707 /* Make sure it is a reasonable operand for a move or push insn. */
3708 if (GET_CODE (addr) != REG && GET_CODE (addr) != MEM
3709 && ! (CONSTANT_P (addr) && LEGITIMATE_CONSTANT_P (addr)))
3710 addr = force_operand (addr, NULL_RTX);
3712 argvec[count].value = addr;
3713 argvec[count].mode = Pmode;
3714 argvec[count].partial = 0;
3716 argvec[count].reg = FUNCTION_ARG (args_so_far, Pmode, NULL_TREE, 1);
3717 #ifdef FUNCTION_ARG_PARTIAL_NREGS
3718 if (FUNCTION_ARG_PARTIAL_NREGS (args_so_far, Pmode, NULL_TREE, 1))
3719 abort ();
3720 #endif
3722 locate_and_pad_parm (Pmode, NULL_TREE,
3723 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3725 #else
3726 argvec[count].reg != 0,
3727 #endif
3728 0, NULL_TREE, &args_size, &argvec[count].locate);
3730 if (argvec[count].reg == 0 || argvec[count].partial != 0
3731 || reg_parm_stack_space > 0)
3732 args_size.constant += argvec[count].locate.size.constant;
3734 FUNCTION_ARG_ADVANCE (args_so_far, Pmode, (tree) 0, 1);
3736 count++;
3739 for (; count < nargs; count++)
3741 rtx val = va_arg (p, rtx);
3742 enum machine_mode mode = va_arg (p, enum machine_mode);
3744 /* We cannot convert the arg value to the mode the library wants here;
3745 must do it earlier where we know the signedness of the arg. */
3746 if (mode == BLKmode
3747 || (GET_MODE (val) != mode && GET_MODE (val) != VOIDmode))
3748 abort ();
3750 /* On some machines, there's no way to pass a float to a library fcn.
3751 Pass it as a double instead. */
3752 #ifdef LIBGCC_NEEDS_DOUBLE
3753 if (LIBGCC_NEEDS_DOUBLE && mode == SFmode)
3754 val = convert_modes (DFmode, SFmode, val, 0), mode = DFmode;
3755 #endif
3757 /* There's no need to call protect_from_queue, because
3758 either emit_move_insn or emit_push_insn will do that. */
3760 /* Make sure it is a reasonable operand for a move or push insn. */
3761 if (GET_CODE (val) != REG && GET_CODE (val) != MEM
3762 && ! (CONSTANT_P (val) && LEGITIMATE_CONSTANT_P (val)))
3763 val = force_operand (val, NULL_RTX);
3765 #ifdef FUNCTION_ARG_PASS_BY_REFERENCE
3766 if (FUNCTION_ARG_PASS_BY_REFERENCE (args_so_far, mode, NULL_TREE, 1))
3768 rtx slot;
3769 int must_copy = 1
3770 #ifdef FUNCTION_ARG_CALLEE_COPIES
3771 && ! FUNCTION_ARG_CALLEE_COPIES (args_so_far, mode,
3772 NULL_TREE, 1)
3773 #endif
3776 /* loop.c won't look at CALL_INSN_FUNCTION_USAGE of const/pure
3777 functions, so we have to pretend this isn't such a function. */
3778 if (flags & ECF_LIBCALL_BLOCK)
3780 rtx insns = get_insns ();
3781 end_sequence ();
3782 emit_insn (insns);
3784 flags &= ~(ECF_CONST | ECF_PURE | ECF_LIBCALL_BLOCK);
3786 /* If this was a CONST function, it is now PURE since
3787 it now reads memory. */
3788 if (flags & ECF_CONST)
3790 flags &= ~ECF_CONST;
3791 flags |= ECF_PURE;
3794 if (GET_MODE (val) == MEM && ! must_copy)
3795 slot = val;
3796 else if (must_copy)
3798 slot = assign_temp ((*lang_hooks.types.type_for_mode) (mode, 0),
3799 0, 1, 1);
3800 emit_move_insn (slot, val);
3802 else
3804 tree type = (*lang_hooks.types.type_for_mode) (mode, 0);
3806 slot
3807 = gen_rtx_MEM (mode,
3808 expand_expr (build1 (ADDR_EXPR,
3809 build_pointer_type (type),
3810 make_tree (type, val)),
3811 NULL_RTX, VOIDmode, 0));
3814 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3815 gen_rtx_USE (VOIDmode, slot),
3816 call_fusage);
3817 if (must_copy)
3818 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3819 gen_rtx_CLOBBER (VOIDmode,
3820 slot),
3821 call_fusage);
3823 mode = Pmode;
3824 val = force_operand (XEXP (slot, 0), NULL_RTX);
3826 #endif
3828 argvec[count].value = val;
3829 argvec[count].mode = mode;
3831 argvec[count].reg = FUNCTION_ARG (args_so_far, mode, NULL_TREE, 1);
3833 #ifdef FUNCTION_ARG_PARTIAL_NREGS
3834 argvec[count].partial
3835 = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, mode, NULL_TREE, 1);
3836 #else
3837 argvec[count].partial = 0;
3838 #endif
3840 locate_and_pad_parm (mode, NULL_TREE,
3841 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3843 #else
3844 argvec[count].reg != 0,
3845 #endif
3846 argvec[count].partial,
3847 NULL_TREE, &args_size, &argvec[count].locate);
3849 if (argvec[count].locate.size.var)
3850 abort ();
3852 if (argvec[count].reg == 0 || argvec[count].partial != 0
3853 || reg_parm_stack_space > 0)
3854 args_size.constant += argvec[count].locate.size.constant;
3856 FUNCTION_ARG_ADVANCE (args_so_far, mode, (tree) 0, 1);
3859 #ifdef FINAL_REG_PARM_STACK_SPACE
3860 reg_parm_stack_space = FINAL_REG_PARM_STACK_SPACE (args_size.constant,
3861 args_size.var);
3862 #endif
3863 /* If this machine requires an external definition for library
3864 functions, write one out. */
3865 assemble_external_libcall (fun);
3867 original_args_size = args_size;
3868 args_size.constant = (((args_size.constant
3869 + stack_pointer_delta
3870 + STACK_BYTES - 1)
3871 / STACK_BYTES
3872 * STACK_BYTES)
3873 - stack_pointer_delta);
3875 args_size.constant = MAX (args_size.constant,
3876 reg_parm_stack_space);
3878 #ifndef OUTGOING_REG_PARM_STACK_SPACE
3879 args_size.constant -= reg_parm_stack_space;
3880 #endif
3882 if (args_size.constant > current_function_outgoing_args_size)
3883 current_function_outgoing_args_size = args_size.constant;
3885 if (ACCUMULATE_OUTGOING_ARGS)
3887 /* Since the stack pointer will never be pushed, it is possible for
3888 the evaluation of a parm to clobber something we have already
3889 written to the stack. Since most function calls on RISC machines
3890 do not use the stack, this is uncommon, but must work correctly.
3892 Therefore, we save any area of the stack that was already written
3893 and that we are using. Here we set up to do this by making a new
3894 stack usage map from the old one.
3896 Another approach might be to try to reorder the argument
3897 evaluations to avoid this conflicting stack usage. */
3899 needed = args_size.constant;
3901 #ifndef OUTGOING_REG_PARM_STACK_SPACE
3902 /* Since we will be writing into the entire argument area, the
3903 map must be allocated for its entire size, not just the part that
3904 is the responsibility of the caller. */
3905 needed += reg_parm_stack_space;
3906 #endif
3908 #ifdef ARGS_GROW_DOWNWARD
3909 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3910 needed + 1);
3911 #else
3912 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3913 needed);
3914 #endif
3915 stack_usage_map = (char *) alloca (highest_outgoing_arg_in_use);
3917 if (initial_highest_arg_in_use)
3918 memcpy (stack_usage_map, initial_stack_usage_map,
3919 initial_highest_arg_in_use);
3921 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3922 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3923 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
3924 needed = 0;
3926 /* We must be careful to use virtual regs before they're instantiated,
3927 and real regs afterwards. Loop optimization, for example, can create
3928 new libcalls after we've instantiated the virtual regs, and if we
3929 use virtuals anyway, they won't match the rtl patterns. */
3931 if (virtuals_instantiated)
3932 argblock = plus_constant (stack_pointer_rtx, STACK_POINTER_OFFSET);
3933 else
3934 argblock = virtual_outgoing_args_rtx;
3936 else
3938 if (!PUSH_ARGS)
3939 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
3942 /* If we push args individually in reverse order, perform stack alignment
3943 before the first push (the last arg). */
3944 if (argblock == 0 && PUSH_ARGS_REVERSED)
3945 anti_adjust_stack (GEN_INT (args_size.constant
3946 - original_args_size.constant));
3948 if (PUSH_ARGS_REVERSED)
3950 inc = -1;
3951 argnum = nargs - 1;
3953 else
3955 inc = 1;
3956 argnum = 0;
3959 #ifdef REG_PARM_STACK_SPACE
3960 if (ACCUMULATE_OUTGOING_ARGS)
3962 /* The argument list is the property of the called routine and it
3963 may clobber it. If the fixed area has been used for previous
3964 parameters, we must save and restore it. */
3965 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3966 &low_to_save, &high_to_save);
3968 #endif
3970 /* Push the args that need to be pushed. */
3972 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
3973 are to be pushed. */
3974 for (count = 0; count < nargs; count++, argnum += inc)
3976 enum machine_mode mode = argvec[argnum].mode;
3977 rtx val = argvec[argnum].value;
3978 rtx reg = argvec[argnum].reg;
3979 int partial = argvec[argnum].partial;
3980 int lower_bound = 0, upper_bound = 0, i;
3982 if (! (reg != 0 && partial == 0))
3984 if (ACCUMULATE_OUTGOING_ARGS)
3986 /* If this is being stored into a pre-allocated, fixed-size,
3987 stack area, save any previous data at that location. */
3989 #ifdef ARGS_GROW_DOWNWARD
3990 /* stack_slot is negative, but we want to index stack_usage_map
3991 with positive values. */
3992 upper_bound = -argvec[argnum].locate.offset.constant + 1;
3993 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
3994 #else
3995 lower_bound = argvec[argnum].locate.offset.constant;
3996 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
3997 #endif
3999 i = lower_bound;
4000 /* Don't worry about things in the fixed argument area;
4001 it has already been saved. */
4002 if (i < reg_parm_stack_space)
4003 i = reg_parm_stack_space;
4004 while (i < upper_bound && stack_usage_map[i] == 0)
4005 i++;
4007 if (i < upper_bound)
4009 /* We need to make a save area. */
4010 unsigned int size
4011 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
4012 enum machine_mode save_mode
4013 = mode_for_size (size, MODE_INT, 1);
4014 rtx adr
4015 = plus_constant (argblock,
4016 argvec[argnum].locate.offset.constant);
4017 rtx stack_area
4018 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
4019 argvec[argnum].save_area = gen_reg_rtx (save_mode);
4021 emit_move_insn (argvec[argnum].save_area, stack_area);
4025 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, PARM_BOUNDARY,
4026 partial, reg, 0, argblock,
4027 GEN_INT (argvec[argnum].locate.offset.constant),
4028 reg_parm_stack_space,
4029 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad));
4031 /* Now mark the segment we just used. */
4032 if (ACCUMULATE_OUTGOING_ARGS)
4033 for (i = lower_bound; i < upper_bound; i++)
4034 stack_usage_map[i] = 1;
4036 NO_DEFER_POP;
4040 /* If we pushed args in forward order, perform stack alignment
4041 after pushing the last arg. */
4042 if (argblock == 0 && !PUSH_ARGS_REVERSED)
4043 anti_adjust_stack (GEN_INT (args_size.constant
4044 - original_args_size.constant));
4046 if (PUSH_ARGS_REVERSED)
4047 argnum = nargs - 1;
4048 else
4049 argnum = 0;
4051 fun = prepare_call_address (fun, NULL_TREE, &call_fusage, 0, 0);
4053 /* Now load any reg parms into their regs. */
4055 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4056 are to be pushed. */
4057 for (count = 0; count < nargs; count++, argnum += inc)
4059 rtx val = argvec[argnum].value;
4060 rtx reg = argvec[argnum].reg;
4061 int partial = argvec[argnum].partial;
4063 /* Handle calls that pass values in multiple non-contiguous
4064 locations. The PA64 has examples of this for library calls. */
4065 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4066 emit_group_load (reg, val, GET_MODE_SIZE (GET_MODE (val)));
4067 else if (reg != 0 && partial == 0)
4068 emit_move_insn (reg, val);
4070 NO_DEFER_POP;
4073 /* Any regs containing parms remain in use through the call. */
4074 for (count = 0; count < nargs; count++)
4076 rtx reg = argvec[count].reg;
4077 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4078 use_group_regs (&call_fusage, reg);
4079 else if (reg != 0)
4080 use_reg (&call_fusage, reg);
4083 /* Pass the function the address in which to return a structure value. */
4084 if (mem_value != 0 && struct_value_rtx != 0 && ! pcc_struct_value)
4086 emit_move_insn (struct_value_rtx,
4087 force_reg (Pmode,
4088 force_operand (XEXP (mem_value, 0),
4089 NULL_RTX)));
4090 if (GET_CODE (struct_value_rtx) == REG)
4091 use_reg (&call_fusage, struct_value_rtx);
4094 /* Don't allow popping to be deferred, since then
4095 cse'ing of library calls could delete a call and leave the pop. */
4096 NO_DEFER_POP;
4097 valreg = (mem_value == 0 && outmode != VOIDmode
4098 ? hard_libcall_value (outmode) : NULL_RTX);
4100 /* Stack must be properly aligned now. */
4101 if (stack_pointer_delta & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1))
4102 abort ();
4104 before_call = get_last_insn ();
4106 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4107 will set inhibit_defer_pop to that value. */
4108 /* The return type is needed to decide how many bytes the function pops.
4109 Signedness plays no role in that, so for simplicity, we pretend it's
4110 always signed. We also assume that the list of arguments passed has
4111 no impact, so we pretend it is unknown. */
4113 emit_call_1 (fun,
4114 get_identifier (XSTR (orgfun, 0)),
4115 build_function_type (tfom, NULL_TREE),
4116 original_args_size.constant, args_size.constant,
4117 struct_value_size,
4118 FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1),
4119 valreg,
4120 old_inhibit_defer_pop + 1, call_fusage, flags, & args_so_far);
4122 /* For calls to `setjmp', etc., inform flow.c it should complain
4123 if nonvolatile values are live. For functions that cannot return,
4124 inform flow that control does not fall through. */
4126 if (flags & (ECF_NORETURN | ECF_LONGJMP))
4128 /* The barrier note must be emitted
4129 immediately after the CALL_INSN. Some ports emit more than
4130 just a CALL_INSN above, so we must search for it here. */
4132 rtx last = get_last_insn ();
4133 while (GET_CODE (last) != CALL_INSN)
4135 last = PREV_INSN (last);
4136 /* There was no CALL_INSN? */
4137 if (last == before_call)
4138 abort ();
4141 emit_barrier_after (last);
4144 /* Now restore inhibit_defer_pop to its actual original value. */
4145 OK_DEFER_POP;
4147 /* If call is cse'able, make appropriate pair of reg-notes around it.
4148 Test valreg so we don't crash; may safely ignore `const'
4149 if return type is void. Disable for PARALLEL return values, because
4150 we have no way to move such values into a pseudo register. */
4151 if (flags & ECF_LIBCALL_BLOCK)
4153 rtx insns;
4155 if (valreg == 0)
4157 insns = get_insns ();
4158 end_sequence ();
4159 emit_insn (insns);
4161 else
4163 rtx note = 0;
4164 rtx temp;
4165 int i;
4167 if (GET_CODE (valreg) == PARALLEL)
4169 temp = gen_reg_rtx (outmode);
4170 emit_group_store (temp, valreg, outmode);
4171 valreg = temp;
4174 temp = gen_reg_rtx (GET_MODE (valreg));
4176 /* Construct an "equal form" for the value which mentions all the
4177 arguments in order as well as the function name. */
4178 for (i = 0; i < nargs; i++)
4179 note = gen_rtx_EXPR_LIST (VOIDmode, argvec[i].value, note);
4180 note = gen_rtx_EXPR_LIST (VOIDmode, fun, note);
4182 insns = get_insns ();
4183 end_sequence ();
4185 if (flags & ECF_PURE)
4186 note = gen_rtx_EXPR_LIST (VOIDmode,
4187 gen_rtx_USE (VOIDmode,
4188 gen_rtx_MEM (BLKmode,
4189 gen_rtx_SCRATCH (VOIDmode))),
4190 note);
4192 emit_libcall_block (insns, temp, valreg, note);
4194 valreg = temp;
4197 pop_temp_slots ();
4199 /* Copy the value to the right place. */
4200 if (outmode != VOIDmode && retval)
4202 if (mem_value)
4204 if (value == 0)
4205 value = mem_value;
4206 if (value != mem_value)
4207 emit_move_insn (value, mem_value);
4209 else if (GET_CODE (valreg) == PARALLEL)
4211 if (value == 0)
4212 value = gen_reg_rtx (outmode);
4213 emit_group_store (value, valreg, outmode);
4215 else if (value != 0)
4216 emit_move_insn (value, valreg);
4217 else
4218 value = valreg;
4221 if (ACCUMULATE_OUTGOING_ARGS)
4223 #ifdef REG_PARM_STACK_SPACE
4224 if (save_area)
4225 restore_fixed_argument_area (save_area, argblock,
4226 high_to_save, low_to_save);
4227 #endif
4229 /* If we saved any argument areas, restore them. */
4230 for (count = 0; count < nargs; count++)
4231 if (argvec[count].save_area)
4233 enum machine_mode save_mode = GET_MODE (argvec[count].save_area);
4234 rtx adr = plus_constant (argblock,
4235 argvec[count].locate.offset.constant);
4236 rtx stack_area = gen_rtx_MEM (save_mode,
4237 memory_address (save_mode, adr));
4239 emit_move_insn (stack_area, argvec[count].save_area);
4242 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4243 stack_usage_map = initial_stack_usage_map;
4246 return value;
4250 /* Output a library call to function FUN (a SYMBOL_REF rtx)
4251 (emitting the queue unless NO_QUEUE is nonzero),
4252 for a value of mode OUTMODE,
4253 with NARGS different arguments, passed as alternating rtx values
4254 and machine_modes to convert them to.
4255 The rtx values should have been passed through protect_from_queue already.
4257 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for `const'
4258 calls, LCT_PURE for `pure' calls, LCT_CONST_MAKE_BLOCK for `const' calls
4259 which should be enclosed in REG_LIBCALL/REG_RETVAL notes,
4260 LCT_PURE_MAKE_BLOCK for `purep' calls which should be enclosed in
4261 REG_LIBCALL/REG_RETVAL notes with extra (use (memory (scratch)),
4262 or other LCT_ value for other types of library calls. */
4264 void
4265 emit_library_call (rtx orgfun, enum libcall_type fn_type,
4266 enum machine_mode outmode, int nargs, ...)
4268 va_list p;
4270 va_start (p, nargs);
4271 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4272 va_end (p);
4275 /* Like emit_library_call except that an extra argument, VALUE,
4276 comes second and says where to store the result.
4277 (If VALUE is zero, this function chooses a convenient way
4278 to return the value.
4280 This function returns an rtx for where the value is to be found.
4281 If VALUE is nonzero, VALUE is returned. */
4284 emit_library_call_value (rtx orgfun, rtx value,
4285 enum libcall_type fn_type,
4286 enum machine_mode outmode, int nargs, ...)
4288 rtx result;
4289 va_list p;
4291 va_start (p, nargs);
4292 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4293 nargs, p);
4294 va_end (p);
4296 return result;
4299 /* Store a single argument for a function call
4300 into the register or memory area where it must be passed.
4301 *ARG describes the argument value and where to pass it.
4303 ARGBLOCK is the address of the stack-block for all the arguments,
4304 or 0 on a machine where arguments are pushed individually.
4306 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
4307 so must be careful about how the stack is used.
4309 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4310 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4311 that we need not worry about saving and restoring the stack.
4313 FNDECL is the declaration of the function we are calling.
4315 Return nonzero if this arg should cause sibcall failure,
4316 zero otherwise. */
4318 static int
4319 store_one_arg (arg, argblock, flags, variable_size, reg_parm_stack_space)
4320 struct arg_data *arg;
4321 rtx argblock;
4322 int flags;
4323 int variable_size ATTRIBUTE_UNUSED;
4324 int reg_parm_stack_space;
4326 tree pval = arg->tree_value;
4327 rtx reg = 0;
4328 int partial = 0;
4329 int used = 0;
4330 int i, lower_bound = 0, upper_bound = 0;
4331 int sibcall_failure = 0;
4333 if (TREE_CODE (pval) == ERROR_MARK)
4334 return 1;
4336 /* Push a new temporary level for any temporaries we make for
4337 this argument. */
4338 push_temp_slots ();
4340 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
4342 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4343 save any previous data at that location. */
4344 if (argblock && ! variable_size && arg->stack)
4346 #ifdef ARGS_GROW_DOWNWARD
4347 /* stack_slot is negative, but we want to index stack_usage_map
4348 with positive values. */
4349 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4350 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4351 else
4352 upper_bound = 0;
4354 lower_bound = upper_bound - arg->locate.size.constant;
4355 #else
4356 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4357 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4358 else
4359 lower_bound = 0;
4361 upper_bound = lower_bound + arg->locate.size.constant;
4362 #endif
4364 i = lower_bound;
4365 /* Don't worry about things in the fixed argument area;
4366 it has already been saved. */
4367 if (i < reg_parm_stack_space)
4368 i = reg_parm_stack_space;
4369 while (i < upper_bound && stack_usage_map[i] == 0)
4370 i++;
4372 if (i < upper_bound)
4374 /* We need to make a save area. */
4375 unsigned int size = arg->locate.size.constant * BITS_PER_UNIT;
4376 enum machine_mode save_mode = mode_for_size (size, MODE_INT, 1);
4377 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
4378 rtx stack_area = gen_rtx_MEM (save_mode, adr);
4380 if (save_mode == BLKmode)
4382 tree ot = TREE_TYPE (arg->tree_value);
4383 tree nt = build_qualified_type (ot, (TYPE_QUALS (ot)
4384 | TYPE_QUAL_CONST));
4386 arg->save_area = assign_temp (nt, 0, 1, 1);
4387 preserve_temp_slots (arg->save_area);
4388 emit_block_move (validize_mem (arg->save_area), stack_area,
4389 expr_size (arg->tree_value),
4390 BLOCK_OP_CALL_PARM);
4392 else
4394 arg->save_area = gen_reg_rtx (save_mode);
4395 emit_move_insn (arg->save_area, stack_area);
4401 /* If this isn't going to be placed on both the stack and in registers,
4402 set up the register and number of words. */
4403 if (! arg->pass_on_stack)
4405 if (flags & ECF_SIBCALL)
4406 reg = arg->tail_call_reg;
4407 else
4408 reg = arg->reg;
4409 partial = arg->partial;
4412 if (reg != 0 && partial == 0)
4413 /* Being passed entirely in a register. We shouldn't be called in
4414 this case. */
4415 abort ();
4417 /* If this arg needs special alignment, don't load the registers
4418 here. */
4419 if (arg->n_aligned_regs != 0)
4420 reg = 0;
4422 /* If this is being passed partially in a register, we can't evaluate
4423 it directly into its stack slot. Otherwise, we can. */
4424 if (arg->value == 0)
4426 /* stack_arg_under_construction is nonzero if a function argument is
4427 being evaluated directly into the outgoing argument list and
4428 expand_call must take special action to preserve the argument list
4429 if it is called recursively.
4431 For scalar function arguments stack_usage_map is sufficient to
4432 determine which stack slots must be saved and restored. Scalar
4433 arguments in general have pass_on_stack == 0.
4435 If this argument is initialized by a function which takes the
4436 address of the argument (a C++ constructor or a C function
4437 returning a BLKmode structure), then stack_usage_map is
4438 insufficient and expand_call must push the stack around the
4439 function call. Such arguments have pass_on_stack == 1.
4441 Note that it is always safe to set stack_arg_under_construction,
4442 but this generates suboptimal code if set when not needed. */
4444 if (arg->pass_on_stack)
4445 stack_arg_under_construction++;
4447 arg->value = expand_expr (pval,
4448 (partial
4449 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4450 ? NULL_RTX : arg->stack,
4451 VOIDmode, EXPAND_STACK_PARM);
4453 /* If we are promoting object (or for any other reason) the mode
4454 doesn't agree, convert the mode. */
4456 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4457 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4458 arg->value, arg->unsignedp);
4460 if (arg->pass_on_stack)
4461 stack_arg_under_construction--;
4464 /* Don't allow anything left on stack from computation
4465 of argument to alloca. */
4466 if (flags & ECF_MAY_BE_ALLOCA)
4467 do_pending_stack_adjust ();
4469 if (arg->value == arg->stack)
4470 /* If the value is already in the stack slot, we are done. */
4472 else if (arg->mode != BLKmode)
4474 int size;
4476 /* Argument is a scalar, not entirely passed in registers.
4477 (If part is passed in registers, arg->partial says how much
4478 and emit_push_insn will take care of putting it there.)
4480 Push it, and if its size is less than the
4481 amount of space allocated to it,
4482 also bump stack pointer by the additional space.
4483 Note that in C the default argument promotions
4484 will prevent such mismatches. */
4486 size = GET_MODE_SIZE (arg->mode);
4487 /* Compute how much space the push instruction will push.
4488 On many machines, pushing a byte will advance the stack
4489 pointer by a halfword. */
4490 #ifdef PUSH_ROUNDING
4491 size = PUSH_ROUNDING (size);
4492 #endif
4493 used = size;
4495 /* Compute how much space the argument should get:
4496 round up to a multiple of the alignment for arguments. */
4497 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
4498 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
4499 / (PARM_BOUNDARY / BITS_PER_UNIT))
4500 * (PARM_BOUNDARY / BITS_PER_UNIT));
4502 /* This isn't already where we want it on the stack, so put it there.
4503 This can either be done with push or copy insns. */
4504 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
4505 PARM_BOUNDARY, partial, reg, used - size, argblock,
4506 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4507 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4509 /* Unless this is a partially-in-register argument, the argument is now
4510 in the stack. */
4511 if (partial == 0)
4512 arg->value = arg->stack;
4514 else
4516 /* BLKmode, at least partly to be pushed. */
4518 unsigned int parm_align;
4519 int excess;
4520 rtx size_rtx;
4522 /* Pushing a nonscalar.
4523 If part is passed in registers, PARTIAL says how much
4524 and emit_push_insn will take care of putting it there. */
4526 /* Round its size up to a multiple
4527 of the allocation unit for arguments. */
4529 if (arg->locate.size.var != 0)
4531 excess = 0;
4532 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
4534 else
4536 /* PUSH_ROUNDING has no effect on us, because
4537 emit_push_insn for BLKmode is careful to avoid it. */
4538 excess = (arg->locate.size.constant
4539 - int_size_in_bytes (TREE_TYPE (pval))
4540 + partial * UNITS_PER_WORD);
4541 size_rtx = expand_expr (size_in_bytes (TREE_TYPE (pval)),
4542 NULL_RTX, TYPE_MODE (sizetype), 0);
4545 /* Some types will require stricter alignment, which will be
4546 provided for elsewhere in argument layout. */
4547 parm_align = MAX (PARM_BOUNDARY, TYPE_ALIGN (TREE_TYPE (pval)));
4549 /* When an argument is padded down, the block is aligned to
4550 PARM_BOUNDARY, but the actual argument isn't. */
4551 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4553 if (arg->locate.size.var)
4554 parm_align = BITS_PER_UNIT;
4555 else if (excess)
4557 unsigned int excess_align = (excess & -excess) * BITS_PER_UNIT;
4558 parm_align = MIN (parm_align, excess_align);
4562 if ((flags & ECF_SIBCALL) && GET_CODE (arg->value) == MEM)
4564 /* emit_push_insn might not work properly if arg->value and
4565 argblock + arg->locate.offset areas overlap. */
4566 rtx x = arg->value;
4567 int i = 0;
4569 if (XEXP (x, 0) == current_function_internal_arg_pointer
4570 || (GET_CODE (XEXP (x, 0)) == PLUS
4571 && XEXP (XEXP (x, 0), 0) ==
4572 current_function_internal_arg_pointer
4573 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT))
4575 if (XEXP (x, 0) != current_function_internal_arg_pointer)
4576 i = INTVAL (XEXP (XEXP (x, 0), 1));
4578 /* expand_call should ensure this */
4579 if (arg->locate.offset.var || GET_CODE (size_rtx) != CONST_INT)
4580 abort ();
4582 if (arg->locate.offset.constant > i)
4584 if (arg->locate.offset.constant < i + INTVAL (size_rtx))
4585 sibcall_failure = 1;
4587 else if (arg->locate.offset.constant < i)
4589 if (i < arg->locate.offset.constant + INTVAL (size_rtx))
4590 sibcall_failure = 1;
4595 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
4596 parm_align, partial, reg, excess, argblock,
4597 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4598 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4600 /* Unless this is a partially-in-register argument, the argument is now
4601 in the stack.
4603 ??? Unlike the case above, in which we want the actual
4604 address of the data, so that we can load it directly into a
4605 register, here we want the address of the stack slot, so that
4606 it's properly aligned for word-by-word copying or something
4607 like that. It's not clear that this is always correct. */
4608 if (partial == 0)
4609 arg->value = arg->stack_slot;
4612 /* Mark all slots this store used. */
4613 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
4614 && argblock && ! variable_size && arg->stack)
4615 for (i = lower_bound; i < upper_bound; i++)
4616 stack_usage_map[i] = 1;
4618 /* Once we have pushed something, pops can't safely
4619 be deferred during the rest of the arguments. */
4620 NO_DEFER_POP;
4622 /* ANSI doesn't require a sequence point here,
4623 but PCC has one, so this will avoid some problems. */
4624 emit_queue ();
4626 /* Free any temporary slots made in processing this argument. Show
4627 that we might have taken the address of something and pushed that
4628 as an operand. */
4629 preserve_temp_slots (NULL_RTX);
4630 free_temp_slots ();
4631 pop_temp_slots ();
4633 return sibcall_failure;
4636 /* Nonzero if we do not know how to pass TYPE solely in registers.
4637 We cannot do so in the following cases:
4639 - if the type has variable size
4640 - if the type is marked as addressable (it is required to be constructed
4641 into the stack)
4642 - if the padding and mode of the type is such that a copy into a register
4643 would put it into the wrong part of the register.
4645 Which padding can't be supported depends on the byte endianness.
4647 A value in a register is implicitly padded at the most significant end.
4648 On a big-endian machine, that is the lower end in memory.
4649 So a value padded in memory at the upper end can't go in a register.
4650 For a little-endian machine, the reverse is true. */
4652 bool
4653 default_must_pass_in_stack (mode, type)
4654 enum machine_mode mode;
4655 tree type;
4657 if (!type)
4658 return false;
4660 /* If the type has variable size... */
4661 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4662 return true;
4664 /* If the type is marked as addressable (it is required
4665 to be constructed into the stack)... */
4666 if (TREE_ADDRESSABLE (type))
4667 return true;
4669 /* If the padding and mode of the type is such that a copy into
4670 a register would put it into the wrong part of the register. */
4671 if (mode == BLKmode
4672 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
4673 && (FUNCTION_ARG_PADDING (mode, type)
4674 == (BYTES_BIG_ENDIAN ? upward : downward)))
4675 return true;
4677 return false;