* cp-tree.h (DECL_LOCAL_FUCNTION_P): New macro.
[official-gcc.git] / gcc / calls.c
blob15b64e0efd8cde32a222c915b2c7ee780af78475
1 /* Convert function calls to rtl insns, for GNU C compiler.
2 Copyright (C) 1989, 92-97, 1998, 1999 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include "config.h"
22 #include "system.h"
23 #include "rtl.h"
24 #include "tree.h"
25 #include "flags.h"
26 #include "expr.h"
27 #include "function.h"
28 #include "regs.h"
29 #include "insn-flags.h"
30 #include "toplev.h"
31 #include "output.h"
32 #include "tm_p.h"
34 #if !defined PREFERRED_STACK_BOUNDARY && defined STACK_BOUNDARY
35 #define PREFERRED_STACK_BOUNDARY STACK_BOUNDARY
36 #endif
38 /* Decide whether a function's arguments should be processed
39 from first to last or from last to first.
41 They should if the stack and args grow in opposite directions, but
42 only if we have push insns. */
44 #ifdef PUSH_ROUNDING
46 #if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
47 #define PUSH_ARGS_REVERSED /* If it's last to first */
48 #endif
50 #endif
52 /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
53 #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
55 /* Data structure and subroutines used within expand_call. */
57 struct arg_data
59 /* Tree node for this argument. */
60 tree tree_value;
61 /* Mode for value; TYPE_MODE unless promoted. */
62 enum machine_mode mode;
63 /* Current RTL value for argument, or 0 if it isn't precomputed. */
64 rtx value;
65 /* Initially-compute RTL value for argument; only for const functions. */
66 rtx initial_value;
67 /* Register to pass this argument in, 0 if passed on stack, or an
68 PARALLEL if the arg is to be copied into multiple non-contiguous
69 registers. */
70 rtx reg;
71 /* If REG was promoted from the actual mode of the argument expression,
72 indicates whether the promotion is sign- or zero-extended. */
73 int unsignedp;
74 /* Number of registers to use. 0 means put the whole arg in registers.
75 Also 0 if not passed in registers. */
76 int partial;
77 /* Non-zero if argument must be passed on stack.
78 Note that some arguments may be passed on the stack
79 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
80 pass_on_stack identifies arguments that *cannot* go in registers. */
81 int pass_on_stack;
82 /* Offset of this argument from beginning of stack-args. */
83 struct args_size offset;
84 /* Similar, but offset to the start of the stack slot. Different from
85 OFFSET if this arg pads downward. */
86 struct args_size slot_offset;
87 /* Size of this argument on the stack, rounded up for any padding it gets,
88 parts of the argument passed in registers do not count.
89 If REG_PARM_STACK_SPACE is defined, then register parms
90 are counted here as well. */
91 struct args_size size;
92 /* Location on the stack at which parameter should be stored. The store
93 has already been done if STACK == VALUE. */
94 rtx stack;
95 /* Location on the stack of the start of this argument slot. This can
96 differ from STACK if this arg pads downward. This location is known
97 to be aligned to FUNCTION_ARG_BOUNDARY. */
98 rtx stack_slot;
99 #ifdef ACCUMULATE_OUTGOING_ARGS
100 /* Place that this stack area has been saved, if needed. */
101 rtx save_area;
102 #endif
103 /* If an argument's alignment does not permit direct copying into registers,
104 copy in smaller-sized pieces into pseudos. These are stored in a
105 block pointed to by this field. The next field says how many
106 word-sized pseudos we made. */
107 rtx *aligned_regs;
108 int n_aligned_regs;
109 /* The amount that the stack pointer needs to be adjusted to
110 force alignment for the next argument. */
111 struct args_size alignment_pad;
114 #ifdef ACCUMULATE_OUTGOING_ARGS
115 /* A vector of one char per byte of stack space. A byte if non-zero if
116 the corresponding stack location has been used.
117 This vector is used to prevent a function call within an argument from
118 clobbering any stack already set up. */
119 static char *stack_usage_map;
121 /* Size of STACK_USAGE_MAP. */
122 static int highest_outgoing_arg_in_use;
124 /* stack_arg_under_construction is nonzero when an argument may be
125 initialized with a constructor call (including a C function that
126 returns a BLKmode struct) and expand_call must take special action
127 to make sure the object being constructed does not overlap the
128 argument list for the constructor call. */
129 int stack_arg_under_construction;
130 #endif
132 static int calls_function PROTO ((tree, int));
133 static int calls_function_1 PROTO ((tree, int));
134 static void emit_call_1 PROTO ((rtx, tree, tree, HOST_WIDE_INT,
135 HOST_WIDE_INT, HOST_WIDE_INT, rtx,
136 rtx, int, rtx, int));
137 static void special_function_p PROTO ((char *, tree, int *, int *,
138 int *, int *));
139 static void precompute_register_parameters PROTO ((int, struct arg_data *,
140 int *));
141 static void store_one_arg PROTO ((struct arg_data *, rtx, int, int,
142 int));
143 static void store_unaligned_arguments_into_pseudos PROTO ((struct arg_data *,
144 int));
145 static int finalize_must_preallocate PROTO ((int, int,
146 struct arg_data *,
147 struct args_size *));
148 static void precompute_arguments PROTO ((int, int, int,
149 struct arg_data *,
150 struct args_size *));
151 static int compute_argument_block_size PROTO ((int,
152 struct args_size *));
153 static void initialize_argument_information PROTO ((int,
154 struct arg_data *,
155 struct args_size *,
156 int, tree, tree,
157 CUMULATIVE_ARGS *,
158 int, rtx *, int *,
159 int *, int *));
160 static void compute_argument_addresses PROTO ((struct arg_data *,
161 rtx, int));
162 static rtx rtx_for_function_call PROTO ((tree, tree));
163 static void load_register_parameters PROTO ((struct arg_data *,
164 int, rtx *));
166 #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE)
167 static rtx save_fixed_argument_area PROTO ((int, rtx, int *, int *));
168 static void restore_fixed_argument_area PROTO ((rtx, rtx, int, int));
169 #endif
171 /* If WHICH is 1, return 1 if EXP contains a call to the built-in function
172 `alloca'.
174 If WHICH is 0, return 1 if EXP contains a call to any function.
175 Actually, we only need return 1 if evaluating EXP would require pushing
176 arguments on the stack, but that is too difficult to compute, so we just
177 assume any function call might require the stack. */
179 static tree calls_function_save_exprs;
181 static int
182 calls_function (exp, which)
183 tree exp;
184 int which;
186 int val;
187 calls_function_save_exprs = 0;
188 val = calls_function_1 (exp, which);
189 calls_function_save_exprs = 0;
190 return val;
193 static int
194 calls_function_1 (exp, which)
195 tree exp;
196 int which;
198 register int i;
199 enum tree_code code = TREE_CODE (exp);
200 int type = TREE_CODE_CLASS (code);
201 int length = tree_code_length[(int) code];
203 /* If this code is language-specific, we don't know what it will do. */
204 if ((int) code >= NUM_TREE_CODES)
205 return 1;
207 /* Only expressions and references can contain calls. */
208 if (type != 'e' && type != '<' && type != '1' && type != '2' && type != 'r'
209 && type != 'b')
210 return 0;
212 switch (code)
214 case CALL_EXPR:
215 if (which == 0)
216 return 1;
217 else if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
218 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
219 == FUNCTION_DECL))
221 tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
223 if ((DECL_BUILT_IN (fndecl)
224 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
225 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_ALLOCA)
226 || (DECL_SAVED_INSNS (fndecl)
227 && DECL_SAVED_INSNS (fndecl)->calls_alloca))
228 return 1;
231 /* Third operand is RTL. */
232 length = 2;
233 break;
235 case SAVE_EXPR:
236 if (SAVE_EXPR_RTL (exp) != 0)
237 return 0;
238 if (value_member (exp, calls_function_save_exprs))
239 return 0;
240 calls_function_save_exprs = tree_cons (NULL_TREE, exp,
241 calls_function_save_exprs);
242 return (TREE_OPERAND (exp, 0) != 0
243 && calls_function_1 (TREE_OPERAND (exp, 0), which));
245 case BLOCK:
247 register tree local;
249 for (local = BLOCK_VARS (exp); local; local = TREE_CHAIN (local))
250 if (DECL_INITIAL (local) != 0
251 && calls_function_1 (DECL_INITIAL (local), which))
252 return 1;
255 register tree subblock;
257 for (subblock = BLOCK_SUBBLOCKS (exp);
258 subblock;
259 subblock = TREE_CHAIN (subblock))
260 if (calls_function_1 (subblock, which))
261 return 1;
263 return 0;
265 case METHOD_CALL_EXPR:
266 length = 3;
267 break;
269 case WITH_CLEANUP_EXPR:
270 length = 1;
271 break;
273 case RTL_EXPR:
274 return 0;
276 default:
277 break;
280 for (i = 0; i < length; i++)
281 if (TREE_OPERAND (exp, i) != 0
282 && calls_function_1 (TREE_OPERAND (exp, i), which))
283 return 1;
285 return 0;
288 /* Force FUNEXP into a form suitable for the address of a CALL,
289 and return that as an rtx. Also load the static chain register
290 if FNDECL is a nested function.
292 CALL_FUSAGE points to a variable holding the prospective
293 CALL_INSN_FUNCTION_USAGE information. */
296 prepare_call_address (funexp, fndecl, call_fusage, reg_parm_seen)
297 rtx funexp;
298 tree fndecl;
299 rtx *call_fusage;
300 int reg_parm_seen;
302 rtx static_chain_value = 0;
304 funexp = protect_from_queue (funexp, 0);
306 if (fndecl != 0)
307 /* Get possible static chain value for nested function in C. */
308 static_chain_value = lookup_static_chain (fndecl);
310 /* Make a valid memory address and copy constants thru pseudo-regs,
311 but not for a constant address if -fno-function-cse. */
312 if (GET_CODE (funexp) != SYMBOL_REF)
313 /* If we are using registers for parameters, force the
314 function address into a register now. */
315 funexp = ((SMALL_REGISTER_CLASSES && reg_parm_seen)
316 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
317 : memory_address (FUNCTION_MODE, funexp));
318 else
320 #ifndef NO_FUNCTION_CSE
321 if (optimize && ! flag_no_function_cse)
322 #ifdef NO_RECURSIVE_FUNCTION_CSE
323 if (fndecl != current_function_decl)
324 #endif
325 funexp = force_reg (Pmode, funexp);
326 #endif
329 if (static_chain_value != 0)
331 emit_move_insn (static_chain_rtx, static_chain_value);
333 if (GET_CODE (static_chain_rtx) == REG)
334 use_reg (call_fusage, static_chain_rtx);
337 return funexp;
340 /* Generate instructions to call function FUNEXP,
341 and optionally pop the results.
342 The CALL_INSN is the first insn generated.
344 FNDECL is the declaration node of the function. This is given to the
345 macro RETURN_POPS_ARGS to determine whether this function pops its own args.
347 FUNTYPE is the data type of the function. This is given to the macro
348 RETURN_POPS_ARGS to determine whether this function pops its own args.
349 We used to allow an identifier for library functions, but that doesn't
350 work when the return type is an aggregate type and the calling convention
351 says that the pointer to this aggregate is to be popped by the callee.
353 STACK_SIZE is the number of bytes of arguments on the stack,
354 rounded up to PREFERRED_STACK_BOUNDARY; zero if the size is variable.
355 This is both to put into the call insn and
356 to generate explicit popping code if necessary.
358 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
359 It is zero if this call doesn't want a structure value.
361 NEXT_ARG_REG is the rtx that results from executing
362 FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1)
363 just after all the args have had their registers assigned.
364 This could be whatever you like, but normally it is the first
365 arg-register beyond those used for args in this call,
366 or 0 if all the arg-registers are used in this call.
367 It is passed on to `gen_call' so you can put this info in the call insn.
369 VALREG is a hard register in which a value is returned,
370 or 0 if the call does not return a value.
372 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
373 the args to this call were processed.
374 We restore `inhibit_defer_pop' to that value.
376 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
377 denote registers used by the called function.
379 IS_CONST is true if this is a `const' call. */
381 static void
382 emit_call_1 (funexp, fndecl, funtype, stack_size, rounded_stack_size,
383 struct_value_size, next_arg_reg, valreg, old_inhibit_defer_pop,
384 call_fusage, is_const)
385 rtx funexp;
386 tree fndecl ATTRIBUTE_UNUSED;
387 tree funtype ATTRIBUTE_UNUSED;
388 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED;
389 HOST_WIDE_INT rounded_stack_size;
390 HOST_WIDE_INT struct_value_size;
391 rtx next_arg_reg;
392 rtx valreg;
393 int old_inhibit_defer_pop;
394 rtx call_fusage;
395 int is_const;
397 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
398 rtx struct_value_size_rtx = GEN_INT (struct_value_size);
399 rtx call_insn;
400 #ifndef ACCUMULATE_OUTGOING_ARGS
401 int already_popped = 0;
402 HOST_WIDE_INT n_popped = RETURN_POPS_ARGS (fndecl, funtype, stack_size);
403 #endif
405 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
406 and we don't want to load it into a register as an optimization,
407 because prepare_call_address already did it if it should be done. */
408 if (GET_CODE (funexp) != SYMBOL_REF)
409 funexp = memory_address (FUNCTION_MODE, funexp);
411 #ifndef ACCUMULATE_OUTGOING_ARGS
412 #if defined (HAVE_call_pop) && defined (HAVE_call_value_pop)
413 /* If the target has "call" or "call_value" insns, then prefer them
414 if no arguments are actually popped. If the target does not have
415 "call" or "call_value" insns, then we must use the popping versions
416 even if the call has no arguments to pop. */
417 #if defined (HAVE_call) && defined (HAVE_call_value)
418 if (HAVE_call && HAVE_call_value && HAVE_call_pop && HAVE_call_value_pop
419 && n_popped > 0)
420 #else
421 if (HAVE_call_pop && HAVE_call_value_pop)
422 #endif
424 rtx n_pop = GEN_INT (n_popped);
425 rtx pat;
427 /* If this subroutine pops its own args, record that in the call insn
428 if possible, for the sake of frame pointer elimination. */
430 if (valreg)
431 pat = gen_call_value_pop (valreg,
432 gen_rtx_MEM (FUNCTION_MODE, funexp),
433 rounded_stack_size_rtx, next_arg_reg, n_pop);
434 else
435 pat = gen_call_pop (gen_rtx_MEM (FUNCTION_MODE, funexp),
436 rounded_stack_size_rtx, next_arg_reg, n_pop);
438 emit_call_insn (pat);
439 already_popped = 1;
441 else
442 #endif
443 #endif
445 #if defined (HAVE_call) && defined (HAVE_call_value)
446 if (HAVE_call && HAVE_call_value)
448 if (valreg)
449 emit_call_insn (gen_call_value (valreg,
450 gen_rtx_MEM (FUNCTION_MODE, funexp),
451 rounded_stack_size_rtx, next_arg_reg,
452 NULL_RTX));
453 else
454 emit_call_insn (gen_call (gen_rtx_MEM (FUNCTION_MODE, funexp),
455 rounded_stack_size_rtx, next_arg_reg,
456 struct_value_size_rtx));
458 else
459 #endif
460 abort ();
462 /* Find the CALL insn we just emitted. */
463 for (call_insn = get_last_insn ();
464 call_insn && GET_CODE (call_insn) != CALL_INSN;
465 call_insn = PREV_INSN (call_insn))
468 if (! call_insn)
469 abort ();
471 /* Put the register usage information on the CALL. If there is already
472 some usage information, put ours at the end. */
473 if (CALL_INSN_FUNCTION_USAGE (call_insn))
475 rtx link;
477 for (link = CALL_INSN_FUNCTION_USAGE (call_insn); XEXP (link, 1) != 0;
478 link = XEXP (link, 1))
481 XEXP (link, 1) = call_fusage;
483 else
484 CALL_INSN_FUNCTION_USAGE (call_insn) = call_fusage;
486 /* If this is a const call, then set the insn's unchanging bit. */
487 if (is_const)
488 CONST_CALL_P (call_insn) = 1;
490 /* Restore this now, so that we do defer pops for this call's args
491 if the context of the call as a whole permits. */
492 inhibit_defer_pop = old_inhibit_defer_pop;
494 #ifndef ACCUMULATE_OUTGOING_ARGS
495 /* If returning from the subroutine does not automatically pop the args,
496 we need an instruction to pop them sooner or later.
497 Perhaps do it now; perhaps just record how much space to pop later.
499 If returning from the subroutine does pop the args, indicate that the
500 stack pointer will be changed. */
502 if (n_popped > 0)
504 if (!already_popped)
505 CALL_INSN_FUNCTION_USAGE (call_insn)
506 = gen_rtx_EXPR_LIST (VOIDmode,
507 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
508 CALL_INSN_FUNCTION_USAGE (call_insn));
509 rounded_stack_size -= n_popped;
510 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
513 if (rounded_stack_size != 0)
515 if (flag_defer_pop && inhibit_defer_pop == 0 && !is_const)
516 pending_stack_adjust += rounded_stack_size;
517 else
518 adjust_stack (rounded_stack_size_rtx);
520 #endif
523 /* Determine if the function identified by NAME and FNDECL is one with
524 special properties we wish to know about.
526 For example, if the function might return more than one time (setjmp), then
527 set RETURNS_TWICE to a nonzero value.
529 Similarly set IS_LONGJMP for if the function is in the longjmp family.
531 Set IS_MALLOC for any of the standard memory allocation functions which
532 allocate from the heap.
534 Set MAY_BE_ALLOCA for any memory allocation function that might allocate
535 space from the stack such as alloca. */
537 static void
538 special_function_p (name, fndecl, returns_twice, is_longjmp,
539 is_malloc, may_be_alloca)
540 char *name;
541 tree fndecl;
542 int *returns_twice;
543 int *is_longjmp;
544 int *is_malloc;
545 int *may_be_alloca;
547 *returns_twice = 0;
548 *is_longjmp = 0;
549 *is_malloc = 0;
550 *may_be_alloca = 0;
552 if (name != 0 && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) <= 17
553 /* Exclude functions not at the file scope, or not `extern',
554 since they are not the magic functions we would otherwise
555 think they are. */
556 && DECL_CONTEXT (fndecl) == NULL_TREE && TREE_PUBLIC (fndecl))
558 char *tname = name;
560 /* We assume that alloca will always be called by name. It
561 makes no sense to pass it as a pointer-to-function to
562 anything that does not understand its behavior. */
563 *may_be_alloca
564 = (((IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 6
565 && name[0] == 'a'
566 && ! strcmp (name, "alloca"))
567 || (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 16
568 && name[0] == '_'
569 && ! strcmp (name, "__builtin_alloca"))));
571 /* Disregard prefix _, __ or __x. */
572 if (name[0] == '_')
574 if (name[1] == '_' && name[2] == 'x')
575 tname += 3;
576 else if (name[1] == '_')
577 tname += 2;
578 else
579 tname += 1;
582 if (tname[0] == 's')
584 *returns_twice
585 = ((tname[1] == 'e'
586 && (! strcmp (tname, "setjmp")
587 || ! strcmp (tname, "setjmp_syscall")))
588 || (tname[1] == 'i'
589 && ! strcmp (tname, "sigsetjmp"))
590 || (tname[1] == 'a'
591 && ! strcmp (tname, "savectx")));
592 if (tname[1] == 'i'
593 && ! strcmp (tname, "siglongjmp"))
594 *is_longjmp = 1;
596 else if ((tname[0] == 'q' && tname[1] == 's'
597 && ! strcmp (tname, "qsetjmp"))
598 || (tname[0] == 'v' && tname[1] == 'f'
599 && ! strcmp (tname, "vfork")))
600 *returns_twice = 1;
602 else if (tname[0] == 'l' && tname[1] == 'o'
603 && ! strcmp (tname, "longjmp"))
604 *is_longjmp = 1;
605 /* XXX should have "malloc" attribute on functions instead
606 of recognizing them by name. */
607 else if (! strcmp (tname, "malloc")
608 || ! strcmp (tname, "calloc")
609 || ! strcmp (tname, "realloc")
610 /* Note use of NAME rather than TNAME here. These functions
611 are only reserved when preceded with __. */
612 || ! strcmp (name, "__vn") /* mangled __builtin_vec_new */
613 || ! strcmp (name, "__nw") /* mangled __builtin_new */
614 || ! strcmp (name, "__builtin_new")
615 || ! strcmp (name, "__builtin_vec_new"))
616 *is_malloc = 1;
620 /* Precompute all register parameters as described by ARGS, storing values
621 into fields within the ARGS array.
623 NUM_ACTUALS indicates the total number elements in the ARGS array.
625 Set REG_PARM_SEEN if we encounter a register parameter. */
627 static void
628 precompute_register_parameters (num_actuals, args, reg_parm_seen)
629 int num_actuals;
630 struct arg_data *args;
631 int *reg_parm_seen;
633 int i;
635 *reg_parm_seen = 0;
637 for (i = 0; i < num_actuals; i++)
638 if (args[i].reg != 0 && ! args[i].pass_on_stack)
640 *reg_parm_seen = 1;
642 if (args[i].value == 0)
644 push_temp_slots ();
645 args[i].value = expand_expr (args[i].tree_value, NULL_RTX,
646 VOIDmode, 0);
647 preserve_temp_slots (args[i].value);
648 pop_temp_slots ();
650 /* ANSI doesn't require a sequence point here,
651 but PCC has one, so this will avoid some problems. */
652 emit_queue ();
655 /* If we are to promote the function arg to a wider mode,
656 do it now. */
658 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
659 args[i].value
660 = convert_modes (args[i].mode,
661 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
662 args[i].value, args[i].unsignedp);
664 /* If the value is expensive, and we are inside an appropriately
665 short loop, put the value into a pseudo and then put the pseudo
666 into the hard reg.
668 For small register classes, also do this if this call uses
669 register parameters. This is to avoid reload conflicts while
670 loading the parameters registers. */
672 if ((! (GET_CODE (args[i].value) == REG
673 || (GET_CODE (args[i].value) == SUBREG
674 && GET_CODE (SUBREG_REG (args[i].value)) == REG)))
675 && args[i].mode != BLKmode
676 && rtx_cost (args[i].value, SET) > 2
677 && ((SMALL_REGISTER_CLASSES && *reg_parm_seen)
678 || preserve_subexpressions_p ()))
679 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
683 #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE)
685 /* The argument list is the property of the called routine and it
686 may clobber it. If the fixed area has been used for previous
687 parameters, we must save and restore it. */
688 static rtx
689 save_fixed_argument_area (reg_parm_stack_space, argblock,
690 low_to_save, high_to_save)
691 int reg_parm_stack_space;
692 rtx argblock;
693 int *low_to_save;
694 int *high_to_save;
696 int i;
697 rtx save_area = NULL_RTX;
699 /* Compute the boundary of the that needs to be saved, if any. */
700 #ifdef ARGS_GROW_DOWNWARD
701 for (i = 0; i < reg_parm_stack_space + 1; i++)
702 #else
703 for (i = 0; i < reg_parm_stack_space; i++)
704 #endif
706 if (i >= highest_outgoing_arg_in_use
707 || stack_usage_map[i] == 0)
708 continue;
710 if (*low_to_save == -1)
711 *low_to_save = i;
713 *high_to_save = i;
716 if (*low_to_save >= 0)
718 int num_to_save = *high_to_save - *low_to_save + 1;
719 enum machine_mode save_mode
720 = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
721 rtx stack_area;
723 /* If we don't have the required alignment, must do this in BLKmode. */
724 if ((*low_to_save & (MIN (GET_MODE_SIZE (save_mode),
725 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
726 save_mode = BLKmode;
728 #ifdef ARGS_GROW_DOWNWARD
729 stack_area = gen_rtx_MEM (save_mode,
730 memory_address (save_mode,
731 plus_constant (argblock,
732 - *high_to_save)));
733 #else
734 stack_area = gen_rtx_MEM (save_mode,
735 memory_address (save_mode,
736 plus_constant (argblock,
737 *low_to_save)));
738 #endif
739 if (save_mode == BLKmode)
741 save_area = assign_stack_temp (BLKmode, num_to_save, 0);
742 emit_block_move (validize_mem (save_area), stack_area,
743 GEN_INT (num_to_save),
744 PARM_BOUNDARY / BITS_PER_UNIT);
746 else
748 save_area = gen_reg_rtx (save_mode);
749 emit_move_insn (save_area, stack_area);
752 return save_area;
755 static void
756 restore_fixed_argument_area (save_area, argblock, high_to_save, low_to_save)
757 rtx save_area;
758 rtx argblock;
759 int high_to_save;
760 int low_to_save;
762 enum machine_mode save_mode = GET_MODE (save_area);
763 #ifdef ARGS_GROW_DOWNWARD
764 rtx stack_area
765 = gen_rtx_MEM (save_mode,
766 memory_address (save_mode,
767 plus_constant (argblock,
768 - high_to_save)));
769 #else
770 rtx stack_area
771 = gen_rtx_MEM (save_mode,
772 memory_address (save_mode,
773 plus_constant (argblock,
774 low_to_save)));
775 #endif
777 if (save_mode != BLKmode)
778 emit_move_insn (stack_area, save_area);
779 else
780 emit_block_move (stack_area, validize_mem (save_area),
781 GEN_INT (high_to_save - low_to_save + 1),
782 PARM_BOUNDARY / BITS_PER_UNIT);
784 #endif
786 /* If any elements in ARGS refer to parameters that are to be passed in
787 registers, but not in memory, and whose alignment does not permit a
788 direct copy into registers. Copy the values into a group of pseudos
789 which we will later copy into the appropriate hard registers.
791 Pseudos for each unaligned argument will be stored into the array
792 args[argnum].aligned_regs. The caller is responsible for deallocating
793 the aligned_regs array if it is nonzero. */
795 static void
796 store_unaligned_arguments_into_pseudos (args, num_actuals)
797 struct arg_data *args;
798 int num_actuals;
800 int i, j;
802 for (i = 0; i < num_actuals; i++)
803 if (args[i].reg != 0 && ! args[i].pass_on_stack
804 && args[i].mode == BLKmode
805 && (TYPE_ALIGN (TREE_TYPE (args[i].tree_value))
806 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
808 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
809 int big_endian_correction = 0;
811 args[i].n_aligned_regs
812 = args[i].partial ? args[i].partial
813 : (bytes + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
815 args[i].aligned_regs = (rtx *) xmalloc (sizeof (rtx)
816 * args[i].n_aligned_regs);
818 /* Structures smaller than a word are aligned to the least
819 significant byte (to the right). On a BYTES_BIG_ENDIAN machine,
820 this means we must skip the empty high order bytes when
821 calculating the bit offset. */
822 if (BYTES_BIG_ENDIAN && bytes < UNITS_PER_WORD)
823 big_endian_correction = (BITS_PER_WORD - (bytes * BITS_PER_UNIT));
825 for (j = 0; j < args[i].n_aligned_regs; j++)
827 rtx reg = gen_reg_rtx (word_mode);
828 rtx word = operand_subword_force (args[i].value, j, BLKmode);
829 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
830 int bitalign = TYPE_ALIGN (TREE_TYPE (args[i].tree_value));
832 args[i].aligned_regs[j] = reg;
834 /* There is no need to restrict this code to loading items
835 in TYPE_ALIGN sized hunks. The bitfield instructions can
836 load up entire word sized registers efficiently.
838 ??? This may not be needed anymore.
839 We use to emit a clobber here but that doesn't let later
840 passes optimize the instructions we emit. By storing 0 into
841 the register later passes know the first AND to zero out the
842 bitfield being set in the register is unnecessary. The store
843 of 0 will be deleted as will at least the first AND. */
845 emit_move_insn (reg, const0_rtx);
847 bytes -= bitsize / BITS_PER_UNIT;
848 store_bit_field (reg, bitsize, big_endian_correction, word_mode,
849 extract_bit_field (word, bitsize, 0, 1,
850 NULL_RTX, word_mode,
851 word_mode,
852 bitalign / BITS_PER_UNIT,
853 BITS_PER_WORD),
854 bitalign / BITS_PER_UNIT, BITS_PER_WORD);
859 /* Fill in ARGS_SIZE and ARGS array based on the parameters found in
860 ACTPARMS.
862 NUM_ACTUALS is the total number of parameters.
864 N_NAMED_ARGS is the total number of named arguments.
866 FNDECL is the tree code for the target of this call (if known)
868 ARGS_SO_FAR holds state needed by the target to know where to place
869 the next argument.
871 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
872 for arguments which are passed in registers.
874 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
875 and may be modified by this routine.
877 OLD_PENDING_ADJ, MUST_PREALLOCATE and IS_CONST are pointers to integer
878 flags which may may be modified by this routine. */
880 static void
881 initialize_argument_information (num_actuals, args, args_size, n_named_args,
882 actparms, fndecl, args_so_far,
883 reg_parm_stack_space, old_stack_level,
884 old_pending_adj, must_preallocate, is_const)
885 int num_actuals ATTRIBUTE_UNUSED;
886 struct arg_data *args;
887 struct args_size *args_size;
888 int n_named_args ATTRIBUTE_UNUSED;
889 tree actparms;
890 tree fndecl;
891 CUMULATIVE_ARGS *args_so_far;
892 int reg_parm_stack_space;
893 rtx *old_stack_level;
894 int *old_pending_adj;
895 int *must_preallocate;
896 int *is_const;
898 /* 1 if scanning parms front to back, -1 if scanning back to front. */
899 int inc;
901 /* Count arg position in order args appear. */
902 int argpos;
904 struct args_size alignment_pad;
905 int i;
906 tree p;
908 args_size->constant = 0;
909 args_size->var = 0;
911 /* In this loop, we consider args in the order they are written.
912 We fill up ARGS from the front or from the back if necessary
913 so that in any case the first arg to be pushed ends up at the front. */
915 #ifdef PUSH_ARGS_REVERSED
916 i = num_actuals - 1, inc = -1;
917 /* In this case, must reverse order of args
918 so that we compute and push the last arg first. */
919 #else
920 i = 0, inc = 1;
921 #endif
923 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
924 for (p = actparms, argpos = 0; p; p = TREE_CHAIN (p), i += inc, argpos++)
926 tree type = TREE_TYPE (TREE_VALUE (p));
927 int unsignedp;
928 enum machine_mode mode;
930 args[i].tree_value = TREE_VALUE (p);
932 /* Replace erroneous argument with constant zero. */
933 if (type == error_mark_node || TYPE_SIZE (type) == 0)
934 args[i].tree_value = integer_zero_node, type = integer_type_node;
936 /* If TYPE is a transparent union, pass things the way we would
937 pass the first field of the union. We have already verified that
938 the modes are the same. */
939 if (TYPE_TRANSPARENT_UNION (type))
940 type = TREE_TYPE (TYPE_FIELDS (type));
942 /* Decide where to pass this arg.
944 args[i].reg is nonzero if all or part is passed in registers.
946 args[i].partial is nonzero if part but not all is passed in registers,
947 and the exact value says how many words are passed in registers.
949 args[i].pass_on_stack is nonzero if the argument must at least be
950 computed on the stack. It may then be loaded back into registers
951 if args[i].reg is nonzero.
953 These decisions are driven by the FUNCTION_... macros and must agree
954 with those made by function.c. */
956 /* See if this argument should be passed by invisible reference. */
957 if ((TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST
958 && contains_placeholder_p (TYPE_SIZE (type)))
959 || TREE_ADDRESSABLE (type)
960 #ifdef FUNCTION_ARG_PASS_BY_REFERENCE
961 || FUNCTION_ARG_PASS_BY_REFERENCE (*args_so_far, TYPE_MODE (type),
962 type, argpos < n_named_args)
963 #endif
966 /* If we're compiling a thunk, pass through invisible
967 references instead of making a copy. */
968 if (current_function_is_thunk
969 #ifdef FUNCTION_ARG_CALLEE_COPIES
970 || (FUNCTION_ARG_CALLEE_COPIES (*args_so_far, TYPE_MODE (type),
971 type, argpos < n_named_args)
972 /* If it's in a register, we must make a copy of it too. */
973 /* ??? Is this a sufficient test? Is there a better one? */
974 && !(TREE_CODE (args[i].tree_value) == VAR_DECL
975 && REG_P (DECL_RTL (args[i].tree_value)))
976 && ! TREE_ADDRESSABLE (type))
977 #endif
980 /* C++ uses a TARGET_EXPR to indicate that we want to make a
981 new object from the argument. If we are passing by
982 invisible reference, the callee will do that for us, so we
983 can strip off the TARGET_EXPR. This is not always safe,
984 but it is safe in the only case where this is a useful
985 optimization; namely, when the argument is a plain object.
986 In that case, the frontend is just asking the backend to
987 make a bitwise copy of the argument. */
989 if (TREE_CODE (args[i].tree_value) == TARGET_EXPR
990 && (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND
991 (args[i].tree_value, 1)))
992 == 'd')
993 && ! REG_P (DECL_RTL (TREE_OPERAND (args[i].tree_value, 1))))
994 args[i].tree_value = TREE_OPERAND (args[i].tree_value, 1);
996 args[i].tree_value = build1 (ADDR_EXPR,
997 build_pointer_type (type),
998 args[i].tree_value);
999 type = build_pointer_type (type);
1001 else
1003 /* We make a copy of the object and pass the address to the
1004 function being called. */
1005 rtx copy;
1007 if (TYPE_SIZE (type) == 0
1008 || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST
1009 || (flag_stack_check && ! STACK_CHECK_BUILTIN
1010 && (TREE_INT_CST_HIGH (TYPE_SIZE (type)) != 0
1011 || (TREE_INT_CST_LOW (TYPE_SIZE (type))
1012 > STACK_CHECK_MAX_VAR_SIZE * BITS_PER_UNIT))))
1014 /* This is a variable-sized object. Make space on the stack
1015 for it. */
1016 rtx size_rtx = expr_size (TREE_VALUE (p));
1018 if (*old_stack_level == 0)
1020 emit_stack_save (SAVE_BLOCK, old_stack_level, NULL_RTX);
1021 *old_pending_adj = pending_stack_adjust;
1022 pending_stack_adjust = 0;
1025 copy = gen_rtx_MEM (BLKmode,
1026 allocate_dynamic_stack_space (size_rtx,
1027 NULL_RTX,
1028 TYPE_ALIGN (type)));
1030 else
1032 int size = int_size_in_bytes (type);
1033 copy = assign_stack_temp (TYPE_MODE (type), size, 0);
1036 MEM_SET_IN_STRUCT_P (copy, AGGREGATE_TYPE_P (type));
1038 store_expr (args[i].tree_value, copy, 0);
1039 *is_const = 0;
1041 args[i].tree_value = build1 (ADDR_EXPR,
1042 build_pointer_type (type),
1043 make_tree (type, copy));
1044 type = build_pointer_type (type);
1048 mode = TYPE_MODE (type);
1049 unsignedp = TREE_UNSIGNED (type);
1051 #ifdef PROMOTE_FUNCTION_ARGS
1052 mode = promote_mode (type, mode, &unsignedp, 1);
1053 #endif
1055 args[i].unsignedp = unsignedp;
1056 args[i].mode = mode;
1057 args[i].reg = FUNCTION_ARG (*args_so_far, mode, type,
1058 argpos < n_named_args);
1059 #ifdef FUNCTION_ARG_PARTIAL_NREGS
1060 if (args[i].reg)
1061 args[i].partial
1062 = FUNCTION_ARG_PARTIAL_NREGS (*args_so_far, mode, type,
1063 argpos < n_named_args);
1064 #endif
1066 args[i].pass_on_stack = MUST_PASS_IN_STACK (mode, type);
1068 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1069 it means that we are to pass this arg in the register(s) designated
1070 by the PARALLEL, but also to pass it in the stack. */
1071 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1072 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1073 args[i].pass_on_stack = 1;
1075 /* If this is an addressable type, we must preallocate the stack
1076 since we must evaluate the object into its final location.
1078 If this is to be passed in both registers and the stack, it is simpler
1079 to preallocate. */
1080 if (TREE_ADDRESSABLE (type)
1081 || (args[i].pass_on_stack && args[i].reg != 0))
1082 *must_preallocate = 1;
1084 /* If this is an addressable type, we cannot pre-evaluate it. Thus,
1085 we cannot consider this function call constant. */
1086 if (TREE_ADDRESSABLE (type))
1087 *is_const = 0;
1089 /* Compute the stack-size of this argument. */
1090 if (args[i].reg == 0 || args[i].partial != 0
1091 || reg_parm_stack_space > 0
1092 || args[i].pass_on_stack)
1093 locate_and_pad_parm (mode, type,
1094 #ifdef STACK_PARMS_IN_REG_PARM_AREA
1096 #else
1097 args[i].reg != 0,
1098 #endif
1099 fndecl, args_size, &args[i].offset,
1100 &args[i].size, &alignment_pad);
1102 #ifndef ARGS_GROW_DOWNWARD
1103 args[i].slot_offset = *args_size;
1104 #endif
1106 args[i].alignment_pad = alignment_pad;
1108 /* If a part of the arg was put into registers,
1109 don't include that part in the amount pushed. */
1110 if (reg_parm_stack_space == 0 && ! args[i].pass_on_stack)
1111 args[i].size.constant -= ((args[i].partial * UNITS_PER_WORD)
1112 / (PARM_BOUNDARY / BITS_PER_UNIT)
1113 * (PARM_BOUNDARY / BITS_PER_UNIT));
1115 /* Update ARGS_SIZE, the total stack space for args so far. */
1117 args_size->constant += args[i].size.constant;
1118 if (args[i].size.var)
1120 ADD_PARM_SIZE (*args_size, args[i].size.var);
1123 /* Since the slot offset points to the bottom of the slot,
1124 we must record it after incrementing if the args grow down. */
1125 #ifdef ARGS_GROW_DOWNWARD
1126 args[i].slot_offset = *args_size;
1128 args[i].slot_offset.constant = -args_size->constant;
1129 if (args_size->var)
1131 SUB_PARM_SIZE (args[i].slot_offset, args_size->var);
1133 #endif
1135 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1136 have been used, etc. */
1138 FUNCTION_ARG_ADVANCE (*args_so_far, TYPE_MODE (type), type,
1139 argpos < n_named_args);
1143 /* Update ARGS_SIZE to contain the total size for the argument block.
1144 Return the original constant component of the argument block's size.
1146 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1147 for arguments passed in registers. */
1149 static int
1150 compute_argument_block_size (reg_parm_stack_space, args_size)
1151 int reg_parm_stack_space;
1152 struct args_size *args_size;
1154 int unadjusted_args_size = args_size->constant;
1156 /* Compute the actual size of the argument block required. The variable
1157 and constant sizes must be combined, the size may have to be rounded,
1158 and there may be a minimum required size. */
1160 if (args_size->var)
1162 args_size->var = ARGS_SIZE_TREE (*args_size);
1163 args_size->constant = 0;
1165 #ifdef PREFERRED_STACK_BOUNDARY
1166 if (PREFERRED_STACK_BOUNDARY != BITS_PER_UNIT)
1167 args_size->var = round_up (args_size->var, STACK_BYTES);
1168 #endif
1170 if (reg_parm_stack_space > 0)
1172 args_size->var
1173 = size_binop (MAX_EXPR, args_size->var,
1174 size_int (reg_parm_stack_space));
1176 #ifndef OUTGOING_REG_PARM_STACK_SPACE
1177 /* The area corresponding to register parameters is not to count in
1178 the size of the block we need. So make the adjustment. */
1179 args_size->var
1180 = size_binop (MINUS_EXPR, args_size->var,
1181 size_int (reg_parm_stack_space));
1182 #endif
1185 else
1187 #ifdef PREFERRED_STACK_BOUNDARY
1188 args_size->constant = (((args_size->constant
1189 + pending_stack_adjust
1190 + STACK_BYTES - 1)
1191 / STACK_BYTES * STACK_BYTES)
1192 - pending_stack_adjust);
1193 #endif
1195 args_size->constant = MAX (args_size->constant,
1196 reg_parm_stack_space);
1198 #ifdef MAYBE_REG_PARM_STACK_SPACE
1199 if (reg_parm_stack_space == 0)
1200 args_size->constant = 0;
1201 #endif
1203 #ifndef OUTGOING_REG_PARM_STACK_SPACE
1204 args_size->constant -= reg_parm_stack_space;
1205 #endif
1207 return unadjusted_args_size;
1210 /* Precompute parameters as needed for a function call.
1212 IS_CONST indicates the target function is a pure function.
1214 MUST_PREALLOCATE indicates that we must preallocate stack space for
1215 any stack arguments.
1217 NUM_ACTUALS is the number of arguments.
1219 ARGS is an array containing information for each argument; this routine
1220 fills in the INITIAL_VALUE and VALUE fields for each precomputed argument.
1222 ARGS_SIZE contains information about the size of the arg list. */
1224 static void
1225 precompute_arguments (is_const, must_preallocate, num_actuals, args, args_size)
1226 int is_const;
1227 int must_preallocate;
1228 int num_actuals;
1229 struct arg_data *args;
1230 struct args_size *args_size;
1232 int i;
1234 /* If this function call is cse'able, precompute all the parameters.
1235 Note that if the parameter is constructed into a temporary, this will
1236 cause an additional copy because the parameter will be constructed
1237 into a temporary location and then copied into the outgoing arguments.
1238 If a parameter contains a call to alloca and this function uses the
1239 stack, precompute the parameter. */
1241 /* If we preallocated the stack space, and some arguments must be passed
1242 on the stack, then we must precompute any parameter which contains a
1243 function call which will store arguments on the stack.
1244 Otherwise, evaluating the parameter may clobber previous parameters
1245 which have already been stored into the stack. */
1247 for (i = 0; i < num_actuals; i++)
1248 if (is_const
1249 || ((args_size->var != 0 || args_size->constant != 0)
1250 && calls_function (args[i].tree_value, 1))
1251 || (must_preallocate
1252 && (args_size->var != 0 || args_size->constant != 0)
1253 && calls_function (args[i].tree_value, 0)))
1255 /* If this is an addressable type, we cannot pre-evaluate it. */
1256 if (TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value)))
1257 abort ();
1259 push_temp_slots ();
1261 args[i].initial_value = args[i].value
1262 = expand_expr (args[i].tree_value, NULL_RTX, VOIDmode, 0);
1264 preserve_temp_slots (args[i].value);
1265 pop_temp_slots ();
1267 /* ANSI doesn't require a sequence point here,
1268 but PCC has one, so this will avoid some problems. */
1269 emit_queue ();
1271 args[i].initial_value = args[i].value
1272 = protect_from_queue (args[i].initial_value, 0);
1274 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) != args[i].mode)
1275 args[i].value
1276 = convert_modes (args[i].mode,
1277 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
1278 args[i].value, args[i].unsignedp);
1282 /* Given the current state of MUST_PREALLOCATE and information about
1283 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1284 compute and return the final value for MUST_PREALLOCATE. */
1286 static int
1287 finalize_must_preallocate (must_preallocate, num_actuals, args, args_size)
1288 int must_preallocate;
1289 int num_actuals;
1290 struct arg_data *args;
1291 struct args_size *args_size;
1293 /* See if we have or want to preallocate stack space.
1295 If we would have to push a partially-in-regs parm
1296 before other stack parms, preallocate stack space instead.
1298 If the size of some parm is not a multiple of the required stack
1299 alignment, we must preallocate.
1301 If the total size of arguments that would otherwise create a copy in
1302 a temporary (such as a CALL) is more than half the total argument list
1303 size, preallocation is faster.
1305 Another reason to preallocate is if we have a machine (like the m88k)
1306 where stack alignment is required to be maintained between every
1307 pair of insns, not just when the call is made. However, we assume here
1308 that such machines either do not have push insns (and hence preallocation
1309 would occur anyway) or the problem is taken care of with
1310 PUSH_ROUNDING. */
1312 if (! must_preallocate)
1314 int partial_seen = 0;
1315 int copy_to_evaluate_size = 0;
1316 int i;
1318 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1320 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1321 partial_seen = 1;
1322 else if (partial_seen && args[i].reg == 0)
1323 must_preallocate = 1;
1325 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1326 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1327 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1328 || TREE_CODE (args[i].tree_value) == COND_EXPR
1329 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1330 copy_to_evaluate_size
1331 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1334 if (copy_to_evaluate_size * 2 >= args_size->constant
1335 && args_size->constant > 0)
1336 must_preallocate = 1;
1338 return must_preallocate;
1341 /* If we preallocated stack space, compute the address of each argument
1342 and store it into the ARGS array.
1344 We need not ensure it is a valid memory address here; it will be
1345 validized when it is used.
1347 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1349 static void
1350 compute_argument_addresses (args, argblock, num_actuals)
1351 struct arg_data *args;
1352 rtx argblock;
1353 int num_actuals;
1355 if (argblock)
1357 rtx arg_reg = argblock;
1358 int i, arg_offset = 0;
1360 if (GET_CODE (argblock) == PLUS)
1361 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1363 for (i = 0; i < num_actuals; i++)
1365 rtx offset = ARGS_SIZE_RTX (args[i].offset);
1366 rtx slot_offset = ARGS_SIZE_RTX (args[i].slot_offset);
1367 rtx addr;
1369 /* Skip this parm if it will not be passed on the stack. */
1370 if (! args[i].pass_on_stack && args[i].reg != 0)
1371 continue;
1373 if (GET_CODE (offset) == CONST_INT)
1374 addr = plus_constant (arg_reg, INTVAL (offset));
1375 else
1376 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1378 addr = plus_constant (addr, arg_offset);
1379 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1380 MEM_SET_IN_STRUCT_P
1381 (args[i].stack,
1382 AGGREGATE_TYPE_P (TREE_TYPE (args[i].tree_value)));
1384 if (GET_CODE (slot_offset) == CONST_INT)
1385 addr = plus_constant (arg_reg, INTVAL (slot_offset));
1386 else
1387 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1389 addr = plus_constant (addr, arg_offset);
1390 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1395 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1396 in a call instruction.
1398 FNDECL is the tree node for the target function. For an indirect call
1399 FNDECL will be NULL_TREE.
1401 EXP is the CALL_EXPR for this call. */
1403 static rtx
1404 rtx_for_function_call (fndecl, exp)
1405 tree fndecl;
1406 tree exp;
1408 rtx funexp;
1410 /* Get the function to call, in the form of RTL. */
1411 if (fndecl)
1413 /* If this is the first use of the function, see if we need to
1414 make an external definition for it. */
1415 if (! TREE_USED (fndecl))
1417 assemble_external (fndecl);
1418 TREE_USED (fndecl) = 1;
1421 /* Get a SYMBOL_REF rtx for the function address. */
1422 funexp = XEXP (DECL_RTL (fndecl), 0);
1424 else
1425 /* Generate an rtx (probably a pseudo-register) for the address. */
1427 rtx funaddr;
1428 push_temp_slots ();
1429 funaddr = funexp =
1430 expand_expr (TREE_OPERAND (exp, 0), NULL_RTX, VOIDmode, 0);
1431 pop_temp_slots (); /* FUNEXP can't be BLKmode */
1433 /* Check the function is executable. */
1434 if (current_function_check_memory_usage)
1436 #ifdef POINTERS_EXTEND_UNSIGNED
1437 /* It might be OK to convert funexp in place, but there's
1438 a lot going on between here and when it happens naturally
1439 that this seems safer. */
1440 funaddr = convert_memory_address (Pmode, funexp);
1441 #endif
1442 emit_library_call (chkr_check_exec_libfunc, 1,
1443 VOIDmode, 1,
1444 funaddr, Pmode);
1446 emit_queue ();
1448 return funexp;
1451 /* Do the register loads required for any wholly-register parms or any
1452 parms which are passed both on the stack and in a register. Their
1453 expressions were already evaluated.
1455 Mark all register-parms as living through the call, putting these USE
1456 insns in the CALL_INSN_FUNCTION_USAGE field. */
1458 static void
1459 load_register_parameters (args, num_actuals, call_fusage)
1460 struct arg_data *args;
1461 int num_actuals;
1462 rtx *call_fusage;
1464 int i, j;
1466 #ifdef LOAD_ARGS_REVERSED
1467 for (i = num_actuals - 1; i >= 0; i--)
1468 #else
1469 for (i = 0; i < num_actuals; i++)
1470 #endif
1472 rtx reg = args[i].reg;
1473 int partial = args[i].partial;
1474 int nregs;
1476 if (reg)
1478 /* Set to non-negative if must move a word at a time, even if just
1479 one word (e.g, partial == 1 && mode == DFmode). Set to -1 if
1480 we just use a normal move insn. This value can be zero if the
1481 argument is a zero size structure with no fields. */
1482 nregs = (partial ? partial
1483 : (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1484 ? ((int_size_in_bytes (TREE_TYPE (args[i].tree_value))
1485 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
1486 : -1));
1488 /* Handle calls that pass values in multiple non-contiguous
1489 locations. The Irix 6 ABI has examples of this. */
1491 if (GET_CODE (reg) == PARALLEL)
1493 emit_group_load (reg, args[i].value,
1494 int_size_in_bytes (TREE_TYPE (args[i].tree_value)),
1495 (TYPE_ALIGN (TREE_TYPE (args[i].tree_value))
1496 / BITS_PER_UNIT));
1499 /* If simple case, just do move. If normal partial, store_one_arg
1500 has already loaded the register for us. In all other cases,
1501 load the register(s) from memory. */
1503 else if (nregs == -1)
1504 emit_move_insn (reg, args[i].value);
1506 /* If we have pre-computed the values to put in the registers in
1507 the case of non-aligned structures, copy them in now. */
1509 else if (args[i].n_aligned_regs != 0)
1510 for (j = 0; j < args[i].n_aligned_regs; j++)
1511 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
1512 args[i].aligned_regs[j]);
1514 else if (partial == 0 || args[i].pass_on_stack)
1515 move_block_to_reg (REGNO (reg),
1516 validize_mem (args[i].value), nregs,
1517 args[i].mode);
1519 /* Handle calls that pass values in multiple non-contiguous
1520 locations. The Irix 6 ABI has examples of this. */
1521 if (GET_CODE (reg) == PARALLEL)
1522 use_group_regs (call_fusage, reg);
1523 else if (nregs == -1)
1524 use_reg (call_fusage, reg);
1525 else
1526 use_regs (call_fusage, REGNO (reg), nregs == 0 ? 1 : nregs);
1531 /* Generate all the code for a function call
1532 and return an rtx for its value.
1533 Store the value in TARGET (specified as an rtx) if convenient.
1534 If the value is stored in TARGET then TARGET is returned.
1535 If IGNORE is nonzero, then we ignore the value of the function call. */
1538 expand_call (exp, target, ignore)
1539 tree exp;
1540 rtx target;
1541 int ignore;
1543 /* List of actual parameters. */
1544 tree actparms = TREE_OPERAND (exp, 1);
1545 /* RTX for the function to be called. */
1546 rtx funexp;
1547 /* Data type of the function. */
1548 tree funtype;
1549 /* Declaration of the function being called,
1550 or 0 if the function is computed (not known by name). */
1551 tree fndecl = 0;
1552 char *name = 0;
1554 /* Register in which non-BLKmode value will be returned,
1555 or 0 if no value or if value is BLKmode. */
1556 rtx valreg;
1557 /* Address where we should return a BLKmode value;
1558 0 if value not BLKmode. */
1559 rtx structure_value_addr = 0;
1560 /* Nonzero if that address is being passed by treating it as
1561 an extra, implicit first parameter. Otherwise,
1562 it is passed by being copied directly into struct_value_rtx. */
1563 int structure_value_addr_parm = 0;
1564 /* Size of aggregate value wanted, or zero if none wanted
1565 or if we are using the non-reentrant PCC calling convention
1566 or expecting the value in registers. */
1567 HOST_WIDE_INT struct_value_size = 0;
1568 /* Nonzero if called function returns an aggregate in memory PCC style,
1569 by returning the address of where to find it. */
1570 int pcc_struct_value = 0;
1572 /* Number of actual parameters in this call, including struct value addr. */
1573 int num_actuals;
1574 /* Number of named args. Args after this are anonymous ones
1575 and they must all go on the stack. */
1576 int n_named_args;
1578 /* Vector of information about each argument.
1579 Arguments are numbered in the order they will be pushed,
1580 not the order they are written. */
1581 struct arg_data *args;
1583 /* Total size in bytes of all the stack-parms scanned so far. */
1584 struct args_size args_size;
1585 /* Size of arguments before any adjustments (such as rounding). */
1586 int unadjusted_args_size;
1587 /* Data on reg parms scanned so far. */
1588 CUMULATIVE_ARGS args_so_far;
1589 /* Nonzero if a reg parm has been scanned. */
1590 int reg_parm_seen;
1591 /* Nonzero if this is an indirect function call. */
1593 /* Nonzero if we must avoid push-insns in the args for this call.
1594 If stack space is allocated for register parameters, but not by the
1595 caller, then it is preallocated in the fixed part of the stack frame.
1596 So the entire argument block must then be preallocated (i.e., we
1597 ignore PUSH_ROUNDING in that case). */
1599 #ifdef PUSH_ROUNDING
1600 int must_preallocate = 0;
1601 #else
1602 int must_preallocate = 1;
1603 #endif
1605 /* Size of the stack reserved for parameter registers. */
1606 int reg_parm_stack_space = 0;
1608 /* Address of space preallocated for stack parms
1609 (on machines that lack push insns), or 0 if space not preallocated. */
1610 rtx argblock = 0;
1612 /* Nonzero if it is plausible that this is a call to alloca. */
1613 int may_be_alloca;
1614 /* Nonzero if this is a call to malloc or a related function. */
1615 int is_malloc;
1616 /* Nonzero if this is a call to setjmp or a related function. */
1617 int returns_twice;
1618 /* Nonzero if this is a call to `longjmp'. */
1619 int is_longjmp;
1620 /* Nonzero if this is a call to an inline function. */
1621 int is_integrable = 0;
1622 /* Nonzero if this is a call to a `const' function.
1623 Note that only explicitly named functions are handled as `const' here. */
1624 int is_const = 0;
1625 /* Nonzero if this is a call to a `volatile' function. */
1626 int is_volatile = 0;
1627 #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE)
1628 /* Define the boundary of the register parm stack space that needs to be
1629 save, if any. */
1630 int low_to_save = -1, high_to_save;
1631 rtx save_area = 0; /* Place that it is saved */
1632 #endif
1634 #ifdef ACCUMULATE_OUTGOING_ARGS
1635 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
1636 char *initial_stack_usage_map = stack_usage_map;
1637 int old_stack_arg_under_construction;
1638 #endif
1640 rtx old_stack_level = 0;
1641 int old_pending_adj = 0;
1642 int old_inhibit_defer_pop = inhibit_defer_pop;
1643 rtx call_fusage = 0;
1644 register tree p;
1645 register int i;
1647 /* The value of the function call can be put in a hard register. But
1648 if -fcheck-memory-usage, code which invokes functions (and thus
1649 damages some hard registers) can be inserted before using the value.
1650 So, target is always a pseudo-register in that case. */
1651 if (current_function_check_memory_usage)
1652 target = 0;
1654 /* See if we can find a DECL-node for the actual function.
1655 As a result, decide whether this is a call to an integrable function. */
1657 p = TREE_OPERAND (exp, 0);
1658 if (TREE_CODE (p) == ADDR_EXPR)
1660 fndecl = TREE_OPERAND (p, 0);
1661 if (TREE_CODE (fndecl) != FUNCTION_DECL)
1662 fndecl = 0;
1663 else
1665 if (!flag_no_inline
1666 && fndecl != current_function_decl
1667 && DECL_INLINE (fndecl)
1668 && DECL_SAVED_INSNS (fndecl)
1669 && DECL_SAVED_INSNS (fndecl)->inlinable)
1670 is_integrable = 1;
1671 else if (! TREE_ADDRESSABLE (fndecl))
1673 /* In case this function later becomes inlinable,
1674 record that there was already a non-inline call to it.
1676 Use abstraction instead of setting TREE_ADDRESSABLE
1677 directly. */
1678 if (DECL_INLINE (fndecl) && warn_inline && !flag_no_inline
1679 && optimize > 0)
1681 warning_with_decl (fndecl, "can't inline call to `%s'");
1682 warning ("called from here");
1684 mark_addressable (fndecl);
1687 if (TREE_READONLY (fndecl) && ! TREE_THIS_VOLATILE (fndecl)
1688 && TYPE_MODE (TREE_TYPE (exp)) != VOIDmode)
1689 is_const = 1;
1691 if (TREE_THIS_VOLATILE (fndecl))
1692 is_volatile = 1;
1696 /* If we don't have specific function to call, see if we have a
1697 constant or `noreturn' function from the type. */
1698 if (fndecl == 0)
1700 is_const = TREE_READONLY (TREE_TYPE (TREE_TYPE (p)));
1701 is_volatile = TREE_THIS_VOLATILE (TREE_TYPE (TREE_TYPE (p)));
1704 #ifdef REG_PARM_STACK_SPACE
1705 #ifdef MAYBE_REG_PARM_STACK_SPACE
1706 reg_parm_stack_space = MAYBE_REG_PARM_STACK_SPACE;
1707 #else
1708 reg_parm_stack_space = REG_PARM_STACK_SPACE (fndecl);
1709 #endif
1710 #endif
1712 #if defined(PUSH_ROUNDING) && ! defined(OUTGOING_REG_PARM_STACK_SPACE)
1713 if (reg_parm_stack_space > 0)
1714 must_preallocate = 1;
1715 #endif
1717 /* Warn if this value is an aggregate type,
1718 regardless of which calling convention we are using for it. */
1719 if (warn_aggregate_return && AGGREGATE_TYPE_P (TREE_TYPE (exp)))
1720 warning ("function call has aggregate value");
1722 /* Set up a place to return a structure. */
1724 /* Cater to broken compilers. */
1725 if (aggregate_value_p (exp))
1727 /* This call returns a big structure. */
1728 is_const = 0;
1730 #ifdef PCC_STATIC_STRUCT_RETURN
1732 pcc_struct_value = 1;
1733 /* Easier than making that case work right. */
1734 if (is_integrable)
1736 /* In case this is a static function, note that it has been
1737 used. */
1738 if (! TREE_ADDRESSABLE (fndecl))
1739 mark_addressable (fndecl);
1740 is_integrable = 0;
1743 #else /* not PCC_STATIC_STRUCT_RETURN */
1745 struct_value_size = int_size_in_bytes (TREE_TYPE (exp));
1747 if (target && GET_CODE (target) == MEM)
1748 structure_value_addr = XEXP (target, 0);
1749 else
1751 /* Assign a temporary to hold the value. */
1752 tree d;
1754 /* For variable-sized objects, we must be called with a target
1755 specified. If we were to allocate space on the stack here,
1756 we would have no way of knowing when to free it. */
1758 if (struct_value_size < 0)
1759 abort ();
1761 /* This DECL is just something to feed to mark_addressable;
1762 it doesn't get pushed. */
1763 d = build_decl (VAR_DECL, NULL_TREE, TREE_TYPE (exp));
1764 DECL_RTL (d) = assign_temp (TREE_TYPE (exp), 1, 0, 1);
1765 mark_addressable (d);
1766 mark_temp_addr_taken (DECL_RTL (d));
1767 structure_value_addr = XEXP (DECL_RTL (d), 0);
1768 TREE_USED (d) = 1;
1769 target = 0;
1772 #endif /* not PCC_STATIC_STRUCT_RETURN */
1775 /* If called function is inline, try to integrate it. */
1777 if (is_integrable)
1779 rtx temp;
1780 #ifdef ACCUMULATE_OUTGOING_ARGS
1781 rtx before_call = get_last_insn ();
1782 #endif
1784 temp = expand_inline_function (fndecl, actparms, target,
1785 ignore, TREE_TYPE (exp),
1786 structure_value_addr);
1788 /* If inlining succeeded, return. */
1789 if (temp != (rtx) (HOST_WIDE_INT) -1)
1791 #ifdef ACCUMULATE_OUTGOING_ARGS
1792 /* If the outgoing argument list must be preserved, push
1793 the stack before executing the inlined function if it
1794 makes any calls. */
1796 for (i = reg_parm_stack_space - 1; i >= 0; i--)
1797 if (i < highest_outgoing_arg_in_use && stack_usage_map[i] != 0)
1798 break;
1800 if (stack_arg_under_construction || i >= 0)
1802 rtx first_insn
1803 = before_call ? NEXT_INSN (before_call) : get_insns ();
1804 rtx insn = NULL_RTX, seq;
1806 /* Look for a call in the inline function code.
1807 If DECL_SAVED_INSNS (fndecl)->outgoing_args_size is
1808 nonzero then there is a call and it is not necessary
1809 to scan the insns. */
1811 if (DECL_SAVED_INSNS (fndecl)->outgoing_args_size == 0)
1812 for (insn = first_insn; insn; insn = NEXT_INSN (insn))
1813 if (GET_CODE (insn) == CALL_INSN)
1814 break;
1816 if (insn)
1818 /* Reserve enough stack space so that the largest
1819 argument list of any function call in the inline
1820 function does not overlap the argument list being
1821 evaluated. This is usually an overestimate because
1822 allocate_dynamic_stack_space reserves space for an
1823 outgoing argument list in addition to the requested
1824 space, but there is no way to ask for stack space such
1825 that an argument list of a certain length can be
1826 safely constructed.
1828 Add the stack space reserved for register arguments, if
1829 any, in the inline function. What is really needed is the
1830 largest value of reg_parm_stack_space in the inline
1831 function, but that is not available. Using the current
1832 value of reg_parm_stack_space is wrong, but gives
1833 correct results on all supported machines. */
1835 int adjust = (DECL_SAVED_INSNS (fndecl)->outgoing_args_size
1836 + reg_parm_stack_space);
1838 start_sequence ();
1839 emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
1840 allocate_dynamic_stack_space (GEN_INT (adjust),
1841 NULL_RTX, BITS_PER_UNIT);
1842 seq = get_insns ();
1843 end_sequence ();
1844 emit_insns_before (seq, first_insn);
1845 emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX);
1848 #endif
1850 /* If the result is equivalent to TARGET, return TARGET to simplify
1851 checks in store_expr. They can be equivalent but not equal in the
1852 case of a function that returns BLKmode. */
1853 if (temp != target && rtx_equal_p (temp, target))
1854 return target;
1855 return temp;
1858 /* If inlining failed, mark FNDECL as needing to be compiled
1859 separately after all. If function was declared inline,
1860 give a warning. */
1861 if (DECL_INLINE (fndecl) && warn_inline && !flag_no_inline
1862 && optimize > 0 && ! TREE_ADDRESSABLE (fndecl))
1864 warning_with_decl (fndecl, "inlining failed in call to `%s'");
1865 warning ("called from here");
1867 mark_addressable (fndecl);
1870 function_call_count++;
1872 if (fndecl && DECL_NAME (fndecl))
1873 name = IDENTIFIER_POINTER (DECL_NAME (fndecl));
1875 /* See if this is a call to a function that can return more than once
1876 or a call to longjmp or malloc. */
1877 special_function_p (name, fndecl, &returns_twice, &is_longjmp,
1878 &is_malloc, &may_be_alloca);
1880 if (may_be_alloca)
1881 current_function_calls_alloca = 1;
1883 /* Operand 0 is a pointer-to-function; get the type of the function. */
1884 funtype = TREE_TYPE (TREE_OPERAND (exp, 0));
1885 if (! POINTER_TYPE_P (funtype))
1886 abort ();
1887 funtype = TREE_TYPE (funtype);
1889 /* When calling a const function, we must pop the stack args right away,
1890 so that the pop is deleted or moved with the call. */
1891 if (is_const)
1892 NO_DEFER_POP;
1894 /* Don't let pending stack adjusts add up to too much.
1895 Also, do all pending adjustments now
1896 if there is any chance this might be a call to alloca. */
1898 if (pending_stack_adjust >= 32
1899 || (pending_stack_adjust > 0 && may_be_alloca))
1900 do_pending_stack_adjust ();
1902 /* Push the temporary stack slot level so that we can free any temporaries
1903 we make. */
1904 push_temp_slots ();
1906 /* Start updating where the next arg would go.
1908 On some machines (such as the PA) indirect calls have a different
1909 calling convention than normal calls. The last argument in
1910 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
1911 or not. */
1912 INIT_CUMULATIVE_ARGS (args_so_far, funtype, NULL_RTX, (fndecl == 0));
1914 /* If struct_value_rtx is 0, it means pass the address
1915 as if it were an extra parameter. */
1916 if (structure_value_addr && struct_value_rtx == 0)
1918 /* If structure_value_addr is a REG other than
1919 virtual_outgoing_args_rtx, we can use always use it. If it
1920 is not a REG, we must always copy it into a register.
1921 If it is virtual_outgoing_args_rtx, we must copy it to another
1922 register in some cases. */
1923 rtx temp = (GET_CODE (structure_value_addr) != REG
1924 #ifdef ACCUMULATE_OUTGOING_ARGS
1925 || (stack_arg_under_construction
1926 && structure_value_addr == virtual_outgoing_args_rtx)
1927 #endif
1928 ? copy_addr_to_reg (structure_value_addr)
1929 : structure_value_addr);
1931 actparms
1932 = tree_cons (error_mark_node,
1933 make_tree (build_pointer_type (TREE_TYPE (funtype)),
1934 temp),
1935 actparms);
1936 structure_value_addr_parm = 1;
1939 /* Count the arguments and set NUM_ACTUALS. */
1940 for (p = actparms, i = 0; p; p = TREE_CHAIN (p)) i++;
1941 num_actuals = i;
1943 /* Compute number of named args.
1944 Normally, don't include the last named arg if anonymous args follow.
1945 We do include the last named arg if STRICT_ARGUMENT_NAMING is nonzero.
1946 (If no anonymous args follow, the result of list_length is actually
1947 one too large. This is harmless.)
1949 If PRETEND_OUTGOING_VARARGS_NAMED is set and STRICT_ARGUMENT_NAMING is
1950 zero, this machine will be able to place unnamed args that were passed in
1951 registers into the stack. So treat all args as named. This allows the
1952 insns emitting for a specific argument list to be independent of the
1953 function declaration.
1955 If PRETEND_OUTGOING_VARARGS_NAMED is not set, we do not have any reliable
1956 way to pass unnamed args in registers, so we must force them into
1957 memory. */
1959 if ((STRICT_ARGUMENT_NAMING
1960 || ! PRETEND_OUTGOING_VARARGS_NAMED)
1961 && TYPE_ARG_TYPES (funtype) != 0)
1962 n_named_args
1963 = (list_length (TYPE_ARG_TYPES (funtype))
1964 /* Don't include the last named arg. */
1965 - (STRICT_ARGUMENT_NAMING ? 0 : 1)
1966 /* Count the struct value address, if it is passed as a parm. */
1967 + structure_value_addr_parm);
1968 else
1969 /* If we know nothing, treat all args as named. */
1970 n_named_args = num_actuals;
1972 /* Make a vector to hold all the information about each arg. */
1973 args = (struct arg_data *) alloca (num_actuals * sizeof (struct arg_data));
1974 bzero ((char *) args, num_actuals * sizeof (struct arg_data));
1976 /* Build up entries inthe ARGS array, compute the size of the arguments
1977 into ARGS_SIZE, etc. */
1978 initialize_argument_information (num_actuals, args, &args_size, n_named_args,
1979 actparms, fndecl, &args_so_far,
1980 reg_parm_stack_space, &old_stack_level,
1981 &old_pending_adj, &must_preallocate,
1982 &is_const);
1984 #ifdef FINAL_REG_PARM_STACK_SPACE
1985 reg_parm_stack_space = FINAL_REG_PARM_STACK_SPACE (args_size.constant,
1986 args_size.var);
1987 #endif
1989 if (args_size.var)
1991 /* If this function requires a variable-sized argument list, don't try to
1992 make a cse'able block for this call. We may be able to do this
1993 eventually, but it is too complicated to keep track of what insns go
1994 in the cse'able block and which don't. */
1996 is_const = 0;
1997 must_preallocate = 1;
2000 /* Compute the actual size of the argument block required. The variable
2001 and constant sizes must be combined, the size may have to be rounded,
2002 and there may be a minimum required size. */
2003 unadjusted_args_size
2004 = compute_argument_block_size (reg_parm_stack_space, &args_size);
2006 /* Now make final decision about preallocating stack space. */
2007 must_preallocate = finalize_must_preallocate (must_preallocate,
2008 num_actuals, args, &args_size);
2010 /* If the structure value address will reference the stack pointer, we must
2011 stabilize it. We don't need to do this if we know that we are not going
2012 to adjust the stack pointer in processing this call. */
2014 if (structure_value_addr
2015 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2016 || reg_mentioned_p (virtual_outgoing_args_rtx, structure_value_addr))
2017 && (args_size.var
2018 #ifndef ACCUMULATE_OUTGOING_ARGS
2019 || args_size.constant
2020 #endif
2022 structure_value_addr = copy_to_reg (structure_value_addr);
2024 /* Precompute any arguments as needed. */
2025 precompute_arguments (is_const, must_preallocate, num_actuals,
2026 args, &args_size);
2028 /* Now we are about to start emitting insns that can be deleted
2029 if a libcall is deleted. */
2030 if (is_const || is_malloc)
2031 start_sequence ();
2033 /* If we have no actual push instructions, or shouldn't use them,
2034 make space for all args right now. */
2036 if (args_size.var != 0)
2038 if (old_stack_level == 0)
2040 emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
2041 old_pending_adj = pending_stack_adjust;
2042 pending_stack_adjust = 0;
2043 #ifdef ACCUMULATE_OUTGOING_ARGS
2044 /* stack_arg_under_construction says whether a stack arg is
2045 being constructed at the old stack level. Pushing the stack
2046 gets a clean outgoing argument block. */
2047 old_stack_arg_under_construction = stack_arg_under_construction;
2048 stack_arg_under_construction = 0;
2049 #endif
2051 argblock = push_block (ARGS_SIZE_RTX (args_size), 0, 0);
2053 else
2055 /* Note that we must go through the motions of allocating an argument
2056 block even if the size is zero because we may be storing args
2057 in the area reserved for register arguments, which may be part of
2058 the stack frame. */
2060 int needed = args_size.constant;
2062 /* Store the maximum argument space used. It will be pushed by
2063 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
2064 checking). */
2066 if (needed > current_function_outgoing_args_size)
2067 current_function_outgoing_args_size = needed;
2069 if (must_preallocate)
2071 #ifdef ACCUMULATE_OUTGOING_ARGS
2072 /* Since the stack pointer will never be pushed, it is possible for
2073 the evaluation of a parm to clobber something we have already
2074 written to the stack. Since most function calls on RISC machines
2075 do not use the stack, this is uncommon, but must work correctly.
2077 Therefore, we save any area of the stack that was already written
2078 and that we are using. Here we set up to do this by making a new
2079 stack usage map from the old one. The actual save will be done
2080 by store_one_arg.
2082 Another approach might be to try to reorder the argument
2083 evaluations to avoid this conflicting stack usage. */
2085 #ifndef OUTGOING_REG_PARM_STACK_SPACE
2086 /* Since we will be writing into the entire argument area, the
2087 map must be allocated for its entire size, not just the part that
2088 is the responsibility of the caller. */
2089 needed += reg_parm_stack_space;
2090 #endif
2092 #ifdef ARGS_GROW_DOWNWARD
2093 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2094 needed + 1);
2095 #else
2096 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2097 needed);
2098 #endif
2099 stack_usage_map = (char *) alloca (highest_outgoing_arg_in_use);
2101 if (initial_highest_arg_in_use)
2102 bcopy (initial_stack_usage_map, stack_usage_map,
2103 initial_highest_arg_in_use);
2105 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
2106 bzero (&stack_usage_map[initial_highest_arg_in_use],
2107 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
2108 needed = 0;
2110 /* The address of the outgoing argument list must not be copied to a
2111 register here, because argblock would be left pointing to the
2112 wrong place after the call to allocate_dynamic_stack_space below.
2115 argblock = virtual_outgoing_args_rtx;
2117 #else /* not ACCUMULATE_OUTGOING_ARGS */
2118 if (inhibit_defer_pop == 0)
2120 /* Try to reuse some or all of the pending_stack_adjust
2121 to get this space. Maybe we can avoid any pushing. */
2122 if (needed > pending_stack_adjust)
2124 needed -= pending_stack_adjust;
2125 pending_stack_adjust = 0;
2127 else
2129 pending_stack_adjust -= needed;
2130 needed = 0;
2133 /* Special case this because overhead of `push_block' in this
2134 case is non-trivial. */
2135 if (needed == 0)
2136 argblock = virtual_outgoing_args_rtx;
2137 else
2138 argblock = push_block (GEN_INT (needed), 0, 0);
2140 /* We only really need to call `copy_to_reg' in the case where push
2141 insns are going to be used to pass ARGBLOCK to a function
2142 call in ARGS. In that case, the stack pointer changes value
2143 from the allocation point to the call point, and hence
2144 the value of VIRTUAL_OUTGOING_ARGS_RTX changes as well.
2145 But might as well always do it. */
2146 argblock = copy_to_reg (argblock);
2147 #endif /* not ACCUMULATE_OUTGOING_ARGS */
2151 #ifdef ACCUMULATE_OUTGOING_ARGS
2152 /* The save/restore code in store_one_arg handles all cases except one:
2153 a constructor call (including a C function returning a BLKmode struct)
2154 to initialize an argument. */
2155 if (stack_arg_under_construction)
2157 #ifndef OUTGOING_REG_PARM_STACK_SPACE
2158 rtx push_size = GEN_INT (reg_parm_stack_space + args_size.constant);
2159 #else
2160 rtx push_size = GEN_INT (args_size.constant);
2161 #endif
2162 if (old_stack_level == 0)
2164 emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX);
2165 old_pending_adj = pending_stack_adjust;
2166 pending_stack_adjust = 0;
2167 /* stack_arg_under_construction says whether a stack arg is
2168 being constructed at the old stack level. Pushing the stack
2169 gets a clean outgoing argument block. */
2170 old_stack_arg_under_construction = stack_arg_under_construction;
2171 stack_arg_under_construction = 0;
2172 /* Make a new map for the new argument list. */
2173 stack_usage_map = (char *)alloca (highest_outgoing_arg_in_use);
2174 bzero (stack_usage_map, highest_outgoing_arg_in_use);
2175 highest_outgoing_arg_in_use = 0;
2177 allocate_dynamic_stack_space (push_size, NULL_RTX, BITS_PER_UNIT);
2179 /* If argument evaluation might modify the stack pointer, copy the
2180 address of the argument list to a register. */
2181 for (i = 0; i < num_actuals; i++)
2182 if (args[i].pass_on_stack)
2184 argblock = copy_addr_to_reg (argblock);
2185 break;
2187 #endif
2189 compute_argument_addresses (args, argblock, num_actuals);
2191 #ifdef PUSH_ARGS_REVERSED
2192 #ifdef PREFERRED_STACK_BOUNDARY
2193 /* If we push args individually in reverse order, perform stack alignment
2194 before the first push (the last arg). */
2195 if (argblock == 0)
2196 anti_adjust_stack (GEN_INT (args_size.constant - unadjusted_args_size));
2197 #endif
2198 #endif
2200 /* Don't try to defer pops if preallocating, not even from the first arg,
2201 since ARGBLOCK probably refers to the SP. */
2202 if (argblock)
2203 NO_DEFER_POP;
2205 funexp = rtx_for_function_call (fndecl, exp);
2207 /* Figure out the register where the value, if any, will come back. */
2208 valreg = 0;
2209 if (TYPE_MODE (TREE_TYPE (exp)) != VOIDmode
2210 && ! structure_value_addr)
2212 if (pcc_struct_value)
2213 valreg = hard_function_value (build_pointer_type (TREE_TYPE (exp)),
2214 fndecl);
2215 else
2216 valreg = hard_function_value (TREE_TYPE (exp), fndecl);
2219 /* Precompute all register parameters. It isn't safe to compute anything
2220 once we have started filling any specific hard regs. */
2221 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
2223 #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE)
2225 /* Save the fixed argument area if it's part of the caller's frame and
2226 is clobbered by argument setup for this call. */
2227 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
2228 &low_to_save, &high_to_save);
2229 #endif
2232 /* Now store (and compute if necessary) all non-register parms.
2233 These come before register parms, since they can require block-moves,
2234 which could clobber the registers used for register parms.
2235 Parms which have partial registers are not stored here,
2236 but we do preallocate space here if they want that. */
2238 for (i = 0; i < num_actuals; i++)
2239 if (args[i].reg == 0 || args[i].pass_on_stack)
2240 store_one_arg (&args[i], argblock, may_be_alloca,
2241 args_size.var != 0, reg_parm_stack_space);
2243 /* If we have a parm that is passed in registers but not in memory
2244 and whose alignment does not permit a direct copy into registers,
2245 make a group of pseudos that correspond to each register that we
2246 will later fill. */
2247 if (STRICT_ALIGNMENT)
2248 store_unaligned_arguments_into_pseudos (args, num_actuals);
2250 /* Now store any partially-in-registers parm.
2251 This is the last place a block-move can happen. */
2252 if (reg_parm_seen)
2253 for (i = 0; i < num_actuals; i++)
2254 if (args[i].partial != 0 && ! args[i].pass_on_stack)
2255 store_one_arg (&args[i], argblock, may_be_alloca,
2256 args_size.var != 0, reg_parm_stack_space);
2258 #ifndef PUSH_ARGS_REVERSED
2259 #ifdef PREFERRED_STACK_BOUNDARY
2260 /* If we pushed args in forward order, perform stack alignment
2261 after pushing the last arg. */
2262 if (argblock == 0)
2263 anti_adjust_stack (GEN_INT (args_size.constant - unadjusted_args_size));
2264 #endif
2265 #endif
2267 /* If register arguments require space on the stack and stack space
2268 was not preallocated, allocate stack space here for arguments
2269 passed in registers. */
2270 #if ! defined(ACCUMULATE_OUTGOING_ARGS) && defined(OUTGOING_REG_PARM_STACK_SPACE)
2271 if (must_preallocate == 0 && reg_parm_stack_space > 0)
2272 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
2273 #endif
2275 /* Pass the function the address in which to return a structure value. */
2276 if (structure_value_addr && ! structure_value_addr_parm)
2278 emit_move_insn (struct_value_rtx,
2279 force_reg (Pmode,
2280 force_operand (structure_value_addr,
2281 NULL_RTX)));
2283 /* Mark the memory for the aggregate as write-only. */
2284 if (current_function_check_memory_usage)
2285 emit_library_call (chkr_set_right_libfunc, 1,
2286 VOIDmode, 3,
2287 structure_value_addr, Pmode,
2288 GEN_INT (struct_value_size), TYPE_MODE (sizetype),
2289 GEN_INT (MEMORY_USE_WO),
2290 TYPE_MODE (integer_type_node));
2292 if (GET_CODE (struct_value_rtx) == REG)
2293 use_reg (&call_fusage, struct_value_rtx);
2296 funexp = prepare_call_address (funexp, fndecl, &call_fusage, reg_parm_seen);
2298 load_register_parameters (args, num_actuals, &call_fusage);
2300 /* Perform postincrements before actually calling the function. */
2301 emit_queue ();
2303 /* All arguments and registers used for the call must be set up by now! */
2305 /* Generate the actual call instruction. */
2306 emit_call_1 (funexp, fndecl, funtype, unadjusted_args_size,
2307 args_size.constant, struct_value_size,
2308 FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1),
2309 valreg, old_inhibit_defer_pop, call_fusage, is_const);
2311 /* If call is cse'able, make appropriate pair of reg-notes around it.
2312 Test valreg so we don't crash; may safely ignore `const'
2313 if return type is void. Disable for PARALLEL return values, because
2314 we have no way to move such values into a pseudo register. */
2315 if (is_const && valreg != 0 && GET_CODE (valreg) != PARALLEL)
2317 rtx note = 0;
2318 rtx temp = gen_reg_rtx (GET_MODE (valreg));
2319 rtx insns;
2321 /* Mark the return value as a pointer if needed. */
2322 if (TREE_CODE (TREE_TYPE (exp)) == POINTER_TYPE)
2324 tree pointed_to = TREE_TYPE (TREE_TYPE (exp));
2325 mark_reg_pointer (temp, TYPE_ALIGN (pointed_to) / BITS_PER_UNIT);
2328 /* Construct an "equal form" for the value which mentions all the
2329 arguments in order as well as the function name. */
2330 #ifdef PUSH_ARGS_REVERSED
2331 for (i = 0; i < num_actuals; i++)
2332 note = gen_rtx_EXPR_LIST (VOIDmode, args[i].initial_value, note);
2333 #else
2334 for (i = num_actuals - 1; i >= 0; i--)
2335 note = gen_rtx_EXPR_LIST (VOIDmode, args[i].initial_value, note);
2336 #endif
2337 note = gen_rtx_EXPR_LIST (VOIDmode, funexp, note);
2339 insns = get_insns ();
2340 end_sequence ();
2342 emit_libcall_block (insns, temp, valreg, note);
2344 valreg = temp;
2346 else if (is_const)
2348 /* Otherwise, just write out the sequence without a note. */
2349 rtx insns = get_insns ();
2351 end_sequence ();
2352 emit_insns (insns);
2354 else if (is_malloc)
2356 rtx temp = gen_reg_rtx (GET_MODE (valreg));
2357 rtx last, insns;
2359 /* The return value from a malloc-like function is a pointer. */
2360 if (TREE_CODE (TREE_TYPE (exp)) == POINTER_TYPE)
2361 mark_reg_pointer (temp, BIGGEST_ALIGNMENT / BITS_PER_UNIT);
2363 emit_move_insn (temp, valreg);
2365 /* The return value from a malloc-like function can not alias
2366 anything else. */
2367 last = get_last_insn ();
2368 REG_NOTES (last) =
2369 gen_rtx_EXPR_LIST (REG_NOALIAS, temp, REG_NOTES (last));
2371 /* Write out the sequence. */
2372 insns = get_insns ();
2373 end_sequence ();
2374 emit_insns (insns);
2375 valreg = temp;
2378 /* For calls to `setjmp', etc., inform flow.c it should complain
2379 if nonvolatile values are live. */
2381 if (returns_twice)
2383 emit_note (name, NOTE_INSN_SETJMP);
2384 current_function_calls_setjmp = 1;
2387 if (is_longjmp)
2388 current_function_calls_longjmp = 1;
2390 /* Notice functions that cannot return.
2391 If optimizing, insns emitted below will be dead.
2392 If not optimizing, they will exist, which is useful
2393 if the user uses the `return' command in the debugger. */
2395 if (is_volatile || is_longjmp)
2396 emit_barrier ();
2398 /* If value type not void, return an rtx for the value. */
2400 /* If there are cleanups to be called, don't use a hard reg as target.
2401 We need to double check this and see if it matters anymore. */
2402 if (any_pending_cleanups (1)
2403 && target && REG_P (target)
2404 && REGNO (target) < FIRST_PSEUDO_REGISTER)
2405 target = 0;
2407 if (TYPE_MODE (TREE_TYPE (exp)) == VOIDmode
2408 || ignore)
2410 target = const0_rtx;
2412 else if (structure_value_addr)
2414 if (target == 0 || GET_CODE (target) != MEM)
2416 target = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)),
2417 memory_address (TYPE_MODE (TREE_TYPE (exp)),
2418 structure_value_addr));
2419 MEM_SET_IN_STRUCT_P (target,
2420 AGGREGATE_TYPE_P (TREE_TYPE (exp)));
2423 else if (pcc_struct_value)
2425 /* This is the special C++ case where we need to
2426 know what the true target was. We take care to
2427 never use this value more than once in one expression. */
2428 target = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)),
2429 copy_to_reg (valreg));
2430 MEM_SET_IN_STRUCT_P (target, AGGREGATE_TYPE_P (TREE_TYPE (exp)));
2432 /* Handle calls that return values in multiple non-contiguous locations.
2433 The Irix 6 ABI has examples of this. */
2434 else if (GET_CODE (valreg) == PARALLEL)
2436 int bytes = int_size_in_bytes (TREE_TYPE (exp));
2438 if (target == 0)
2440 target = assign_stack_temp (TYPE_MODE (TREE_TYPE (exp)), bytes, 0);
2441 MEM_SET_IN_STRUCT_P (target, AGGREGATE_TYPE_P (TREE_TYPE (exp)));
2442 preserve_temp_slots (target);
2445 if (! rtx_equal_p (target, valreg))
2446 emit_group_store (target, valreg, bytes,
2447 TYPE_ALIGN (TREE_TYPE (exp)) / BITS_PER_UNIT);
2449 else if (target && GET_MODE (target) == TYPE_MODE (TREE_TYPE (exp))
2450 && GET_MODE (target) == GET_MODE (valreg))
2451 /* TARGET and VALREG cannot be equal at this point because the latter
2452 would not have REG_FUNCTION_VALUE_P true, while the former would if
2453 it were referring to the same register.
2455 If they refer to the same register, this move will be a no-op, except
2456 when function inlining is being done. */
2457 emit_move_insn (target, valreg);
2458 else if (TYPE_MODE (TREE_TYPE (exp)) == BLKmode)
2459 target = copy_blkmode_from_reg (target, valreg, TREE_TYPE (exp));
2460 else
2461 target = copy_to_reg (valreg);
2463 #ifdef PROMOTE_FUNCTION_RETURN
2464 /* If we promoted this return value, make the proper SUBREG. TARGET
2465 might be const0_rtx here, so be careful. */
2466 if (GET_CODE (target) == REG
2467 && TYPE_MODE (TREE_TYPE (exp)) != BLKmode
2468 && GET_MODE (target) != TYPE_MODE (TREE_TYPE (exp)))
2470 tree type = TREE_TYPE (exp);
2471 int unsignedp = TREE_UNSIGNED (type);
2473 /* If we don't promote as expected, something is wrong. */
2474 if (GET_MODE (target)
2475 != promote_mode (type, TYPE_MODE (type), &unsignedp, 1))
2476 abort ();
2478 target = gen_rtx_SUBREG (TYPE_MODE (type), target, 0);
2479 SUBREG_PROMOTED_VAR_P (target) = 1;
2480 SUBREG_PROMOTED_UNSIGNED_P (target) = unsignedp;
2482 #endif
2484 /* If size of args is variable or this was a constructor call for a stack
2485 argument, restore saved stack-pointer value. */
2487 if (old_stack_level)
2489 emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX);
2490 pending_stack_adjust = old_pending_adj;
2491 #ifdef ACCUMULATE_OUTGOING_ARGS
2492 stack_arg_under_construction = old_stack_arg_under_construction;
2493 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
2494 stack_usage_map = initial_stack_usage_map;
2495 #endif
2497 #ifdef ACCUMULATE_OUTGOING_ARGS
2498 else
2500 #ifdef REG_PARM_STACK_SPACE
2501 if (save_area)
2502 restore_fixed_argument_area (save_area, argblock,
2503 high_to_save, low_to_save);
2504 #endif
2506 /* If we saved any argument areas, restore them. */
2507 for (i = 0; i < num_actuals; i++)
2508 if (args[i].save_area)
2510 enum machine_mode save_mode = GET_MODE (args[i].save_area);
2511 rtx stack_area
2512 = gen_rtx_MEM (save_mode,
2513 memory_address (save_mode,
2514 XEXP (args[i].stack_slot, 0)));
2516 if (save_mode != BLKmode)
2517 emit_move_insn (stack_area, args[i].save_area);
2518 else
2519 emit_block_move (stack_area, validize_mem (args[i].save_area),
2520 GEN_INT (args[i].size.constant),
2521 PARM_BOUNDARY / BITS_PER_UNIT);
2524 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
2525 stack_usage_map = initial_stack_usage_map;
2527 #endif
2529 /* If this was alloca, record the new stack level for nonlocal gotos.
2530 Check for the handler slots since we might not have a save area
2531 for non-local gotos. */
2533 if (may_be_alloca && nonlocal_goto_handler_slots != 0)
2534 emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level, NULL_RTX);
2536 pop_temp_slots ();
2538 /* Free up storage we no longer need. */
2539 for (i = 0; i < num_actuals; ++i)
2540 if (args[i].aligned_regs)
2541 free (args[i].aligned_regs);
2543 return target;
2546 /* Output a library call to function FUN (a SYMBOL_REF rtx)
2547 (emitting the queue unless NO_QUEUE is nonzero),
2548 for a value of mode OUTMODE,
2549 with NARGS different arguments, passed as alternating rtx values
2550 and machine_modes to convert them to.
2551 The rtx values should have been passed through protect_from_queue already.
2553 NO_QUEUE will be true if and only if the library call is a `const' call
2554 which will be enclosed in REG_LIBCALL/REG_RETVAL notes; it is equivalent
2555 to the variable is_const in expand_call.
2557 NO_QUEUE must be true for const calls, because if it isn't, then
2558 any pending increment will be emitted between REG_LIBCALL/REG_RETVAL notes,
2559 and will be lost if the libcall sequence is optimized away.
2561 NO_QUEUE must be false for non-const calls, because if it isn't, the
2562 call insn will have its CONST_CALL_P bit set, and it will be incorrectly
2563 optimized. For instance, the instruction scheduler may incorrectly
2564 move memory references across the non-const call. */
2566 void
2567 emit_library_call VPROTO((rtx orgfun, int no_queue, enum machine_mode outmode,
2568 int nargs, ...))
2570 #ifndef ANSI_PROTOTYPES
2571 rtx orgfun;
2572 int no_queue;
2573 enum machine_mode outmode;
2574 int nargs;
2575 #endif
2576 va_list p;
2577 /* Total size in bytes of all the stack-parms scanned so far. */
2578 struct args_size args_size;
2579 /* Size of arguments before any adjustments (such as rounding). */
2580 struct args_size original_args_size;
2581 register int argnum;
2582 rtx fun;
2583 int inc;
2584 int count;
2585 struct args_size alignment_pad;
2586 rtx argblock = 0;
2587 CUMULATIVE_ARGS args_so_far;
2588 struct arg { rtx value; enum machine_mode mode; rtx reg; int partial;
2589 struct args_size offset; struct args_size size; rtx save_area; };
2590 struct arg *argvec;
2591 int old_inhibit_defer_pop = inhibit_defer_pop;
2592 rtx call_fusage = 0;
2593 int reg_parm_stack_space = 0;
2594 #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE)
2595 /* Define the boundary of the register parm stack space that needs to be
2596 save, if any. */
2597 int low_to_save = -1, high_to_save = 0;
2598 rtx save_area = 0; /* Place that it is saved */
2599 #endif
2601 #ifdef ACCUMULATE_OUTGOING_ARGS
2602 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2603 char *initial_stack_usage_map = stack_usage_map;
2604 int needed;
2605 #endif
2607 #ifdef REG_PARM_STACK_SPACE
2608 /* Size of the stack reserved for parameter registers. */
2609 #ifdef MAYBE_REG_PARM_STACK_SPACE
2610 reg_parm_stack_space = MAYBE_REG_PARM_STACK_SPACE;
2611 #else
2612 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
2613 #endif
2614 #endif
2616 VA_START (p, nargs);
2618 #ifndef ANSI_PROTOTYPES
2619 orgfun = va_arg (p, rtx);
2620 no_queue = va_arg (p, int);
2621 outmode = va_arg (p, enum machine_mode);
2622 nargs = va_arg (p, int);
2623 #endif
2625 fun = orgfun;
2627 /* Copy all the libcall-arguments out of the varargs data
2628 and into a vector ARGVEC.
2630 Compute how to pass each argument. We only support a very small subset
2631 of the full argument passing conventions to limit complexity here since
2632 library functions shouldn't have many args. */
2634 argvec = (struct arg *) alloca (nargs * sizeof (struct arg));
2635 bzero ((char *) argvec, nargs * sizeof (struct arg));
2638 INIT_CUMULATIVE_ARGS (args_so_far, NULL_TREE, fun, 0);
2640 args_size.constant = 0;
2641 args_size.var = 0;
2643 push_temp_slots ();
2645 for (count = 0; count < nargs; count++)
2647 rtx val = va_arg (p, rtx);
2648 enum machine_mode mode = va_arg (p, enum machine_mode);
2650 /* We cannot convert the arg value to the mode the library wants here;
2651 must do it earlier where we know the signedness of the arg. */
2652 if (mode == BLKmode
2653 || (GET_MODE (val) != mode && GET_MODE (val) != VOIDmode))
2654 abort ();
2656 /* On some machines, there's no way to pass a float to a library fcn.
2657 Pass it as a double instead. */
2658 #ifdef LIBGCC_NEEDS_DOUBLE
2659 if (LIBGCC_NEEDS_DOUBLE && mode == SFmode)
2660 val = convert_modes (DFmode, SFmode, val, 0), mode = DFmode;
2661 #endif
2663 /* There's no need to call protect_from_queue, because
2664 either emit_move_insn or emit_push_insn will do that. */
2666 /* Make sure it is a reasonable operand for a move or push insn. */
2667 if (GET_CODE (val) != REG && GET_CODE (val) != MEM
2668 && ! (CONSTANT_P (val) && LEGITIMATE_CONSTANT_P (val)))
2669 val = force_operand (val, NULL_RTX);
2671 #ifdef FUNCTION_ARG_PASS_BY_REFERENCE
2672 if (FUNCTION_ARG_PASS_BY_REFERENCE (args_so_far, mode, NULL_TREE, 1))
2674 /* We do not support FUNCTION_ARG_CALLEE_COPIES here since it can
2675 be viewed as just an efficiency improvement. */
2676 rtx slot = assign_stack_temp (mode, GET_MODE_SIZE (mode), 0);
2677 emit_move_insn (slot, val);
2678 val = force_operand (XEXP (slot, 0), NULL_RTX);
2679 mode = Pmode;
2681 #endif
2683 argvec[count].value = val;
2684 argvec[count].mode = mode;
2686 argvec[count].reg = FUNCTION_ARG (args_so_far, mode, NULL_TREE, 1);
2687 if (argvec[count].reg && GET_CODE (argvec[count].reg) == PARALLEL)
2688 abort ();
2689 #ifdef FUNCTION_ARG_PARTIAL_NREGS
2690 argvec[count].partial
2691 = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, mode, NULL_TREE, 1);
2692 #else
2693 argvec[count].partial = 0;
2694 #endif
2696 locate_and_pad_parm (mode, NULL_TREE,
2697 argvec[count].reg && argvec[count].partial == 0,
2698 NULL_TREE, &args_size, &argvec[count].offset,
2699 &argvec[count].size, &alignment_pad);
2701 if (argvec[count].size.var)
2702 abort ();
2704 if (reg_parm_stack_space == 0 && argvec[count].partial)
2705 argvec[count].size.constant -= argvec[count].partial * UNITS_PER_WORD;
2707 if (argvec[count].reg == 0 || argvec[count].partial != 0
2708 || reg_parm_stack_space > 0)
2709 args_size.constant += argvec[count].size.constant;
2711 FUNCTION_ARG_ADVANCE (args_so_far, mode, (tree) 0, 1);
2713 va_end (p);
2715 #ifdef FINAL_REG_PARM_STACK_SPACE
2716 reg_parm_stack_space = FINAL_REG_PARM_STACK_SPACE (args_size.constant,
2717 args_size.var);
2718 #endif
2720 /* If this machine requires an external definition for library
2721 functions, write one out. */
2722 assemble_external_libcall (fun);
2724 original_args_size = args_size;
2725 #ifdef PREFERRED_STACK_BOUNDARY
2726 args_size.constant = (((args_size.constant + (STACK_BYTES - 1))
2727 / STACK_BYTES) * STACK_BYTES);
2728 #endif
2730 args_size.constant = MAX (args_size.constant,
2731 reg_parm_stack_space);
2733 #ifndef OUTGOING_REG_PARM_STACK_SPACE
2734 args_size.constant -= reg_parm_stack_space;
2735 #endif
2737 if (args_size.constant > current_function_outgoing_args_size)
2738 current_function_outgoing_args_size = args_size.constant;
2740 #ifdef ACCUMULATE_OUTGOING_ARGS
2741 /* Since the stack pointer will never be pushed, it is possible for
2742 the evaluation of a parm to clobber something we have already
2743 written to the stack. Since most function calls on RISC machines
2744 do not use the stack, this is uncommon, but must work correctly.
2746 Therefore, we save any area of the stack that was already written
2747 and that we are using. Here we set up to do this by making a new
2748 stack usage map from the old one.
2750 Another approach might be to try to reorder the argument
2751 evaluations to avoid this conflicting stack usage. */
2753 needed = args_size.constant;
2755 #ifndef OUTGOING_REG_PARM_STACK_SPACE
2756 /* Since we will be writing into the entire argument area, the
2757 map must be allocated for its entire size, not just the part that
2758 is the responsibility of the caller. */
2759 needed += reg_parm_stack_space;
2760 #endif
2762 #ifdef ARGS_GROW_DOWNWARD
2763 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2764 needed + 1);
2765 #else
2766 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2767 needed);
2768 #endif
2769 stack_usage_map = (char *) alloca (highest_outgoing_arg_in_use);
2771 if (initial_highest_arg_in_use)
2772 bcopy (initial_stack_usage_map, stack_usage_map,
2773 initial_highest_arg_in_use);
2775 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
2776 bzero (&stack_usage_map[initial_highest_arg_in_use],
2777 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
2778 needed = 0;
2780 /* The address of the outgoing argument list must not be copied to a
2781 register here, because argblock would be left pointing to the
2782 wrong place after the call to allocate_dynamic_stack_space below.
2785 argblock = virtual_outgoing_args_rtx;
2786 #else /* not ACCUMULATE_OUTGOING_ARGS */
2787 #ifndef PUSH_ROUNDING
2788 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
2789 #endif
2790 #endif
2792 #ifdef PUSH_ARGS_REVERSED
2793 #ifdef PREFERRED_STACK_BOUNDARY
2794 /* If we push args individually in reverse order, perform stack alignment
2795 before the first push (the last arg). */
2796 if (argblock == 0)
2797 anti_adjust_stack (GEN_INT (args_size.constant
2798 - original_args_size.constant));
2799 #endif
2800 #endif
2802 #ifdef PUSH_ARGS_REVERSED
2803 inc = -1;
2804 argnum = nargs - 1;
2805 #else
2806 inc = 1;
2807 argnum = 0;
2808 #endif
2810 #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE)
2811 /* The argument list is the property of the called routine and it
2812 may clobber it. If the fixed area has been used for previous
2813 parameters, we must save and restore it.
2815 Here we compute the boundary of the that needs to be saved, if any. */
2817 #ifdef ARGS_GROW_DOWNWARD
2818 for (count = 0; count < reg_parm_stack_space + 1; count++)
2819 #else
2820 for (count = 0; count < reg_parm_stack_space; count++)
2821 #endif
2823 if (count >= highest_outgoing_arg_in_use
2824 || stack_usage_map[count] == 0)
2825 continue;
2827 if (low_to_save == -1)
2828 low_to_save = count;
2830 high_to_save = count;
2833 if (low_to_save >= 0)
2835 int num_to_save = high_to_save - low_to_save + 1;
2836 enum machine_mode save_mode
2837 = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
2838 rtx stack_area;
2840 /* If we don't have the required alignment, must do this in BLKmode. */
2841 if ((low_to_save & (MIN (GET_MODE_SIZE (save_mode),
2842 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
2843 save_mode = BLKmode;
2845 #ifdef ARGS_GROW_DOWNWARD
2846 stack_area = gen_rtx_MEM (save_mode,
2847 memory_address (save_mode,
2848 plus_constant (argblock,
2849 - high_to_save)));
2850 #else
2851 stack_area = gen_rtx_MEM (save_mode,
2852 memory_address (save_mode,
2853 plus_constant (argblock,
2854 low_to_save)));
2855 #endif
2856 if (save_mode == BLKmode)
2858 save_area = assign_stack_temp (BLKmode, num_to_save, 0);
2859 emit_block_move (validize_mem (save_area), stack_area,
2860 GEN_INT (num_to_save),
2861 PARM_BOUNDARY / BITS_PER_UNIT);
2863 else
2865 save_area = gen_reg_rtx (save_mode);
2866 emit_move_insn (save_area, stack_area);
2869 #endif
2871 /* Push the args that need to be pushed. */
2873 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
2874 are to be pushed. */
2875 for (count = 0; count < nargs; count++, argnum += inc)
2877 register enum machine_mode mode = argvec[argnum].mode;
2878 register rtx val = argvec[argnum].value;
2879 rtx reg = argvec[argnum].reg;
2880 int partial = argvec[argnum].partial;
2881 #ifdef ACCUMULATE_OUTGOING_ARGS
2882 int lower_bound, upper_bound, i;
2883 #endif
2885 if (! (reg != 0 && partial == 0))
2887 #ifdef ACCUMULATE_OUTGOING_ARGS
2888 /* If this is being stored into a pre-allocated, fixed-size, stack
2889 area, save any previous data at that location. */
2891 #ifdef ARGS_GROW_DOWNWARD
2892 /* stack_slot is negative, but we want to index stack_usage_map
2893 with positive values. */
2894 upper_bound = -argvec[argnum].offset.constant + 1;
2895 lower_bound = upper_bound - argvec[argnum].size.constant;
2896 #else
2897 lower_bound = argvec[argnum].offset.constant;
2898 upper_bound = lower_bound + argvec[argnum].size.constant;
2899 #endif
2901 for (i = lower_bound; i < upper_bound; i++)
2902 if (stack_usage_map[i]
2903 /* Don't store things in the fixed argument area at this point;
2904 it has already been saved. */
2905 && i > reg_parm_stack_space)
2906 break;
2908 if (i != upper_bound)
2910 /* We need to make a save area. See what mode we can make it. */
2911 enum machine_mode save_mode
2912 = mode_for_size (argvec[argnum].size.constant * BITS_PER_UNIT,
2913 MODE_INT, 1);
2914 rtx stack_area
2915 = gen_rtx_MEM
2916 (save_mode,
2917 memory_address
2918 (save_mode,
2919 plus_constant (argblock,
2920 argvec[argnum].offset.constant)));
2922 argvec[argnum].save_area = gen_reg_rtx (save_mode);
2923 emit_move_insn (argvec[argnum].save_area, stack_area);
2925 #endif
2926 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, 0, partial, reg, 0,
2927 argblock, GEN_INT (argvec[argnum].offset.constant),
2928 reg_parm_stack_space, ARGS_SIZE_RTX (alignment_pad));
2930 #ifdef ACCUMULATE_OUTGOING_ARGS
2931 /* Now mark the segment we just used. */
2932 for (i = lower_bound; i < upper_bound; i++)
2933 stack_usage_map[i] = 1;
2934 #endif
2936 NO_DEFER_POP;
2940 #ifndef PUSH_ARGS_REVERSED
2941 #ifdef PREFERRED_STACK_BOUNDARY
2942 /* If we pushed args in forward order, perform stack alignment
2943 after pushing the last arg. */
2944 if (argblock == 0)
2945 anti_adjust_stack (GEN_INT (args_size.constant
2946 - original_args_size.constant));
2947 #endif
2948 #endif
2950 #ifdef PUSH_ARGS_REVERSED
2951 argnum = nargs - 1;
2952 #else
2953 argnum = 0;
2954 #endif
2956 fun = prepare_call_address (fun, NULL_TREE, &call_fusage, 0);
2958 /* Now load any reg parms into their regs. */
2960 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
2961 are to be pushed. */
2962 for (count = 0; count < nargs; count++, argnum += inc)
2964 register rtx val = argvec[argnum].value;
2965 rtx reg = argvec[argnum].reg;
2966 int partial = argvec[argnum].partial;
2968 if (reg != 0 && partial == 0)
2969 emit_move_insn (reg, val);
2970 NO_DEFER_POP;
2973 /* For version 1.37, try deleting this entirely. */
2974 if (! no_queue)
2975 emit_queue ();
2977 /* Any regs containing parms remain in use through the call. */
2978 for (count = 0; count < nargs; count++)
2979 if (argvec[count].reg != 0)
2980 use_reg (&call_fusage, argvec[count].reg);
2982 /* Don't allow popping to be deferred, since then
2983 cse'ing of library calls could delete a call and leave the pop. */
2984 NO_DEFER_POP;
2986 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
2987 will set inhibit_defer_pop to that value. */
2989 /* The return type is needed to decide how many bytes the function pops.
2990 Signedness plays no role in that, so for simplicity, we pretend it's
2991 always signed. We also assume that the list of arguments passed has
2992 no impact, so we pretend it is unknown. */
2994 emit_call_1 (fun,
2995 get_identifier (XSTR (orgfun, 0)),
2996 build_function_type (outmode == VOIDmode ? void_type_node
2997 : type_for_mode (outmode, 0), NULL_TREE),
2998 original_args_size.constant, args_size.constant, 0,
2999 FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1),
3000 outmode != VOIDmode ? hard_libcall_value (outmode) : NULL_RTX,
3001 old_inhibit_defer_pop + 1, call_fusage, no_queue);
3003 pop_temp_slots ();
3005 /* Now restore inhibit_defer_pop to its actual original value. */
3006 OK_DEFER_POP;
3008 #ifdef ACCUMULATE_OUTGOING_ARGS
3009 #ifdef REG_PARM_STACK_SPACE
3010 if (save_area)
3012 enum machine_mode save_mode = GET_MODE (save_area);
3013 #ifdef ARGS_GROW_DOWNWARD
3014 rtx stack_area
3015 = gen_rtx_MEM (save_mode,
3016 memory_address (save_mode,
3017 plus_constant (argblock,
3018 - high_to_save)));
3019 #else
3020 rtx stack_area
3021 = gen_rtx_MEM (save_mode,
3022 memory_address (save_mode,
3023 plus_constant (argblock, low_to_save)));
3024 #endif
3026 if (save_mode != BLKmode)
3027 emit_move_insn (stack_area, save_area);
3028 else
3029 emit_block_move (stack_area, validize_mem (save_area),
3030 GEN_INT (high_to_save - low_to_save + 1),
3031 PARM_BOUNDARY / BITS_PER_UNIT);
3033 #endif
3035 /* If we saved any argument areas, restore them. */
3036 for (count = 0; count < nargs; count++)
3037 if (argvec[count].save_area)
3039 enum machine_mode save_mode = GET_MODE (argvec[count].save_area);
3040 rtx stack_area
3041 = gen_rtx_MEM (save_mode,
3042 memory_address
3043 (save_mode,
3044 plus_constant (argblock,
3045 argvec[count].offset.constant)));
3047 emit_move_insn (stack_area, argvec[count].save_area);
3050 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3051 stack_usage_map = initial_stack_usage_map;
3052 #endif
3055 /* Like emit_library_call except that an extra argument, VALUE,
3056 comes second and says where to store the result.
3057 (If VALUE is zero, this function chooses a convenient way
3058 to return the value.
3060 This function returns an rtx for where the value is to be found.
3061 If VALUE is nonzero, VALUE is returned. */
3064 emit_library_call_value VPROTO((rtx orgfun, rtx value, int no_queue,
3065 enum machine_mode outmode, int nargs, ...))
3067 #ifndef ANSI_PROTOTYPES
3068 rtx orgfun;
3069 rtx value;
3070 int no_queue;
3071 enum machine_mode outmode;
3072 int nargs;
3073 #endif
3074 va_list p;
3075 /* Total size in bytes of all the stack-parms scanned so far. */
3076 struct args_size args_size;
3077 /* Size of arguments before any adjustments (such as rounding). */
3078 struct args_size original_args_size;
3079 register int argnum;
3080 rtx fun;
3081 int inc;
3082 int count;
3083 struct args_size alignment_pad;
3084 rtx argblock = 0;
3085 CUMULATIVE_ARGS args_so_far;
3086 struct arg { rtx value; enum machine_mode mode; rtx reg; int partial;
3087 struct args_size offset; struct args_size size; rtx save_area; };
3088 struct arg *argvec;
3089 int old_inhibit_defer_pop = inhibit_defer_pop;
3090 rtx call_fusage = 0;
3091 rtx mem_value = 0;
3092 int pcc_struct_value = 0;
3093 int struct_value_size = 0;
3094 int is_const;
3095 int reg_parm_stack_space = 0;
3096 #ifdef ACCUMULATE_OUTGOING_ARGS
3097 int needed;
3098 #endif
3100 #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE)
3101 /* Define the boundary of the register parm stack space that needs to be
3102 save, if any. */
3103 int low_to_save = -1, high_to_save = 0;
3104 rtx save_area = 0; /* Place that it is saved */
3105 #endif
3107 #ifdef ACCUMULATE_OUTGOING_ARGS
3108 /* Size of the stack reserved for parameter registers. */
3109 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3110 char *initial_stack_usage_map = stack_usage_map;
3111 #endif
3113 #ifdef REG_PARM_STACK_SPACE
3114 #ifdef MAYBE_REG_PARM_STACK_SPACE
3115 reg_parm_stack_space = MAYBE_REG_PARM_STACK_SPACE;
3116 #else
3117 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3118 #endif
3119 #endif
3121 VA_START (p, nargs);
3123 #ifndef ANSI_PROTOTYPES
3124 orgfun = va_arg (p, rtx);
3125 value = va_arg (p, rtx);
3126 no_queue = va_arg (p, int);
3127 outmode = va_arg (p, enum machine_mode);
3128 nargs = va_arg (p, int);
3129 #endif
3131 is_const = no_queue;
3132 fun = orgfun;
3134 /* If this kind of value comes back in memory,
3135 decide where in memory it should come back. */
3136 if (aggregate_value_p (type_for_mode (outmode, 0)))
3138 #ifdef PCC_STATIC_STRUCT_RETURN
3139 rtx pointer_reg
3140 = hard_function_value (build_pointer_type (type_for_mode (outmode, 0)),
3142 mem_value = gen_rtx_MEM (outmode, pointer_reg);
3143 pcc_struct_value = 1;
3144 if (value == 0)
3145 value = gen_reg_rtx (outmode);
3146 #else /* not PCC_STATIC_STRUCT_RETURN */
3147 struct_value_size = GET_MODE_SIZE (outmode);
3148 if (value != 0 && GET_CODE (value) == MEM)
3149 mem_value = value;
3150 else
3151 mem_value = assign_stack_temp (outmode, GET_MODE_SIZE (outmode), 0);
3152 #endif
3154 /* This call returns a big structure. */
3155 is_const = 0;
3158 /* ??? Unfinished: must pass the memory address as an argument. */
3160 /* Copy all the libcall-arguments out of the varargs data
3161 and into a vector ARGVEC.
3163 Compute how to pass each argument. We only support a very small subset
3164 of the full argument passing conventions to limit complexity here since
3165 library functions shouldn't have many args. */
3167 argvec = (struct arg *) alloca ((nargs + 1) * sizeof (struct arg));
3168 bzero ((char *) argvec, (nargs + 1) * sizeof (struct arg));
3170 INIT_CUMULATIVE_ARGS (args_so_far, NULL_TREE, fun, 0);
3172 args_size.constant = 0;
3173 args_size.var = 0;
3175 count = 0;
3177 push_temp_slots ();
3179 /* If there's a structure value address to be passed,
3180 either pass it in the special place, or pass it as an extra argument. */
3181 if (mem_value && struct_value_rtx == 0 && ! pcc_struct_value)
3183 rtx addr = XEXP (mem_value, 0);
3184 nargs++;
3186 /* Make sure it is a reasonable operand for a move or push insn. */
3187 if (GET_CODE (addr) != REG && GET_CODE (addr) != MEM
3188 && ! (CONSTANT_P (addr) && LEGITIMATE_CONSTANT_P (addr)))
3189 addr = force_operand (addr, NULL_RTX);
3191 argvec[count].value = addr;
3192 argvec[count].mode = Pmode;
3193 argvec[count].partial = 0;
3195 argvec[count].reg = FUNCTION_ARG (args_so_far, Pmode, NULL_TREE, 1);
3196 #ifdef FUNCTION_ARG_PARTIAL_NREGS
3197 if (FUNCTION_ARG_PARTIAL_NREGS (args_so_far, Pmode, NULL_TREE, 1))
3198 abort ();
3199 #endif
3201 locate_and_pad_parm (Pmode, NULL_TREE,
3202 argvec[count].reg && argvec[count].partial == 0,
3203 NULL_TREE, &args_size, &argvec[count].offset,
3204 &argvec[count].size, &alignment_pad);
3207 if (argvec[count].reg == 0 || argvec[count].partial != 0
3208 || reg_parm_stack_space > 0)
3209 args_size.constant += argvec[count].size.constant;
3211 FUNCTION_ARG_ADVANCE (args_so_far, Pmode, (tree) 0, 1);
3213 count++;
3216 for (; count < nargs; count++)
3218 rtx val = va_arg (p, rtx);
3219 enum machine_mode mode = va_arg (p, enum machine_mode);
3221 /* We cannot convert the arg value to the mode the library wants here;
3222 must do it earlier where we know the signedness of the arg. */
3223 if (mode == BLKmode
3224 || (GET_MODE (val) != mode && GET_MODE (val) != VOIDmode))
3225 abort ();
3227 /* On some machines, there's no way to pass a float to a library fcn.
3228 Pass it as a double instead. */
3229 #ifdef LIBGCC_NEEDS_DOUBLE
3230 if (LIBGCC_NEEDS_DOUBLE && mode == SFmode)
3231 val = convert_modes (DFmode, SFmode, val, 0), mode = DFmode;
3232 #endif
3234 /* There's no need to call protect_from_queue, because
3235 either emit_move_insn or emit_push_insn will do that. */
3237 /* Make sure it is a reasonable operand for a move or push insn. */
3238 if (GET_CODE (val) != REG && GET_CODE (val) != MEM
3239 && ! (CONSTANT_P (val) && LEGITIMATE_CONSTANT_P (val)))
3240 val = force_operand (val, NULL_RTX);
3242 #ifdef FUNCTION_ARG_PASS_BY_REFERENCE
3243 if (FUNCTION_ARG_PASS_BY_REFERENCE (args_so_far, mode, NULL_TREE, 1))
3245 /* We do not support FUNCTION_ARG_CALLEE_COPIES here since it can
3246 be viewed as just an efficiency improvement. */
3247 rtx slot = assign_stack_temp (mode, GET_MODE_SIZE (mode), 0);
3248 emit_move_insn (slot, val);
3249 val = XEXP (slot, 0);
3250 mode = Pmode;
3252 #endif
3254 argvec[count].value = val;
3255 argvec[count].mode = mode;
3257 argvec[count].reg = FUNCTION_ARG (args_so_far, mode, NULL_TREE, 1);
3258 if (argvec[count].reg && GET_CODE (argvec[count].reg) == PARALLEL)
3259 abort ();
3260 #ifdef FUNCTION_ARG_PARTIAL_NREGS
3261 argvec[count].partial
3262 = FUNCTION_ARG_PARTIAL_NREGS (args_so_far, mode, NULL_TREE, 1);
3263 #else
3264 argvec[count].partial = 0;
3265 #endif
3267 locate_and_pad_parm (mode, NULL_TREE,
3268 argvec[count].reg && argvec[count].partial == 0,
3269 NULL_TREE, &args_size, &argvec[count].offset,
3270 &argvec[count].size, &alignment_pad);
3272 if (argvec[count].size.var)
3273 abort ();
3275 if (reg_parm_stack_space == 0 && argvec[count].partial)
3276 argvec[count].size.constant -= argvec[count].partial * UNITS_PER_WORD;
3278 if (argvec[count].reg == 0 || argvec[count].partial != 0
3279 || reg_parm_stack_space > 0)
3280 args_size.constant += argvec[count].size.constant;
3282 FUNCTION_ARG_ADVANCE (args_so_far, mode, (tree) 0, 1);
3284 va_end (p);
3286 #ifdef FINAL_REG_PARM_STACK_SPACE
3287 reg_parm_stack_space = FINAL_REG_PARM_STACK_SPACE (args_size.constant,
3288 args_size.var);
3289 #endif
3290 /* If this machine requires an external definition for library
3291 functions, write one out. */
3292 assemble_external_libcall (fun);
3294 original_args_size = args_size;
3295 #ifdef PREFERRED_STACK_BOUNDARY
3296 args_size.constant = (((args_size.constant + (STACK_BYTES - 1))
3297 / STACK_BYTES) * STACK_BYTES);
3298 #endif
3300 args_size.constant = MAX (args_size.constant,
3301 reg_parm_stack_space);
3303 #ifndef OUTGOING_REG_PARM_STACK_SPACE
3304 args_size.constant -= reg_parm_stack_space;
3305 #endif
3307 if (args_size.constant > current_function_outgoing_args_size)
3308 current_function_outgoing_args_size = args_size.constant;
3310 #ifdef ACCUMULATE_OUTGOING_ARGS
3311 /* Since the stack pointer will never be pushed, it is possible for
3312 the evaluation of a parm to clobber something we have already
3313 written to the stack. Since most function calls on RISC machines
3314 do not use the stack, this is uncommon, but must work correctly.
3316 Therefore, we save any area of the stack that was already written
3317 and that we are using. Here we set up to do this by making a new
3318 stack usage map from the old one.
3320 Another approach might be to try to reorder the argument
3321 evaluations to avoid this conflicting stack usage. */
3323 needed = args_size.constant;
3325 #ifndef OUTGOING_REG_PARM_STACK_SPACE
3326 /* Since we will be writing into the entire argument area, the
3327 map must be allocated for its entire size, not just the part that
3328 is the responsibility of the caller. */
3329 needed += reg_parm_stack_space;
3330 #endif
3332 #ifdef ARGS_GROW_DOWNWARD
3333 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3334 needed + 1);
3335 #else
3336 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3337 needed);
3338 #endif
3339 stack_usage_map = (char *) alloca (highest_outgoing_arg_in_use);
3341 if (initial_highest_arg_in_use)
3342 bcopy (initial_stack_usage_map, stack_usage_map,
3343 initial_highest_arg_in_use);
3345 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3346 bzero (&stack_usage_map[initial_highest_arg_in_use],
3347 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
3348 needed = 0;
3350 /* The address of the outgoing argument list must not be copied to a
3351 register here, because argblock would be left pointing to the
3352 wrong place after the call to allocate_dynamic_stack_space below.
3355 argblock = virtual_outgoing_args_rtx;
3356 #else /* not ACCUMULATE_OUTGOING_ARGS */
3357 #ifndef PUSH_ROUNDING
3358 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
3359 #endif
3360 #endif
3362 #ifdef PUSH_ARGS_REVERSED
3363 #ifdef PREFERRED_STACK_BOUNDARY
3364 /* If we push args individually in reverse order, perform stack alignment
3365 before the first push (the last arg). */
3366 if (argblock == 0)
3367 anti_adjust_stack (GEN_INT (args_size.constant
3368 - original_args_size.constant));
3369 #endif
3370 #endif
3372 #ifdef PUSH_ARGS_REVERSED
3373 inc = -1;
3374 argnum = nargs - 1;
3375 #else
3376 inc = 1;
3377 argnum = 0;
3378 #endif
3380 #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE)
3381 /* The argument list is the property of the called routine and it
3382 may clobber it. If the fixed area has been used for previous
3383 parameters, we must save and restore it.
3385 Here we compute the boundary of the that needs to be saved, if any. */
3387 #ifdef ARGS_GROW_DOWNWARD
3388 for (count = 0; count < reg_parm_stack_space + 1; count++)
3389 #else
3390 for (count = 0; count < reg_parm_stack_space; count++)
3391 #endif
3393 if (count >= highest_outgoing_arg_in_use
3394 || stack_usage_map[count] == 0)
3395 continue;
3397 if (low_to_save == -1)
3398 low_to_save = count;
3400 high_to_save = count;
3403 if (low_to_save >= 0)
3405 int num_to_save = high_to_save - low_to_save + 1;
3406 enum machine_mode save_mode
3407 = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
3408 rtx stack_area;
3410 /* If we don't have the required alignment, must do this in BLKmode. */
3411 if ((low_to_save & (MIN (GET_MODE_SIZE (save_mode),
3412 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
3413 save_mode = BLKmode;
3415 #ifdef ARGS_GROW_DOWNWARD
3416 stack_area = gen_rtx_MEM (save_mode,
3417 memory_address (save_mode,
3418 plus_constant (argblock,
3419 - high_to_save)));
3420 #else
3421 stack_area = gen_rtx_MEM (save_mode,
3422 memory_address (save_mode,
3423 plus_constant (argblock,
3424 low_to_save)));
3425 #endif
3426 if (save_mode == BLKmode)
3428 save_area = assign_stack_temp (BLKmode, num_to_save, 0);
3429 emit_block_move (validize_mem (save_area), stack_area,
3430 GEN_INT (num_to_save),
3431 PARM_BOUNDARY / BITS_PER_UNIT);
3433 else
3435 save_area = gen_reg_rtx (save_mode);
3436 emit_move_insn (save_area, stack_area);
3439 #endif
3441 /* Push the args that need to be pushed. */
3443 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
3444 are to be pushed. */
3445 for (count = 0; count < nargs; count++, argnum += inc)
3447 register enum machine_mode mode = argvec[argnum].mode;
3448 register rtx val = argvec[argnum].value;
3449 rtx reg = argvec[argnum].reg;
3450 int partial = argvec[argnum].partial;
3451 #ifdef ACCUMULATE_OUTGOING_ARGS
3452 int lower_bound, upper_bound, i;
3453 #endif
3455 if (! (reg != 0 && partial == 0))
3457 #ifdef ACCUMULATE_OUTGOING_ARGS
3458 /* If this is being stored into a pre-allocated, fixed-size, stack
3459 area, save any previous data at that location. */
3461 #ifdef ARGS_GROW_DOWNWARD
3462 /* stack_slot is negative, but we want to index stack_usage_map
3463 with positive values. */
3464 upper_bound = -argvec[argnum].offset.constant + 1;
3465 lower_bound = upper_bound - argvec[argnum].size.constant;
3466 #else
3467 lower_bound = argvec[argnum].offset.constant;
3468 upper_bound = lower_bound + argvec[argnum].size.constant;
3469 #endif
3471 for (i = lower_bound; i < upper_bound; i++)
3472 if (stack_usage_map[i]
3473 /* Don't store things in the fixed argument area at this point;
3474 it has already been saved. */
3475 && i > reg_parm_stack_space)
3476 break;
3478 if (i != upper_bound)
3480 /* We need to make a save area. See what mode we can make it. */
3481 enum machine_mode save_mode
3482 = mode_for_size (argvec[argnum].size.constant * BITS_PER_UNIT,
3483 MODE_INT, 1);
3484 rtx stack_area
3485 = gen_rtx_MEM
3486 (save_mode,
3487 memory_address
3488 (save_mode,
3489 plus_constant (argblock,
3490 argvec[argnum].offset.constant)));
3491 argvec[argnum].save_area = gen_reg_rtx (save_mode);
3493 emit_move_insn (argvec[argnum].save_area, stack_area);
3495 #endif
3496 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, 0, partial, reg, 0,
3497 argblock, GEN_INT (argvec[argnum].offset.constant),
3498 reg_parm_stack_space, ARGS_SIZE_RTX (alignment_pad));
3500 #ifdef ACCUMULATE_OUTGOING_ARGS
3501 /* Now mark the segment we just used. */
3502 for (i = lower_bound; i < upper_bound; i++)
3503 stack_usage_map[i] = 1;
3504 #endif
3506 NO_DEFER_POP;
3510 #ifndef PUSH_ARGS_REVERSED
3511 #ifdef PREFERRED_STACK_BOUNDARY
3512 /* If we pushed args in forward order, perform stack alignment
3513 after pushing the last arg. */
3514 if (argblock == 0)
3515 anti_adjust_stack (GEN_INT (args_size.constant
3516 - original_args_size.constant));
3517 #endif
3518 #endif
3520 #ifdef PUSH_ARGS_REVERSED
3521 argnum = nargs - 1;
3522 #else
3523 argnum = 0;
3524 #endif
3526 fun = prepare_call_address (fun, NULL_TREE, &call_fusage, 0);
3528 /* Now load any reg parms into their regs. */
3530 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
3531 are to be pushed. */
3532 for (count = 0; count < nargs; count++, argnum += inc)
3534 register rtx val = argvec[argnum].value;
3535 rtx reg = argvec[argnum].reg;
3536 int partial = argvec[argnum].partial;
3538 if (reg != 0 && partial == 0)
3539 emit_move_insn (reg, val);
3540 NO_DEFER_POP;
3543 #if 0
3544 /* For version 1.37, try deleting this entirely. */
3545 if (! no_queue)
3546 emit_queue ();
3547 #endif
3549 /* Any regs containing parms remain in use through the call. */
3550 for (count = 0; count < nargs; count++)
3551 if (argvec[count].reg != 0)
3552 use_reg (&call_fusage, argvec[count].reg);
3554 /* Pass the function the address in which to return a structure value. */
3555 if (mem_value != 0 && struct_value_rtx != 0 && ! pcc_struct_value)
3557 emit_move_insn (struct_value_rtx,
3558 force_reg (Pmode,
3559 force_operand (XEXP (mem_value, 0),
3560 NULL_RTX)));
3561 if (GET_CODE (struct_value_rtx) == REG)
3562 use_reg (&call_fusage, struct_value_rtx);
3565 /* Don't allow popping to be deferred, since then
3566 cse'ing of library calls could delete a call and leave the pop. */
3567 NO_DEFER_POP;
3569 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
3570 will set inhibit_defer_pop to that value. */
3571 /* See the comment in emit_library_call about the function type we build
3572 and pass here. */
3574 emit_call_1 (fun,
3575 get_identifier (XSTR (orgfun, 0)),
3576 build_function_type (type_for_mode (outmode, 0), NULL_TREE),
3577 original_args_size.constant, args_size.constant,
3578 struct_value_size,
3579 FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1),
3580 mem_value == 0 ? hard_libcall_value (outmode) : NULL_RTX,
3581 old_inhibit_defer_pop + 1, call_fusage, is_const);
3583 /* Now restore inhibit_defer_pop to its actual original value. */
3584 OK_DEFER_POP;
3586 pop_temp_slots ();
3588 /* Copy the value to the right place. */
3589 if (outmode != VOIDmode)
3591 if (mem_value)
3593 if (value == 0)
3594 value = mem_value;
3595 if (value != mem_value)
3596 emit_move_insn (value, mem_value);
3598 else if (value != 0)
3599 emit_move_insn (value, hard_libcall_value (outmode));
3600 else
3601 value = hard_libcall_value (outmode);
3604 #ifdef ACCUMULATE_OUTGOING_ARGS
3605 #ifdef REG_PARM_STACK_SPACE
3606 if (save_area)
3608 enum machine_mode save_mode = GET_MODE (save_area);
3609 #ifdef ARGS_GROW_DOWNWARD
3610 rtx stack_area
3611 = gen_rtx_MEM (save_mode,
3612 memory_address (save_mode,
3613 plus_constant (argblock,
3614 - high_to_save)));
3615 #else
3616 rtx stack_area
3617 = gen_rtx_MEM (save_mode,
3618 memory_address (save_mode,
3619 plus_constant (argblock, low_to_save)));
3620 #endif
3621 if (save_mode != BLKmode)
3622 emit_move_insn (stack_area, save_area);
3623 else
3624 emit_block_move (stack_area, validize_mem (save_area),
3625 GEN_INT (high_to_save - low_to_save + 1),
3626 PARM_BOUNDARY / BITS_PER_UNIT);
3628 #endif
3630 /* If we saved any argument areas, restore them. */
3631 for (count = 0; count < nargs; count++)
3632 if (argvec[count].save_area)
3634 enum machine_mode save_mode = GET_MODE (argvec[count].save_area);
3635 rtx stack_area
3636 = gen_rtx_MEM (save_mode,
3637 memory_address
3638 (save_mode,
3639 plus_constant (argblock,
3640 argvec[count].offset.constant)));
3642 emit_move_insn (stack_area, argvec[count].save_area);
3645 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3646 stack_usage_map = initial_stack_usage_map;
3647 #endif
3649 return value;
3652 #if 0
3653 /* Return an rtx which represents a suitable home on the stack
3654 given TYPE, the type of the argument looking for a home.
3655 This is called only for BLKmode arguments.
3657 SIZE is the size needed for this target.
3658 ARGS_ADDR is the address of the bottom of the argument block for this call.
3659 OFFSET describes this parameter's offset into ARGS_ADDR. It is meaningless
3660 if this machine uses push insns. */
3662 static rtx
3663 target_for_arg (type, size, args_addr, offset)
3664 tree type;
3665 rtx size;
3666 rtx args_addr;
3667 struct args_size offset;
3669 rtx target;
3670 rtx offset_rtx = ARGS_SIZE_RTX (offset);
3672 /* We do not call memory_address if possible,
3673 because we want to address as close to the stack
3674 as possible. For non-variable sized arguments,
3675 this will be stack-pointer relative addressing. */
3676 if (GET_CODE (offset_rtx) == CONST_INT)
3677 target = plus_constant (args_addr, INTVAL (offset_rtx));
3678 else
3680 /* I have no idea how to guarantee that this
3681 will work in the presence of register parameters. */
3682 target = gen_rtx_PLUS (Pmode, args_addr, offset_rtx);
3683 target = memory_address (QImode, target);
3686 return gen_rtx_MEM (BLKmode, target);
3688 #endif
3690 /* Store a single argument for a function call
3691 into the register or memory area where it must be passed.
3692 *ARG describes the argument value and where to pass it.
3694 ARGBLOCK is the address of the stack-block for all the arguments,
3695 or 0 on a machine where arguments are pushed individually.
3697 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
3698 so must be careful about how the stack is used.
3700 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
3701 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
3702 that we need not worry about saving and restoring the stack.
3704 FNDECL is the declaration of the function we are calling. */
3706 static void
3707 store_one_arg (arg, argblock, may_be_alloca, variable_size,
3708 reg_parm_stack_space)
3709 struct arg_data *arg;
3710 rtx argblock;
3711 int may_be_alloca;
3712 int variable_size ATTRIBUTE_UNUSED;
3713 int reg_parm_stack_space;
3715 register tree pval = arg->tree_value;
3716 rtx reg = 0;
3717 int partial = 0;
3718 int used = 0;
3719 #ifdef ACCUMULATE_OUTGOING_ARGS
3720 int i, lower_bound = 0, upper_bound = 0;
3721 #endif
3723 if (TREE_CODE (pval) == ERROR_MARK)
3724 return;
3726 /* Push a new temporary level for any temporaries we make for
3727 this argument. */
3728 push_temp_slots ();
3730 #ifdef ACCUMULATE_OUTGOING_ARGS
3731 /* If this is being stored into a pre-allocated, fixed-size, stack area,
3732 save any previous data at that location. */
3733 if (argblock && ! variable_size && arg->stack)
3735 #ifdef ARGS_GROW_DOWNWARD
3736 /* stack_slot is negative, but we want to index stack_usage_map
3737 with positive values. */
3738 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
3739 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
3740 else
3741 upper_bound = 0;
3743 lower_bound = upper_bound - arg->size.constant;
3744 #else
3745 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
3746 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
3747 else
3748 lower_bound = 0;
3750 upper_bound = lower_bound + arg->size.constant;
3751 #endif
3753 for (i = lower_bound; i < upper_bound; i++)
3754 if (stack_usage_map[i]
3755 /* Don't store things in the fixed argument area at this point;
3756 it has already been saved. */
3757 && i > reg_parm_stack_space)
3758 break;
3760 if (i != upper_bound)
3762 /* We need to make a save area. See what mode we can make it. */
3763 enum machine_mode save_mode
3764 = mode_for_size (arg->size.constant * BITS_PER_UNIT, MODE_INT, 1);
3765 rtx stack_area
3766 = gen_rtx_MEM (save_mode,
3767 memory_address (save_mode,
3768 XEXP (arg->stack_slot, 0)));
3770 if (save_mode == BLKmode)
3772 arg->save_area = assign_stack_temp (BLKmode,
3773 arg->size.constant, 0);
3774 MEM_SET_IN_STRUCT_P (arg->save_area,
3775 AGGREGATE_TYPE_P (TREE_TYPE
3776 (arg->tree_value)));
3777 preserve_temp_slots (arg->save_area);
3778 emit_block_move (validize_mem (arg->save_area), stack_area,
3779 GEN_INT (arg->size.constant),
3780 PARM_BOUNDARY / BITS_PER_UNIT);
3782 else
3784 arg->save_area = gen_reg_rtx (save_mode);
3785 emit_move_insn (arg->save_area, stack_area);
3790 /* Now that we have saved any slots that will be overwritten by this
3791 store, mark all slots this store will use. We must do this before
3792 we actually expand the argument since the expansion itself may
3793 trigger library calls which might need to use the same stack slot. */
3794 if (argblock && ! variable_size && arg->stack)
3795 for (i = lower_bound; i < upper_bound; i++)
3796 stack_usage_map[i] = 1;
3797 #endif
3799 /* If this isn't going to be placed on both the stack and in registers,
3800 set up the register and number of words. */
3801 if (! arg->pass_on_stack)
3802 reg = arg->reg, partial = arg->partial;
3804 if (reg != 0 && partial == 0)
3805 /* Being passed entirely in a register. We shouldn't be called in
3806 this case. */
3807 abort ();
3809 /* If this arg needs special alignment, don't load the registers
3810 here. */
3811 if (arg->n_aligned_regs != 0)
3812 reg = 0;
3814 /* If this is being passed partially in a register, we can't evaluate
3815 it directly into its stack slot. Otherwise, we can. */
3816 if (arg->value == 0)
3818 #ifdef ACCUMULATE_OUTGOING_ARGS
3819 /* stack_arg_under_construction is nonzero if a function argument is
3820 being evaluated directly into the outgoing argument list and
3821 expand_call must take special action to preserve the argument list
3822 if it is called recursively.
3824 For scalar function arguments stack_usage_map is sufficient to
3825 determine which stack slots must be saved and restored. Scalar
3826 arguments in general have pass_on_stack == 0.
3828 If this argument is initialized by a function which takes the
3829 address of the argument (a C++ constructor or a C function
3830 returning a BLKmode structure), then stack_usage_map is
3831 insufficient and expand_call must push the stack around the
3832 function call. Such arguments have pass_on_stack == 1.
3834 Note that it is always safe to set stack_arg_under_construction,
3835 but this generates suboptimal code if set when not needed. */
3837 if (arg->pass_on_stack)
3838 stack_arg_under_construction++;
3839 #endif
3840 arg->value = expand_expr (pval,
3841 (partial
3842 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
3843 ? NULL_RTX : arg->stack,
3844 VOIDmode, 0);
3846 /* If we are promoting object (or for any other reason) the mode
3847 doesn't agree, convert the mode. */
3849 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
3850 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
3851 arg->value, arg->unsignedp);
3853 #ifdef ACCUMULATE_OUTGOING_ARGS
3854 if (arg->pass_on_stack)
3855 stack_arg_under_construction--;
3856 #endif
3859 /* Don't allow anything left on stack from computation
3860 of argument to alloca. */
3861 if (may_be_alloca)
3862 do_pending_stack_adjust ();
3864 if (arg->value == arg->stack)
3866 /* If the value is already in the stack slot, we are done. */
3867 if (current_function_check_memory_usage && GET_CODE (arg->stack) == MEM)
3869 emit_library_call (chkr_set_right_libfunc, 1, VOIDmode, 3,
3870 XEXP (arg->stack, 0), Pmode,
3871 ARGS_SIZE_RTX (arg->size),
3872 TYPE_MODE (sizetype),
3873 GEN_INT (MEMORY_USE_RW),
3874 TYPE_MODE (integer_type_node));
3877 else if (arg->mode != BLKmode)
3879 register int size;
3881 /* Argument is a scalar, not entirely passed in registers.
3882 (If part is passed in registers, arg->partial says how much
3883 and emit_push_insn will take care of putting it there.)
3885 Push it, and if its size is less than the
3886 amount of space allocated to it,
3887 also bump stack pointer by the additional space.
3888 Note that in C the default argument promotions
3889 will prevent such mismatches. */
3891 size = GET_MODE_SIZE (arg->mode);
3892 /* Compute how much space the push instruction will push.
3893 On many machines, pushing a byte will advance the stack
3894 pointer by a halfword. */
3895 #ifdef PUSH_ROUNDING
3896 size = PUSH_ROUNDING (size);
3897 #endif
3898 used = size;
3900 /* Compute how much space the argument should get:
3901 round up to a multiple of the alignment for arguments. */
3902 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
3903 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
3904 / (PARM_BOUNDARY / BITS_PER_UNIT))
3905 * (PARM_BOUNDARY / BITS_PER_UNIT));
3907 /* This isn't already where we want it on the stack, so put it there.
3908 This can either be done with push or copy insns. */
3909 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX, 0,
3910 partial, reg, used - size, argblock,
3911 ARGS_SIZE_RTX (arg->offset), reg_parm_stack_space,
3912 ARGS_SIZE_RTX (arg->alignment_pad));
3915 else
3917 /* BLKmode, at least partly to be pushed. */
3919 register int excess;
3920 rtx size_rtx;
3922 /* Pushing a nonscalar.
3923 If part is passed in registers, PARTIAL says how much
3924 and emit_push_insn will take care of putting it there. */
3926 /* Round its size up to a multiple
3927 of the allocation unit for arguments. */
3929 if (arg->size.var != 0)
3931 excess = 0;
3932 size_rtx = ARGS_SIZE_RTX (arg->size);
3934 else
3936 /* PUSH_ROUNDING has no effect on us, because
3937 emit_push_insn for BLKmode is careful to avoid it. */
3938 excess = (arg->size.constant - int_size_in_bytes (TREE_TYPE (pval))
3939 + partial * UNITS_PER_WORD);
3940 size_rtx = expr_size (pval);
3943 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
3944 TYPE_ALIGN (TREE_TYPE (pval)) / BITS_PER_UNIT, partial,
3945 reg, excess, argblock, ARGS_SIZE_RTX (arg->offset),
3946 reg_parm_stack_space,
3947 ARGS_SIZE_RTX (arg->alignment_pad));
3951 /* Unless this is a partially-in-register argument, the argument is now
3952 in the stack.
3954 ??? Note that this can change arg->value from arg->stack to
3955 arg->stack_slot and it matters when they are not the same.
3956 It isn't totally clear that this is correct in all cases. */
3957 if (partial == 0)
3958 arg->value = arg->stack_slot;
3960 /* Once we have pushed something, pops can't safely
3961 be deferred during the rest of the arguments. */
3962 NO_DEFER_POP;
3964 /* ANSI doesn't require a sequence point here,
3965 but PCC has one, so this will avoid some problems. */
3966 emit_queue ();
3968 /* Free any temporary slots made in processing this argument. Show
3969 that we might have taken the address of something and pushed that
3970 as an operand. */
3971 preserve_temp_slots (NULL_RTX);
3972 free_temp_slots ();
3973 pop_temp_slots ();